diff --git a/RESULTS/IFS_AMIP_atmosresponse_to_SST_forcing_djf_clmdiff.ipynb b/RESULTS/IFS_AMIP_atmosresponse_to_SST_forcing_djf_clmdiff.ipynb new file mode 100644 index 0000000..52fc6f6 --- /dev/null +++ b/RESULTS/IFS_AMIP_atmosresponse_to_SST_forcing_djf_clmdiff.ipynb @@ -0,0 +1,9543 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "ae5eab8f-530e-4324-8538-7ab9d2c9583c", + "metadata": {}, + "source": [ + "### Climatology difference analysis for the IFS-AMIP twin experiments with and without eddies in the SST forcing\n", + "- Inspired by paper Ma et al 2015 on the effect of eddies on weather patterns https://www.nature.com/articles/srep17785\n", + "- Analysed here is the DJF climatology between the twin experiments with and w/o eddy forcing in the SSTs in terms of differences in the mean for the following variables:\n", + " - mean surface latent heat flux\n", + " - 10m zonal wind\n", + " - mean sea level pressure\n", + " - 2m air temperature\n", + " - sea surface temperature\n", + "- The significance test uses spicy.stats.wilcoxon https://docs.scipy.org/doc/scipy/reference/generated/scipy.stats.wilcoxon.html and xr.apply_ufunc to parallelize these calculations using chunks https://docs.xarray.dev/en/stable/generated/xarray.apply_ufunc.html\n", + "\n", + "Iuliia Polkova polkova@dkrz.de" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "id": "c2c6c396-e878-4b9d-8283-b495ff570a7b", + "metadata": {}, + "outputs": [ + { + "data": { + "application/javascript": [ + "(function(root) {\n", + " function now() {\n", + " return new Date();\n", + " }\n", + "\n", + " var force = true;\n", + "\n", + " if (typeof root._bokeh_onload_callbacks === \"undefined\" || force === true) {\n", + " root._bokeh_onload_callbacks = [];\n", + " root._bokeh_is_loading = undefined;\n", + " }\n", + "\n", + " if (typeof (root._bokeh_timeout) === \"undefined\" || force === true) {\n", + " root._bokeh_timeout = Date.now() + 5000;\n", + " root._bokeh_failed_load = false;\n", + " }\n", + "\n", + " function run_callbacks() {\n", + " try {\n", + " root._bokeh_onload_callbacks.forEach(function(callback) {\n", + " if (callback != null)\n", + " callback();\n", + " });\n", + " } finally {\n", + " delete root._bokeh_onload_callbacks\n", + " }\n", + " console.debug(\"Bokeh: all callbacks have finished\");\n", + " }\n", + "\n", + " function load_libs(css_urls, js_urls, js_modules, callback) {\n", + " if (css_urls == null) css_urls = [];\n", + " if (js_urls == null) js_urls = [];\n", + " if (js_modules == null) js_modules = [];\n", + "\n", + " root._bokeh_onload_callbacks.push(callback);\n", + " if (root._bokeh_is_loading > 0) {\n", + " console.debug(\"Bokeh: BokehJS is being loaded, scheduling callback at\", now());\n", + " return null;\n", + " }\n", + " if (js_urls.length === 0 && js_modules.length === 0) {\n", + " run_callbacks();\n", + " return null;\n", + " }\n", + " console.debug(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n", + "\n", + " function on_load() {\n", + " root._bokeh_is_loading--;\n", + " if (root._bokeh_is_loading === 0) {\n", + " console.debug(\"Bokeh: all BokehJS libraries/stylesheets loaded\");\n", + " run_callbacks()\n", + " }\n", + " }\n", + "\n", + " function on_error() {\n", + " console.error(\"failed to load \" + url);\n", + " }\n", + "\n", + " for (var i = 0; i < css_urls.length; i++) {\n", + " var url = css_urls[i];\n", + " const element = document.createElement(\"link\");\n", + " element.onload = on_load;\n", + " element.onerror = on_error;\n", + " element.rel = \"stylesheet\";\n", + " element.type = \"text/css\";\n", + " element.href = url;\n", + " console.debug(\"Bokeh: injecting link tag for BokehJS stylesheet: \", url);\n", + " document.body.appendChild(element);\n", + " }\n", + "\n", + " var skip = [];\n", + " if (window.requirejs) {\n", + " window.requirejs.config({'packages': {}, 'paths': {'gridstack': 'https://cdn.jsdelivr.net/npm/gridstack@4.2.5/dist/gridstack-h5', 'notyf': 'https://cdn.jsdelivr.net/npm/notyf@3/notyf.min'}, 'shim': {'gridstack': {'exports': 'GridStack'}}});\n", + " require([\"gridstack\"], function(GridStack) {\n", + "\twindow.GridStack = GridStack\n", + "\ton_load()\n", + " })\n", + " require([\"notyf\"], function() {\n", + "\ton_load()\n", + " })\n", + " root._bokeh_is_loading = css_urls.length + 2;\n", + " } else {\n", + " root._bokeh_is_loading = css_urls.length + js_urls.length + js_modules.length;\n", + " } if (((window['GridStack'] !== undefined) && (!(window['GridStack'] instanceof HTMLElement))) || window.requirejs) {\n", + " var urls = ['https://cdn.holoviz.org/panel/0.14.4/dist/bundled/gridstack/gridstack@4.2.5/dist/gridstack-h5.js'];\n", + " for (var i = 0; i < urls.length; i++) {\n", + " skip.push(urls[i])\n", + " }\n", + " } if (((window['Notyf'] !== undefined) && (!(window['Notyf'] instanceof HTMLElement))) || window.requirejs) {\n", + " var urls = ['https://cdn.holoviz.org/panel/0.14.4/dist/bundled/notificationarea/notyf@3/notyf.min.js'];\n", + " for (var i = 0; i < urls.length; i++) {\n", + " skip.push(urls[i])\n", + " }\n", + " } for (var i = 0; i < js_urls.length; i++) {\n", + " var url = js_urls[i];\n", + " if (skip.indexOf(url) >= 0) {\n", + "\tif (!window.requirejs) {\n", + "\t on_load();\n", + "\t}\n", + "\tcontinue;\n", + " }\n", + " var element = document.createElement('script');\n", + " element.onload = on_load;\n", + " element.onerror = on_error;\n", + " element.async = false;\n", + " element.src = url;\n", + " console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n", + " document.head.appendChild(element);\n", + " }\n", + " for (var i = 0; i < js_modules.length; i++) {\n", + " var url = js_modules[i];\n", + " if (skip.indexOf(url) >= 0) {\n", + "\tif (!window.requirejs) {\n", + "\t on_load();\n", + "\t}\n", + "\tcontinue;\n", + " }\n", + " var element = document.createElement('script');\n", + " element.onload = on_load;\n", + " element.onerror = on_error;\n", + " element.async = false;\n", + " element.src = url;\n", + " element.type = \"module\";\n", + " console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n", + " document.head.appendChild(element);\n", + " }\n", + " if (!js_urls.length && !js_modules.length) {\n", + " on_load()\n", + " }\n", + " };\n", + "\n", + " function inject_raw_css(css) {\n", + " const element = document.createElement(\"style\");\n", + " element.appendChild(document.createTextNode(css));\n", + " document.body.appendChild(element);\n", + " }\n", + "\n", + " var js_urls = [];\n", + " var js_modules = [];\n", + " var css_urls = [];\n", + " var inline_js = [ function(Bokeh) {\n", + " inject_raw_css(\".bk.alert {\\n padding: 0.75rem 1.25rem;\\n border: 1px solid transparent;\\n border-radius: 0.25rem;\\n /* Don't set margin because that will not render correctly! */\\n /* margin-bottom: 1rem; */\\n margin-top: 15px;\\n margin-bottom: 15px;\\n}\\n.bk.alert a {\\n color: rgb(11, 46, 19); /* #002752; */\\n font-weight: 700;\\n text-decoration: rgb(11, 46, 19);\\n text-decoration-color: rgb(11, 46, 19);\\n text-decoration-line: none;\\n text-decoration-style: solid;\\n text-decoration-thickness: auto;\\n }\\n.bk.alert a:hover {\\n color: rgb(11, 46, 19);\\n font-weight: 700;\\n text-decoration: underline;\\n}\\n\\n.bk.alert-primary {\\n color: #004085;\\n background-color: #cce5ff;\\n border-color: #b8daff;\\n}\\n.bk.alert-primary hr {\\n border-top-color: #9fcdff;\\n}\\n\\n.bk.alert-secondary {\\n color: #383d41;\\n background-color: #e2e3e5;\\n border-color: #d6d8db;\\n }\\n.bk.alert-secondary hr {\\n border-top-color: #c8cbcf;\\n}\\n\\n.bk.alert-success {\\n color: #155724;\\n background-color: #d4edda;\\n border-color: #c3e6cb;\\n }\\n\\n.bk.alert-success hr {\\n border-top-color: #b1dfbb;\\n}\\n\\n.bk.alert-info {\\n color: #0c5460;\\n background-color: #d1ecf1;\\n border-color: #bee5eb;\\n }\\n.bk.alert-info hr {\\n border-top-color: #abdde5;\\n}\\n\\n.bk.alert-warning {\\n color: #856404;\\n background-color: #fff3cd;\\n border-color: #ffeeba;\\n }\\n\\n.bk.alert-warning hr {\\n border-top-color: #ffe8a1;\\n}\\n\\n.bk.alert-danger {\\n color: #721c24;\\n background-color: #f8d7da;\\n border-color: #f5c6cb;\\n}\\n.bk.alert-danger hr {\\n border-top-color: #f1b0b7;\\n}\\n\\n.bk.alert-light {\\n color: #818182;\\n background-color: #fefefe;\\n border-color: #fdfdfe;\\n }\\n.bk.alert-light hr {\\n border-top-color: #ececf6;\\n}\\n\\n.bk.alert-dark {\\n color: #1b1e21;\\n background-color: #d6d8d9;\\n border-color: #c6c8ca;\\n }\\n.bk.alert-dark hr {\\n border-top-color: #b9bbbe;\\n}\\n\\n\\n/* adjf\\u00e6l */\\n\\n.bk.alert-primary a {\\n color: #002752;\\n}\\n\\n.bk.alert-secondary a {\\n color: #202326;\\n}\\n\\n\\n.bk.alert-success a {\\n color: #0b2e13;\\n}\\n\\n\\n.bk.alert-info a {\\n color: #062c33;\\n}\\n\\n\\n.bk.alert-warning a {\\n color: #533f03;\\n}\\n\\n\\n.bk.alert-danger a {\\n color: #491217;\\n}\\n\\n.bk.alert-light a {\\n color: #686868;\\n}\\n\\n.bk.alert-dark a {\\n color: #040505;\\n}\\n\");\n", + " }, function(Bokeh) {\n", + " inject_raw_css(\"table.panel-df {\\n margin-left: auto;\\n margin-right: auto;\\n border: none;\\n border-collapse: collapse;\\n border-spacing: 0;\\n color: black;\\n font-size: 12px;\\n table-layout: fixed;\\n width: 100%;\\n}\\n\\n.panel-df tr, .panel-df th, .panel-df td {\\n text-align: right;\\n vertical-align: middle;\\n padding: 0.5em 0.5em !important;\\n line-height: normal;\\n white-space: normal;\\n max-width: none;\\n border: none;\\n}\\n\\n.panel-df tbody {\\n display: table-row-group;\\n vertical-align: middle;\\n border-color: inherit;\\n}\\n\\n.panel-df tbody tr:nth-child(odd) {\\n background: #f5f5f5;\\n}\\n\\n.panel-df thead {\\n border-bottom: 1px solid black;\\n vertical-align: bottom;\\n}\\n\\n.panel-df tr:hover {\\n background: lightblue !important;\\n cursor: pointer;\\n}\\n\");\n", + " }, function(Bokeh) {\n", + " inject_raw_css(\".codehilite .hll { background-color: #ffffcc }\\n.codehilite { background: #f8f8f8; }\\n.codehilite .c { color: #408080; font-style: italic } /* Comment */\\n.codehilite .err { border: 1px solid #FF0000 } /* Error */\\n.codehilite .k { color: #008000; font-weight: bold } /* Keyword */\\n.codehilite .o { color: #666666 } /* Operator */\\n.codehilite .ch { color: #408080; font-style: italic } /* Comment.Hashbang */\\n.codehilite .cm { color: #408080; font-style: italic } /* Comment.Multiline */\\n.codehilite .cp { color: #BC7A00 } /* Comment.Preproc */\\n.codehilite .cpf { color: #408080; font-style: italic } /* Comment.PreprocFile */\\n.codehilite .c1 { color: #408080; font-style: italic } /* Comment.Single */\\n.codehilite .cs { color: #408080; font-style: italic } /* Comment.Special */\\n.codehilite .gd { color: #A00000 } /* Generic.Deleted */\\n.codehilite .ge { font-style: italic } /* Generic.Emph */\\n.codehilite .gr { color: #FF0000 } /* Generic.Error */\\n.codehilite .gh { color: #000080; font-weight: bold } /* Generic.Heading */\\n.codehilite .gi { color: #00A000 } /* Generic.Inserted */\\n.codehilite .go { color: #888888 } /* Generic.Output */\\n.codehilite .gp { color: #000080; font-weight: bold } /* Generic.Prompt */\\n.codehilite .gs { font-weight: bold } /* Generic.Strong */\\n.codehilite .gu { color: #800080; font-weight: bold } /* Generic.Subheading */\\n.codehilite .gt { color: #0044DD } /* Generic.Traceback */\\n.codehilite .kc { color: #008000; font-weight: bold } /* Keyword.Constant */\\n.codehilite .kd { color: #008000; font-weight: bold } /* Keyword.Declaration */\\n.codehilite .kn { color: #008000; font-weight: bold } /* Keyword.Namespace */\\n.codehilite .kp { color: #008000 } /* Keyword.Pseudo */\\n.codehilite .kr { color: #008000; font-weight: bold } /* Keyword.Reserved */\\n.codehilite .kt { color: #B00040 } /* Keyword.Type */\\n.codehilite .m { color: #666666 } /* Literal.Number */\\n.codehilite .s { color: #BA2121 } /* Literal.String */\\n.codehilite .na { color: #7D9029 } /* Name.Attribute */\\n.codehilite .nb { color: #008000 } /* Name.Builtin */\\n.codehilite .nc { color: #0000FF; font-weight: bold } /* Name.Class */\\n.codehilite .no { color: #880000 } /* Name.Constant */\\n.codehilite .nd { color: #AA22FF } /* Name.Decorator */\\n.codehilite .ni { color: #999999; font-weight: bold } /* Name.Entity */\\n.codehilite .ne { color: #D2413A; font-weight: bold } /* Name.Exception */\\n.codehilite .nf { color: #0000FF } /* Name.Function */\\n.codehilite .nl { color: #A0A000 } /* Name.Label */\\n.codehilite .nn { color: #0000FF; font-weight: bold } /* Name.Namespace */\\n.codehilite .nt { color: #008000; font-weight: bold } /* Name.Tag */\\n.codehilite .nv { color: #19177C } /* Name.Variable */\\n.codehilite .ow { color: #AA22FF; font-weight: bold } /* Operator.Word */\\n.codehilite .w { color: #bbbbbb } /* Text.Whitespace */\\n.codehilite .mb { color: #666666 } /* Literal.Number.Bin */\\n.codehilite .mf { color: #666666 } /* Literal.Number.Float */\\n.codehilite .mh { color: #666666 } /* Literal.Number.Hex */\\n.codehilite .mi { color: #666666 } /* Literal.Number.Integer */\\n.codehilite .mo { color: #666666 } /* Literal.Number.Oct */\\n.codehilite .sa { color: #BA2121 } /* Literal.String.Affix */\\n.codehilite .sb { color: #BA2121 } /* Literal.String.Backtick */\\n.codehilite .sc { color: #BA2121 } /* Literal.String.Char */\\n.codehilite .dl { color: #BA2121 } /* Literal.String.Delimiter */\\n.codehilite .sd { color: #BA2121; font-style: italic } /* Literal.String.Doc */\\n.codehilite .s2 { color: #BA2121 } /* Literal.String.Double */\\n.codehilite .se { color: #BB6622; font-weight: bold } /* Literal.String.Escape */\\n.codehilite .sh { color: #BA2121 } /* Literal.String.Heredoc */\\n.codehilite .si { color: #BB6688; font-weight: bold } /* Literal.String.Interpol */\\n.codehilite .sx { color: #008000 } /* Literal.String.Other */\\n.codehilite .sr { color: #BB6688 } /* Literal.String.Regex */\\n.codehilite .s1 { color: #BA2121 } /* Literal.String.Single */\\n.codehilite .ss { color: #19177C } /* Literal.String.Symbol */\\n.codehilite .bp { color: #008000 } /* Name.Builtin.Pseudo */\\n.codehilite .fm { color: #0000FF } /* Name.Function.Magic */\\n.codehilite .vc { color: #19177C } /* Name.Variable.Class */\\n.codehilite .vg { color: #19177C } /* Name.Variable.Global */\\n.codehilite .vi { color: #19177C } /* Name.Variable.Instance */\\n.codehilite .vm { color: #19177C } /* Name.Variable.Magic */\\n.codehilite .il { color: #666666 } /* Literal.Number.Integer.Long */\\n\\n.markdown h1 { margin-block-start: 0.34em }\\n.markdown h2 { margin-block-start: 0.42em }\\n.markdown h3 { margin-block-start: 0.5em }\\n.markdown h4 { margin-block-start: 0.67em }\\n.markdown h5 { margin-block-start: 0.84em }\\n.markdown h6 { margin-block-start: 1.17em }\\n.markdown ul { padding-inline-start: 2em }\\n.markdown ol { padding-inline-start: 2em }\\n.markdown strong { font-weight: 600 }\\n.markdown a { color: -webkit-link }\\n.markdown a { color: -moz-hyperlinkText }\\n\\n.markdown .codehilite {\\n padding: 1rem 1.25rem;\\n margin-top: 1rem;\\n margin-bottom: 1rem;\\n border-radius: 0.25rem;\\n}\\n\");\n", + " }, function(Bokeh) {\n", + " inject_raw_css(\".json-formatter-row {\\n font-family: monospace;\\n}\\n.json-formatter-row,\\n.json-formatter-row a,\\n.json-formatter-row a:hover {\\n color: black;\\n text-decoration: none;\\n}\\n.json-formatter-row .json-formatter-row {\\n margin-left: 1rem;\\n}\\n.json-formatter-row .json-formatter-children.json-formatter-empty {\\n opacity: 0.5;\\n margin-left: 1rem;\\n}\\n.json-formatter-row .json-formatter-children.json-formatter-empty:after {\\n display: none;\\n}\\n.json-formatter-row .json-formatter-children.json-formatter-empty.json-formatter-object:after {\\n content: \\\"No properties\\\";\\n}\\n.json-formatter-row .json-formatter-children.json-formatter-empty.json-formatter-array:after {\\n content: \\\"[]\\\";\\n}\\n.json-formatter-row .json-formatter-string,\\n.json-formatter-row .json-formatter-stringifiable {\\n color: green;\\n white-space: pre;\\n word-wrap: break-word;\\n}\\n.json-formatter-row .json-formatter-number {\\n color: blue;\\n}\\n.json-formatter-row .json-formatter-boolean {\\n color: red;\\n}\\n.json-formatter-row .json-formatter-null {\\n color: #855A00;\\n}\\n.json-formatter-row .json-formatter-undefined {\\n color: #ca0b69;\\n}\\n.json-formatter-row .json-formatter-function {\\n color: #FF20ED;\\n}\\n.json-formatter-row .json-formatter-date {\\n background-color: rgba(0, 0, 0, 0.05);\\n}\\n.json-formatter-row .json-formatter-url {\\n text-decoration: underline;\\n color: blue;\\n cursor: pointer;\\n}\\n.json-formatter-row .json-formatter-bracket {\\n color: blue;\\n}\\n.json-formatter-row .json-formatter-key {\\n color: #00008B;\\n padding-right: 0.2rem;\\n}\\n.json-formatter-row .json-formatter-toggler-link {\\n cursor: pointer;\\n}\\n.json-formatter-row .json-formatter-toggler {\\n line-height: 1.2rem;\\n font-size: 0.7rem;\\n vertical-align: middle;\\n opacity: 0.6;\\n cursor: pointer;\\n padding-right: 0.2rem;\\n}\\n.json-formatter-row .json-formatter-toggler:after {\\n display: inline-block;\\n transition: transform 100ms ease-in;\\n content: \\\"\\\\25BA\\\";\\n}\\n.json-formatter-row > a > .json-formatter-preview-text {\\n opacity: 0;\\n transition: opacity 0.15s ease-in;\\n font-style: italic;\\n}\\n.json-formatter-row:hover > a > .json-formatter-preview-text {\\n opacity: 0.6;\\n}\\n.json-formatter-row.json-formatter-open > .json-formatter-toggler-link .json-formatter-toggler:after {\\n transform: rotate(90deg);\\n}\\n.json-formatter-row.json-formatter-open > .json-formatter-children:after {\\n display: inline-block;\\n}\\n.json-formatter-row.json-formatter-open > a > .json-formatter-preview-text {\\n display: none;\\n}\\n.json-formatter-row.json-formatter-open.json-formatter-empty:after {\\n display: block;\\n}\\n.json-formatter-dark.json-formatter-row {\\n font-family: monospace;\\n}\\n.json-formatter-dark.json-formatter-row,\\n.json-formatter-dark.json-formatter-row a,\\n.json-formatter-dark.json-formatter-row a:hover {\\n color: white;\\n text-decoration: none;\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-row {\\n margin-left: 1rem;\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-children.json-formatter-empty {\\n opacity: 0.5;\\n margin-left: 1rem;\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-children.json-formatter-empty:after {\\n display: none;\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-children.json-formatter-empty.json-formatter-object:after {\\n content: \\\"No properties\\\";\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-children.json-formatter-empty.json-formatter-array:after {\\n content: \\\"[]\\\";\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-string,\\n.json-formatter-dark.json-formatter-row .json-formatter-stringifiable {\\n color: #31F031;\\n white-space: pre;\\n word-wrap: break-word;\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-number {\\n color: #66C2FF;\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-boolean {\\n color: #EC4242;\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-null {\\n color: #EEC97D;\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-undefined {\\n color: #ef8fbe;\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-function {\\n color: #FD48CB;\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-date {\\n background-color: rgba(255, 255, 255, 0.05);\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-url {\\n text-decoration: underline;\\n color: #027BFF;\\n cursor: pointer;\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-bracket {\\n color: #9494FF;\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-key {\\n color: #23A0DB;\\n padding-right: 0.2rem;\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-toggler-link {\\n cursor: pointer;\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-toggler {\\n line-height: 1.2rem;\\n font-size: 0.7rem;\\n vertical-align: middle;\\n opacity: 0.6;\\n cursor: pointer;\\n padding-right: 0.2rem;\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-toggler:after {\\n display: inline-block;\\n transition: transform 100ms ease-in;\\n content: \\\"\\\\25BA\\\";\\n}\\n.json-formatter-dark.json-formatter-row > a > .json-formatter-preview-text {\\n opacity: 0;\\n transition: opacity 0.15s ease-in;\\n font-style: italic;\\n}\\n.json-formatter-dark.json-formatter-row:hover > a > .json-formatter-preview-text {\\n opacity: 0.6;\\n}\\n.json-formatter-dark.json-formatter-row.json-formatter-open > .json-formatter-toggler-link .json-formatter-toggler:after {\\n transform: rotate(90deg);\\n}\\n.json-formatter-dark.json-formatter-row.json-formatter-open > .json-formatter-children:after {\\n display: inline-block;\\n}\\n.json-formatter-dark.json-formatter-row.json-formatter-open > a > .json-formatter-preview-text {\\n display: none;\\n}\\n.json-formatter-dark.json-formatter-row.json-formatter-open.json-formatter-empty:after {\\n display: block;\\n}\\n\");\n", + " }, function(Bokeh) {\n", + " inject_raw_css(\".bk.debugger-card {\\n border: 1px solid rgba(0,0,0,1);\\n color: rgba(255,255,255,1);\\n background-color: rgba(0,0,0,1);\\n border-radius: 0rem;\\n}\\n.bk.debugger-card-header {\\n align-items: center;\\n text-align: left;\\n background-color: rgba(0, 0, 0, 1)!important;\\n color: rgba(255, 255, 255, 1);\\n border-radius: 0rem;\\n display: inline-flex;\\n justify-content: start;\\n width: 100%;\\n}\\n.bk.debugger-card-button {\\n background-color: transparent;\\n color: rgba(255, 255, 255, 1);\\n margin-left: 0.5em;\\n}\\n.bk.debugger-card-title {\\n align-items: center;\\n text-align: left;\\n color: rgba(255, 255, 255, 1);\\n font-size: 1em;\\n overflow-wrap: break-word;\\n}\\n\\n/* Special debugger buttons for clearing and saving */\\n.bk button.special_btn {\\n width: 25px;\\n height: 25px;\\n background-color: black;\\n color: white;\\n display: inline-block;\\n}\\n\\n\\n.bk button.special_btn .tooltiptext {\\n visibility: hidden;\\n width: 100px;\\n background-color: darkgray;\\n color: #fff;\\n text-align: center;\\n border-radius: 6px;\\n padding: 5px 0;\\n\\n /* Position the tooltip */\\n position: relative;\\n z-index: 1;\\n top: 100%;\\n left: 100%;\\n margin-left: -100px;\\n display: block;\\n}\\n\\n.bk button.special_btn:hover .tooltiptext {\\n visibility: visible;\\n}\\n\\n\\n\\n.bk button.clear_btn:hover .shown { display: none;}\\n.bk button.clear_btn:hover:before { content: \\\"\\u2611\\\"; }\\n\");\n", + " }, function(Bokeh) {\n", + " inject_raw_css(\".bk.card {\\n border: 1px solid rgba(0,0,0,.125);\\n border-radius: 0.25rem;\\n}\\n.bk.accordion {\\n border: 1px solid rgba(0,0,0,.125);\\n}\\n.bk.card-header {\\n align-items: center;\\n background-color: rgba(0, 0, 0, 0.03);\\n border-radius: 0.25rem;\\n display: inline-flex;\\n justify-content: start;\\n width: 100%;\\n}\\n.bk.accordion-header {\\n align-items: center;\\n background-color: rgba(0, 0, 0, 0.03);\\n border-radius: 0;\\n display: flex;\\n justify-content: start;\\n width: 100%;\\n}\\n.bk.card-button {\\n background-color: transparent;\\n margin-left: 0.5em;\\n}\\n.bk.card-header-row {\\n position: relative !important;\\n}\\n.bk.card-title {\\n align-items: center;\\n font-size: 1.4em;\\n font-weight: bold;\\n overflow-wrap: break-word;\\n}\\n.bk.card-header-row > .bk {\\n overflow-wrap: break-word;\\n text-align: center;\\n}\\n\");\n", + " }, function(Bokeh) {\n", + " inject_raw_css(\".bk.pn-loading {\\n overflow: hidden;\\n}\\n.bk.pn-loading:before {\\n position: absolute;\\n height: 100%;\\n width: 100%;\\n content: '';\\n z-index: 1000;\\n background-color: rgb(255,255,255,0.50);\\n border-color: lightgray;\\n background-repeat: no-repeat;\\n background-position: center;\\n background-size: auto 50%;\\n border-width: 1px;\\n cursor: progress;\\n}\\n.bk.pn-loading.arcs:hover:before {\\n cursor: progress;\\n}\\n.bk.pn-loading .pn-loading-msg {\\n position: absolute;\\n top: 72%;\\n font-size: 2em;\\n color: black;\\n width: 100%;\\n text-align: center;\\n}\\n\");\n", + " }, function(Bokeh) {\n", + " inject_raw_css(\".bk.panel-widget-box {\\n min-height: 20px;\\n background-color: #f5f5f5;\\n border: 1px solid #e3e3e3;\\n border-radius: 4px;\\n -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.05);\\n box-shadow: inset 0 1px 1px rgba(0,0,0,.05);\\n overflow-x: hidden;\\n overflow-y: hidden;\\n}\\n\\n.scrollable {\\n overflow: scroll;\\n}\\n\\nprogress {\\n appearance: none;\\n -moz-appearance: none;\\n -webkit-appearance: none;\\n border: none;\\n height: 20px;\\n background-color: whiteSmoke;\\n border-radius: 3px;\\n box-shadow: 0 2px 3px rgba(0,0,0,.5) inset;\\n color: royalblue;\\n position: relative;\\n margin: 0 0 1.5em;\\n}\\n\\nprogress[value]::-webkit-progress-bar {\\n background-color: whiteSmoke;\\n border-radius: 3px;\\n box-shadow: 0 2px 3px rgba(0,0,0,.5) inset;\\n}\\n\\nprogress[value]::-webkit-progress-value {\\n position: relative;\\n background-size: 35px 20px, 100% 100%, 100% 100%;\\n border-radius:3px;\\n}\\n\\nprogress.active:not([value])::before {\\n background-position: 10%;\\n animation-name: stripes;\\n animation-duration: 3s;\\n animation-timing-function: linear;\\n animation-iteration-count: infinite;\\n}\\n\\nprogress[value]::-moz-progress-bar {\\n background-size: 35px 20px, 100% 100%, 100% 100%;\\n border-radius:3px;\\n}\\n\\nprogress:not([value])::-moz-progress-bar {\\n border-radius:3px;\\n background: linear-gradient(-45deg, transparent 33%, rgba(0, 0, 0, 0.2) 33%, rgba(0, 0, 0, 0.2) 66%, transparent 66%) left/2.5em 1.5em;\\n}\\n\\nprogress.active:not([value])::-moz-progress-bar {\\n background-position: 10%;\\n animation-name: stripes;\\n animation-duration: 3s;\\n animation-timing-function: linear;\\n animation-iteration-count: infinite;\\n}\\n\\nprogress.active:not([value])::-webkit-progress-bar {\\n background-position: 10%;\\n animation-name: stripes;\\n animation-duration: 3s;\\n animation-timing-function: linear;\\n animation-iteration-count: infinite;\\n}\\n\\nprogress.primary[value]::-webkit-progress-value { background-color: #007bff; }\\nprogress.primary:not([value])::before { background-color: #007bff; }\\nprogress.primary:not([value])::-webkit-progress-bar { background-color: #007bff; }\\nprogress.primary::-moz-progress-bar { background-color: #007bff; }\\n\\nprogress.secondary[value]::-webkit-progress-value { background-color: #6c757d; }\\nprogress.secondary:not([value])::before { background-color: #6c757d; }\\nprogress.secondary:not([value])::-webkit-progress-bar { background-color: #6c757d; }\\nprogress.secondary::-moz-progress-bar { background-color: #6c757d; }\\n\\nprogress.success[value]::-webkit-progress-value { background-color: #28a745; }\\nprogress.success:not([value])::before { background-color: #28a745; }\\nprogress.success:not([value])::-webkit-progress-bar { background-color: #28a745; }\\nprogress.success::-moz-progress-bar { background-color: #28a745; }\\n\\nprogress.danger[value]::-webkit-progress-value { background-color: #dc3545; }\\nprogress.danger:not([value])::before { background-color: #dc3545; }\\nprogress.danger:not([value])::-webkit-progress-bar { background-color: #dc3545; }\\nprogress.danger::-moz-progress-bar { background-color: #dc3545; }\\n\\nprogress.warning[value]::-webkit-progress-value { background-color: #ffc107; }\\nprogress.warning:not([value])::before { background-color: #ffc107; }\\nprogress.warning:not([value])::-webkit-progress-bar { background-color: #ffc107; }\\nprogress.warning::-moz-progress-bar { background-color: #ffc107; }\\n\\nprogress.info[value]::-webkit-progress-value { background-color: #17a2b8; }\\nprogress.info:not([value])::before { background-color: #17a2b8; }\\nprogress.info:not([value])::-webkit-progress-bar { background-color: #17a2b8; }\\nprogress.info::-moz-progress-bar { background-color: #17a2b8; }\\n\\nprogress.light[value]::-webkit-progress-value { background-color: #f8f9fa; }\\nprogress.light:not([value])::before { background-color: #f8f9fa; }\\nprogress.light:not([value])::-webkit-progress-bar { background-color: #f8f9fa; }\\nprogress.light::-moz-progress-bar { background-color: #f8f9fa; }\\n\\nprogress.dark[value]::-webkit-progress-value { background-color: #343a40; }\\nprogress.dark:not([value])::-webkit-progress-bar { background-color: #343a40; }\\nprogress.dark:not([value])::before { background-color: #343a40; }\\nprogress.dark::-moz-progress-bar { background-color: #343a40; }\\n\\nprogress:not([value])::-webkit-progress-bar {\\n border-radius: 3px;\\n background: linear-gradient(-45deg, transparent 33%, rgba(0, 0, 0, 0.2) 33%, rgba(0, 0, 0, 0.2) 66%, transparent 66%) left/2.5em 1.5em;\\n}\\nprogress:not([value])::before {\\n content:\\\" \\\";\\n position:absolute;\\n height: 20px;\\n top:0;\\n left:0;\\n right:0;\\n bottom:0;\\n border-radius: 3px;\\n background: linear-gradient(-45deg, transparent 33%, rgba(0, 0, 0, 0.2) 33%, rgba(0, 0, 0, 0.2) 66%, transparent 66%) left/2.5em 1.5em;\\n}\\n\\n@keyframes stripes {\\n from {background-position: 0%}\\n to {background-position: 100%}\\n}\\n\\n.bk-root .bk.loader {\\n overflow: hidden;\\n}\\n\\n.bk.loader::after {\\n content: \\\"\\\";\\n border-radius: 50%;\\n -webkit-mask-image: radial-gradient(transparent 50%, rgba(0, 0, 0, 1) 54%);\\n width: 100%;\\n height: 100%;\\n left: 0;\\n top: 0;\\n position: absolute;\\n}\\n\\n.bk-root .bk.loader.dark::after {\\n background: #0f0f0f;\\n}\\n\\n.bk-root .bk.loader.light::after {\\n background: #f0f0f0;\\n}\\n\\n.bk-root .bk.loader.spin::after {\\n animation: spin 2s linear infinite;\\n}\\n\\n.bk-root div.bk.loader.spin.primary-light::after {\\n background: linear-gradient(135deg, #f0f0f0 50%, transparent 50%), linear-gradient(45deg, #f0f0f0 50%, #007bff 50%);\\n}\\n\\n.bk-root div.bk.loader.spin.secondary-light::after {\\n background: linear-gradient(135deg, #f0f0f0 50%, transparent 50%), linear-gradient(45deg, #f0f0f0 50%, #6c757d 50%);\\n}\\n\\n.bk-root div.bk.loader.spin.success-light::after {\\n background: linear-gradient(135deg, #f0f0f0 50%, transparent 50%), linear-gradient(45deg, #f0f0f0 50%, #28a745 50%);\\n}\\n\\n.bk-root div.bk.loader.spin.danger-light::after {\\n background: linear-gradient(135deg, #f0f0f0 50%, transparent 50%), linear-gradient(45deg, #f0f0f0 50%, #dc3545 50%);\\n}\\n\\n.bk-root div.bk.loader.spin.warning-light::after {\\n background: linear-gradient(135deg, #f0f0f0 50%, transparent 50%), linear-gradient(45deg, #f0f0f0 50%, #ffc107 50%);\\n}\\n\\n.bk-root div.bk.loader.spin.info-light::after {\\n background: linear-gradient(135deg, #f0f0f0 50%, transparent 50%), linear-gradient(45deg, #f0f0f0 50%, #17a2b8 50%);\\n}\\n\\n.bk-root div.bk.loader.spin.light-light::after {\\n background: linear-gradient(135deg, #f0f0f0 50%, transparent 50%), linear-gradient(45deg, #f0f0f0 50%, #f8f9fa 50%);\\n}\\n\\n.bk-root div.bk.loader.dark-light::after {\\n background: linear-gradient(135deg, #f0f0f0 50%, transparent 50%), linear-gradient(45deg, #f0f0f0 50%, #343a40 50%);\\n}\\n\\n.bk-root div.bk.loader.spin.primary-dark::after {\\n background: linear-gradient(135deg, #0f0f0f 50%, transparent 50%), linear-gradient(45deg, #0f0f0f 50%, #007bff 50%);\\n}\\n\\n.bk-root div.bk.loader.spin.secondary-dark::after {\\n background: linear-gradient(135deg, #0f0f0f 50%, transparent 50%), linear-gradient(45deg, #0f0f0f 50%, #6c757d 50%);\\n}\\n\\n.bk-root div.bk.loader.spin.success-dark::after {\\n background: linear-gradient(135deg, #0f0f0f 50%, transparent 50%), linear-gradient(45deg, #0f0f0f 50%, #28a745 50%);\\n}\\n\\n.bk-root div.bk.loader.spin.danger-dark::after {\\n background: linear-gradient(135deg, #0f0f0f 50%, transparent 50%), linear-gradient(45deg, #0f0f0f 50%, #dc3545 50%)\\n}\\n\\n.bk-root div.bk.loader.spin.warning-dark::after {\\n background: linear-gradient(135deg, #0f0f0f 50%, transparent 50%), linear-gradient(45deg, #0f0f0f 50%, #ffc107 50%);\\n}\\n\\n.bk-root div.bk.loader.spin.info-dark::after {\\n background: linear-gradient(135deg, #0f0f0f 50%, transparent 50%), linear-gradient(45deg, #0f0f0f 50%, #17a2b8 50%);\\n}\\n\\n.bk-root div.bk.loader.spin.light-dark::after {\\n background: linear-gradient(135deg, #0f0f0f 50%, transparent 50%), linear-gradient(45deg, #0f0f0f 50%, #f8f9fa 50%);\\n}\\n\\n.bk-root div.bk.loader.spin.dark-dark::after {\\n background: linear-gradient(135deg, #0f0f0f 50%, transparent 50%), linear-gradient(45deg, #0f0f0f 50%, #343a40 50%);\\n}\\n\\n/* Safari */\\n@-webkit-keyframes spin {\\n 0% { -webkit-transform: rotate(0deg); }\\n 100% { -webkit-transform: rotate(360deg); }\\n}\\n\\n@keyframes spin {\\n 0% { transform: rotate(0deg); }\\n 100% { transform: rotate(360deg); }\\n}\\n\\n.dot div {\\n height: 100%;\\n width: 100%;\\n border: 1px solid #000 !important;\\n background-color: #fff;\\n border-radius: 50%;\\n display: inline-block;\\n}\\n\\n.dot-filled div {\\n height: 100%;\\n width: 100%;\\n border: 1px solid #000 !important;\\n border-radius: 50%;\\n display: inline-block;\\n}\\n\\n.dot-filled.primary div {\\n background-color: #007bff;\\n}\\n\\n.dot-filled.secondary div {\\n background-color: #6c757d;\\n}\\n\\n.dot-filled.success div {\\n background-color: #28a745;\\n}\\n\\n.dot-filled.danger div {\\n background-color: #dc3545;\\n}\\n\\n.dot-filled.warning div {\\n background-color: #ffc107;\\n}\\n\\n.dot-filled.info div {\\n background-color: #17a2b8;\\n}\\n\\n.dot-filled.dark div {\\n background-color: #343a40;\\n}\\n\\n.dot-filled.light div {\\n background-color: #f8f9fa;\\n}\\n\\n/* Slider editor */\\n.slider-edit .bk-input-group .bk-input {\\n border: 0;\\n border-radius: 0;\\n min-height: 0;\\n padding-left: 0;\\n padding-right: 0;\\n font-weight: bold;\\n}\\n\\n.slider-edit .bk-input-group .bk-spin-wrapper {\\n display: contents;\\n}\\n\\n.slider-edit .bk-input-group .bk-spin-wrapper .bk.bk-spin-btn-up {\\n top: -6px;\\n}\\n\\n.slider-edit .bk-input-group .bk-spin-wrapper .bk.bk-spin-btn-down {\\n bottom: 3px;\\n}\\n\\n/* JSON Pane */\\n.bk-root .json-formatter-row .json-formatter-string, .bk-root .json-formatter-row .json-formatter-stringifiable {\\n white-space: pre-wrap;\\n}\\n\\n.ql-bubble .ql-editor {\\n border: 1px solid #ccc;\\n}\\n\");\n", + " }, function(Bokeh) {\n", + " inject_raw_css(\"\\n .bk.pn-loading.arc:before {\\n background-image: url(\\\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHN0eWxlPSJtYXJnaW46IGF1dG87IGJhY2tncm91bmQ6IG5vbmU7IGRpc3BsYXk6IGJsb2NrOyBzaGFwZS1yZW5kZXJpbmc6IGF1dG87IiB2aWV3Qm94PSIwIDAgMTAwIDEwMCIgcHJlc2VydmVBc3BlY3RSYXRpbz0ieE1pZFlNaWQiPiAgPGNpcmNsZSBjeD0iNTAiIGN5PSI1MCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjYzNjM2MzIiBzdHJva2Utd2lkdGg9IjEwIiByPSIzNSIgc3Ryb2tlLWRhc2hhcnJheT0iMTY0LjkzMzYxNDMxMzQ2NDE1IDU2Ljk3Nzg3MTQzNzgyMTM4Ij4gICAgPGFuaW1hdGVUcmFuc2Zvcm0gYXR0cmlidXRlTmFtZT0idHJhbnNmb3JtIiB0eXBlPSJyb3RhdGUiIHJlcGVhdENvdW50PSJpbmRlZmluaXRlIiBkdXI9IjFzIiB2YWx1ZXM9IjAgNTAgNTA7MzYwIDUwIDUwIiBrZXlUaW1lcz0iMDsxIj48L2FuaW1hdGVUcmFuc2Zvcm0+ICA8L2NpcmNsZT48L3N2Zz4=\\\");\\n background-size: auto calc(min(50%, 400px));\\n }\\n \");\n", + " }, function(Bokeh) {\n", + " /* BEGIN bokeh.min.js */\n", + " /*!\n", + " * Copyright (c) 2012 - 2022, Anaconda, Inc., and Bokeh Contributors\n", + " * All rights reserved.\n", + " * \n", + " * Redistribution and use in source and binary forms, with or without modification,\n", + " * are permitted provided that the following conditions are met:\n", + " * \n", + " * Redistributions of source code must retain the above copyright notice,\n", + " * this list of conditions and the following disclaimer.\n", + " * \n", + " * Redistributions in binary form must reproduce the above copyright notice,\n", + " * this list of conditions and the following disclaimer in the documentation\n", + " * and/or other materials provided with the distribution.\n", + " * \n", + " * Neither the name of Anaconda nor the names of any contributors\n", + " * may be used to endorse or promote products derived from this software\n", + " * without specific prior written permission.\n", + " * \n", + " * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\n", + " * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n", + " * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n", + " * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE\n", + " * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n", + " * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n", + " * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n", + " * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\n", + " * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n", + " * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF\n", + " * THE POSSIBILITY OF SUCH DAMAGE.\n", + " */\n", + " (function(root, factory) {\n", + " const bokeh = factory();\n", + " bokeh.__bokeh__ = true;\n", + " if (typeof root.Bokeh === \"undefined\" || typeof root.Bokeh.__bokeh__ === \"undefined\") {\n", + " root.Bokeh = bokeh;\n", + " }\n", + " const Bokeh = root.Bokeh;\n", + " Bokeh[bokeh.version] = bokeh;\n", + " })(this, function() {\n", + " let define;\n", + " const parent_require = typeof require === \"function\" && require\n", + " return (function(modules, entry, aliases, externals) {\n", + " if (aliases === undefined) aliases = {};\n", + " if (externals === undefined) externals = {};\n", + "\n", + " const cache = {};\n", + "\n", + " const normalize = function(name) {\n", + " if (typeof name === \"number\")\n", + " return name;\n", + "\n", + " if (name === \"bokehjs\")\n", + " return entry;\n", + "\n", + " if (!externals[name]) {\n", + " const prefix = \"@bokehjs/\"\n", + " if (name.slice(0, prefix.length) === prefix)\n", + " name = name.slice(prefix.length)\n", + " }\n", + "\n", + " const alias = aliases[name]\n", + " if (alias != null)\n", + " return alias;\n", + "\n", + " const trailing = name.length > 0 && name[name.lenght-1] === \"/\";\n", + " const index = aliases[name + (trailing ? \"\" : \"/\") + \"index\"];\n", + " if (index != null)\n", + " return index;\n", + "\n", + " return name;\n", + " }\n", + "\n", + " const require = function(name) {\n", + " let mod = cache[name];\n", + " if (!mod) {\n", + " const id = normalize(name);\n", + "\n", + " mod = cache[id];\n", + " if (!mod) {\n", + " if (!modules[id]) {\n", + " if (externals[id] === false || (externals[id] == true && parent_require)) {\n", + " try {\n", + " mod = {exports: externals[id] ? parent_require(id) : {}};\n", + " cache[id] = cache[name] = mod;\n", + " return mod.exports;\n", + " } catch (e) {}\n", + " }\n", + "\n", + " const err = new Error(\"Cannot find module '\" + name + \"'\");\n", + " err.code = 'MODULE_NOT_FOUND';\n", + " throw err;\n", + " }\n", + "\n", + " mod = {exports: {}};\n", + " cache[id] = cache[name] = mod;\n", + "\n", + " function __esModule() {\n", + " Object.defineProperty(mod.exports, \"__esModule\", {value: true});\n", + " }\n", + "\n", + " function __esExport(name, value) {\n", + " Object.defineProperty(mod.exports, name, {\n", + " enumerable: true, get: function () { return value; }\n", + " });\n", + " }\n", + "\n", + " modules[id].call(mod.exports, require, mod, mod.exports, __esModule, __esExport);\n", + " } else {\n", + " cache[name] = mod;\n", + " }\n", + " }\n", + "\n", + " return mod.exports;\n", + " }\n", + " require.resolve = function(name) {\n", + " return \"\"\n", + " }\n", + "\n", + " const main = require(entry);\n", + " main.require = require;\n", + "\n", + " if (typeof Proxy !== \"undefined\") {\n", + " // allow Bokeh.loader[\"@bokehjs/module/name\"] syntax\n", + " main.loader = new Proxy({}, {\n", + " get: function(_obj, module) {\n", + " return require(module);\n", + " }\n", + " });\n", + " }\n", + "\n", + " main.register_plugin = function(plugin_modules, plugin_entry, plugin_aliases, plugin_externals) {\n", + " if (plugin_aliases === undefined) plugin_aliases = {};\n", + " if (plugin_externals === undefined) plugin_externals = {};\n", + "\n", + " for (let name in plugin_modules) {\n", + " modules[name] = plugin_modules[name];\n", + " }\n", + "\n", + " for (let name in plugin_aliases) {\n", + " aliases[name] = plugin_aliases[name];\n", + " }\n", + "\n", + " for (let name in plugin_externals) {\n", + " externals[name] = plugin_externals[name];\n", + " }\n", + "\n", + " const plugin = require(plugin_entry);\n", + "\n", + " for (let name in plugin) {\n", + " main[name] = plugin[name];\n", + " }\n", + "\n", + " return plugin;\n", + " }\n", + "\n", + " return main;\n", + " })\n", + " ([\n", + " function _(t,_,n,o,r){o();(0,t(1).__exportStar)(t(2),n)},\n", + " function _(t,e,r,n,o){n();var a=function(t,e){return a=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r])},a(t,e)};r.__extends=function(t,e){if(\"function\"!=typeof e&&null!==e)throw new TypeError(\"Class extends value \"+String(e)+\" is not a constructor or null\");function r(){this.constructor=t}a(t,e),t.prototype=null===e?Object.create(e):(r.prototype=e.prototype,new r)};function i(t){var e=\"function\"==typeof Symbol&&Symbol.iterator,r=e&&t[e],n=0;if(r)return r.call(t);if(t&&\"number\"==typeof t.length)return{next:function(){return t&&n>=t.length&&(t=void 0),{value:t&&t[n++],done:!t}}};throw new TypeError(e?\"Object is not iterable.\":\"Symbol.iterator is not defined.\")}function c(t,e){var r=\"function\"==typeof Symbol&&t[Symbol.iterator];if(!r)return t;var n,o,a=r.call(t),i=[];try{for(;(void 0===e||e-- >0)&&!(n=a.next()).done;)i.push(n.value)}catch(t){o={error:t}}finally{try{n&&!n.done&&(r=a.return)&&r.call(a)}finally{if(o)throw o.error}}return i}function u(t){return this instanceof u?(this.v=t,this):new u(t)}r.__assign=function(){return r.__assign=Object.assign||function(t){for(var e,r=1,n=arguments.length;r=0;c--)(o=t[c])&&(i=(a<3?o(i):a>3?o(e,r,i):o(e,r))||i);return a>3&&i&&Object.defineProperty(e,r,i),i},r.__param=function(t,e){return function(r,n){e(r,n,t)}},r.__metadata=function(t,e){if(\"object\"==typeof Reflect&&\"function\"==typeof Reflect.metadata)return Reflect.metadata(t,e)},r.__awaiter=function(t,e,r,n){return new(r||(r=Promise))((function(o,a){function i(t){try{u(n.next(t))}catch(t){a(t)}}function c(t){try{u(n.throw(t))}catch(t){a(t)}}function u(t){var e;t.done?o(t.value):(e=t.value,e instanceof r?e:new r((function(t){t(e)}))).then(i,c)}u((n=n.apply(t,e||[])).next())}))},r.__generator=function(t,e){var r,n,o,a,i={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]};return a={next:c(0),throw:c(1),return:c(2)},\"function\"==typeof Symbol&&(a[Symbol.iterator]=function(){return this}),a;function c(a){return function(c){return function(a){if(r)throw new TypeError(\"Generator is already executing.\");for(;i;)try{if(r=1,n&&(o=2&a[0]?n.return:a[0]?n.throw||((o=n.return)&&o.call(n),0):n.next)&&!(o=o.call(n,a[1])).done)return o;switch(n=0,o&&(a=[2&a[0],o.value]),a[0]){case 0:case 1:o=a;break;case 4:return i.label++,{value:a[1],done:!1};case 5:i.label++,n=a[1],a=[0];continue;case 7:a=i.ops.pop(),i.trys.pop();continue;default:if(!(o=i.trys,(o=o.length>0&&o[o.length-1])||6!==a[0]&&2!==a[0])){i=0;continue}if(3===a[0]&&(!o||a[1]>o[0]&&a[1]1||c(t,e)}))})}function c(t,e){try{(r=o[t](e)).value instanceof u?Promise.resolve(r.value.v).then(f,l):s(a[0][2],r)}catch(t){s(a[0][3],t)}var r}function f(t){c(\"next\",t)}function l(t){c(\"throw\",t)}function s(t,e){t(e),a.shift(),a.length&&c(a[0][0],a[0][1])}},r.__asyncDelegator=function(t){var e,r;return e={},n(\"next\"),n(\"throw\",(function(t){throw t})),n(\"return\"),e[Symbol.iterator]=function(){return this},e;function n(n,o){e[n]=t[n]?function(e){return(r=!r)?{value:u(t[n](e)),done:\"return\"===n}:o?o(e):e}:o}},r.__asyncValues=function(t){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var e,r=t[Symbol.asyncIterator];return r?r.call(t):(t=i(t),e={},n(\"next\"),n(\"throw\"),n(\"return\"),e[Symbol.asyncIterator]=function(){return this},e);function n(r){e[r]=t[r]&&function(e){return new Promise((function(n,o){(function(t,e,r,n){Promise.resolve(n).then((function(e){t({value:e,done:r})}),e)})(n,o,(e=t[r](e)).done,e.value)}))}}},r.__makeTemplateObject=function(t,e){return Object.defineProperty?Object.defineProperty(t,\"raw\",{value:e}):t.raw=e,t};var f=Object.create?function(t,e){Object.defineProperty(t,\"default\",{enumerable:!0,value:e})}:function(t,e){t.default=e};r.__importStar=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var n in t)\"default\"!==n&&Object.prototype.hasOwnProperty.call(t,n)&&(0,r.__createBinding)(e,t,n);return f(e,t),e},r.__importDefault=function(t){return t&&t.__esModule?t:{default:t}},r.__classPrivateFieldGet=function(t,e,r,n){if(\"a\"===r&&!n)throw new TypeError(\"Private accessor was defined without a getter\");if(\"function\"==typeof e?t!==e||!n:!e.has(t))throw new TypeError(\"Cannot read private member from an object whose class did not declare it\");return\"m\"===r?n:\"a\"===r?n.call(t):n?n.value:e.get(t)},r.__classPrivateFieldSet=function(t,e,r,n,o){if(\"m\"===n)throw new TypeError(\"Private method is not writable\");if(\"a\"===n&&!o)throw new TypeError(\"Private accessor was defined without a setter\");if(\"function\"==typeof e?t!==e||!o:!e.has(t))throw new TypeError(\"Cannot write private member to an object whose class did not declare it\");return\"a\"===n?o.call(t,r):o?o.value=r:e.set(t,r),r}},\n", + " function _(e,t,o,s,l){s();const n=e(1);l(\"version\",e(3).version),l(\"index\",e(4).index),o.embed=(0,n.__importStar)(e(4)),o.protocol=(0,n.__importStar)(e(406)),o._testing=(0,n.__importStar)(e(407));var r=e(19);l(\"logger\",r.logger),l(\"set_log_level\",r.set_log_level),l(\"settings\",e(28).settings),l(\"Models\",e(7).Models),l(\"documents\",e(5).documents),l(\"safely\",e(408).safely)},\n", + " function _(n,i,o,c,e){c(),o.version=\"2.4.3\"},\n", + " function _(e,o,t,n,s){n();const d=e(5),r=e(19),_=e(34),c=e(13),i=e(8),a=e(16),u=e(397),l=e(399),m=e(398);var f=e(397);s(\"add_document_standalone\",f.add_document_standalone),s(\"index\",f.index),s(\"add_document_from_session\",e(399).add_document_from_session);var g=e(404);async function w(e,o,t,n){(0,i.isString)(e)&&(e=JSON.parse((0,_.unescape)(e)));const s={};for(const[o,t]of(0,c.entries)(e))s[o]=d.Document.from_json(t);const a=[];for(const e of o){const o=(0,m._resolve_element)(e),d=(0,m._resolve_root_elements)(e);if(null!=e.docid)a.push(await(0,u.add_document_standalone)(s[e.docid],o,d,e.use_for_title));else{if(null==e.token)throw new Error(\"Error rendering Bokeh items: either 'docid' or 'token' was expected.\");{const s=(0,l._get_ws_url)(t,n);r.logger.debug(`embed: computed ws url: ${s}`);try{a.push(await(0,l.add_document_from_session)(s,e.token,o,d,e.use_for_title)),console.log(\"Bokeh items were rendered successfully\")}catch(e){console.log(\"Error rendering Bokeh items:\",e)}}}}return a}s(\"embed_items_notebook\",g.embed_items_notebook),s(\"kernels\",g.kernels),s(\"BOKEH_ROOT\",e(398).BOKEH_ROOT),t.embed_item=async function(e,o){const t={},n=(0,_.uuid4)();t[n]=e.doc,null==o&&(o=e.target_id);const s=document.getElementById(o);null!=s&&s.classList.add(m.BOKEH_ROOT);const d={roots:{[e.root_id]:o},root_ids:[e.root_id],docid:n};await(0,a.defer)();const[r]=await w(t,[d]);return r},t.embed_items=async function(e,o,t,n){return await(0,a.defer)(),w(e,o,t,n)}},\n", + " function _(t,_,o,r,n){r();const a=t(1);(0,a.__exportStar)(t(6),o),(0,a.__exportStar)(t(35),o)},\n", + " function _(e,t,s,o,n){o();const i=e(1),r=e(7),l=e(3),_=e(19),a=e(251),c=e(14),d=e(30),h=e(15),f=e(17),u=e(31),m=e(29),g=e(9),v=e(13),p=(0,i.__importStar)(e(77)),w=e(26),b=e(8),y=e(309),k=e(75),M=e(53),j=e(396),z=e(35);class S{constructor(e){this.document=e,this.session=null,this.subscribed_models=new Set}send_event(e){const t=new z.MessageSentEvent(this.document,\"bokeh_event\",e.to_json());this.document._trigger_on_change(t)}trigger(e){for(const t of this.subscribed_models)null!=e.origin&&e.origin!=t||t._process_event(e)}}s.EventManager=S,S.__name__=\"EventManager\",s.documents=[],s.DEFAULT_TITLE=\"Bokeh Application\";class E{constructor(e){var t;s.documents.push(this),this._init_timestamp=Date.now(),this._resolver=null!==(t=null==e?void 0:e.resolver)&&void 0!==t?t:new r.ModelResolver,this._title=s.DEFAULT_TITLE,this._roots=[],this._all_models=new Map,this._all_models_freeze_count=0,this._callbacks=new Map,this._message_callbacks=new Map,this.event_manager=new S(this),this.idle=new h.Signal0(this,\"idle\"),this._idle_roots=new WeakMap,this._interactive_timestamp=null,this._interactive_plot=null}get layoutables(){return this._roots.filter((e=>e instanceof y.LayoutDOM))}get is_idle(){for(const e of this.layoutables)if(!this._idle_roots.has(e))return!1;return!0}notify_idle(e){this._idle_roots.set(e,!0),this.is_idle&&(_.logger.info(`document idle at ${Date.now()-this._init_timestamp} ms`),this.event_manager.send_event(new a.DocumentReady),this.idle.emit())}clear(){this._push_all_models_freeze();try{for(;this._roots.length>0;)this.remove_root(this._roots[0])}finally{this._pop_all_models_freeze()}}interactive_start(e,t=null){null==this._interactive_plot&&(this._interactive_plot=e,this._interactive_plot.trigger_event(new a.LODStart)),this._interactive_finalize=t,this._interactive_timestamp=Date.now()}interactive_stop(){null!=this._interactive_plot&&(this._interactive_plot.trigger_event(new a.LODEnd),null!=this._interactive_finalize&&this._interactive_finalize()),this._interactive_plot=null,this._interactive_timestamp=null,this._interactive_finalize=null}interactive_duration(){return null==this._interactive_timestamp?-1:Date.now()-this._interactive_timestamp}destructively_move(e){if(e===this)throw new Error(\"Attempted to overwrite a document with itself\");e.clear();const t=(0,g.copy)(this._roots);this.clear();for(const e of t)if(null!=e.document)throw new Error(`Somehow we didn't detach ${e}`);if(0!=this._all_models.size)throw new Error(`this._all_models still had stuff in it: ${this._all_models}`);for(const s of t)e.add_root(s);e.set_title(this._title)}_push_all_models_freeze(){this._all_models_freeze_count+=1}_pop_all_models_freeze(){this._all_models_freeze_count-=1,0===this._all_models_freeze_count&&this._recompute_all_models()}_invalidate_all_models(){_.logger.debug(\"invalidating document models\"),0===this._all_models_freeze_count&&this._recompute_all_models()}_recompute_all_models(){let e=new Set;for(const t of this._roots)e=p.union(e,t.references());const t=new Set(this._all_models.values()),s=p.difference(t,e),o=p.difference(e,t),n=new Map;for(const t of e)n.set(t.id,t);for(const e of s)e.detach_document();for(const e of o)e.attach_document(this);this._all_models=n}roots(){return this._roots}add_root(e,t){if(_.logger.debug(`Adding root: ${e}`),!(0,g.includes)(this._roots,e)){this._push_all_models_freeze();try{this._roots.push(e)}finally{this._pop_all_models_freeze()}this._trigger_on_change(new z.RootAddedEvent(this,e,t))}}remove_root(e,t){const s=this._roots.indexOf(e);if(!(s<0)){this._push_all_models_freeze();try{this._roots.splice(s,1)}finally{this._pop_all_models_freeze()}this._trigger_on_change(new z.RootRemovedEvent(this,e,t))}}title(){return this._title}set_title(e,t){e!==this._title&&(this._title=e,this._trigger_on_change(new z.TitleChangedEvent(this,e,t)))}get_model_by_id(e){var t;return null!==(t=this._all_models.get(e))&&void 0!==t?t:null}get_model_by_name(e){const t=[];for(const s of this._all_models.values())s instanceof M.Model&&s.name==e&&t.push(s);switch(t.length){case 0:return null;case 1:return t[0];default:throw new Error(`Multiple models are named '${e}'`)}}on_message(e,t){const s=this._message_callbacks.get(e);null==s?this._message_callbacks.set(e,new Set([t])):s.add(t)}remove_on_message(e,t){var s;null===(s=this._message_callbacks.get(e))||void 0===s||s.delete(t)}_trigger_on_message(e,t){const s=this._message_callbacks.get(e);if(null!=s)for(const e of s)e(t)}on_change(e,t=!1){this._callbacks.has(e)||this._callbacks.set(e,t)}remove_on_change(e){this._callbacks.delete(e)}_trigger_on_change(e){for(const[t,s]of this._callbacks)if(!s&&e instanceof z.DocumentEventBatch)for(const s of e.events)t(s);else t(e)}_notify_change(e,t,s,o,n){this._trigger_on_change(new z.ModelChangedEvent(this,e,t,s,o,null==n?void 0:n.setter_id,null==n?void 0:n.hint))}static _instantiate_object(e,t,s,o){const n=Object.assign(Object.assign({},s),{id:e,__deferred__:!0});return new(o.get(t))(n)}static _instantiate_references_json(e,t,s){var o;const n=new Map;for(const i of e){const e=i.id,r=i.type,l=null!==(o=i.attributes)&&void 0!==o?o:{};let _=t.get(e);null==_&&(_=E._instantiate_object(e,r,l,s),null!=i.subtype&&_.set_subtype(i.subtype)),n.set(_.id,_)}return n}static _resolve_refs(e,t,s,o){function n(e){var i;if((0,f.is_ref)(e)){const o=null!==(i=t.get(e.id))&&void 0!==i?i:s.get(e.id);if(null!=o)return o;throw new Error(`reference ${JSON.stringify(e)} isn't known (not in Document?)`)}if((0,u.is_NDArray_ref)(e)){const{buffer:t,dtype:s,shape:n}=(0,u.decode_NDArray)(e,o);return(0,m.ndarray)(t,{dtype:s,shape:n})}return(0,b.isArray)(e)?function(e){const t=[];for(const s of e)t.push(n(s));return t}(e):(0,b.isPlainObject)(e)?function(e){const t={};for(const[s,o]of(0,v.entries)(e))t[s]=n(o);return t}(e):e}return n(e)}static _initialize_references_json(e,t,s,o){const n=new Map;for(const{id:i,attributes:r}of e){const e=!t.has(i),l=e?s.get(i):t.get(i),_=E._resolve_refs(r,t,s,o);l.setv(_,{silent:!0}),n.set(i,{instance:l,is_new:e})}const i=[],r=new Set;function l(e){if(e instanceof c.HasProps){if(n.has(e.id)&&!r.has(e.id)){r.add(e.id);const{instance:t,is_new:s}=n.get(e.id),{attributes:o}=t;for(const e of(0,v.values)(o))l(e);s&&(t.finalize(),i.push(t))}}else if((0,b.isArray)(e))for(const t of e)l(t);else if((0,b.isPlainObject)(e))for(const t of(0,v.values)(e))l(t)}for(const e of n.values())l(e.instance);for(const e of i)e.connect_signals()}static _event_for_attribute_change(e,t,s,o,n){if(o.get_model_by_id(e.id).property(t).syncable){const i={kind:\"ModelChanged\",model:{id:e.id},attr:t,new:s};return c.HasProps._json_record_references(o,s,n,{recursive:!0}),i}return null}static _events_to_sync_objects(e,t,s,o){const n=Object.keys(e.attributes),i=Object.keys(t.attributes),r=(0,g.difference)(n,i),l=(0,g.difference)(i,n),a=(0,g.intersection)(n,i),c=[];for(const e of r)_.logger.warn(`Server sent key ${e} but we don't seem to have it in our JSON`);for(const n of l){const i=t.attributes[n];c.push(E._event_for_attribute_change(e,n,i,s,o))}for(const n of a){const i=e.attributes[n],r=t.attributes[n];null==i&&null==r||(null==i||null==r?c.push(E._event_for_attribute_change(e,n,r,s,o)):\"data\"==n||(0,w.is_equal)(i,r)||c.push(E._event_for_attribute_change(e,n,r,s,o)))}return c.filter((e=>null!=e))}static _compute_patch_since_json(e,t){const s=t.to_json(!1);function o(e){const t=new Map;for(const s of e.roots.references)t.set(s.id,s);return t}const n=o(e),i=new Map,r=[];for(const t of e.roots.root_ids)i.set(t,n.get(t)),r.push(t);const l=o(s),_=new Map,a=[];for(const e of s.roots.root_ids)_.set(e,l.get(e)),a.push(e);if(r.sort(),a.sort(),(0,g.difference)(r,a).length>0||(0,g.difference)(a,r).length>0)throw new Error(\"Not implemented: computing add/remove of document roots\");const c=new Set;let h=[];for(const e of t._all_models.keys())if(n.has(e)){const s=E._events_to_sync_objects(n.get(e),l.get(e),t,c);h=h.concat(s)}const f=new d.Serializer({include_defaults:!1});return f.to_serializable([...c]),{references:[...f.definitions],events:h}}to_json_string(e=!0){return JSON.stringify(this.to_json(e))}to_json(e=!0){const t=new d.Serializer({include_defaults:e}),s=t.to_serializable(this._roots);return{version:l.version,title:this._title,roots:{root_ids:s.map((e=>e.id)),references:[...t.definitions]}}}static from_json_string(e){const t=JSON.parse(e);return E.from_json(t)}static from_json(e){_.logger.debug(\"Creating Document from JSON\");const t=e.version,s=-1!==t.indexOf(\"+\")||-1!==t.indexOf(\"-\"),o=`Library versions: JS (${l.version}) / Python (${t})`;s||l.version.replace(/-(dev|rc)\\./,\"$1\")==t?_.logger.debug(o):(_.logger.warn(\"JS/Python version mismatch\"),_.logger.warn(o));const n=new r.ModelResolver;null!=e.defs&&(0,j.resolve_defs)(e.defs,n);const i=e.roots,a=i.root_ids,c=i.references,d=E._instantiate_references_json(c,new Map,n);E._initialize_references_json(c,new Map,d,new Map);const h=new E({resolver:n});h._push_all_models_freeze();for(const e of a){const t=d.get(e);null!=t&&h.add_root(t)}return h._pop_all_models_freeze(),h.set_title(e.title),h}replace_with_json(e){E.from_json(e).destructively_move(this)}create_json_patch_string(e){return JSON.stringify(this.create_json_patch(e))}create_json_patch(e){for(const t of e)if(t.document!=this)throw new Error(\"Cannot create a patch using events from a different document\");const t=new d.Serializer,s=t.to_serializable(e);for(const e of this._all_models.values())t.remove_def(e);return{events:s,references:[...t.definitions]}}apply_json_patch(e,t=new Map,s){const o=e.references,n=e.events,i=E._instantiate_references_json(o,this._all_models,this._resolver);t instanceof Map||(t=new Map(t));for(const e of n)switch(e.kind){case\"RootAdded\":case\"RootRemoved\":case\"ModelChanged\":{const t=e.model.id,s=this._all_models.get(t);if(null!=s)i.set(t,s);else if(!i.has(t))throw _.logger.warn(`Got an event for unknown model ${e.model}\"`),new Error(\"event model wasn't known\");break}}const r=new Map(this._all_models),l=new Map;for(const[e,t]of i)r.has(e)||l.set(e,t);E._initialize_references_json(o,r,l,t);for(const e of n)switch(e.kind){case\"MessageSent\":{const{msg_type:s,msg_data:o}=e;let n;if(void 0===o){if(1!=t.size)throw new Error(\"expected exactly one buffer\");{const[[,e]]=t;n=e}}else n=E._resolve_refs(o,r,l,t);this._trigger_on_message(s,n);break}case\"ModelChanged\":{const o=e.model.id,n=this._all_models.get(o);if(null==n)throw new Error(`Cannot apply patch to ${o} which is not in the document`);const i=e.attr,_=E._resolve_refs(e.new,r,l,t);n.setv({[i]:_},{setter_id:s});break}case\"ColumnDataChanged\":{const o=e.column_source.id,n=this._all_models.get(o);if(null==n)throw new Error(`Cannot stream to ${o} which is not in the document`);const i=E._resolve_refs(e.new,new Map,new Map,t);if(null!=e.cols)for(const e in n.data)e in i||(i[e]=n.data[e]);n.setv({data:i},{setter_id:s,check_eq:!1});break}case\"ColumnsStreamed\":{const t=e.column_source.id,o=this._all_models.get(t);if(null==o)throw new Error(`Cannot stream to ${t} which is not in the document`);if(!(o instanceof k.ColumnDataSource))throw new Error(\"Cannot stream to non-ColumnDataSource\");const n=e.data,i=e.rollover;o.stream(n,i,s);break}case\"ColumnsPatched\":{const t=e.column_source.id,o=this._all_models.get(t);if(null==o)throw new Error(`Cannot patch ${t} which is not in the document`);if(!(o instanceof k.ColumnDataSource))throw new Error(\"Cannot patch non-ColumnDataSource\");const n=e.patches;o.patch(n,s);break}case\"RootAdded\":{const t=e.model.id,o=i.get(t);this.add_root(o,s);break}case\"RootRemoved\":{const t=e.model.id,o=i.get(t);this.remove_root(o,s);break}case\"TitleChanged\":this.set_title(e.title,s);break;default:throw new Error(`Unknown patch event ${JSON.stringify(e)}`)}}}s.Document=E,E.__name__=\"Document\"},\n", + " function _(e,o,s,r,t){r();const l=e(1),i=e(8),d=e(13),n=e(14);s.overrides={};const a=new Map;s.Models=e=>{const o=s.Models.get(e);if(null!=o)return o;throw new Error(`Model '${e}' does not exist. This could be due to a widget or a custom model not being registered before first usage.`)},s.Models.get=e=>{var o;return null!==(o=s.overrides[e])&&void 0!==o?o:a.get(e)},s.Models.register=(e,o)=>{s.overrides[e]=o},s.Models.unregister=e=>{delete s.overrides[e]},s.Models.register_models=(e,o=!1,s)=>{var r;if(null!=e)for(const t of(0,i.isArray)(e)?e:(0,d.values)(e))if(r=t,(0,i.isObject)(r)&&r.prototype instanceof n.HasProps){const e=t.__qualified__;o||!a.has(e)?a.set(e,t):null!=s?s(e):console.warn(`Model '${e}' was already registered`)}},s.register_models=s.Models.register_models,s.Models.registered_names=()=>[...a.keys()];class _{constructor(){this._known_models=new Map}get(e,o){var r;const t=null!==(r=s.Models.get(e))&&void 0!==r?r:this._known_models.get(e);if(null!=t)return t;if(void 0!==o)return o;throw new Error(`Model '${e}' does not exist. This could be due to a widget or a custom model not being registered before first usage.`)}register(e){const o=e.__qualified__;null==this.get(o,null)?this._known_models.set(o,e):console.warn(`Model '${o}' was already registered with this resolver`)}}s.ModelResolver=_,_.__name__=\"ModelResolver\";const g=(0,l.__importStar)(e(38));(0,s.register_models)(g);const u=(0,l.__importStar)(e(392));(0,s.register_models)(u)},\n", + " function _(n,t,r,e,i){e();\n", + " // (c) 2009-2015 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors\n", + " // Underscore may be freely distributed under the MIT license.\n", + " const o=n(9),u=Object.prototype.toString;function c(n){return!0===n||!1===n||\"[object Boolean]\"===u.call(n)}function f(n){return\"[object Number]\"===u.call(n)}function l(n){return\"[object String]\"===u.call(n)}function s(n){return\"symbol\"==typeof n}function a(n){const t=typeof n;return\"function\"===t||\"object\"===t&&!!n}function b(n){return a(n)&&void 0!==n[Symbol.iterator]}r.isBoolean=c,r.isNumber=f,r.isInteger=function(n){return f(n)&&Number.isInteger(n)},r.isString=l,r.isSymbol=s,r.isPrimitive=function(n){return null===n||c(n)||f(n)||l(n)||s(n)},r.isFunction=function(n){return\"[object Function]\"===u.call(n)},r.isArray=function(n){return Array.isArray(n)},r.isArrayOf=function(n,t){return(0,o.every)(n,t)},r.isArrayableOf=function(n,t){for(let r=0,e=n.length;r0,\"'step' must be a positive number\"),null==t&&(t=n,n=0);const{max:r,ceil:o,abs:i}=Math,c=n<=t?e:-e,f=r(o(i(t-n)/e),0),s=new Array(f);for(let t=0;t=0?t:n.length+t]},e.zip=function(...n){if(0==n.length)return[];const t=(0,c.min)(n.map((n=>n.length))),e=n.length,r=new Array(t);for(let o=0;on.length))),r=Array(e);for(let n=0;nn[t]))},e.argmax=function(n){return(0,c.max_by)(m(n.length),(t=>n[t]))},e.sort_by=function(n,t){const e=n.map(((n,e)=>({value:n,index:e,key:t(n)})));return e.sort(((n,t)=>{const e=n.key,r=t.key;if(e!==r){if(e>r||void 0===e)return 1;if(en.value))},e.uniq=function(n){const t=new Set;for(const e of n)t.add(e);return[...t]},e.uniq_by=function(n,t){const e=[],r=[];for(const o of n){const n=t(o);l(r,n)||(r.push(n),e.push(o))}return e},e.union=function(...n){const t=new Set;for(const e of n)for(const n of e)t.add(n);return[...t]},e.intersection=function(n,...t){const e=[];n:for(const r of n)if(!l(e,r)){for(const n of t)if(!l(n,r))continue n;e.push(r)}return e},e.difference=function(n,...t){const e=a(t);return n.filter((n=>!l(e,n)))},e.remove_at=function(n,t){const e=s(n);return e.splice(t,1),e},e.remove_by=function(n,t){for(let e=0;e2*a;)n-=2*a;return n}function c(n,t){return u(n-t)}function f(){return Math.random()}function i(n){switch(n){case\"deg\":return a/180;case\"rad\":return 1;case\"grad\":return a/200;case\"turn\":return 2*a}}r.angle_norm=u,r.angle_dist=c,r.angle_between=function(n,t,r,e=!1){const o=c(t,r);if(0==o)return!1;if(o==2*a)return!0;const f=u(n),i=c(t,f)<=o&&c(f,r)<=o;return e?!i:i},r.random=f,r.randomIn=function(n,t){return null==t&&(t=n,n=0),n+Math.floor(Math.random()*(t-n+1))},r.atan2=function(n,t){return Math.atan2(t[1]-n[1],t[0]-n[0])},r.radians=function(n){return n*(a/180)},r.degrees=function(n){return n/(a/180)},r.resolve_angle=function(n,t){return-i(t)*n},r.to_radians_coeff=i,r.rnorm=function(n,t){let r,e;for(;r=f(),e=f(),e=(2*e-1)*Math.sqrt(1/Math.E*2),!(-4*r*r*Math.log(r)>=e*e););let o=e/r;return o=n+t*o,o},r.clamp=function(n,t,r){return nr?r:n},r.log=function(n,t=Math.E){return Math.log(n)/Math.log(t)},r.float32_epsilon=1.1920928955078125e-7},\n", + " function _(r,n,e,o,s){o();class t extends Error{}e.AssertionError=t,t.__name__=\"AssertionError\",e.assert=function(r,n){if(!(!0===r||!1!==r&&r()))throw new t(null!=n?n:\"Assertion failed\")},e.unreachable=function(){throw new Error(\"unreachable code\")}},\n", + " function _(n,t,e,r,o){r();const i=n(10);function l(n,t,e,...r){const o=n.length;t<0&&(t+=o),t<0?t=0:t>o&&(t=o),null==e||e>o-t?e=o-t:e<0&&(e=0);const i=o-e+r.length,l=new n.constructor(i);let u=0;for(;u0?0:r-1;for(;o>=0&&ot[t.length-1])return t.length;let e=0,r=t.length-1;for(;r-e!=1;){const o=e+Math.floor((r-e)/2);n>=t[o]?e=o:r=o}return e}e.is_empty=function(n){return 0==n.length},e.copy=function(n){return Array.isArray(n)?n.slice():new n.constructor(n)},e.splice=l,e.head=u,e.insert=function(n,t,e){return l(n,e,0,t)},e.append=function(n,t){return l(n,n.length,0,t)},e.prepend=function(n,t){return l(n,0,0,t)},e.indexOf=function(n,t){for(let e=0,r=n.length;ee&&(e=t);return e},e.minmax=function(n){let t,e=1/0,r=-1/0;for(let o=0,i=n.length;or&&(r=t));return[e,r]},e.minmax2=function(n,t){let e,r,o=1/0,i=-1/0,l=1/0,u=-1/0;const c=Math.min(n.length,t.length);for(let f=0;fi&&(i=e),ru&&(u=r));return[o,i,l,u]},e.min_by=function(n,t){if(0==n.length)throw new Error(\"min_by() called with an empty array\");let e=n[0],r=t(e);for(let o=1,i=n.length;or&&(e=i,r=l)}return e},e.sum=function(n){let t=0;for(let e=0,r=n.length;et[r]=n+e),0),t},e.every=function(n,t){for(let e=0,r=n.length;e(n-t)/r))}},\n", + " function _(t,e,n,c,o){c();const s=t(9),{hasOwnProperty:r}=Object.prototype;function i(t){return Object.keys(t).length}function u(t){return 0==i(t)}n.keys=Object.keys,n.values=Object.values,n.entries=Object.entries,n.extend=Object.assign,n.clone=function(t){return Object.assign({},t)},n.merge=function(t,e){const n=Object.create(Object.prototype),c=(0,s.concat)([Object.keys(t),Object.keys(e)]);for(const o of c){const c=r.call(t,o)?t[o]:[],i=r.call(e,o)?e[o]:[];n[o]=(0,s.union)(c,i)}return n},n.size=i,n.is_empty=u,n.isEmpty=u,n.to_object=function(t){const e={};for(const[n,c]of t)e[n]=c;return e}},\n", + " function _(e,t,s,n,r){n();const i=e(1);var o;const c=e(15),a=e(17),_=(0,i.__importStar)(e(18)),h=(0,i.__importStar)(e(21)),u=e(34),l=e(13),f=e(8),p=e(26),d=e(30),g=e(35),y=e(26),v=e(36),m=e(37),b=(0,i.__importStar)(e(21));class w extends((0,c.Signalable)()){constructor(e={}){var t,s;super(),this._subtype=void 0,this.document=null,this.destroyed=new c.Signal0(this,\"destroyed\"),this.change=new c.Signal0(this,\"change\"),this.transformchange=new c.Signal0(this,\"transformchange\"),this.exprchange=new c.Signal0(this,\"exprchange\"),this.properties={},this._watchers=new WeakMap,this._pending=!1,this._changing=!1;const n=e instanceof Map?e.get.bind(e):t=>e[t];this.id=null!==(t=n(\"id\"))&&void 0!==t?t:(0,u.uniqueId)();for(const[e,{type:t,default_value:s,options:r}]of(0,l.entries)(this._props)){let i;t instanceof _.PropertyAlias?Object.defineProperty(this.properties,e,{get:()=>this.properties[t.attr],configurable:!1,enumerable:!1}):(i=t instanceof h.Kind?new _.PrimitiveProperty(this,e,t,s,n(e),r):new t(this,e,h.Any,s,n(e),r),this.properties[e]=i)}null!==(s=n(\"__deferred__\"))&&void 0!==s&&s||(this.finalize(),this.connect_signals())}get is_syncable(){return!0}set type(e){console.warn(\"prototype.type = 'ModelName' is deprecated, use static __name__ instead\"),this.constructor.__name__=e}get type(){return this.constructor.__qualified__}static get __qualified__(){const{__module__:e,__name__:t}=this;return null!=e?`${e}.${t}`:t}static get[Symbol.toStringTag](){return this.__name__}static _fix_default(e,t){if(void 0===e||(0,f.isFunction)(e))return e;if((0,f.isPrimitive)(e))return()=>e;{const t=new m.Cloner;return()=>t.clone(e)}}static define(e){for(const[t,s]of(0,l.entries)((0,f.isFunction)(e)?e(b):e)){if(null!=this.prototype._props[t])throw new Error(`attempted to redefine property '${this.prototype.type}.${t}'`);if(null!=this.prototype[t])throw new Error(`attempted to redefine attribute '${this.prototype.type}.${t}'`);Object.defineProperty(this.prototype,t,{get(){return this.properties[t].get_value()},set(e){return this.setv({[t]:e}),this},configurable:!1,enumerable:!0});const[e,n,r={}]=s,i={type:e,default_value:this._fix_default(n,t),options:r},o=Object.assign({},this.prototype._props);o[t]=i,this.prototype._props=o}}static internal(e){const t={};for(const[s,n]of(0,l.entries)((0,f.isFunction)(e)?e(b):e)){const[e,r,i={}]=n;t[s]=[e,r,Object.assign(Object.assign({},i),{internal:!0})]}this.define(t)}static mixins(e){function t(e,t){const s={};for(const[n,r]of(0,l.entries)(t))s[e+n]=r;return s}const s={},n=[];for(const r of(0,f.isArray)(e)?e:[e])if((0,f.isArray)(r)){const[e,i]=r;(0,l.extend)(s,t(e,i)),n.push([e,i])}else{const e=r;(0,l.extend)(s,e),n.push([\"\",e])}this.define(s),this.prototype._mixins=[...this.prototype._mixins,...n]}static override(e){for(const[t,s]of(0,l.entries)(e)){const e=this._fix_default(s,t),n=this.prototype._props[t];if(null==n)throw new Error(`attempted to override nonexistent '${this.prototype.type}.${t}'`);const r=Object.assign({},this.prototype._props);r[t]=Object.assign(Object.assign({},n),{default_value:e}),this.prototype._props=r}}toString(){return`${this.type}(${this.id})`}property(e){const t=this.properties[e];if(null!=t)return t;throw new Error(`unknown property ${this.type}.${e}`)}get attributes(){const e={};for(const t of this)e[t.attr]=t.get_value();return e}[m.clone](e){const t=new Map;for(const s of this)s.dirty&&t.set(s.attr,e.clone(s.get_value()));return new this.constructor(t)}[y.equals](e,t){for(const s of this){const n=e.property(s.attr);if(!t.eq(s.get_value(),n.get_value()))return!1}return!0}[v.pretty](e){const t=e.token,s=[];for(const n of this)if(n.dirty){const r=n.get_value();s.push(`${n.attr}${t(\":\")} ${e.to_string(r)}`)}return`${this.constructor.__qualified__}${t(\"(\")}${t(\"{\")}${s.join(`${t(\",\")} `)}${t(\"}\")}${t(\")\")}`}[d.serialize](e){const t=this.ref();e.add_ref(this,t);const s=this.struct();for(const t of this)t.syncable&&(e.include_defaults||t.dirty)&&(s.attributes[t.attr]=e.to_serializable(t.get_value()));return e.add_def(this,s),t}finalize(){for(const e of this){if(!(e instanceof _.VectorSpec||e instanceof _.ScalarSpec))continue;const t=e.get_value();if(null!=t){const{transform:e,expr:s}=t;null!=e&&this.connect(e.change,(()=>this.transformchange.emit())),null!=s&&this.connect(s.change,(()=>this.exprchange.emit()))}}this.initialize()}initialize(){}connect_signals(){}disconnect_signals(){c.Signal.disconnectReceiver(this)}destroy(){this.disconnect_signals(),this.destroyed.emit()}clone(){return(new m.Cloner).clone(this)}changed_for(e){const t=this._watchers.get(e);return this._watchers.set(e,!1),null==t||t}_setv(e,t){const s=t.check_eq,n=[],r=this._changing;this._changing=!0;for(const[t,r]of e)!1!==s&&(0,p.is_equal)(t.get_value(),r)||(t.set_value(r),n.push(t));n.length>0&&(this._watchers=new WeakMap,this._pending=!0);for(const e of n)e.change.emit();if(!r){if(!t.no_change)for(;this._pending;)this._pending=!1,this.change.emit();this._pending=!1,this._changing=!1}}setv(e,t={}){const s=(0,l.entries)(e);if(0==s.length)return;if(!0===t.silent){this._watchers=new WeakMap;for(const[e,t]of s)this.properties[e].set_value(t);return}const n=new Map,r=new Map;for(const[e,t]of s){const s=this.properties[e];n.set(s,t),r.set(s,s.get_value())}this._setv(n,t);const{document:i}=this;if(null!=i){const e=[];for(const[t,s]of r)e.push([t,s,t.get_value()]);for(const[,t,s]of e)if(this._needs_invalidate(t,s)){i._invalidate_all_models();break}this._push_changes(e,t)}}getv(e){return this.property(e).get_value()}ref(){return{id:this.id}}struct(){const e={type:this.type,id:this.id,attributes:{}};return null!=this._subtype&&(e.subtype=this._subtype),e}set_subtype(e){this._subtype=e}*[Symbol.iterator](){yield*(0,l.values)(this.properties)}*syncable_properties(){for(const e of this)e.syncable&&(yield e)}serializable_attributes(){const e={};for(const t of this.syncable_properties())e[t.attr]=t.get_value();return e}static _json_record_references(e,t,s,n){const{recursive:r}=n;if((0,a.is_ref)(t)){const n=e.get_model_by_id(t.id);null==n||s.has(n)||w._value_record_references(n,s,{recursive:r})}else if((0,f.isArray)(t))for(const n of t)w._json_record_references(e,n,s,{recursive:r});else if((0,f.isPlainObject)(t))for(const n of(0,l.values)(t))w._json_record_references(e,n,s,{recursive:r})}static _value_record_references(e,t,s){const{recursive:n}=s;if(e instanceof w){if(!t.has(e)&&(t.add(e),n))for(const s of e.syncable_properties()){const e=s.get_value();w._value_record_references(e,t,{recursive:n})}}else if((0,f.isArray)(e))for(const s of e)w._value_record_references(s,t,{recursive:n});else if((0,f.isPlainObject)(e))for(const s of(0,l.values)(e))w._value_record_references(s,t,{recursive:n})}references(){const e=new Set;return w._value_record_references(this,e,{recursive:!0}),e}_doc_attached(){}_doc_detached(){}attach_document(e){if(null!=this.document&&this.document!=e)throw new Error(\"models must be owned by only a single document\");this.document=e,this._doc_attached()}detach_document(){this._doc_detached(),this.document=null}_needs_invalidate(e,t){const s=new Set;w._value_record_references(t,s,{recursive:!1});const n=new Set;w._value_record_references(e,n,{recursive:!1});for(const e of s)if(!n.has(e))return!0;for(const e of n)if(!s.has(e))return!0;return!1}_push_changes(e,t={}){if(!this.is_syncable)return;const{document:s}=this;if(null==s)return;const{setter_id:n}=t,r=[];for(const[t,i,o]of e)t.syncable&&r.push(new g.ModelChangedEvent(s,this,t.attr,i,o,n));if(0!=r.length){let e;1==r.length?[e]=r:e=new g.DocumentEventBatch(s,r,n),s._trigger_on_change(e)}}on_change(e,t){for(const s of(0,f.isArray)(e)?e:[e])this.connect(s.change,t)}}s.HasProps=w,(o=w).prototype._props={},o.prototype._mixins=[]},\n", + " function _(n,t,e,l,s){l();const i=n(16),o=n(9);class c{constructor(n,t){this.sender=n,this.name=t}connect(n,t=null){u.has(this.sender)||u.set(this.sender,[]);const e=u.get(this.sender);if(null!=g(e,this,n,t))return!1;const l=null!=t?t:n;a.has(l)||a.set(l,[]);const s=a.get(l),i={signal:this,slot:n,context:t};return e.push(i),s.push(i),!0}disconnect(n,t=null){const e=u.get(this.sender);if(null==e||0===e.length)return!1;const l=g(e,this,n,t);if(null==l)return!1;const s=null!=t?t:n,i=a.get(s);return l.signal=null,d(e),d(i),!0}emit(n){var t;const e=null!==(t=u.get(this.sender))&&void 0!==t?t:[];for(const{signal:t,slot:l,context:s}of e)t===this&&l.call(s,n,this.sender)}}e.Signal=c,c.__name__=\"Signal\";class r extends c{emit(){super.emit(void 0)}}e.Signal0=r,r.__name__=\"Signal0\",function(n){function t(n,t){const e=u.get(n);if(null==e||0===e.length)return;const l=a.get(t);if(null!=l&&0!==l.length){for(const t of l){if(null==t.signal)return;t.signal.sender===n&&(t.signal=null)}d(e),d(l)}}function e(n){var t;const e=u.get(n);if(null!=e&&0!==e.length){for(const n of e){if(null==n.signal)return;const e=null!==(t=n.context)&&void 0!==t?t:n.slot;n.signal=null,d(a.get(e))}d(e)}}function l(n,t,e){const l=a.get(n);if(null!=l&&0!==l.length){for(const n of l){if(null==n.signal)return;if(null!=t&&n.slot!=t)continue;const l=n.signal.sender;null!=e&&e.has(l)||(n.signal=null,d(u.get(l)))}d(l)}}function s(n){const t=u.get(n);if(null!=t&&0!==t.length){for(const n of t)n.signal=null;d(t)}const e=a.get(n);if(null!=e&&0!==e.length){for(const n of e)n.signal=null;d(e)}}n.disconnect_between=t,n.disconnect_sender=e,n.disconnect_receiver=l,n.disconnect_all=s,n.disconnectBetween=t,n.disconnectSender=e,n.disconnectReceiver=l,n.disconnectAll=s}(c||(e.Signal=c={})),e.Signalable=function(){return class{connect(n,t){return n.connect(t,this)}disconnect(n,t){return n.disconnect(t,this)}}};const u=new WeakMap,a=new WeakMap;function g(n,t,e,l){return(0,o.find)(n,(n=>n.signal===t&&n.slot===e&&n.context===l))}const f=new Set;function d(n){0===f.size&&(async()=>{await(0,i.defer)(),function(){for(const n of f)(0,o.remove_by)(n,(n=>null==n.signal));f.clear()}()})(),f.add(n)}},\n", + " function _(e,n,t,s,o){s();const r=new MessageChannel,a=new Map;r.port1.onmessage=e=>{const n=e.data,t=a.get(n);if(null!=t)try{t()}finally{a.delete(n)}};let i=1;t.defer=function(){return new Promise((e=>{const n=i++;a.set(n,e),r.port2.postMessage(n)}))},t.wait=function(e){return new Promise((n=>setTimeout(n,e)))}},\n", + " function _(n,t,i,e,c){e();const r=n(8),s=n(13);i.is_ref=function(n){if((0,r.isPlainObject)(n)){const t=(0,s.keys)(n);return 1==t.length&&\"id\"==t[0]}return!1}},\n", + " function _(e,t,n,r,a){r(),n.YCoordinateSeqSeqSeqSpec=n.XCoordinateSeqSeqSeqSpec=n.YCoordinateSeqSpec=n.XCoordinateSeqSpec=n.YCoordinateSpec=n.XCoordinateSpec=n.CoordinateSeqSeqSeqSpec=n.CoordinateSeqSpec=n.CoordinateSpec=n.BaseCoordinateSpec=n.NumberUnitsSpec=n.UnitsSpec=n.DataSpec=n.VectorSpec=n.TextBaselineScalar=n.TextAlignScalar=n.FontStyleScalar=n.FontSizeScalar=n.FontScalar=n.LineDashScalar=n.LineCapScalar=n.LineJoinScalar=n.ArrayScalar=n.NullStringScalar=n.StringScalar=n.NumberScalar=n.ColorScalar=n.AnyScalar=n.ScalarSpec=n.VerticalAlign=n.UpdateMode=n.TooltipAttachment=n.TickLabelOrientation=n.TextureRepetition=n.TextBaseline=n.TextAlign=n.TapBehavior=n.StepMode=n.StartEnd=n.SpatialUnits=n.Sort=n.SizingMode=n.Side=n.RoundingFunction=n.ResetPolicy=n.RenderMode=n.RenderLevel=n.RadiusDimension=n.PointPolicy=n.Place=void 0,n.TextBaselineSpec=n.TextAlignSpec=n.FontStyleSpec=n.FontSizeSpec=n.FontSpec=n.LineDashSpec=n.LineCapSpec=n.LineJoinSpec=n.MarkerSpec=n.ArraySpec=n.NullStringSpec=n.StringSpec=n.AnySpec=n.NDArraySpec=n.ColorSpec=n.ScreenSizeSpec=n.NumberSpec=n.IntSpec=n.BooleanSpec=n.NullDistanceSpec=n.DistanceSpec=n.AngleSpec=void 0;const i=e(1),s=e(15),l=e(19),o=(0,i.__importStar)(e(20)),c=e(24),_=e(9),u=e(12),d=e(10),S=e(22),p=e(27),m=e(8),h=e(28),v=e(29),y=e(33);function x(e){try{return JSON.stringify(e)}catch(t){return e.toString()}}function g(e){return(0,m.isPlainObject)(e)&&(void 0===e.value?0:1)+(void 0===e.field?0:1)+(void 0===e.expr?0:1)==1}a(\"Uniform\",y.Uniform),a(\"UniformScalar\",y.UniformScalar),a(\"UniformVector\",y.UniformVector),n.isSpec=g;class f{constructor(e,t,n,r,a,i={}){var l;let o;if(this.obj=e,this.attr=t,this.kind=n,this.default_value=r,this._dirty=!1,this.change=new s.Signal0(this.obj,\"change\"),this.internal=null!==(l=i.internal)&&void 0!==l&&l,this.convert=i.convert,this.on_update=i.on_update,void 0!==a)o=a,this._dirty=!0;else{const t=this._default_override();if(void 0!==t)o=t;else{if(void 0===r)return void(this.spec={value:null});o=r(e)}}this._update(o)}get is_value(){return void 0!==this.spec.value}get syncable(){return!this.internal}get_value(){return this.spec.value}set_value(e){this._update(e),this._dirty=!0}_default_override(){}get dirty(){return this._dirty}_update(e){var t;if(this.validate(e),null!=this.convert){const t=this.convert(e);void 0!==t&&(e=t)}this.spec={value:e},null===(t=this.on_update)||void 0===t||t.call(this,e,this.obj)}toString(){return`Prop(${this.obj}.${this.attr}, spec: ${x(this.spec)})`}normalize(e){return e}validate(e){if(!this.valid(e))throw new Error(`${this.obj}.${this.attr} given invalid value: ${x(e)}`)}valid(e){return this.kind.valid(e)}_value(e=!0){if(!this.is_value)throw new Error(\"attempted to retrieve property value for property without value specification\");let t=this.normalize([this.spec.value])[0];return null!=this.spec.transform&&e&&(t=this.spec.transform.compute(t)),t}}n.Property=f,f.__name__=\"Property\";class A{constructor(e){this.attr=e}}n.PropertyAlias=A,A.__name__=\"PropertyAlias\",n.Alias=function(e){return new A(e)};class C extends f{}n.PrimitiveProperty=C,C.__name__=\"PrimitiveProperty\";class T extends f{}n.Any=T,T.__name__=\"Any\";class L extends f{valid(e){return(0,m.isArray)(e)||(0,m.isTypedArray)(e)}}n.Array=L,L.__name__=\"Array\";class w extends f{valid(e){return(0,m.isBoolean)(e)}}n.Boolean=w,w.__name__=\"Boolean\";class P extends f{valid(e){return(0,S.is_Color)(e)}}n.Color=P,P.__name__=\"Color\";class b extends f{}n.Instance=b,b.__name__=\"Instance\";class q extends f{valid(e){return(0,m.isNumber)(e)}}n.Number=q,q.__name__=\"Number\";class N extends q{valid(e){return(0,m.isNumber)(e)&&(0|e)==e}}n.Int=N,N.__name__=\"Int\";class z extends q{}n.Angle=z,z.__name__=\"Angle\";class B extends q{valid(e){return(0,m.isNumber)(e)&&0<=e&&e<=1}}n.Percent=B,B.__name__=\"Percent\";class F extends f{valid(e){return(0,m.isString)(e)}}n.String=F,F.__name__=\"String\";class D extends f{valid(e){return null===e||(0,m.isString)(e)}}n.NullString=D,D.__name__=\"NullString\";class U extends F{}n.FontSize=U,U.__name__=\"FontSize\";class M extends F{_default_override(){return h.settings.dev?\"Bokeh\":void 0}}n.Font=M,M.__name__=\"Font\";class R extends f{valid(e){return(0,m.isString)(e)&&(0,_.includes)(this.enum_values,e)}}function k(e){return class extends R{get enum_values(){return[...e]}}}n.EnumProperty=R,R.__name__=\"EnumProperty\",n.Enum=k;class O extends R{get enum_values(){return[...o.Direction]}normalize(e){const t=new Uint8Array(e.length);for(let n=0;n=0}}n.ScreenSizeSpec=fe,fe.__name__=\"ScreenSizeSpec\";class Ae extends ne{materialize(e){return(0,S.encode_rgba)((0,S.color2rgba)(e))}v_materialize(e){if(!(0,v.is_NDArray)(e)){const t=e.length,n=new c.RGBAArray(4*t);let r=0;for(const t of e){const[e,a,i,s]=(0,S.color2rgba)(t);n[r++]=e,n[r++]=a,n[r++]=i,n[r++]=s}return new c.ColorArray(n.buffer)}if(\"uint32\"==e.dtype&&1==e.dimension)return(0,p.to_big_endian)(e);if(\"uint8\"==e.dtype&&1==e.dimension){const[t]=e.shape,n=new c.RGBAArray(4*t);let r=0;for(const t of e)n[r++]=t,n[r++]=t,n[r++]=t,n[r++]=255;return new c.ColorArray(n.buffer)}if(\"uint8\"==e.dtype&&2==e.dimension){const[t,n]=e.shape;if(4==n)return new c.ColorArray(e.buffer);if(3==n){const r=new c.RGBAArray(4*t);for(let a=0,i=0;a0){let o=r[e];return null==o&&(r[e]=o=new v(e,l)),o}throw new TypeError(\"Logger.get() expects a non-empty string name and an optional log-level\")}get level(){return this.get_level()}get_level(){return this._log_level}set_level(e){if(e instanceof i)this._log_level=e;else{if(!(0,s.isString)(e)||null==v.log_levels[e])throw new Error(\"Logger.set_level() expects a log-level object or a string name of a log-level\");this._log_level=v.log_levels[e]}const l=`[${this._name}]`;for(const[e,o]of(0,g.entries)(v.log_levels))o.level\",\"*\"),t.HTTPMethod=(0,a.Enum)(\"POST\",\"GET\"),t.HexTileOrientation=(0,a.Enum)(\"pointytop\",\"flattop\"),t.HoverMode=(0,a.Enum)(\"mouse\",\"hline\",\"vline\"),t.LatLon=(0,a.Enum)(\"lat\",\"lon\"),t.LegendClickPolicy=(0,a.Enum)(\"none\",\"hide\",\"mute\"),t.LegendLocation=t.Anchor,t.LineCap=(0,a.Enum)(\"butt\",\"round\",\"square\"),t.LineJoin=(0,a.Enum)(\"miter\",\"round\",\"bevel\"),t.LineDash=(0,a.Enum)(\"solid\",\"dashed\",\"dotted\",\"dotdash\",\"dashdot\"),t.LinePolicy=(0,a.Enum)(\"prev\",\"next\",\"nearest\",\"interp\",\"none\"),t.Location=(0,a.Enum)(\"above\",\"below\",\"left\",\"right\"),t.Logo=(0,a.Enum)(\"normal\",\"grey\"),t.MarkerType=(0,a.Enum)(\"asterisk\",\"circle\",\"circle_cross\",\"circle_dot\",\"circle_x\",\"circle_y\",\"cross\",\"dash\",\"diamond\",\"diamond_cross\",\"diamond_dot\",\"dot\",\"hex\",\"hex_dot\",\"inverted_triangle\",\"plus\",\"square\",\"square_cross\",\"square_dot\",\"square_pin\",\"square_x\",\"star\",\"star_dot\",\"triangle\",\"triangle_dot\",\"triangle_pin\",\"x\",\"y\"),t.MutedPolicy=(0,a.Enum)(\"show\",\"ignore\"),t.Orientation=(0,a.Enum)(\"vertical\",\"horizontal\"),t.OutputBackend=(0,a.Enum)(\"canvas\",\"svg\",\"webgl\"),t.PaddingUnits=(0,a.Enum)(\"percent\",\"absolute\"),t.Place=(0,a.Enum)(\"above\",\"below\",\"left\",\"right\",\"center\"),t.PointPolicy=(0,a.Enum)(\"snap_to_data\",\"follow_mouse\",\"none\"),t.RadiusDimension=(0,a.Enum)(\"x\",\"y\",\"max\",\"min\"),t.RenderLevel=(0,a.Enum)(\"image\",\"underlay\",\"glyph\",\"guide\",\"annotation\",\"overlay\"),t.RenderMode=(0,a.Enum)(\"canvas\",\"css\"),t.ResetPolicy=(0,a.Enum)(\"standard\",\"event_only\"),t.RoundingFunction=(0,a.Enum)(\"round\",\"nearest\",\"floor\",\"rounddown\",\"ceil\",\"roundup\"),t.SelectionMode=(0,a.Enum)(\"replace\",\"append\",\"intersect\",\"subtract\"),t.Side=(0,a.Enum)(\"above\",\"below\",\"left\",\"right\"),t.SizingMode=(0,a.Enum)(\"stretch_width\",\"stretch_height\",\"stretch_both\",\"scale_width\",\"scale_height\",\"scale_both\",\"fixed\"),t.Sort=(0,a.Enum)(\"ascending\",\"descending\"),t.SpatialUnits=(0,a.Enum)(\"screen\",\"data\"),t.StartEnd=(0,a.Enum)(\"start\",\"end\"),t.StepMode=(0,a.Enum)(\"after\",\"before\",\"center\"),t.TapBehavior=(0,a.Enum)(\"select\",\"inspect\"),t.TextAlign=(0,a.Enum)(\"left\",\"right\",\"center\"),t.TextBaseline=(0,a.Enum)(\"top\",\"middle\",\"bottom\",\"alphabetic\",\"hanging\",\"ideographic\"),t.TextureRepetition=(0,a.Enum)(\"repeat\",\"repeat_x\",\"repeat_y\",\"no_repeat\"),t.TickLabelOrientation=(0,a.Enum)(\"vertical\",\"horizontal\",\"parallel\",\"normal\"),t.TooltipAttachment=(0,a.Enum)(\"horizontal\",\"vertical\",\"left\",\"right\",\"above\",\"below\"),t.UpdateMode=(0,a.Enum)(\"replace\",\"append\"),t.VerticalAlign=(0,a.Enum)(\"top\",\"middle\",\"bottom\")},\n", + " function _(e,n,t,s,r){s();const i=(0,e(1).__importStar)(e(8)),a=e(22),l=e(13),_=window.Map,{hasOwnProperty:u}=Object.prototype;class d{}t.Kind=d,d.__name__=\"Kind\",function(e){class n extends d{valid(e){return!0}}n.__name__=\"Any\",e.Any=n;class t extends d{valid(e){return!0}}t.__name__=\"Unknown\",e.Unknown=t;class s extends d{valid(e){return i.isBoolean(e)}}s.__name__=\"Boolean\",e.Boolean=s;class r extends d{constructor(e){super(),this.obj_type=e}valid(e){return!0}}r.__name__=\"Ref\",e.Ref=r;class c extends d{valid(e){return!0}}c.__name__=\"AnyRef\",e.AnyRef=c;class o extends d{valid(e){return i.isNumber(e)}}o.__name__=\"Number\",e.Number=o;class p extends o{valid(e){return super.valid(e)&&i.isInteger(e)}}p.__name__=\"Int\",e.Int=p;class y extends o{valid(e){return super.valid(e)&&0<=e&&e<=1}}y.__name__=\"Percent\",e.Percent=y;class m extends d{constructor(e){super(),this.types=e,this.types=e}valid(e){return this.types.some((n=>n.valid(e)))}}m.__name__=\"Or\",e.Or=m;class v extends d{constructor(e){super(),this.types=e,this.types=e}valid(e){if(!i.isArray(e))return!1;for(let n=0;nthis.item_type.valid(e)))}}f.__name__=\"Array\",e.Array=f;class K extends d{valid(e){return null===e}}K.__name__=\"Null\",e.Null=K;class b extends d{constructor(e){super(),this.base_type=e}valid(e){return null===e||this.base_type.valid(e)}}b.__name__=\"Nullable\",e.Nullable=b;class A extends d{constructor(e){super(),this.base_type=e}valid(e){return void 0===e||this.base_type.valid(e)}}A.__name__=\"Opt\",e.Opt=A;class x extends d{valid(e){return i.isString(e)}}x.__name__=\"String\",e.String=x;class S extends d{constructor(e){super(),this.values=new Set(e)}valid(e){return this.values.has(e)}*[Symbol.iterator](){yield*this.values}}S.__name__=\"Enum\",e.Enum=S;class N extends d{constructor(e){super(),this.item_type=e}valid(e){if(!i.isPlainObject(e))return!1;for(const n in e)if(u.call(e,n)){const t=e[n];if(!this.item_type.valid(t))return!1}return!0}}N.__name__=\"Dict\",e.Dict=N;class O extends d{constructor(e,n){super(),this.key_type=e,this.item_type=n}valid(e){if(!(e instanceof _))return!1;for(const[n,t]of e.entries())if(!this.key_type.valid(n)||!this.item_type.valid(t))return!1;return!0}}O.__name__=\"Map\",e.Map=O;class g extends d{valid(e){return(0,a.is_Color)(e)}}g.__name__=\"Color\",e.Color=g;class P extends d{valid(e){return i.isFunction(e)}}P.__name__=\"Function\",e.Function=P}(t.Kinds||(t.Kinds={})),t.Any=new t.Kinds.Any,t.Unknown=new t.Kinds.Unknown,t.Boolean=new t.Kinds.Boolean,t.Number=new t.Kinds.Number,t.Int=new t.Kinds.Int,t.String=new t.Kinds.String,t.Null=new t.Kinds.Null;t.Nullable=e=>new t.Kinds.Nullable(e);t.Opt=e=>new t.Kinds.Opt(e);t.Or=(...e)=>new t.Kinds.Or(e);t.Tuple=(...e)=>new t.Kinds.Tuple(e);t.Struct=e=>new t.Kinds.Struct(e),t.Arrayable=new t.Kinds.Arrayable;t.Array=e=>new t.Kinds.Array(e);t.Dict=e=>new t.Kinds.Dict(e);t.Map=(e,n)=>new t.Kinds.Map(e,n);t.Enum=(...e)=>new t.Kinds.Enum(e);t.Ref=e=>new t.Kinds.Ref(e);t.AnyRef=()=>new t.Kinds.AnyRef;t.Function=()=>new t.Kinds.Function,t.Percent=new t.Kinds.Percent,t.Alpha=t.Percent,t.Color=new t.Kinds.Color,t.Auto=(0,t.Enum)(\"auto\"),t.FontSize=t.String,t.Font=t.String,t.Angle=t.Number},\n", + " function _(n,t,r,e,s){e();const u=n(23),c=n(10),l=n(8),{round:i}=Math;function o(n){return(0,c.clamp)(i(n),0,255)}function a(){return[0,0,0,0]}function f(n){return[n>>24&255,n>>16&255,n>>8&255,255&n]}function d(n,t){var r;let e,s,u,c;return null==n?[e,s,u,c]=[0,0,0,0]:(0,l.isInteger)(n)?[e,s,u,c]=f(n):(0,l.isString)(n)?[e,s,u,c]=null!==(r=_(n))&&void 0!==r?r:[0,0,0,0]:([e,s,u,c=1]=n,c=o(255*c)),255==c&&null!=t&&(c=o(255*t)),[e,s,u,c]}r.transparent=a,r.encode_rgba=function([n,t,r,e]){return n<<24|t<<16|r<<8|e},r.decode_rgba=f,r.compose_alpha=function(n,t){return 255==(255&n)?4294967040&n|o(255*t):n},r.color2rgba=d;const h={0:\"0\",1:\"1\",2:\"2\",3:\"3\",4:\"4\",5:\"5\",6:\"6\",7:\"7\",8:\"8\",9:\"9\",10:\"a\",11:\"b\",12:\"c\",13:\"d\",14:\"e\",15:\"f\"};function g(n){return h[n>>4]+h[15&n]}r.color2css=function(n,t){const[r,e,s,u]=d(n,t);return`rgba(${r}, ${e}, ${s}, ${u/255})`},r.color2hex=function(n,t){const[r,e,s,u]=d(n,t),c=`#${g(r)}${g(e)}${g(s)}`;return 255==u?c:`${c}${g(u)}`},r.color2hexrgb=function(n){const[t,r,e]=d(n);return`#${g(t)}${g(r)}${g(e)}`};const b=/^rgba?\\(\\s*([^\\s,]+?)\\s+([^\\s,]+?)\\s+([^\\s,]+?)(?:\\s*\\/\\s*([^\\s,]+?))?\\s*\\)$/,$=/^rgba?\\(\\s*([^\\s,]+?)\\s*,\\s*([^\\s,]+?)\\s*,\\s*([^\\s,]+?)(?:\\s*,\\s*([^\\s,]+?))?\\s*\\)$/,m=(()=>{const n=document.createElement(\"canvas\");n.width=1,n.height=1;const t=n.getContext(\"2d\"),r=t.createLinearGradient(0,0,1,1);return n=>{t.fillStyle=r,t.fillStyle=n;const e=t.fillStyle;return e!=r?e:null}})();function _(n){var t;if(!(n=n.trim().toLowerCase()))return null;if(\"transparent\"==n)return[0,0,0,0];if((0,u.is_named_color)(n))return f(u.named_colors[n]);if(\"#\"==n[0]){const t=Number(`0x${n.substr(1)}`);if(isNaN(t))return null;switch(n.length-1){case 3:{const n=t>>8&15,r=t>>4&15,e=t>>0&15;return[n<<4|n,r<<4|r,e<<4|e,255]}case 4:{const n=t>>12&15,r=t>>8&15,e=t>>4&15,s=t>>0&15;return[n<<4|n,r<<4|r,e<<4|e,s<<4|s]}case 6:return[t>>16&255,t>>8&255,t>>0&255,255];case 8:return[t>>24&255,t>>16&255,t>>8&255,t>>0&255]}}else if(n.startsWith(\"rgb\")){const r=null!==(t=n.match(b))&&void 0!==t?t:n.match($);if(null!=r){let[,n,t,e,s=\"1\"]=r;const u=n.endsWith(\"%\"),c=t.endsWith(\"%\"),l=e.endsWith(\"%\"),i=s.endsWith(\"%\");if(!(u&&c&&l)&&(u||c||l))return null;u&&(n=n.slice(0,-1)),c&&(t=t.slice(0,-1)),l&&(e=e.slice(0,-1)),i&&(s=s.slice(0,-1));let a=Number(n),f=Number(t),d=Number(e),h=Number(s);return isNaN(a+f+d+h)?null:(u&&(a=a/100*255),c&&(f=f/100*255),l&&(d=d/100*255),h=255*(i?h/100:h),a=o(a),f=o(f),d=o(d),h=o(h),[a,f,d,h])}}else{const t=m(n);if(null!=t)return _(t)}return null}r.css4_parse=_,r.is_Color=function(n){return!!(0,l.isInteger)(n)||(!(!(0,l.isString)(n)||null==_(n))||!(!(0,l.isArray)(n)||3!=n.length&&4!=n.length))},r.is_dark=function([n,t,r]){return 1-(.299*n+.587*t+.114*r)/255>=.6}},\n", + " function _(e,r,l,a,i){a();l.named_colors={aliceblue:4042850303,antiquewhite:4209760255,aqua:16777215,aquamarine:2147472639,azure:4043309055,beige:4126530815,bisque:4293182719,black:255,blanchedalmond:4293643775,blue:65535,blueviolet:2318131967,brown:2771004159,burlywood:3736635391,cadetblue:1604231423,chartreuse:2147418367,chocolate:3530104575,coral:4286533887,cornflowerblue:1687547391,cornsilk:4294499583,crimson:3692313855,cyan:16777215,darkblue:35839,darkcyan:9145343,darkgoldenrod:3095792639,darkgray:2846468607,darkgreen:6553855,darkgrey:2846468607,darkkhaki:3182914559,darkmagenta:2332068863,darkolivegreen:1433087999,darkorange:4287365375,darkorchid:2570243327,darkred:2332033279,darksalmon:3918953215,darkseagreen:2411499519,darkslateblue:1211993087,darkslategray:793726975,darkslategrey:793726975,darkturquoise:13554175,darkviolet:2483082239,deeppink:4279538687,deepskyblue:12582911,dimgray:1768516095,dimgrey:1768516095,dodgerblue:512819199,firebrick:2988581631,floralwhite:4294635775,forestgreen:579543807,fuchsia:4278255615,gainsboro:3705462015,ghostwhite:4177068031,gold:4292280575,goldenrod:3668254975,gray:2155905279,green:8388863,greenyellow:2919182335,grey:2155905279,honeydew:4043305215,hotpink:4285117695,indianred:3445382399,indigo:1258324735,ivory:4294963455,khaki:4041641215,lavender:3873897215,lavenderblush:4293981695,lawngreen:2096890111,lemonchiffon:4294626815,lightblue:2916673279,lightcoral:4034953471,lightcyan:3774873599,lightgoldenrodyellow:4210742015,lightgray:3553874943,lightgreen:2431553791,lightgrey:3553874943,lightpink:4290167295,lightsalmon:4288707327,lightseagreen:548580095,lightskyblue:2278488831,lightslategray:2005441023,lightslategrey:2005441023,lightsteelblue:2965692159,lightyellow:4294959359,lime:16711935,limegreen:852308735,linen:4210091775,magenta:4278255615,maroon:2147483903,mediumaquamarine:1724754687,mediumblue:52735,mediumorchid:3126187007,mediumpurple:2473647103,mediumseagreen:1018393087,mediumslateblue:2070474495,mediumspringgreen:16423679,mediumturquoise:1221709055,mediumvioletred:3340076543,midnightblue:421097727,mintcream:4127193855,mistyrose:4293190143,moccasin:4293178879,navajowhite:4292783615,navy:33023,oldlace:4260751103,olive:2155872511,olivedrab:1804477439,orange:4289003775,orangered:4282712319,orchid:3664828159,palegoldenrod:4008225535,palegreen:2566625535,paleturquoise:2951671551,palevioletred:3681588223,papayawhip:4293907967,peachpuff:4292524543,peru:3448061951,pink:4290825215,plum:3718307327,powderblue:2967529215,purple:2147516671,rebeccapurple:1714657791,red:4278190335,rosybrown:3163525119,royalblue:1097458175,saddlebrown:2336560127,salmon:4202722047,sandybrown:4104413439,seagreen:780883967,seashell:4294307583,sienna:2689740287,silver:3233857791,skyblue:2278484991,slateblue:1784335871,slategray:1887473919,slategrey:1887473919,snow:4294638335,springgreen:16744447,steelblue:1182971135,tan:3535047935,teal:8421631,thistle:3636451583,tomato:4284696575,turquoise:1088475391,violet:4001558271,wheat:4125012991,white:4294967295,whitesmoke:4126537215,yellow:4294902015,yellowgreen:2597139199},l.is_named_color=function(e){return e in l.named_colors}},\n", + " function _(r,t,n,a,o){a(),n.GeneratorFunction=Object.getPrototypeOf((function*(){})).constructor,n.ColorArray=Uint32Array,n.RGBAArray=Uint8ClampedArray,n.infer_type=function(r,t){return r instanceof Float64Array||r instanceof Array||t instanceof Float64Array||t instanceof Array?Float64Array:Float32Array},n.ScreenArray=Float32Array,n.to_screen=function(r){return r instanceof Float32Array?r:Float32Array.from(r)},o(\"Indices\",r(25).BitSet)},\n", + " function _(t,s,r,e,i){var n;e();const o=t(26),a=t(11);class _{constructor(t,s=0){this.size=t,this[n]=\"BitSet\",this._count=null,this._nwords=Math.ceil(t/32),0==s||1==s?(this._array=new Uint32Array(this._nwords),1==s&&this._array.fill(4294967295)):((0,a.assert)(s.length==this._nwords,\"Initializer size mismatch\"),this._array=s)}clone(){return new _(this.size,new Uint32Array(this._array))}[(n=Symbol.toStringTag,o.equals)](t,s){if(!s.eq(this.size,t.size))return!1;const{_nwords:r}=this,e=this.size%r,i=0==e?r:r-1;for(let s=0;s>>5,r=31&t;return!!(this._array[s]>>r&1)}set(t,s=!0){this._check_bounds(t),this._count=null;const r=t>>>5,e=31&t;s?this._array[r]|=1<>>t&1&&(e+=1)}return e}*ones(){const{_array:t,_nwords:s,size:r}=this;for(let e=0,i=0;i>>t&1&&(yield e);else e+=32}}*zeros(){const{_array:t,_nwords:s,size:r}=this;for(let e=0,i=0;i>>t&1||(yield e);else e+=32}}_check_size(t){(0,a.assert)(this.size==t.size,\"Size mismatch\")}add(t){this._check_size(t);for(let s=0;s{if(a(t)&&a(e))return t[r.equals](e,this);switch(n){case\"[object Array]\":case\"[object Uint8Array]\":case\"[object Int8Array]\":case\"[object Uint16Array]\":case\"[object Int16Array]\":case\"[object Uint32Array]\":case\"[object Int32Array]\":case\"[object Float32Array]\":case\"[object Float64Array]\":return this.arrays(t,e);case\"[object Map]\":return this.maps(t,e);case\"[object Set]\":return this.sets(t,e);case\"[object Object]\":if(t.constructor==e.constructor&&(null==t.constructor||t.constructor===Object))return this.objects(t,e);case\"[object Function]\":if(t.constructor==e.constructor&&t.constructor===Function)return this.eq(`${t}`,`${e}`)}if(t instanceof Node)return this.nodes(t,e);throw Error(`can't compare objects of type ${n}`)})();return s.pop(),o.pop(),u}numbers(t,e){return Object.is(t,e)}arrays(t,e){const{length:r}=t;if(r!=e.length)return!1;for(let n=0;n{const n=navigator.userAgent;return n.includes(\"MSIE\")||n.includes(\"Trident\")||n.includes(\"Edge\")})(),e.is_mobile=\"undefined\"!=typeof window&&(\"ontouchstart\"in window||navigator.maxTouchPoints>0),e.is_little_endian=(()=>{const n=new ArrayBuffer(4),i=new Uint8Array(n);new Uint32Array(n)[1]=168496141;let e=!0;return 10==i[4]&&11==i[5]&&12==i[6]&&13==i[7]&&(e=!1),e})(),e.BYTE_ORDER=e.is_little_endian?\"little\":\"big\",e.to_big_endian=function(n){if(e.is_little_endian){const i=new Uint32Array(n.length),e=new DataView(i.buffer);let t=0;for(const i of n)e.setUint32(t,i),t+=4;return i}return n}},\n", + " function _(e,t,r,s,_){s();class i{constructor(){this._dev=!1,this._wireframe=!1,this._force_webgl=!1}set dev(e){this._dev=e}get dev(){return this._dev}set wireframe(e){this._wireframe=e}get wireframe(){return this._wireframe}set force_webgl(e){this._force_webgl=e}get force_webgl(){return this._force_webgl}}r.Settings=i,i.__name__=\"Settings\",r.settings=new i},\n", + " function _(e,s,t,i,r){var a,n,l,h,u,o,p,c;i();const y=e(8),_=e(11),A=e(26),q=e(30),d=e(31),z=Symbol(\"__ndarray__\");class D extends Uint8Array{constructor(e,s){super(e),this[a]=!0,this.dtype=\"uint8\",this.shape=null!=s?s:x(e)?e.shape:[this.length],this.dimension=this.shape.length,null==this[A.equals]&&(this[A.equals]=(e,s)=>D.prototype[A.equals].call(this,e,s)),null==this[q.serialize]&&(this[q.serialize]=e=>D.prototype[q.serialize].call(this,e))}[(a=z,A.equals)](e,s){return s.eq(this.shape,e.shape)&&s.arrays(this,e)}[q.serialize](e){return(0,d.encode_NDArray)(this)}}t.Uint8NDArray=D,D.__name__=\"Uint8NDArray\";class N extends Int8Array{constructor(e,s){super(e),this[n]=!0,this.dtype=\"int8\",this.shape=null!=s?s:x(e)?e.shape:[this.length],this.dimension=this.shape.length,null==this[A.equals]&&(this[A.equals]=(e,s)=>N.prototype[A.equals].call(this,e,s)),null==this[q.serialize]&&(this[q.serialize]=e=>N.prototype[q.serialize].call(this,e))}[(n=z,A.equals)](e,s){return s.eq(this.shape,e.shape)&&s.arrays(this,e)}[q.serialize](e){return(0,d.encode_NDArray)(this)}}t.Int8NDArray=N,N.__name__=\"Int8NDArray\";class f extends Uint16Array{constructor(e,s){super(e),this[l]=!0,this.dtype=\"uint16\",this.shape=null!=s?s:x(e)?e.shape:[this.length],this.dimension=this.shape.length,null==this[A.equals]&&(this[A.equals]=(e,s)=>f.prototype[A.equals].call(this,e,s)),null==this[q.serialize]&&(this[q.serialize]=e=>f.prototype[q.serialize].call(this,e))}[(l=z,A.equals)](e,s){return s.eq(this.shape,e.shape)&&s.arrays(this,e)}[q.serialize](e){return(0,d.encode_NDArray)(this)}}t.Uint16NDArray=f,f.__name__=\"Uint16NDArray\";class m extends Int16Array{constructor(e,s){super(e),this[h]=!0,this.dtype=\"int16\",this.shape=null!=s?s:x(e)?e.shape:[this.length],this.dimension=this.shape.length,null==this[A.equals]&&(this[A.equals]=(e,s)=>m.prototype[A.equals].call(this,e,s)),null==this[q.serialize]&&(this[q.serialize]=e=>m.prototype[q.serialize].call(this,e))}[(h=z,A.equals)](e,s){return s.eq(this.shape,e.shape)&&s.arrays(this,e)}[q.serialize](e){return(0,d.encode_NDArray)(this)}}t.Int16NDArray=m,m.__name__=\"Int16NDArray\";class g extends Uint32Array{constructor(e,s){super(e),this[u]=!0,this.dtype=\"uint32\",this.shape=null!=s?s:x(e)?e.shape:[this.length],this.dimension=this.shape.length,null==this[A.equals]&&(this[A.equals]=(e,s)=>g.prototype[A.equals].call(this,e,s)),null==this[q.serialize]&&(this[q.serialize]=e=>g.prototype[q.serialize].call(this,e))}[(u=z,A.equals)](e,s){return s.eq(this.shape,e.shape)&&s.arrays(this,e)}[q.serialize](e){return(0,d.encode_NDArray)(this)}}t.Uint32NDArray=g,g.__name__=\"Uint32NDArray\";class I extends Int32Array{constructor(e,s){super(e),this[o]=!0,this.dtype=\"int32\",this.shape=null!=s?s:x(e)?e.shape:[this.length],this.dimension=this.shape.length,null==this[A.equals]&&(this[A.equals]=(e,s)=>I.prototype[A.equals].call(this,e,s)),null==this[q.serialize]&&(this[q.serialize]=e=>I.prototype[q.serialize].call(this,e))}[(o=z,A.equals)](e,s){return s.eq(this.shape,e.shape)&&s.arrays(this,e)}[q.serialize](e){return(0,d.encode_NDArray)(this)}}t.Int32NDArray=I,I.__name__=\"Int32NDArray\";class U extends Float32Array{constructor(e,s){super(e),this[p]=!0,this.dtype=\"float32\",this.shape=null!=s?s:x(e)?e.shape:[this.length],this.dimension=this.shape.length,null==this[A.equals]&&(this[A.equals]=(e,s)=>U.prototype[A.equals].call(this,e,s)),null==this[q.serialize]&&(this[q.serialize]=e=>U.prototype[q.serialize].call(this,e))}[(p=z,A.equals)](e,s){return s.eq(this.shape,e.shape)&&s.arrays(this,e)}[q.serialize](e){return(0,d.encode_NDArray)(this)}}t.Float32NDArray=U,U.__name__=\"Float32NDArray\";class w extends Float64Array{constructor(e,s){super(e),this[c]=!0,this.dtype=\"float64\",this.shape=null!=s?s:x(e)?e.shape:[this.length],this.dimension=this.shape.length,null==this[A.equals]&&(this[A.equals]=(e,s)=>w.prototype[A.equals].call(this,e,s)),null==this[q.serialize]&&(this[q.serialize]=e=>w.prototype[q.serialize].call(this,e))}[(c=z,A.equals)](e,s){return s.eq(this.shape,e.shape)&&s.arrays(this,e)}[q.serialize](e){return(0,d.encode_NDArray)(this)}}function x(e){return(0,y.isObject)(e)&&void 0!==e[z]}t.Float64NDArray=w,w.__name__=\"Float64NDArray\",t.is_NDArray=x,t.ndarray=function(e,s={}){let{dtype:t}=s;null==t&&(t=e instanceof ArrayBuffer||(0,y.isArray)(e)?\"float64\":(()=>{switch(!0){case e instanceof Uint8Array:return\"uint8\";case e instanceof Int8Array:return\"int8\";case e instanceof Uint16Array:return\"uint16\";case e instanceof Int16Array:return\"int16\";case e instanceof Uint32Array:return\"uint32\";case e instanceof Int32Array:return\"int32\";case e instanceof Float32Array:return\"float32\";case e instanceof Float64Array:return\"float64\";default:(0,_.unreachable)()}})());const{shape:i}=s;switch(t){case\"uint8\":return new D(e,i);case\"int8\":return new N(e,i);case\"uint16\":return new f(e,i);case\"int16\":return new m(e,i);case\"uint32\":return new g(e,i);case\"int32\":return new I(e,i);case\"float32\":return new U(e,i);case\"float64\":return new w(e,i)}}},\n", + " function _(e,r,t,i,s){i();const n=e(11),a=e(13),l=e(8);t.serialize=Symbol(\"serialize\");class o extends Error{}t.SerializationError=o,o.__name__=\"SerializationError\";class f{constructor(e){var r;this._references=new Map,this._definitions=new Map,this._refmap=new Map,this.include_defaults=null===(r=null==e?void 0:e.include_defaults)||void 0===r||r}get_ref(e){return this._references.get(e)}add_ref(e,r){(0,n.assert)(!this._references.has(e)),this._references.set(e,r)}add_def(e,r){const t=this.get_ref(e);(0,n.assert)(null!=t),this._definitions.set(e,r),this._refmap.set(t,r)}get objects(){return new Set(this._references.keys())}get references(){return new Set(this._references.values())}get definitions(){return new Set(this._definitions.values())}resolve_ref(e){return this._refmap.get(e)}remove_ref(e){return this._references.delete(e)}remove_def(e){return this._definitions.delete(e)}to_serializable(e){const r=this.get_ref(e);if(null!=r)return r;if(function(e){return(0,l.isObject)(e)&&void 0!==e[t.serialize]}(e))return e[t.serialize](this);if((0,l.isArray)(e)||(0,l.isTypedArray)(e)){const r=e.length,t=new Array(r);for(let i=0;i(0,s.buffer_to_base64)(_.buffer)};return Object.assign({__ndarray__:e},r)}}},\n", + " function _(t,n,e,r,o){r(),e.buffer_to_base64=function(t){const n=new Uint8Array(t),e=Array.from(n).map((t=>String.fromCharCode(t)));return btoa(e.join(\"\"))},e.base64_to_buffer=function(t){const n=atob(t),e=n.length,r=new Uint8Array(e);for(let t=0,o=e;t\"'`])/g,(t=>{switch(t){case\"&\":return\"&\";case\"<\":return\"<\";case\">\":return\">\";case'\"':return\""\";case\"'\":return\"'\";case\"`\":return\"`\";default:return t}}))},r.unescape=function(t){return t.replace(/&(amp|lt|gt|quot|#x27|#x60);/g,((t,e)=>{switch(e){case\"amp\":return\"&\";case\"lt\":return\"<\";case\"gt\":return\">\";case\"quot\":return'\"';case\"#x27\":return\"'\";case\"#x60\":return\"`\";default:return e}}))},r.use_strict=function(t){return`'use strict';\\n${t}`},r.to_fixed=function(t,e){return t.toFixed(e).replace(/(\\.[0-9]*?)0+$/,\"$1\").replace(/\\.$/,\"\")}},\n", + " function _(e,t,s,n,o){n();const i=e(30);class r{constructor(e){this.document=e}}s.DocumentEvent=r,r.__name__=\"DocumentEvent\";class a extends r{constructor(e,t,s){super(e),this.events=t,this.setter_id=s}}s.DocumentEventBatch=a,a.__name__=\"DocumentEventBatch\";class d extends r{}s.DocumentChangedEvent=d,d.__name__=\"DocumentChangedEvent\";class l extends d{constructor(e,t,s){super(e),this.msg_type=t,this.msg_data=s}[i.serialize](e){const t=this.msg_data,s=e.to_serializable(t);return{kind:\"MessageSent\",msg_type:this.msg_type,msg_data:s}}}s.MessageSentEvent=l,l.__name__=\"MessageSentEvent\";class _ extends d{constructor(e,t,s,n,o,i,r){super(e),this.model=t,this.attr=s,this.old=n,this.new_=o,this.setter_id=i,this.hint=r}[i.serialize](e){if(null!=this.hint)return e.to_serializable(this.hint);const t=this.new_,s=e.to_serializable(t);return this.model!=t&&e.remove_def(this.model),{kind:\"ModelChanged\",model:this.model.ref(),attr:this.attr,new:s}}}s.ModelChangedEvent=_,_.__name__=\"ModelChangedEvent\";class c extends d{constructor(e,t,s){super(e),this.column_source=t,this.patches=s}[i.serialize](e){return{kind:\"ColumnsPatched\",column_source:this.column_source,patches:this.patches}}}s.ColumnsPatchedEvent=c,c.__name__=\"ColumnsPatchedEvent\";class h extends d{constructor(e,t,s,n){super(e),this.column_source=t,this.data=s,this.rollover=n}[i.serialize](e){return{kind:\"ColumnsStreamed\",column_source:this.column_source,data:this.data,rollover:this.rollover}}}s.ColumnsStreamedEvent=h,h.__name__=\"ColumnsStreamedEvent\";class m extends d{constructor(e,t,s){super(e),this.title=t,this.setter_id=s}[i.serialize](e){return{kind:\"TitleChanged\",title:this.title}}}s.TitleChangedEvent=m,m.__name__=\"TitleChangedEvent\";class u extends d{constructor(e,t,s){super(e),this.model=t,this.setter_id=s}[i.serialize](e){return{kind:\"RootAdded\",model:e.to_serializable(this.model)}}}s.RootAddedEvent=u,u.__name__=\"RootAddedEvent\";class v extends d{constructor(e,t,s){super(e),this.model=t,this.setter_id=s}[i.serialize](e){return{kind:\"RootRemoved\",model:this.model.ref()}}}s.RootRemovedEvent=v,v.__name__=\"RootRemovedEvent\"},\n", + " function _(t,i,r,n,s){n();const e=t(8),o=t(13);r.pretty=Symbol(\"pretty\");class c{constructor(t){this.visited=new Set,this.precision=null==t?void 0:t.precision}to_string(t){if((0,e.isObject)(t)){if(this.visited.has(t))return\"\";this.visited.add(t)}return function(t){return(0,e.isObject)(t)&&void 0!==t[r.pretty]}(t)?t[r.pretty](this):(0,e.isBoolean)(t)?this.boolean(t):(0,e.isNumber)(t)?this.number(t):(0,e.isString)(t)?this.string(t):(0,e.isArray)(t)?this.array(t):(0,e.isIterable)(t)?this.iterable(t):(0,e.isPlainObject)(t)?this.object(t):(0,e.isSymbol)(t)?this.symbol(t):`${t}`}token(t){return t}boolean(t){return`${t}`}number(t){return null!=this.precision?t.toFixed(this.precision):`${t}`}string(t){return`\"${t.replace(/'/g,\"\\\\'\")}\"`}symbol(t){return t.toString()}array(t){const i=this.token,r=[];for(const i of t)r.push(this.to_string(i));return`${i(\"[\")}${r.join(`${i(\",\")} `)}${i(\"]\")}`}iterable(t){var i;const r=this.token,n=null!==(i=Object(t)[Symbol.toStringTag])&&void 0!==i?i:\"Object\",s=this.array(t);return`${n}${r(\"(\")}${s}${r(\")\")}`}object(t){const i=this.token,r=[];for(const[n,s]of(0,o.entries)(t))r.push(`${n}${i(\":\")} ${this.to_string(s)}`);return`${i(\"{\")}${r.join(`${i(\",\")} `)}${i(\"}\")}`}}r.Printer=c,c.__name__=\"Printer\",r.to_string=function(t,i){return new c(i).to_string(t)}},\n", + " function _(n,o,r,e,t){e();const l=n(13),i=n(8);function c(n){return(0,i.isObject)(n)&&void 0!==n[r.clone]}r.clone=Symbol(\"clone\"),r.is_Cloneable=c;class s extends Error{}r.CloningError=s,s.__name__=\"CloningError\";class a{constructor(){}clone(n){if(c(n))return n[r.clone](this);if((0,i.isArray)(n)){const o=n.length,r=new Array(o);for(let e=0;e{null!=this.layout&&(this.layout.visible=this.model.visible,this.plot_view.request_layout())}))}get needs_clip(){return null==this.layout}serializable_state(){const t=super.serializable_state();return null==this.layout?t:Object.assign(Object.assign({},t),{bbox:this.layout.bbox.box})}}i.AnnotationView=r,r.__name__=\"AnnotationView\";class a extends l.Renderer{constructor(t){super(t)}}i.Annotation=a,o=a,a.__name__=\"Annotation\",o.override({level:\"annotation\"})},\n", + " function _(e,i,t,n,s){n();const r=e(1);var o,a;const _=e(42),l=(0,r.__importStar)(e(45)),d=e(20),h=e(53),u=e(54);class c extends h.Model{constructor(e){super(e)}}t.RendererGroup=c,o=c,c.__name__=\"RendererGroup\",o.define((({Boolean:e})=>({visible:[e,!0]})));class p extends _.View{get coordinates(){const{_coordinates:e}=this;return null!=e?e:this._coordinates=this._initialize_coordinates()}initialize(){super.initialize(),this.visuals=new l.Visuals(this),this.needs_webgl_blit=!1}connect_signals(){super.connect_signals();const{x_range_name:e,y_range_name:i}=this.model.properties;this.on_change([e,i],(()=>this._initialize_coordinates()));const{group:t}=this.model;null!=t&&this.on_change(t.properties.visible,(()=>{this.model.visible=t.visible}))}_initialize_coordinates(){const{coordinates:e}=this.model,{frame:i}=this.plot_view;if(null!=e)return e.get_transform(i);{const{x_range_name:e,y_range_name:t}=this.model,n=i.x_scales.get(e),s=i.y_scales.get(t);return new u.CoordinateTransform(n,s)}}get plot_view(){return this.parent}get plot_model(){return this.parent.model}get layer(){const{overlays:e,primary:i}=this.canvas;return\"overlay\"==this.model.level?e:i}get canvas(){return this.plot_view.canvas_view}request_render(){this.request_paint()}request_paint(){this.plot_view.request_paint(this)}request_layout(){this.plot_view.request_layout()}notify_finished(){this.plot_view.notify_finished()}notify_finished_after_paint(){this.plot_view.notify_finished_after_paint()}get needs_clip(){return!1}get has_webgl(){return!1}render(){this.model.visible&&this._render(),this._has_finished=!0}renderer_view(e){}}t.RendererView=p,p.__name__=\"RendererView\";class g extends h.Model{constructor(e){super(e)}}t.Renderer=g,a=g,g.__name__=\"Renderer\",a.define((({Boolean:e,String:i,Ref:t,Nullable:n})=>({group:[n(t(c)),null],level:[d.RenderLevel,\"image\"],visible:[e,!0],x_range_name:[i,\"default\"],y_range_name:[i,\"default\"],coordinates:[n(t(u.CoordinateMapping)),null]})))},\n", + " function _(t,e,s,i,n){i();const o=t(1),h=t(15),r=t(43),l=t(8),_=(0,o.__importDefault)(t(44));class d{constructor(t){this.removed=new h.Signal0(this,\"removed\"),this._ready=Promise.resolve(void 0),this._slots=new WeakMap,this._idle_notified=!1;const{model:e,parent:s}=t;this.model=e,this.parent=s,this.root=null==s?this:s.root,this.removed.emit()}get ready(){return this._ready}connect(t,e){let s=this._slots.get(e);return null==s&&(s=(t,s)=>{const i=Promise.resolve(e.call(this,t,s));this._ready=this._ready.then((()=>i))},this._slots.set(e,s)),t.connect(s,this)}disconnect(t,e){return t.disconnect(e,this)}initialize(){this._has_finished=!1,this.is_root&&(this._stylesheet=r.stylesheet);for(const t of this.styles())this.stylesheet.append(t)}async lazy_initialize(){}remove(){this.disconnect_signals(),this.removed.emit()}toString(){return`${this.model.type}View(${this.model.id})`}serializable_state(){return{type:this.model.type}}get is_root(){return null==this.parent}has_finished(){return this._has_finished}get is_idle(){return this.has_finished()}connect_signals(){}disconnect_signals(){h.Signal.disconnect_receiver(this)}on_change(t,e){for(const s of(0,l.isArray)(t)?t:[t])this.connect(s.change,e)}cursor(t,e){return null}get stylesheet(){return this.is_root?this._stylesheet:this.root.stylesheet}styles(){return[_.default]}notify_finished(){this.is_root?!this._idle_notified&&this.has_finished()&&null!=this.model.document&&(this._idle_notified=!0,this.model.document.notify_idle(this.model)):this.root.notify_finished()}}s.View=d,d.__name__=\"View\"},\n", + " function _(t,e,n,i,o){i();const s=t(8),l=t(13),r=t=>(e={},...n)=>{const i=document.createElement(t);i.classList.add(\"bk\"),(0,s.isPlainObject)(e)||(n=[e,...n],e={});for(let[t,n]of(0,l.entries)(e))if(null!=n&&(!(0,s.isBoolean)(n)||n))if(\"class\"===t&&((0,s.isString)(n)&&(n=n.split(/\\s+/)),(0,s.isArray)(n)))for(const t of n)null!=t&&i.classList.add(t);else if(\"style\"===t&&(0,s.isPlainObject)(n))for(const[t,e]of(0,l.entries)(n))i.style[t]=e;else if(\"data\"===t&&(0,s.isPlainObject)(n))for(const[t,e]of(0,l.entries)(n))i.dataset[t]=e;else i.setAttribute(t,n);function o(t){if((0,s.isString)(t))i.appendChild(document.createTextNode(t));else if(t instanceof Node)i.appendChild(t);else if(t instanceof NodeList||t instanceof HTMLCollection)for(const e of t)i.appendChild(e);else if(null!=t&&!1!==t)throw new Error(`expected a DOM element, string, false or null, got ${JSON.stringify(t)}`)}for(const t of n)if((0,s.isArray)(t))for(const e of t)o(e);else o(t);return i};function a(t){const e=t.parentNode;null!=e&&e.removeChild(t)}function c(t,...e){const n=t.firstChild;for(const i of e)t.insertBefore(i,n)}function d(t,e){var n,i,o;const s=Element.prototype;return(null!==(o=null!==(i=null!==(n=s.matches)&&void 0!==n?n:s.webkitMatchesSelector)&&void 0!==i?i:s.mozMatchesSelector)&&void 0!==o?o:s.msMatchesSelector).call(t,e)}function h(t){return parseFloat(t)||0}function f(t){const e=getComputedStyle(t);return{border:{top:h(e.borderTopWidth),bottom:h(e.borderBottomWidth),left:h(e.borderLeftWidth),right:h(e.borderRightWidth)},margin:{top:h(e.marginTop),bottom:h(e.marginBottom),left:h(e.marginLeft),right:h(e.marginRight)},padding:{top:h(e.paddingTop),bottom:h(e.paddingBottom),left:h(e.paddingLeft),right:h(e.paddingRight)}}}function u(t){const e=t.getBoundingClientRect();return{width:Math.ceil(e.width),height:Math.ceil(e.height)}}n.createElement=function(t,e,...n){return r(t)(e,...n)},n.div=r(\"div\"),n.span=r(\"span\"),n.canvas=r(\"canvas\"),n.link=r(\"link\"),n.style=r(\"style\"),n.a=r(\"a\"),n.p=r(\"p\"),n.i=r(\"i\"),n.pre=r(\"pre\"),n.button=r(\"button\"),n.label=r(\"label\"),n.input=r(\"input\"),n.select=r(\"select\"),n.option=r(\"option\"),n.optgroup=r(\"optgroup\"),n.textarea=r(\"textarea\"),n.createSVGElement=function(t,e,...n){const i=document.createElementNS(\"http://www.w3.org/2000/svg\",t);for(const[t,n]of(0,l.entries)(null!=e?e:{}))null==n||(0,s.isBoolean)(n)&&!n||i.setAttribute(t,n);function o(t){if((0,s.isString)(t))i.appendChild(document.createTextNode(t));else if(t instanceof Node)i.appendChild(t);else if(t instanceof NodeList||t instanceof HTMLCollection)for(const e of t)i.appendChild(e);else if(null!=t&&!1!==t)throw new Error(`expected a DOM element, string, false or null, got ${JSON.stringify(t)}`)}for(const t of n)if((0,s.isArray)(t))for(const e of t)o(e);else o(t);return i},n.nbsp=function(){return document.createTextNode(\"\\xa0\")},n.append=function(t,...e){for(const n of e)t.appendChild(n)},n.remove=a,n.removeElement=a,n.replaceWith=function(t,e){const n=t.parentNode;null!=n&&n.replaceChild(e,t)},n.prepend=c,n.empty=function(t,e=!1){let n;for(;n=t.firstChild;)t.removeChild(n);if(e&&t instanceof Element)for(const e of t.attributes)t.removeAttributeNode(e)},n.display=function(t){t.style.display=\"\"},n.undisplay=function(t){t.style.display=\"none\"},n.show=function(t){t.style.visibility=\"\"},n.hide=function(t){t.style.visibility=\"hidden\"},n.offset=function(t){const e=t.getBoundingClientRect();return{top:e.top+window.pageYOffset-document.documentElement.clientTop,left:e.left+window.pageXOffset-document.documentElement.clientLeft}},n.matches=d,n.parent=function(t,e){let n=t;for(;n=n.parentElement;)if(d(n,e))return n;return null},n.extents=f,n.size=u,n.scroll_size=function(t){return{width:Math.ceil(t.scrollWidth),height:Math.ceil(t.scrollHeight)}},n.outer_size=function(t){const{margin:{left:e,right:n,top:i,bottom:o}}=f(t),{width:s,height:l}=u(t);return{width:Math.ceil(s+e+n),height:Math.ceil(l+i+o)}},n.content_size=function(t){const{left:e,top:n}=t.getBoundingClientRect(),{padding:i}=f(t);let o=0,s=0;for(const l of t.children){const t=l.getBoundingClientRect();o=Math.max(o,Math.ceil(t.left-e-i.left+t.width)),s=Math.max(s,Math.ceil(t.top-n-i.top+t.height))}return{width:o,height:s}},n.position=function(t,e,n){const{style:i}=t;if(i.left=`${e.x}px`,i.top=`${e.y}px`,i.width=`${e.width}px`,i.height=`${e.height}px`,null==n)i.margin=\"\";else{const{top:t,right:e,bottom:o,left:s}=n;i.margin=`${t}px ${e}px ${o}px ${s}px`}},n.children=function(t){return Array.from(t.children)};class p{constructor(t){this.el=t,this.classList=t.classList}get values(){const t=[];for(let e=0;e{document.addEventListener(\"DOMContentLoaded\",(()=>t()),{once:!0})}))}},\n", + " function _(o,i,t,e,r){e(),t.root=\"bk-root\",t.default=\".bk-root{position:relative;width:auto;height:auto;box-sizing:border-box;font-family:Helvetica, Arial, sans-serif;font-size:13px;}.bk-root .bk,.bk-root .bk:before,.bk-root .bk:after{box-sizing:inherit;margin:0;border:0;padding:0;background-image:none;font-family:inherit;font-size:100%;line-height:1.42857143;}.bk-root pre.bk{font-family:Courier, monospace;}\"},\n", + " function _(e,t,r,a,c){a();const n=e(1),l=e(46);c(\"Line\",l.Line),c(\"LineScalar\",l.LineScalar),c(\"LineVector\",l.LineVector);const i=e(49);c(\"Fill\",i.Fill),c(\"FillScalar\",i.FillScalar),c(\"FillVector\",i.FillVector);const s=e(50);c(\"Text\",s.Text),c(\"TextScalar\",s.TextScalar),c(\"TextVector\",s.TextVector);const o=e(51);c(\"Hatch\",o.Hatch),c(\"HatchScalar\",o.HatchScalar),c(\"HatchVector\",o.HatchVector);const u=(0,n.__importStar)(e(48)),V=e(47);c(\"VisualProperties\",V.VisualProperties),c(\"VisualUniforms\",V.VisualUniforms);class h{constructor(e){this._visuals=[];for(const[t,r]of e.model._mixins){const a=(()=>{switch(r){case u.Line:return new l.Line(e,t);case u.LineScalar:return new l.LineScalar(e,t);case u.LineVector:return new l.LineVector(e,t);case u.Fill:return new i.Fill(e,t);case u.FillScalar:return new i.FillScalar(e,t);case u.FillVector:return new i.FillVector(e,t);case u.Text:return new s.Text(e,t);case u.TextScalar:return new s.TextScalar(e,t);case u.TextVector:return new s.TextVector(e,t);case u.Hatch:return new o.Hatch(e,t);case u.HatchScalar:return new o.HatchScalar(e,t);case u.HatchVector:return new o.HatchVector(e,t);default:throw new Error(\"unknown visual\")}})();a instanceof V.VisualProperties&&a.update(),this._visuals.push(a),Object.defineProperty(this,t+a.type,{get:()=>a,configurable:!1,enumerable:!0})}}*[Symbol.iterator](){yield*this._visuals}}r.Visuals=h,h.__name__=\"Visuals\"},\n", + " function _(e,t,i,l,s){l();const a=e(1),n=e(47),h=(0,a.__importStar)(e(48)),o=e(22),_=e(8);function r(e){if((0,_.isArray)(e))return e;switch(e){case\"solid\":return[];case\"dashed\":return[6];case\"dotted\":return[2,4];case\"dotdash\":return[2,4,6,4];case\"dashdot\":return[6,4,2,4];default:return e.split(\" \").map(Number).filter(_.isInteger)}}i.resolve_line_dash=r;class u extends n.VisualProperties{get doit(){const e=this.line_color.get_value(),t=this.line_alpha.get_value(),i=this.line_width.get_value();return!(null==e||0==t||0==i)}apply(e){const{doit:t}=this;return t&&(this.set_value(e),e.stroke()),t}values(){return{color:this.line_color.get_value(),alpha:this.line_alpha.get_value(),width:this.line_width.get_value(),join:this.line_join.get_value(),cap:this.line_cap.get_value(),dash:this.line_dash.get_value(),offset:this.line_dash_offset.get_value()}}set_value(e){const t=this.line_color.get_value(),i=this.line_alpha.get_value();e.strokeStyle=(0,o.color2css)(t,i),e.lineWidth=this.line_width.get_value(),e.lineJoin=this.line_join.get_value(),e.lineCap=this.line_cap.get_value(),e.lineDash=r(this.line_dash.get_value()),e.lineDashOffset=this.line_dash_offset.get_value()}}i.Line=u,u.__name__=\"Line\";class c extends n.VisualUniforms{get doit(){const e=this.line_color.value,t=this.line_alpha.value,i=this.line_width.value;return!(0==e||0==t||0==i)}apply(e){const{doit:t}=this;return t&&(this.set_value(e),e.stroke()),t}values(){return{color:this.line_color.value,alpha:this.line_alpha.value,width:this.line_width.value,join:this.line_join.value,cap:this.line_cap.value,dash:this.line_dash.value,offset:this.line_dash_offset.value}}set_value(e){const t=this.line_color.value,i=this.line_alpha.value;e.strokeStyle=(0,o.color2css)(t,i),e.lineWidth=this.line_width.value,e.lineJoin=this.line_join.value,e.lineCap=this.line_cap.value,e.lineDash=r(this.line_dash.value),e.lineDashOffset=this.line_dash_offset.value}}i.LineScalar=c,c.__name__=\"LineScalar\";class d extends n.VisualUniforms{get doit(){const{line_color:e}=this;if(e.is_Scalar()&&0==e.value)return!1;const{line_alpha:t}=this;if(t.is_Scalar()&&0==t.value)return!1;const{line_width:i}=this;return!i.is_Scalar()||0!=i.value}apply(e,t){const{doit:i}=this;return i&&(this.set_vectorize(e,t),e.stroke()),i}values(e){return{color:this.line_color.get(e),alpha:this.line_alpha.get(e),width:this.line_width.get(e),join:this.line_join.get(e),cap:this.line_cap.get(e),dash:this.line_dash.get(e),offset:this.line_dash_offset.get(e)}}set_vectorize(e,t){const i=this.line_color.get(t),l=this.line_alpha.get(t),s=this.line_width.get(t),a=this.line_join.get(t),n=this.line_cap.get(t),h=this.line_dash.get(t),_=this.line_dash_offset.get(t);e.strokeStyle=(0,o.color2css)(i,l),e.lineWidth=s,e.lineJoin=a,e.lineCap=n,e.lineDash=r(h),e.lineDashOffset=_}}i.LineVector=d,d.__name__=\"LineVector\",u.prototype.type=\"line\",u.prototype.attrs=Object.keys(h.Line),c.prototype.type=\"line\",c.prototype.attrs=Object.keys(h.LineScalar),d.prototype.type=\"line\",d.prototype.attrs=Object.keys(h.LineVector)},\n", + " function _(t,s,o,i,r){i();class e{constructor(t,s=\"\"){this.obj=t,this.prefix=s;const o=this;this._props=[];for(const i of this.attrs){const r=t.model.properties[s+i];r.change.connect((()=>this.update())),o[i]=r,this._props.push(r)}}*[Symbol.iterator](){yield*this._props}update(){}}o.VisualProperties=e,e.__name__=\"VisualProperties\";class p{constructor(t,s=\"\"){this.obj=t,this.prefix=s;for(const o of this.attrs)Object.defineProperty(this,o,{get:()=>t[s+o]})}*[Symbol.iterator](){for(const t of this.attrs)yield this.obj.model.properties[this.prefix+t]}update(){}}o.VisualUniforms=p,p.__name__=\"VisualUniforms\"},\n", + " function _(e,l,t,a,c){a();const r=e(1),o=(0,r.__importStar)(e(18)),n=e(20),i=(0,r.__importStar)(e(21)),_=e(13);t.Line={line_color:[i.Nullable(i.Color),\"black\"],line_alpha:[i.Alpha,1],line_width:[i.Number,1],line_join:[n.LineJoin,\"bevel\"],line_cap:[n.LineCap,\"butt\"],line_dash:[i.Or(n.LineDash,i.Array(i.Number)),[]],line_dash_offset:[i.Number,0]},t.Fill={fill_color:[i.Nullable(i.Color),\"gray\"],fill_alpha:[i.Alpha,1]},t.Hatch={hatch_color:[i.Nullable(i.Color),\"black\"],hatch_alpha:[i.Alpha,1],hatch_scale:[i.Number,12],hatch_pattern:[i.Nullable(i.Or(n.HatchPatternType,i.String)),null],hatch_weight:[i.Number,1],hatch_extra:[i.Dict(i.AnyRef()),{}]},t.Text={text_color:[i.Nullable(i.Color),\"#444444\"],text_alpha:[i.Alpha,1],text_font:[o.Font,\"helvetica\"],text_font_size:[i.FontSize,\"16px\"],text_font_style:[n.FontStyle,\"normal\"],text_align:[n.TextAlign,\"left\"],text_baseline:[n.TextBaseline,\"bottom\"],text_line_height:[i.Number,1.2]},t.LineScalar={line_color:[o.ColorScalar,\"black\"],line_alpha:[o.NumberScalar,1],line_width:[o.NumberScalar,1],line_join:[o.LineJoinScalar,\"bevel\"],line_cap:[o.LineCapScalar,\"butt\"],line_dash:[o.LineDashScalar,[]],line_dash_offset:[o.NumberScalar,0]},t.FillScalar={fill_color:[o.ColorScalar,\"gray\"],fill_alpha:[o.NumberScalar,1]},t.HatchScalar={hatch_color:[o.ColorScalar,\"black\"],hatch_alpha:[o.NumberScalar,1],hatch_scale:[o.NumberScalar,12],hatch_pattern:[o.NullStringScalar,null],hatch_weight:[o.NumberScalar,1],hatch_extra:[o.AnyScalar,{}]},t.TextScalar={text_color:[o.ColorScalar,\"#444444\"],text_alpha:[o.NumberScalar,1],text_font:[o.FontScalar,\"helvetica\"],text_font_size:[o.FontSizeScalar,\"16px\"],text_font_style:[o.FontStyleScalar,\"normal\"],text_align:[o.TextAlignScalar,\"left\"],text_baseline:[o.TextBaselineScalar,\"bottom\"],text_line_height:[o.NumberScalar,1.2]},t.LineVector={line_color:[o.ColorSpec,\"black\"],line_alpha:[o.NumberSpec,1],line_width:[o.NumberSpec,1],line_join:[o.LineJoinSpec,\"bevel\"],line_cap:[o.LineCapSpec,\"butt\"],line_dash:[o.LineDashSpec,[]],line_dash_offset:[o.NumberSpec,0]},t.FillVector={fill_color:[o.ColorSpec,\"gray\"],fill_alpha:[o.NumberSpec,1]},t.HatchVector={hatch_color:[o.ColorSpec,\"black\"],hatch_alpha:[o.NumberSpec,1],hatch_scale:[o.NumberSpec,12],hatch_pattern:[o.NullStringSpec,null],hatch_weight:[o.NumberSpec,1],hatch_extra:[o.AnyScalar,{}]},t.TextVector={text_color:[o.ColorSpec,\"#444444\"],text_alpha:[o.NumberSpec,1],text_font:[o.FontSpec,\"helvetica\"],text_font_size:[o.FontSizeSpec,\"16px\"],text_font_style:[o.FontStyleSpec,\"normal\"],text_align:[o.TextAlignSpec,\"left\"],text_baseline:[o.TextBaselineSpec,\"bottom\"],text_line_height:[o.NumberSpec,1.2]},t.attrs_of=function(e,l,t,a=!1){const c={};for(const r of(0,_.keys)(t)){const t=`${l}${r}`,o=e[t];c[a?t:r]=o}return c}},\n", + " function _(l,t,e,i,s){i();const a=l(1),o=l(47),r=(0,a.__importStar)(l(48)),_=l(22);class c extends o.VisualProperties{get doit(){const l=this.fill_color.get_value(),t=this.fill_alpha.get_value();return!(null==l||0==t)}apply(l,t){const{doit:e}=this;return e&&(this.set_value(l),l.fill(t)),e}values(){return{color:this.fill_color.get_value(),alpha:this.fill_alpha.get_value()}}set_value(l){const t=this.fill_color.get_value(),e=this.fill_alpha.get_value();l.fillStyle=(0,_.color2css)(t,e)}}e.Fill=c,c.__name__=\"Fill\";class h extends o.VisualUniforms{get doit(){const l=this.fill_color.value,t=this.fill_alpha.value;return!(0==l||0==t)}apply(l,t){const{doit:e}=this;return e&&(this.set_value(l),l.fill(t)),e}values(){return{color:this.fill_color.value,alpha:this.fill_alpha.value}}set_value(l){const t=this.fill_color.value,e=this.fill_alpha.value;l.fillStyle=(0,_.color2css)(t,e)}}e.FillScalar=h,h.__name__=\"FillScalar\";class u extends o.VisualUniforms{get doit(){const{fill_color:l}=this;if(l.is_Scalar()&&0==l.value)return!1;const{fill_alpha:t}=this;return!t.is_Scalar()||0!=t.value}apply(l,t,e){const{doit:i}=this;return i&&(this.set_vectorize(l,t),l.fill(e)),i}values(l){return{color:this.fill_color.get(l),alpha:this.fill_alpha.get(l)}}set_vectorize(l,t){const e=this.fill_color.get(t),i=this.fill_alpha.get(t);l.fillStyle=(0,_.color2css)(e,i)}}e.FillVector=u,u.__name__=\"FillVector\",c.prototype.type=\"fill\",c.prototype.attrs=Object.keys(r.Fill),h.prototype.type=\"fill\",h.prototype.attrs=Object.keys(r.FillScalar),u.prototype.type=\"fill\",u.prototype.attrs=Object.keys(r.FillVector)},\n", + " function _(t,e,l,s,_){s();const i=t(1),a=t(47),o=(0,i.__importStar)(t(48)),n=t(22);class h extends a.VisualProperties{get doit(){const t=this.text_color.get_value(),e=this.text_alpha.get_value();return!(null==t||0==e)}values(){return{color:this.text_color.get_value(),alpha:this.text_alpha.get_value(),font:this.text_font.get_value(),font_size:this.text_font_size.get_value(),font_style:this.text_font_style.get_value(),align:this.text_align.get_value(),baseline:this.text_baseline.get_value(),line_height:this.text_line_height.get_value()}}set_value(t){const e=this.text_color.get_value(),l=this.text_alpha.get_value();t.fillStyle=(0,n.color2css)(e,l),t.font=this.font_value(),t.textAlign=this.text_align.get_value(),t.textBaseline=this.text_baseline.get_value()}font_value(){return`${this.text_font_style.get_value()} ${this.text_font_size.get_value()} ${this.text_font.get_value()}`}}l.Text=h,h.__name__=\"Text\";class x extends a.VisualUniforms{get doit(){const t=this.text_color.value,e=this.text_alpha.value;return!(0==t||0==e)}values(){return{color:this.text_color.value,alpha:this.text_alpha.value,font:this.text_font.value,font_size:this.text_font_size.value,font_style:this.text_font_style.value,align:this.text_align.value,baseline:this.text_baseline.value,line_height:this.text_line_height.value}}set_value(t){const e=this.text_color.value,l=this.text_alpha.value,s=this.font_value(),_=this.text_align.value,i=this.text_baseline.value;t.fillStyle=(0,n.color2css)(e,l),t.font=s,t.textAlign=_,t.textBaseline=i}font_value(){return`${this.text_font_style.value} ${this.text_font_size.value} ${this.text_font.value}`}}l.TextScalar=x,x.__name__=\"TextScalar\";class u extends a.VisualUniforms{values(t){return{color:this.text_color.get(t),alpha:this.text_alpha.get(t),font:this.text_font.get(t),font_size:this.text_font_size.get(t),font_style:this.text_font_style.get(t),align:this.text_align.get(t),baseline:this.text_baseline.get(t),line_height:this.text_line_height.get(t)}}get doit(){const{text_color:t}=this;if(t.is_Scalar()&&0==t.value)return!1;const{text_alpha:e}=this;return!e.is_Scalar()||0!=e.value}set_vectorize(t,e){const l=this.text_color.get(e),s=this.text_alpha.get(e),_=this.font_value(e),i=this.text_align.get(e),a=this.text_baseline.get(e);t.fillStyle=(0,n.color2css)(l,s),t.font=_,t.textAlign=i,t.textBaseline=a}font_value(t){return`${this.text_font_style.get(t)} ${this.text_font_size.get(t)} ${this.text_font.get(t)}`}}l.TextVector=u,u.__name__=\"TextVector\",h.prototype.type=\"text\",h.prototype.attrs=Object.keys(o.Text),x.prototype.type=\"text\",x.prototype.attrs=Object.keys(o.TextScalar),u.prototype.type=\"text\",u.prototype.attrs=Object.keys(o.TextVector)},\n", + " function _(t,e,a,r,i){r();const h=t(1),s=t(47),n=t(52),c=(0,h.__importStar)(t(18)),_=(0,h.__importStar)(t(48));class l extends s.VisualProperties{constructor(){super(...arguments),this._update_iteration=0}update(){if(this._update_iteration++,this._hatch_image=null,!this.doit)return;const t=this.hatch_color.get_value(),e=this.hatch_alpha.get_value(),a=this.hatch_scale.get_value(),r=this.hatch_pattern.get_value(),i=this.hatch_weight.get_value(),h=t=>{this._hatch_image=t},s=this.hatch_extra.get_value()[r];if(null!=s){const r=s.get_pattern(t,e,a,i);if(r instanceof Promise){const{_update_iteration:t}=this;r.then((e=>{this._update_iteration==t&&(h(e),this.obj.request_render())}))}else h(r)}else{const s=this.obj.canvas.create_layer(),c=(0,n.get_pattern)(s,r,t,e,a,i);h(c)}}get doit(){const t=this.hatch_color.get_value(),e=this.hatch_alpha.get_value(),a=this.hatch_pattern.get_value();return!(null==t||0==e||\" \"==a||\"blank\"==a||null==a)}apply(t,e){const{doit:a}=this;return a&&(this.set_value(t),t.layer.undo_transform((()=>t.fill(e)))),a}set_value(t){const e=this.pattern(t);t.fillStyle=null!=e?e:\"transparent\"}pattern(t){const e=this._hatch_image;return null==e?null:t.createPattern(e,this.repetition())}repetition(){const t=this.hatch_pattern.get_value(),e=this.hatch_extra.get_value()[t];if(null==e)return\"repeat\";switch(e.repetition){case\"repeat\":return\"repeat\";case\"repeat_x\":return\"repeat-x\";case\"repeat_y\":return\"repeat-y\";case\"no_repeat\":return\"no-repeat\"}}}a.Hatch=l,l.__name__=\"Hatch\";class o extends s.VisualUniforms{constructor(){super(...arguments),this._static_doit=!1,this._update_iteration=0}_compute_static_doit(){const t=this.hatch_color.value,e=this.hatch_alpha.value,a=this.hatch_pattern.value;return!(null==t||0==e||\" \"==a||\"blank\"==a||null==a)}update(){this._update_iteration++;const t=this.hatch_color.length;if(this._hatch_image=new c.UniformScalar(null,t),this._static_doit=this._compute_static_doit(),!this._static_doit)return;const e=this.hatch_color.value,a=this.hatch_alpha.value,r=this.hatch_scale.value,i=this.hatch_pattern.value,h=this.hatch_weight.value,s=e=>{this._hatch_image=new c.UniformScalar(e,t)},_=this.hatch_extra.value[i];if(null!=_){const t=_.get_pattern(e,a,r,h);if(t instanceof Promise){const{_update_iteration:e}=this;t.then((t=>{this._update_iteration==e&&(s(t),this.obj.request_render())}))}else s(t)}else{const t=this.obj.canvas.create_layer(),c=(0,n.get_pattern)(t,i,e,a,r,h);s(c)}}get doit(){return this._static_doit}apply(t,e){const{doit:a}=this;return a&&(this.set_value(t),t.layer.undo_transform((()=>t.fill(e)))),a}set_value(t){var e;t.fillStyle=null!==(e=this.pattern(t))&&void 0!==e?e:\"transparent\"}pattern(t){const e=this._hatch_image.value;return null==e?null:t.createPattern(e,this.repetition())}repetition(){const t=this.hatch_pattern.value,e=this.hatch_extra.value[t];if(null==e)return\"repeat\";switch(e.repetition){case\"repeat\":return\"repeat\";case\"repeat_x\":return\"repeat-x\";case\"repeat_y\":return\"repeat-y\";case\"no_repeat\":return\"no-repeat\"}}}a.HatchScalar=o,o.__name__=\"HatchScalar\";class u extends s.VisualUniforms{constructor(){super(...arguments),this._static_doit=!1,this._update_iteration=0}_compute_static_doit(){const{hatch_color:t}=this;if(t.is_Scalar()&&0==t.value)return!1;const{hatch_alpha:e}=this;if(e.is_Scalar()&&0==e.value)return!1;const{hatch_pattern:a}=this;if(a.is_Scalar()){const t=a.value;if(\" \"==t||\"blank\"==t||null==t)return!1}return!0}update(){this._update_iteration++;const t=this.hatch_color.length;if(this._hatch_image=new c.UniformScalar(null,t),this._static_doit=this._compute_static_doit(),!this._static_doit)return;const e=(t,e,a,r,i,h)=>{const s=this.hatch_extra.value[t];if(null!=s){const t=s.get_pattern(e,a,r,i);if(t instanceof Promise){const{_update_iteration:e}=this;t.then((t=>{this._update_iteration==e&&(h(t),this.obj.request_render())}))}else h(t)}else{const s=this.obj.canvas.create_layer(),c=(0,n.get_pattern)(s,t,e,a,r,i);h(c)}};if(this.hatch_color.is_Scalar()&&this.hatch_alpha.is_Scalar()&&this.hatch_scale.is_Scalar()&&this.hatch_pattern.is_Scalar()&&this.hatch_weight.is_Scalar()){const a=this.hatch_color.value,r=this.hatch_alpha.value,i=this.hatch_scale.value;e(this.hatch_pattern.value,a,r,i,this.hatch_weight.value,(e=>{this._hatch_image=new c.UniformScalar(e,t)}))}else{const a=new Array(t);a.fill(null),this._hatch_image=new c.UniformVector(a);for(let r=0;r{a[r]=t}))}}}get doit(){return this._static_doit}apply(t,e,a){const{doit:r}=this;return r&&(this.set_vectorize(t,e),t.layer.undo_transform((()=>t.fill(a)))),r}set_vectorize(t,e){var a;t.fillStyle=null!==(a=this.pattern(t,e))&&void 0!==a?a:\"transparent\"}pattern(t,e){const a=this._hatch_image.get(e);return null==a?null:t.createPattern(a,this.repetition(e))}repetition(t){const e=this.hatch_pattern.get(t),a=this.hatch_extra.value[e];if(null==a)return\"repeat\";switch(a.repetition){case\"repeat\":return\"repeat\";case\"repeat_x\":return\"repeat-x\";case\"repeat_y\":return\"repeat-y\";case\"no_repeat\":return\"no-repeat\"}}}a.HatchVector=u,u.__name__=\"HatchVector\",l.prototype.type=\"hatch\",l.prototype.attrs=Object.keys(_.Hatch),o.prototype.type=\"hatch\",o.prototype.attrs=Object.keys(_.HatchScalar),u.prototype.type=\"hatch\",u.prototype.attrs=Object.keys(_.HatchVector)},\n", + " function _(e,o,a,s,r){s();const i=e(22);function l(e,o,a){e.moveTo(0,a+.5),e.lineTo(o,a+.5),e.stroke()}function n(e,o,a){e.moveTo(a+.5,0),e.lineTo(a+.5,o),e.stroke()}function t(e,o){e.moveTo(0,o),e.lineTo(o,0),e.stroke(),e.moveTo(0,0),e.lineTo(o,o),e.stroke()}a.hatch_aliases={\" \":\"blank\",\".\":\"dot\",o:\"ring\",\"-\":\"horizontal_line\",\"|\":\"vertical_line\",\"+\":\"cross\",'\"':\"horizontal_dash\",\":\":\"vertical_dash\",\"@\":\"spiral\",\"/\":\"right_diagonal_line\",\"\\\\\":\"left_diagonal_line\",x:\"diagonal_cross\",\",\":\"right_diagonal_dash\",\"`\":\"left_diagonal_dash\",v:\"horizontal_wave\",\">\":\"vertical_wave\",\"*\":\"criss_cross\"},a.get_pattern=function(e,o,s,r,c,k){return e.resize(c,c),e.prepare(),function(e,o,s,r,c,k){var _;const T=c,v=T/2,h=v/2,d=(0,i.color2css)(s,r);switch(e.strokeStyle=d,e.fillStyle=d,e.lineCap=\"square\",e.lineWidth=k,null!==(_=a.hatch_aliases[o])&&void 0!==_?_:o){case\"blank\":break;case\"dot\":e.arc(v,v,v/2,0,2*Math.PI,!0),e.fill();break;case\"ring\":e.arc(v,v,v/2,0,2*Math.PI,!0),e.stroke();break;case\"horizontal_line\":l(e,T,v);break;case\"vertical_line\":n(e,T,v);break;case\"cross\":l(e,T,v),n(e,T,v);break;case\"horizontal_dash\":l(e,v,v);break;case\"vertical_dash\":n(e,v,v);break;case\"spiral\":{const o=T/30;e.moveTo(v,v);for(let a=0;a<360;a++){const s=.1*a,r=v+o*s*Math.cos(s),i=v+o*s*Math.sin(s);e.lineTo(r,i)}e.stroke();break}case\"right_diagonal_line\":e.moveTo(.5-h,T),e.lineTo(h+.5,0),e.stroke(),e.moveTo(h+.5,T),e.lineTo(3*h+.5,0),e.stroke(),e.moveTo(3*h+.5,T),e.lineTo(5*h+.5,0),e.stroke(),e.stroke();break;case\"left_diagonal_line\":e.moveTo(h+.5,T),e.lineTo(.5-h,0),e.stroke(),e.moveTo(3*h+.5,T),e.lineTo(h+.5,0),e.stroke(),e.moveTo(5*h+.5,T),e.lineTo(3*h+.5,0),e.stroke(),e.stroke();break;case\"diagonal_cross\":t(e,T);break;case\"right_diagonal_dash\":e.moveTo(h+.5,3*h+.5),e.lineTo(3*h+.5,h+.5),e.stroke();break;case\"left_diagonal_dash\":e.moveTo(h+.5,h+.5),e.lineTo(3*h+.5,3*h+.5),e.stroke();break;case\"horizontal_wave\":e.moveTo(0,h),e.lineTo(v,3*h),e.lineTo(T,h),e.stroke();break;case\"vertical_wave\":e.moveTo(h,0),e.lineTo(3*h,v),e.lineTo(h,T),e.stroke();break;case\"criss_cross\":t(e,T),l(e,T,v),n(e,T,v)}}(e.ctx,o,s,r,c,k),e.canvas}},\n", + " function _(e,t,s,n,c){var a;n();const i=e(14),r=e(8),l=e(13),o=e(26),_=e(19);class h extends i.HasProps{constructor(e){super(e)}get is_syncable(){return this.syncable}[o.equals](e,t){return t.eq(this.id,e.id)&&super[o.equals](e,t)}initialize(){super.initialize(),this._js_callbacks=new Map}connect_signals(){super.connect_signals(),this._update_property_callbacks(),this.connect(this.properties.js_property_callbacks.change,(()=>this._update_property_callbacks())),this.connect(this.properties.js_event_callbacks.change,(()=>this._update_event_callbacks())),this.connect(this.properties.subscribed_events.change,(()=>this._update_event_callbacks()))}_process_event(e){var t;for(const s of null!==(t=this.js_event_callbacks[e.event_name])&&void 0!==t?t:[])s.execute(e);null!=this.document&&this.subscribed_events.some((t=>t==e.event_name))&&this.document.event_manager.send_event(e)}trigger_event(e){null!=this.document&&(e.origin=this,this.document.event_manager.trigger(e))}_update_event_callbacks(){null!=this.document?this.document.event_manager.subscribed_models.add(this):_.logger.warn(\"WARNING: Document not defined for updating event callbacks\")}_update_property_callbacks(){const e=e=>{const[t,s=null]=e.split(\":\");return null!=s?this.properties[s][t]:this[t]};for(const[t,s]of this._js_callbacks){const n=e(t);for(const e of s)this.disconnect(n,e)}this._js_callbacks.clear();for(const[t,s]of(0,l.entries)(this.js_property_callbacks)){const n=s.map((e=>()=>e.execute(this)));this._js_callbacks.set(t,n);const c=e(t);for(const e of n)this.connect(c,e)}}_doc_attached(){(0,l.isEmpty)(this.js_event_callbacks)&&0==this.subscribed_events.length||this._update_event_callbacks()}_doc_detached(){this.document.event_manager.subscribed_models.delete(this)}select(e){if((0,r.isString)(e))return[...this.references()].filter((t=>t instanceof h&&t.name===e));if(e.prototype instanceof i.HasProps)return[...this.references()].filter((t=>t instanceof e));throw new Error(\"invalid selector\")}select_one(e){const t=this.select(e);switch(t.length){case 0:return null;case 1:return t[0];default:throw new Error(\"found more than one object matching given selector\")}}}s.Model=h,a=h,h.__name__=\"Model\",a.define((({Any:e,Unknown:t,Boolean:s,String:n,Array:c,Dict:a,Nullable:i})=>({tags:[c(t),[]],name:[i(n),null],js_property_callbacks:[a(c(e)),{}],js_event_callbacks:[a(c(e)),{}],subscribed_events:[c(n),[]],syncable:[s,!0]})))},\n", + " function _(e,t,s,a,r){var c,n;a();const _=e(12),o=e(53),i=e(55),l=e(59),u=e(61),g=e(62),h=e(57),p=e(63),m=e(67);class x{constructor(e,t){this.x_scale=e,this.y_scale=t,this.x_source=this.x_scale.source_range,this.y_source=this.y_scale.source_range,this.ranges=[this.x_source,this.y_source],this.scales=[this.x_scale,this.y_scale]}map_to_screen(e,t){return[this.x_scale.v_compute(e),this.y_scale.v_compute(t)]}map_from_screen(e,t){return[this.x_scale.v_invert(e),this.y_scale.v_invert(t)]}}s.CoordinateTransform=x,x.__name__=\"CoordinateTransform\";class y extends o.Model{constructor(e){super(e)}get x_ranges(){return new Map([[\"default\",this.x_source]])}get y_ranges(){return new Map([[\"default\",this.y_source]])}_get_scale(e,t,s){if(e instanceof m.FactorRange!=t instanceof g.CategoricalScale)throw new Error(`Range ${e.type} is incompatible is Scale ${t.type}`);t instanceof u.LogScale&&e instanceof p.DataRange1d&&(e.scale_hint=\"log\");const a=t.clone();return a.setv({source_range:e,target_range:s}),a}get_transform(e){const{x_source:t,x_scale:s,x_target:a}=this,r=this._get_scale(t,s,a),{y_source:c,y_scale:n,y_target:_}=this,o=this._get_scale(c,n,_),i=new v({source_scale:r,source_range:r.source_range,target_scale:e.x_scale,target_range:e.x_target}),l=new v({source_scale:o,source_range:o.source_range,target_scale:e.y_scale,target_range:e.y_target});return new x(i,l)}}s.CoordinateMapping=y,c=y,y.__name__=\"CoordinateMapping\",c.define((({Ref:e})=>({x_source:[e(h.Range),()=>new p.DataRange1d],y_source:[e(h.Range),()=>new p.DataRange1d],x_scale:[e(i.Scale),()=>new l.LinearScale],y_scale:[e(i.Scale),()=>new l.LinearScale],x_target:[e(h.Range)],y_target:[e(h.Range)]})));class v extends i.Scale{constructor(e){super(e)}get s_compute(){const e=this.source_scale.s_compute,t=this.target_scale.s_compute;return s=>t(e(s))}get s_invert(){const e=this.source_scale.s_invert,t=this.target_scale.s_invert;return s=>e(t(s))}compute(e){return this.s_compute(e)}v_compute(e){const{s_compute:t}=this;return(0,_.map)(e,t)}invert(e){return this.s_invert(e)}v_invert(e){const{s_invert:t}=this;return(0,_.map)(e,t)}}s.CompositeScale=v,n=v,v.__name__=\"CompositeScale\",n.internal((({Ref:e})=>({source_scale:[e(i.Scale)],target_scale:[e(i.Scale)]})))},\n", + " function _(e,t,r,n,s){var _;n();const a=e(56),c=e(57),o=e(58),i=e(24);class u extends a.Transform{constructor(e){super(e)}compute(e){return this.s_compute(e)}v_compute(e){const t=new i.ScreenArray(e.length),{s_compute:r}=this;for(let n=0;n({source_range:[e(c.Range)],target_range:[e(o.Range1d)]})))},\n", + " function _(n,s,o,r,c){r();const e=n(53);class t extends e.Model{constructor(n){super(n)}}o.Transform=t,t.__name__=\"Transform\"},\n", + " function _(e,t,n,i,s){var r;i();const a=e(53);class l extends a.Model{constructor(e){super(e),this.have_updated_interactively=!1}get is_reversed(){return this.start>this.end}get is_valid(){return isFinite(this.min)&&isFinite(this.max)}get span(){return Math.abs(this.end-this.start)}}n.Range=l,r=l,l.__name__=\"Range\",r.define((({Number:e,Tuple:t,Or:n,Auto:i,Nullable:s})=>({bounds:[s(n(t(s(e),s(e)),i)),null],min_interval:[s(e),null],max_interval:[s(e),null]}))),r.internal((({Array:e,AnyRef:t})=>({plots:[e(t()),[]]})))},\n", + " function _(t,e,s,n,r){var a;n();const i=t(57);class _ extends i.Range{constructor(t){super(t)}_set_auto_bounds(){if(\"auto\"==this.bounds){const t=Math.min(this._reset_start,this._reset_end),e=Math.max(this._reset_start,this._reset_end);this.setv({bounds:[t,e]},{silent:!0})}}initialize(){super.initialize(),this._set_auto_bounds()}get min(){return Math.min(this.start,this.end)}get max(){return Math.max(this.start,this.end)}reset(){this._set_auto_bounds();const{_reset_start:t,_reset_end:e}=this;this.start!=t||this.end!=e?this.setv({start:t,end:e}):this.change.emit()}map(t){return new _({start:t(this.start),end:t(this.end)})}widen(t){let{start:e,end:s}=this;return this.is_reversed?(e+=t,s-=t):(e-=t,s+=t),new _({start:e,end:s})}}s.Range1d=_,a=_,_.__name__=\"Range1d\",a.define((({Number:t,Nullable:e})=>({start:[t,0],end:[t,1],reset_start:[e(t),null,{on_update(t,e){e._reset_start=null!=t?t:e.start}}],reset_end:[e(t),null,{on_update(t,e){e._reset_end=null!=t?t:e.end}}]})))},\n", + " function _(t,e,n,r,s){r();const a=t(60);class _ extends a.ContinuousScale{constructor(t){super(t)}get s_compute(){const[t,e]=this._linear_compute_state();return n=>t*n+e}get s_invert(){const[t,e]=this._linear_compute_state();return n=>(n-e)/t}_linear_compute_state(){const t=this.source_range.start,e=this.source_range.end,n=this.target_range.start,r=(this.target_range.end-n)/(e-t);return[r,-r*t+n]}}n.LinearScale=_,_.__name__=\"LinearScale\"},\n", + " function _(n,c,o,s,e){s();const t=n(55);class u extends t.Scale{constructor(n){super(n)}}o.ContinuousScale=u,u.__name__=\"ContinuousScale\"},\n", + " function _(t,e,a,o,s){o();const r=t(60);class n extends r.ContinuousScale{constructor(t){super(t)}get s_compute(){const[t,e,a,o]=this._compute_state();return s=>{if(0==a)return 0;{const r=(Math.log(s)-o)/a;return isFinite(r)?r*t+e:NaN}}}get s_invert(){const[t,e,a,o]=this._compute_state();return s=>{const r=(s-e)/t;return Math.exp(a*r+o)}}_get_safe_factor(t,e){let a=t<0?0:t,o=e<0?0:e;if(a==o)if(0==a)[a,o]=[1,10];else{const t=Math.log(a)/Math.log(10);a=10**Math.floor(t),o=Math.ceil(t)!=Math.floor(t)?10**Math.ceil(t):10**(Math.ceil(t)+1)}return[a,o]}_compute_state(){const t=this.source_range.start,e=this.source_range.end,a=this.target_range.start,o=this.target_range.end-a,[s,r]=this._get_safe_factor(t,e);let n,c;0==s?(n=Math.log(r),c=0):(n=Math.log(r)-Math.log(s),c=Math.log(s));return[o,a,n,c]}}a.LogScale=n,n.__name__=\"LogScale\"},\n", + " function _(t,e,c,a,s){a();const n=t(55),r=t(59),{_linear_compute_state:o}=r.LinearScale.prototype;class l extends n.Scale{constructor(t){super(t)}get s_compute(){const[t,e]=o.call(this),c=this.source_range;return a=>t*c.synthetic(a)+e}get s_invert(){const[t,e]=o.call(this);return c=>(c-e)/t}}c.CategoricalScale=l,l.__name__=\"CategoricalScale\"},\n", + " function _(t,i,n,e,a){e();const s=t(1);var l;const _=t(64),o=t(20),r=t(9),h=t(19),d=(0,s.__importStar)(t(65)),u=t(66);class g extends _.DataRange{constructor(t){super(t),this.have_updated_interactively=!1}initialize(){super.initialize(),this._initial_start=this.start,this._initial_end=this.end,this._initial_range_padding=this.range_padding,this._initial_range_padding_units=this.range_padding_units,this._initial_follow=this.follow,this._initial_follow_interval=this.follow_interval,this._initial_default_span=this.default_span,this._plot_bounds=new Map}get min(){return Math.min(this.start,this.end)}get max(){return Math.max(this.start,this.end)}computed_renderers(){const{renderers:t,names:i}=this,n=(0,r.concat)(this.plots.map((t=>t.data_renderers)));return(0,u.compute_renderers)(0==t.length?\"auto\":t,n,i)}_compute_plot_bounds(t,i){let n=d.empty();for(const e of t){const t=i.get(e);null==t||!e.visible&&this.only_visible||(n=d.union(n,t))}return n}adjust_bounds_for_aspect(t,i){const n=d.empty();let e=t.x1-t.x0;e<=0&&(e=1);let a=t.y1-t.y0;a<=0&&(a=1);const s=.5*(t.x1+t.x0),l=.5*(t.y1+t.y0);return el&&(\"start\"==this.follow?a=e+s*l:\"end\"==this.follow&&(e=a-s*l)),[e,a]}update(t,i,n,e){if(this.have_updated_interactively)return;const a=this.computed_renderers();let s=this._compute_plot_bounds(a,t);null!=e&&(s=this.adjust_bounds_for_aspect(s,e)),this._plot_bounds.set(n,s);const[l,_]=this._compute_min_max(this._plot_bounds.entries(),i);let[o,r]=this._compute_range(l,_);null!=this._initial_start&&(\"log\"==this.scale_hint?this._initial_start>0&&(o=this._initial_start):o=this._initial_start),null!=this._initial_end&&(\"log\"==this.scale_hint?this._initial_end>0&&(r=this._initial_end):r=this._initial_end);let h=!1;\"auto\"==this.bounds&&(this.setv({bounds:[o,r]},{silent:!0}),h=!0);const[d,u]=[this.start,this.end];if(o!=d||r!=u){const t={};o!=d&&(t.start=o),r!=u&&(t.end=r),this.setv(t),h=!1}h&&this.change.emit()}reset(){this.have_updated_interactively=!1,this.setv({range_padding:this._initial_range_padding,range_padding_units:this._initial_range_padding_units,follow:this._initial_follow,follow_interval:this._initial_follow_interval,default_span:this._initial_default_span},{silent:!0}),this.change.emit()}}n.DataRange1d=g,l=g,g.__name__=\"DataRange1d\",l.define((({Boolean:t,Number:i,Nullable:n})=>({start:[i],end:[i],range_padding:[i,.1],range_padding_units:[o.PaddingUnits,\"percent\"],flipped:[t,!1],follow:[n(o.StartEnd),null],follow_interval:[n(i),null],default_span:[i,2],only_visible:[t,!1]}))),l.internal((({Enum:t})=>({scale_hint:[t(\"log\",\"auto\"),\"auto\"]})))},\n", + " function _(e,n,a,r,s){var t;r();const c=e(57);class _ extends c.Range{constructor(e){super(e)}}a.DataRange=_,t=_,_.__name__=\"DataRange\",t.define((({String:e,Array:n,AnyRef:a})=>({names:[n(e),[]],renderers:[n(a()),[]]})))},\n", + " function _(t,i,e,h,r){h();const s=t(24),n=t(26),{min:x,max:y}=Math;e.empty=function(){return{x0:1/0,y0:1/0,x1:-1/0,y1:-1/0}},e.positive_x=function(){return{x0:Number.MIN_VALUE,y0:-1/0,x1:1/0,y1:1/0}},e.positive_y=function(){return{x0:-1/0,y0:Number.MIN_VALUE,x1:1/0,y1:1/0}},e.union=function(t,i){return{x0:x(t.x0,i.x0),x1:y(t.x1,i.x1),y0:x(t.y0,i.y0),y1:y(t.y1,i.y1)}};class o{constructor(t){if(null==t)this.x0=0,this.y0=0,this.x1=0,this.y1=0;else if(\"x0\"in t){const{x0:i,y0:e,x1:h,y1:r}=t;if(!(i<=h&&e<=r))throw new Error(`invalid bbox {x0: ${i}, y0: ${e}, x1: ${h}, y1: ${r}}`);this.x0=i,this.y0=e,this.x1=h,this.y1=r}else if(\"x\"in t){const{x:i,y:e,width:h,height:r}=t;if(!(h>=0&&r>=0))throw new Error(`invalid bbox {x: ${i}, y: ${e}, width: ${h}, height: ${r}}`);this.x0=i,this.y0=e,this.x1=i+h,this.y1=e+r}else{let i,e,h,r;if(\"width\"in t)if(\"left\"in t)i=t.left,e=i+t.width;else if(\"right\"in t)e=t.right,i=e-t.width;else{const h=t.width/2;i=t.hcenter-h,e=t.hcenter+h}else i=t.left,e=t.right;if(\"height\"in t)if(\"top\"in t)h=t.top,r=h+t.height;else if(\"bottom\"in t)r=t.bottom,h=r-t.height;else{const i=t.height/2;h=t.vcenter-i,r=t.vcenter+i}else h=t.top,r=t.bottom;if(!(i<=e&&h<=r))throw new Error(`invalid bbox {left: ${i}, top: ${h}, right: ${e}, bottom: ${r}}`);this.x0=i,this.y0=h,this.x1=e,this.y1=r}}static from_rect({left:t,right:i,top:e,bottom:h}){return new o({x0:Math.min(t,i),y0:Math.min(e,h),x1:Math.max(t,i),y1:Math.max(e,h)})}equals(t){return this.x0==t.x0&&this.y0==t.y0&&this.x1==t.x1&&this.y1==t.y1}[n.equals](t,i){return i.eq(this.x0,t.x0)&&i.eq(this.y0,t.y0)&&i.eq(this.x1,t.x1)&&i.eq(this.y1,t.y1)}toString(){return`BBox({left: ${this.left}, top: ${this.top}, width: ${this.width}, height: ${this.height}})`}get left(){return this.x0}get top(){return this.y0}get right(){return this.x1}get bottom(){return this.y1}get p0(){return[this.x0,this.y0]}get p1(){return[this.x1,this.y1]}get x(){return this.x0}get y(){return this.y0}get width(){return this.x1-this.x0}get height(){return this.y1-this.y0}get size(){return{width:this.width,height:this.height}}get rect(){const{x0:t,y0:i,x1:e,y1:h}=this;return{p0:{x:t,y:i},p1:{x:e,y:i},p2:{x:e,y:h},p3:{x:t,y:h}}}get box(){const{x:t,y:i,width:e,height:h}=this;return{x:t,y:i,width:e,height:h}}get h_range(){return{start:this.x0,end:this.x1}}get v_range(){return{start:this.y0,end:this.y1}}get ranges(){return[this.h_range,this.v_range]}get aspect(){return this.width/this.height}get hcenter(){return(this.left+this.right)/2}get vcenter(){return(this.top+this.bottom)/2}get area(){return this.width*this.height}relative(){const{width:t,height:i}=this;return new o({x:0,y:0,width:t,height:i})}translate(t,i){const{x:e,y:h,width:r,height:s}=this;return new o({x:t+e,y:i+h,width:r,height:s})}relativize(t,i){return[t-this.x,i-this.y]}contains(t,i){return this.x0<=t&&t<=this.x1&&this.y0<=i&&i<=this.y1}clip(t,i){return tthis.x1&&(t=this.x1),ithis.y1&&(i=this.y1),[t,i]}grow_by(t){return new o({left:this.left-t,right:this.right+t,top:this.top-t,bottom:this.bottom+t})}shrink_by(t){return new o({left:this.left+t,right:this.right-t,top:this.top+t,bottom:this.bottom-t})}union(t){return new o({x0:x(this.x0,t.x0),y0:x(this.y0,t.y0),x1:y(this.x1,t.x1),y1:y(this.y1,t.y1)})}intersection(t){return this.intersects(t)?new o({x0:y(this.x0,t.x0),y0:y(this.y0,t.y0),x1:x(this.x1,t.x1),y1:x(this.y1,t.y1)}):null}intersects(t){return!(t.x1this.x1||t.y1this.y1)}get xview(){return{compute:t=>this.left+t,v_compute:t=>{const i=new s.ScreenArray(t.length),e=this.left;for(let h=0;hthis.bottom-t,v_compute:t=>{const i=new s.ScreenArray(t.length),e=this.bottom;for(let h=0;h0&&(r=r.filter((n=>(0,l.includes)(t,n.name)))),r}},\n", + " function _(t,n,e,i,s){var r;i();const a=t(57),o=t(20),g=t(21),p=t(24),c=t(9),l=t(8),u=t(11);function h(t,n,e=0){const i=new Map;for(let s=0;sa.get(t).value)));r.set(t,{value:l/s,mapping:a}),o+=s+n+p}return[r,(a.size-1)*n+g]}function _(t,n,e,i,s=0){var r;const a=new Map,o=new Map;for(const[n,e,i]of t){const t=null!==(r=o.get(n))&&void 0!==r?r:[];o.set(n,[...t,[e,i]])}let g=s,p=0;for(const[t,s]of o){const r=s.length,[o,l]=d(s,e,i,g);p+=l;const u=(0,c.sum)(s.map((([t])=>o.get(t).value)));a.set(t,{value:u/r,mapping:o}),g+=r+n+l}return[a,(o.size-1)*n+p]}e.Factor=(0,g.Or)(g.String,(0,g.Tuple)(g.String,g.String),(0,g.Tuple)(g.String,g.String,g.String)),e.FactorSeq=(0,g.Or)((0,g.Array)(g.String),(0,g.Array)((0,g.Tuple)(g.String,g.String)),(0,g.Array)((0,g.Tuple)(g.String,g.String,g.String))),e.map_one_level=h,e.map_two_levels=d,e.map_three_levels=_;class f extends a.Range{constructor(t){super(t)}get min(){return this.start}get max(){return this.end}initialize(){super.initialize(),this._init(!0)}connect_signals(){super.connect_signals(),this.connect(this.properties.factors.change,(()=>this.reset())),this.connect(this.properties.factor_padding.change,(()=>this.reset())),this.connect(this.properties.group_padding.change,(()=>this.reset())),this.connect(this.properties.subgroup_padding.change,(()=>this.reset())),this.connect(this.properties.range_padding.change,(()=>this.reset())),this.connect(this.properties.range_padding_units.change,(()=>this.reset()))}reset(){this._init(!1),this.change.emit()}_lookup(t){switch(t.length){case 1:{const[n]=t,e=this._mapping.get(n);return null!=e?e.value:NaN}case 2:{const[n,e]=t,i=this._mapping.get(n);if(null!=i){const t=i.mapping.get(e);if(null!=t)return t.value}return NaN}case 3:{const[n,e,i]=t,s=this._mapping.get(n);if(null!=s){const t=s.mapping.get(e);if(null!=t){const n=t.mapping.get(i);if(null!=n)return n.value}}return NaN}default:(0,u.unreachable)()}}synthetic(t){if((0,l.isNumber)(t))return t;if((0,l.isString)(t))return this._lookup([t]);let n=0;const e=t[t.length-1];return(0,l.isNumber)(e)&&(n=e,t=t.slice(0,-1)),this._lookup(t)+n}v_synthetic(t){const n=t.length,e=new p.ScreenArray(n);for(let i=0;i{if((0,c.every)(this.factors,l.isString)){const t=this.factors,[n,e]=h(t,this.factor_padding);return{levels:1,mapping:n,tops:null,mids:null,inside_padding:e}}if((0,c.every)(this.factors,(t=>(0,l.isArray)(t)&&2==t.length&&(0,l.isString)(t[0])&&(0,l.isString)(t[1])))){const t=this.factors,[n,e]=d(t,this.group_padding,this.factor_padding),i=[...n.keys()];return{levels:2,mapping:n,tops:i,mids:null,inside_padding:e}}if((0,c.every)(this.factors,(t=>(0,l.isArray)(t)&&3==t.length&&(0,l.isString)(t[0])&&(0,l.isString)(t[1])&&(0,l.isString)(t[2])))){const t=this.factors,[n,e]=_(t,this.group_padding,this.subgroup_padding,this.factor_padding),i=[...n.keys()],s=[];for(const[t,e]of n)for(const n of e.mapping.keys())s.push([t,n]);return{levels:3,mapping:n,tops:i,mids:s,inside_padding:e}}(0,u.unreachable)()})();this._mapping=e,this.tops=i,this.mids=s;let a=0,o=this.factors.length+r;if(\"percent\"==this.range_padding_units){const t=(o-a)*this.range_padding/2;a-=t,o+=t}else a-=this.range_padding,o+=this.range_padding;this.setv({start:a,end:o,levels:n},{silent:t}),\"auto\"==this.bounds&&this.setv({bounds:[a,o]},{silent:!0})}}e.FactorRange=f,r=f,f.__name__=\"FactorRange\",r.define((({Number:t})=>({factors:[e.FactorSeq,[]],factor_padding:[t,0],subgroup_padding:[t,.8],group_padding:[t,1.4],range_padding:[t,0],range_padding_units:[o.PaddingUnits,\"percent\"],start:[t],end:[t]}))),r.internal((({Number:t,String:n,Array:e,Tuple:i,Nullable:s})=>({levels:[t],mids:[s(e(i(n,n))),null],tops:[s(e(n)),null]})))},\n", + " function _(t,e,s,a,i){a();const n=t(1);var _;const r=t(69),o=t(112),l=t(48),d=t(20),h=t(24),c=t(113),u=(0,n.__importStar)(t(18)),v=t(10);class p extends r.DataAnnotationView{async lazy_initialize(){await super.lazy_initialize();const{start:t,end:e}=this.model;null!=t&&(this.start=await(0,c.build_view)(t,{parent:this})),null!=e&&(this.end=await(0,c.build_view)(e,{parent:this}))}set_data(t){var e,s;super.set_data(t),null===(e=this.start)||void 0===e||e.set_data(t),null===(s=this.end)||void 0===s||s.set_data(t)}remove(){var t,e;null===(t=this.start)||void 0===t||t.remove(),null===(e=this.end)||void 0===e||e.remove(),super.remove()}map_data(){const{frame:t}=this.plot_view;\"data\"==this.model.start_units?(this._sx_start=this.coordinates.x_scale.v_compute(this._x_start),this._sy_start=this.coordinates.y_scale.v_compute(this._y_start)):(this._sx_start=t.bbox.xview.v_compute(this._x_start),this._sy_start=t.bbox.yview.v_compute(this._y_start)),\"data\"==this.model.end_units?(this._sx_end=this.coordinates.x_scale.v_compute(this._x_end),this._sy_end=this.coordinates.y_scale.v_compute(this._y_end)):(this._sx_end=t.bbox.xview.v_compute(this._x_end),this._sy_end=t.bbox.yview.v_compute(this._y_end));const{_sx_start:e,_sy_start:s,_sx_end:a,_sy_end:i}=this,n=e.length,_=this._angles=new h.ScreenArray(n);for(let t=0;t({x_start:[u.XCoordinateSpec,{field:\"x_start\"}],y_start:[u.YCoordinateSpec,{field:\"y_start\"}],start_units:[d.SpatialUnits,\"data\"],start:[e(t(o.ArrowHead)),null],x_end:[u.XCoordinateSpec,{field:\"x_end\"}],y_end:[u.YCoordinateSpec,{field:\"y_end\"}],end_units:[d.SpatialUnits,\"data\"],end:[e(t(o.ArrowHead)),()=>new o.OpenHead]})))},\n", + " function _(t,e,n,s,a){s();const o=t(1);var i;const c=t(40),r=t(70),_=t(75),l=t(78),h=(0,o.__importStar)(t(18));class d extends c.AnnotationView{constructor(){super(...arguments),this._initial_set_data=!1}connect_signals(){super.connect_signals();const t=()=>{this.set_data(this.model.source),this._rerender()};this.connect(this.model.change,t),this.connect(this.model.source.streaming,t),this.connect(this.model.source.patching,t),this.connect(this.model.source.change,t)}_rerender(){this.request_render()}set_data(t){const e=this;for(const n of this.model)if(n instanceof h.VectorSpec||n instanceof h.ScalarSpec)if(n instanceof h.BaseCoordinateSpec){const s=n.array(t);e[`_${n.attr}`]=s}else{const s=n.uniform(t);e[`${n.attr}`]=s}this.plot_model.use_map&&(null!=e._x&&l.inplace.project_xy(e._x,e._y),null!=e._xs&&l.inplace.project_xsys(e._xs,e._ys));for(const t of this.visuals)t.update()}_render(){this._initial_set_data||(this.set_data(this.model.source),this._initial_set_data=!0),this.map_data(),this.paint(this.layer.ctx)}}n.DataAnnotationView=d,d.__name__=\"DataAnnotationView\";class u extends c.Annotation{constructor(t){super(t)}}n.DataAnnotation=u,i=u,u.__name__=\"DataAnnotation\",i.define((({Ref:t})=>({source:[t(r.ColumnarDataSource),()=>new _.ColumnDataSource]})))},\n", + " function _(t,e,n,s,a){var i;s();const r=t(71),l=t(15),c=t(19),o=t(73),h=t(8),u=t(9),g=t(13),d=t(72),_=t(74),m=t(29);class w extends r.DataSource{constructor(t){super(t),this.selection_manager=new o.SelectionManager(this)}get_array(t){let e=this.data[t];return null==e?this.data[t]=e=[]:(0,h.isArray)(e)||(this.data[t]=e=Array.from(e)),e}initialize(){super.initialize(),this._select=new l.Signal0(this,\"select\"),this.inspect=new l.Signal(this,\"inspect\"),this.streaming=new l.Signal0(this,\"streaming\"),this.patching=new l.Signal(this,\"patching\")}get_column(t){const e=this.data[t];return null!=e?e:null}columns(){return(0,g.keys)(this.data)}get_length(t=!0){const e=(0,u.uniq)((0,g.values)(this.data).map((t=>(0,m.is_NDArray)(t)?t.shape[0]:t.length)));switch(e.length){case 0:return null;case 1:return e[0];default:{const n=\"data source has columns of inconsistent lengths\";if(t)return c.logger.warn(n),e.sort()[0];throw new Error(n)}}}get length(){var t;return null!==(t=this.get_length())&&void 0!==t?t:0}clear(){const t={};for(const e of this.columns())t[e]=new this.data[e].constructor(0);this.data=t}}n.ColumnarDataSource=w,i=w,w.__name__=\"ColumnarDataSource\",i.define((({Ref:t})=>({selection_policy:[t(_.SelectionPolicy),()=>new _.UnionRenderers]}))),i.internal((({AnyRef:t})=>({inspected:[t(),()=>new d.Selection]})))},\n", + " function _(e,c,n,t,o){var a;t();const s=e(53),r=e(72);class l extends s.Model{constructor(e){super(e)}}n.DataSource=l,a=l,l.__name__=\"DataSource\",a.define((({Ref:e})=>({selected:[e(r.Selection),()=>new r.Selection]})))},\n", + " function _(i,e,s,t,n){var l;t();const c=i(53),d=i(9),h=i(13);class _ extends c.Model{constructor(i){super(i)}get_view(){return this.view}get selected_glyph(){return this.selected_glyphs.length>0?this.selected_glyphs[0]:null}add_to_selected_glyphs(i){this.selected_glyphs.push(i)}update(i,e=!0,s=\"replace\"){switch(s){case\"replace\":this.indices=i.indices,this.line_indices=i.line_indices,this.multiline_indices=i.multiline_indices,this.image_indices=i.image_indices,this.view=i.view,this.selected_glyphs=i.selected_glyphs;break;case\"append\":this.update_through_union(i);break;case\"intersect\":this.update_through_intersection(i);break;case\"subtract\":this.update_through_subtraction(i)}}clear(){this.indices=[],this.line_indices=[],this.multiline_indices={},this.image_indices=[],this.view=null,this.selected_glyphs=[]}map(i){return new _(Object.assign(Object.assign({},this.attributes),{indices:this.indices.map(i),multiline_indices:(0,h.to_object)((0,h.entries)(this.multiline_indices).map((([e,s])=>[i(Number(e)),s]))),image_indices:this.image_indices.map((e=>Object.assign(Object.assign({},e),{index:i(e.index)})))}))}is_empty(){return 0==this.indices.length&&0==this.line_indices.length&&0==this.image_indices.length}update_through_union(i){this.indices=(0,d.union)(this.indices,i.indices),this.selected_glyphs=(0,d.union)(i.selected_glyphs,this.selected_glyphs),this.line_indices=(0,d.union)(i.line_indices,this.line_indices),this.view=i.view,this.multiline_indices=(0,h.merge)(i.multiline_indices,this.multiline_indices)}update_through_intersection(i){this.indices=(0,d.intersection)(this.indices,i.indices),this.selected_glyphs=(0,d.union)(i.selected_glyphs,this.selected_glyphs),this.line_indices=(0,d.union)(i.line_indices,this.line_indices),this.view=i.view,this.multiline_indices=(0,h.merge)(i.multiline_indices,this.multiline_indices)}update_through_subtraction(i){this.indices=(0,d.difference)(this.indices,i.indices),this.selected_glyphs=(0,d.union)(i.selected_glyphs,this.selected_glyphs),this.line_indices=(0,d.union)(i.line_indices,this.line_indices),this.view=i.view,this.multiline_indices=(0,h.merge)(i.multiline_indices,this.multiline_indices)}}s.Selection=_,l=_,_.__name__=\"Selection\",l.define((({Int:i,Array:e,Dict:s})=>({indices:[e(i),[]],line_indices:[e(i),[]],multiline_indices:[s(e(i)),{}]}))),l.internal((({Int:i,Array:e,AnyRef:s,Struct:t,Nullable:n})=>({selected_glyphs:[e(s()),[]],view:[n(s()),null],image_indices:[e(t({index:i,dim1:i,dim2:i,flat_index:i})),[]]})))},\n", + " function _(e,t,o,s,c){s();const n=e(72);function i(e){return\"GlyphRenderer\"==e.model.type}function l(e){return\"GraphRenderer\"==e.model.type}class r{constructor(e){this.source=e,this.inspectors=new Map}select(e,t,o,s=\"replace\"){const c=[],n=[];for(const t of e)i(t)?c.push(t):l(t)&&n.push(t);let r=!1;for(const e of n){const c=e.model.selection_policy.hit_test(t,e);r=r||e.model.selection_policy.do_selection(c,e.model,o,s)}if(c.length>0){const e=this.source.selection_policy.hit_test(t,c);r=r||this.source.selection_policy.do_selection(e,this.source,o,s)}return r}inspect(e,t){let o=!1;if(i(e)){const s=e.hit_test(t);if(null!=s){o=!s.is_empty();const c=this.get_or_create_inspector(e.model);c.update(s,!0,\"replace\"),this.source.setv({inspected:c},{silent:!0}),this.source.inspect.emit([e.model,{geometry:t}])}}else if(l(e)){const s=e.model.inspection_policy.hit_test(t,e);o=o||e.model.inspection_policy.do_inspection(s,t,e,!1,\"replace\")}return o}clear(e){this.source.selected.clear(),null!=e&&this.get_or_create_inspector(e.model).clear()}get_or_create_inspector(e){let t=this.inspectors.get(e);return null==t&&(t=new n.Selection,this.inspectors.set(e,t)),t}}o.SelectionManager=r,r.__name__=\"SelectionManager\"},\n", + " function _(e,t,n,s,o){s();const r=e(53);class c extends r.Model{do_selection(e,t,n,s){return null!=e&&(t.selected.update(e,n,s),t._select.emit(),!t.selected.is_empty())}}n.SelectionPolicy=c,c.__name__=\"SelectionPolicy\";class l extends c{hit_test(e,t){const n=[];for(const s of t){const t=s.hit_test(e);null!=t&&n.push(t)}if(n.length>0){const e=n[0];for(const t of n)e.update_through_intersection(t);return e}return null}}n.IntersectRenderers=l,l.__name__=\"IntersectRenderers\";class _ extends c{hit_test(e,t){const n=[];for(const s of t){const t=s.hit_test(e);null!=t&&n.push(t)}if(n.length>0){const e=n[0];for(const t of n)e.update_through_union(t);return e}return null}}n.UnionRenderers=_,_.__name__=\"UnionRenderers\"},\n", + " function _(t,n,e,s,o){s();const r=t(1);var l;const c=t(70),i=t(8),a=t(13),u=(0,r.__importStar)(t(76)),h=t(77),d=t(35);function f(t,n,e){if((0,i.isArray)(t)){const s=t.concat(n);return null!=e&&s.length>e?s.slice(-e):s}if((0,i.isTypedArray)(t)){const s=t.length+n.length;if(null!=e&&s>e){const o=s-e,r=t.length;let l;t.length({data:[t(n),{}]})))},\n", + " function _(t,n,o,e,c){e(),o.concat=function(t,...n){let o=t.length;for(const t of n)o+=t.length;const e=new t.constructor(o);e.set(t,0);let c=t.length;for(const t of n)e.set(t,c),c+=t.length;return e}},\n", + " function _(n,o,t,e,f){function c(...n){const o=new Set;for(const t of n)for(const n of t)o.add(n);return o}e(),t.union=c,t.intersection=function(n,...o){const t=new Set;n:for(const e of n){for(const n of o)if(!n.has(e))continue n;t.add(e)}return t},t.difference=function(n,...o){const t=new Set(n);for(const n of c(...o))t.delete(n);return t}},\n", + " function _(n,t,e,o,r){o();const c=n(1),l=(0,c.__importDefault)(n(79)),i=(0,c.__importDefault)(n(80)),u=n(24),a=new i.default(\"GOOGLE\"),s=new i.default(\"WGS84\"),f=(0,l.default)(s,a);e.wgs84_mercator={compute:(n,t)=>isFinite(n)&&isFinite(t)?f.forward([n,t]):[NaN,NaN],invert:(n,t)=>isFinite(n)&&isFinite(t)?f.inverse([n,t]):[NaN,NaN]};const _={lon:[-20026376.39,20026376.39],lat:[-20048966.1,20048966.1]},p={lon:[-180,180],lat:[-85.06,85.06]},{min:g,max:h}=Math;function m(n,t){const o=g(n.length,t.length),r=(0,u.infer_type)(n,t),c=new r(o),l=new r(o);return e.inplace.project_xy(n,t,c,l),[c,l]}e.clip_mercator=function(n,t,e){const[o,r]=_[e];return[h(n,o),g(t,r)]},e.in_bounds=function(n,t){const[e,o]=p[t];return e2?void 0!==e.name&&\"geocent\"===e.name||void 0!==n.name&&\"geocent\"===n.name?\"number\"==typeof o.z?[o.x,o.y,o.z].concat(t.splice(3)):[o.x,o.y,t[2]].concat(t.splice(3)):[o.x,o.y].concat(t.splice(2)):[o.x,o.y]):(a=(0,c.default)(e,n,t,r),2===(i=Object.keys(t)).length||i.forEach((function(r){if(void 0!==e.name&&\"geocent\"===e.name||void 0!==n.name&&\"geocent\"===n.name){if(\"x\"===r||\"y\"===r||\"z\"===r)return}else if(\"x\"===r||\"y\"===r)return;a[r]=t[r]})),a)}function l(e){return e instanceof i.default?e:e.oProj?e.oProj:(0,i.default)(e)}t.default=function(e,n,t){e=l(e);var r,o=!1;return void 0===n?(n=e,e=u,o=!0):(void 0!==n.x||Array.isArray(n))&&(t=n,n=e,e=u,o=!0),n=l(n),t?f(e,n,t):(r={forward:function(t,r){return f(e,n,t,r)},inverse:function(t,r){return f(n,e,t,r)}},o&&(r.oProj=n),r)}},\n", + " function _(t,e,a,s,i){s();const l=t(1),u=(0,l.__importDefault)(t(81)),r=(0,l.__importDefault)(t(92)),d=(0,l.__importDefault)(t(93)),o=t(101),f=(0,l.__importDefault)(t(103)),p=(0,l.__importDefault)(t(104)),m=(0,l.__importDefault)(t(88)),n=t(105);function h(t,e){if(!(this instanceof h))return new h(t);e=e||function(t){if(t)throw t};var a=(0,u.default)(t);if(\"object\"==typeof a){var s=h.projections.get(a.projName);if(s){if(a.datumCode&&\"none\"!==a.datumCode){var i=(0,m.default)(f.default,a.datumCode);i&&(a.datum_params=a.datum_params||(i.towgs84?i.towgs84.split(\",\"):null),a.ellps=i.ellipse,a.datumName=i.datumName?i.datumName:a.datumCode)}a.k0=a.k0||1,a.axis=a.axis||\"enu\",a.ellps=a.ellps||\"wgs84\",a.lat1=a.lat1||a.lat0;var l=(0,o.sphere)(a.a,a.b,a.rf,a.ellps,a.sphere),d=(0,o.eccentricity)(l.a,l.b,l.rf,a.R_A),_=(0,n.getNadgrids)(a.nadgrids),c=a.datum||(0,p.default)(a.datumCode,a.datum_params,l.a,l.b,d.es,d.ep2,_);(0,r.default)(this,a),(0,r.default)(this,s),this.a=l.a,this.b=l.b,this.rf=l.rf,this.sphere=l.sphere,this.es=d.es,this.e=d.e,this.ep2=d.ep2,this.datum=c,this.init(),e(null,this)}else e(t)}else e(t)}h.projections=d.default,h.projections.start(),a.default=h},\n", + " function _(t,r,n,u,e){u();const f=t(1),i=(0,f.__importDefault)(t(82)),a=(0,f.__importDefault)(t(89)),o=(0,f.__importDefault)(t(84)),l=(0,f.__importDefault)(t(88));var C=[\"PROJECTEDCRS\",\"PROJCRS\",\"GEOGCS\",\"GEOCCS\",\"PROJCS\",\"LOCAL_CS\",\"GEODCRS\",\"GEODETICCRS\",\"GEODETICDATUM\",\"ENGCRS\",\"ENGINEERINGCRS\"];var d=[\"3857\",\"900913\",\"3785\",\"102113\"];n.default=function(t){if(!function(t){return\"string\"==typeof t}(t))return t;if(function(t){return t in i.default}(t))return i.default[t];if(function(t){return C.some((function(r){return t.indexOf(r)>-1}))}(t)){var r=(0,a.default)(t);if(function(t){var r=(0,l.default)(t,\"authority\");if(r){var n=(0,l.default)(r,\"epsg\");return n&&d.indexOf(n)>-1}}(r))return i.default[\"EPSG:3857\"];var n=function(t){var r=(0,l.default)(t,\"extension\");if(r)return(0,l.default)(r,\"proj4\")}(r);return n?(0,o.default)(n):r}return function(t){return\"+\"===t[0]}(t)?(0,o.default)(t):void 0}},\n", + " function _(t,r,i,e,n){e();const f=t(1),a=(0,f.__importDefault)(t(83)),l=(0,f.__importDefault)(t(84)),u=(0,f.__importDefault)(t(89));function o(t){var r=this;if(2===arguments.length){var i=arguments[1];\"string\"==typeof i?\"+\"===i.charAt(0)?o[t]=(0,l.default)(arguments[1]):o[t]=(0,u.default)(arguments[1]):o[t]=i}else if(1===arguments.length){if(Array.isArray(t))return t.map((function(t){Array.isArray(t)?o.apply(r,t):o(t)}));if(\"string\"==typeof t){if(t in o)return o[t]}else\"EPSG\"in t?o[\"EPSG:\"+t.EPSG]=t:\"ESRI\"in t?o[\"ESRI:\"+t.ESRI]=t:\"IAU2000\"in t?o[\"IAU2000:\"+t.IAU2000]=t:console.log(t);return}}(0,a.default)(o),i.default=o},\n", + " function _(t,l,G,S,e){S(),G.default=function(t){t(\"EPSG:4326\",\"+title=WGS 84 (long/lat) +proj=longlat +ellps=WGS84 +datum=WGS84 +units=degrees\"),t(\"EPSG:4269\",\"+title=NAD83 (long/lat) +proj=longlat +a=6378137.0 +b=6356752.31414036 +ellps=GRS80 +datum=NAD83 +units=degrees\"),t(\"EPSG:3857\",\"+title=WGS 84 / Pseudo-Mercator +proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0 +k=1.0 +units=m +nadgrids=@null +no_defs\"),t.WGS84=t[\"EPSG:4326\"],t[\"EPSG:3785\"]=t[\"EPSG:3857\"],t.GOOGLE=t[\"EPSG:3857\"],t[\"EPSG:900913\"]=t[\"EPSG:3857\"],t[\"EPSG:102113\"]=t[\"EPSG:3857\"]}},\n", + " function _(t,n,o,a,u){a();const e=t(1),r=t(85),i=(0,e.__importDefault)(t(86)),f=(0,e.__importDefault)(t(87)),l=(0,e.__importDefault)(t(88));o.default=function(t){var n,o,a,u={},e=t.split(\"+\").map((function(t){return t.trim()})).filter((function(t){return t})).reduce((function(t,n){var o=n.split(\"=\");return o.push(!0),t[o[0].toLowerCase()]=o[1],t}),{}),c={proj:\"projName\",datum:\"datumCode\",rf:function(t){u.rf=parseFloat(t)},lat_0:function(t){u.lat0=t*r.D2R},lat_1:function(t){u.lat1=t*r.D2R},lat_2:function(t){u.lat2=t*r.D2R},lat_ts:function(t){u.lat_ts=t*r.D2R},lon_0:function(t){u.long0=t*r.D2R},lon_1:function(t){u.long1=t*r.D2R},lon_2:function(t){u.long2=t*r.D2R},alpha:function(t){u.alpha=parseFloat(t)*r.D2R},gamma:function(t){u.rectified_grid_angle=parseFloat(t)},lonc:function(t){u.longc=t*r.D2R},x_0:function(t){u.x0=parseFloat(t)},y_0:function(t){u.y0=parseFloat(t)},k_0:function(t){u.k0=parseFloat(t)},k:function(t){u.k0=parseFloat(t)},a:function(t){u.a=parseFloat(t)},b:function(t){u.b=parseFloat(t)},r_a:function(){u.R_A=!0},zone:function(t){u.zone=parseInt(t,10)},south:function(){u.utmSouth=!0},towgs84:function(t){u.datum_params=t.split(\",\").map((function(t){return parseFloat(t)}))},to_meter:function(t){u.to_meter=parseFloat(t)},units:function(t){u.units=t;var n=(0,l.default)(f.default,t);n&&(u.to_meter=n.to_meter)},from_greenwich:function(t){u.from_greenwich=t*r.D2R},pm:function(t){var n=(0,l.default)(i.default,t);u.from_greenwich=(n||parseFloat(t))*r.D2R},nadgrids:function(t){\"@null\"===t?u.datumCode=\"none\":u.nadgrids=t},axis:function(t){var n=\"ewnsud\";3===t.length&&-1!==n.indexOf(t.substr(0,1))&&-1!==n.indexOf(t.substr(1,1))&&-1!==n.indexOf(t.substr(2,1))&&(u.axis=t)},approx:function(){u.approx=!0}};for(n in e)o=e[n],n in c?\"function\"==typeof(a=c[n])?a(o):u[a]=o:u[n]=o;return\"string\"==typeof u.datumCode&&\"WGS84\"!==u.datumCode&&(u.datumCode=u.datumCode.toLowerCase()),u}},\n", + " function _(S,_,P,R,I){R(),P.PJD_3PARAM=1,P.PJD_7PARAM=2,P.PJD_GRIDSHIFT=3,P.PJD_WGS84=4,P.PJD_NODATUM=5,P.SRS_WGS84_SEMIMAJOR=6378137,P.SRS_WGS84_SEMIMINOR=6356752.314,P.SRS_WGS84_ESQUARED=.0066943799901413165,P.SEC_TO_RAD=484813681109536e-20,P.HALF_PI=Math.PI/2,P.SIXTH=.16666666666666666,P.RA4=.04722222222222222,P.RA6=.022156084656084655,P.EPSLN=1e-10,P.D2R=.017453292519943295,P.R2D=57.29577951308232,P.FORTPI=Math.PI/4,P.TWO_PI=2*Math.PI,P.SPI=3.14159265359},\n", + " function _(o,r,a,e,s){e();var n={};a.default=n,n.greenwich=0,n.lisbon=-9.131906111111,n.paris=2.337229166667,n.bogota=-74.080916666667,n.madrid=-3.687938888889,n.rome=12.452333333333,n.bern=7.439583333333,n.jakarta=106.807719444444,n.ferro=-17.666666666667,n.brussels=4.367975,n.stockholm=18.058277777778,n.athens=23.7163375,n.oslo=10.722916666667},\n", + " function _(t,e,f,o,u){o(),f.default={ft:{to_meter:.3048},\"us-ft\":{to_meter:1200/3937}}},\n", + " function _(e,r,t,a,n){a();var o=/[\\s_\\-\\/\\(\\)]/g;t.default=function(e,r){if(e[r])return e[r];for(var t,a=Object.keys(e),n=r.toLowerCase().replace(o,\"\"),f=-1;++f0?90:-90),e.lat_ts=e.lat1)}(n),n}},\n", + " function _(t,e,r,i,s){i(),r.default=function(t){return new d(t).output()};var h=/\\s/,o=/[A-Za-z]/,n=/[A-Za-z84]/,a=/[,\\]]/,u=/[\\d\\.E\\-\\+]/;function d(t){if(\"string\"!=typeof t)throw new Error(\"not a string\");this.text=t.trim(),this.level=0,this.place=0,this.root=null,this.stack=[],this.currentObject=null,this.state=1}d.prototype.readCharicter=function(){var t=this.text[this.place++];if(4!==this.state)for(;h.test(t);){if(this.place>=this.text.length)return;t=this.text[this.place++]}switch(this.state){case 1:return this.neutral(t);case 2:return this.keyword(t);case 4:return this.quoted(t);case 5:return this.afterquote(t);case 3:return this.number(t);case-1:return}},d.prototype.afterquote=function(t){if('\"'===t)return this.word+='\"',void(this.state=4);if(a.test(t))return this.word=this.word.trim(),void this.afterItem(t);throw new Error(\"havn't handled \\\"\"+t+'\" in afterquote yet, index '+this.place)},d.prototype.afterItem=function(t){return\",\"===t?(null!==this.word&&this.currentObject.push(this.word),this.word=null,void(this.state=1)):\"]\"===t?(this.level--,null!==this.word&&(this.currentObject.push(this.word),this.word=null),this.state=1,this.currentObject=this.stack.pop(),void(this.currentObject||(this.state=-1))):void 0},d.prototype.number=function(t){if(!u.test(t)){if(a.test(t))return this.word=parseFloat(this.word),void this.afterItem(t);throw new Error(\"havn't handled \\\"\"+t+'\" in number yet, index '+this.place)}this.word+=t},d.prototype.quoted=function(t){'\"'!==t?this.word+=t:this.state=5},d.prototype.keyword=function(t){if(n.test(t))this.word+=t;else{if(\"[\"===t){var e=[];return e.push(this.word),this.level++,null===this.root?this.root=e:this.currentObject.push(e),this.stack.push(this.currentObject),this.currentObject=e,void(this.state=1)}if(!a.test(t))throw new Error(\"havn't handled \\\"\"+t+'\" in keyword yet, index '+this.place);this.afterItem(t)}},d.prototype.neutral=function(t){if(o.test(t))return this.word=t,void(this.state=2);if('\"'===t)return this.word=\"\",void(this.state=4);if(u.test(t))return this.word=t,void(this.state=3);if(!a.test(t))throw new Error(\"havn't handled \\\"\"+t+'\" in neutral yet, index '+this.place);this.afterItem(t)},d.prototype.output=function(){for(;this.place90&&a*o.R2D<-90&&h*o.R2D>180&&h*o.R2D<-180)return null;if(Math.abs(Math.abs(a)-o.HALF_PI)<=o.EPSLN)return null;if(this.sphere)i=this.x0+this.a*this.k0*(0,n.default)(h-this.long0),s=this.y0+this.a*this.k0*Math.log(Math.tan(o.FORTPI+.5*a));else{var e=Math.sin(a),r=(0,l.default)(this.e,a,e);i=this.x0+this.a*this.k0*(0,n.default)(h-this.long0),s=this.y0-this.a*this.k0*Math.log(r)}return t.x=i,t.y=s,t}function M(t){var i,s,h=t.x-this.x0,a=t.y-this.y0;if(this.sphere)s=o.HALF_PI-2*Math.atan(Math.exp(-a/(this.a*this.k0)));else{var e=Math.exp(-a/(this.a*this.k0));if(-9999===(s=(0,u.default)(this.e,e)))return null}return i=(0,n.default)(this.long0+h/(this.a*this.k0)),t.x=i,t.y=s,t}s.init=f,s.forward=_,s.inverse=M,s.names=[\"Mercator\",\"Popular Visualisation Pseudo Mercator\",\"Mercator_1SP\",\"Mercator_Auxiliary_Sphere\",\"merc\"],s.default={init:f,forward:_,inverse:M,names:s.names}},\n", + " function _(t,n,r,u,a){u(),r.default=function(t,n,r){var u=t*n;return r/Math.sqrt(1-u*u)}},\n", + " function _(t,n,u,a,f){a();const e=t(1),o=t(85),_=(0,e.__importDefault)(t(97));u.default=function(t){return Math.abs(t)<=o.SPI?t:t-(0,_.default)(t)*o.TWO_PI}},\n", + " function _(n,t,u,f,c){f(),u.default=function(n){return n<0?-1:1}},\n", + " function _(t,n,a,o,u){o();const c=t(85);a.default=function(t,n,a){var o=t*a,u=.5*t;return o=Math.pow((1-o)/(1+o),u),Math.tan(.5*(c.HALF_PI-n))/o}},\n", + " function _(t,a,n,r,f){r();const h=t(85);n.default=function(t,a){for(var n,r,f=.5*t,o=h.HALF_PI-2*Math.atan(a),u=0;u<=15;u++)if(n=t*Math.sin(o),o+=r=h.HALF_PI-2*Math.atan(a*Math.pow((1-n)/(1+n),f))-o,Math.abs(r)<=1e-10)return o;return-9999}},\n", + " function _(n,i,e,t,r){function a(){}function f(n){return n}t(),e.init=a,e.forward=f,e.inverse=f,e.names=[\"longlat\",\"identity\"],e.default={init:a,forward:f,inverse:f,names:e.names}},\n", + " function _(t,r,e,a,n){a();const f=t(1),i=t(85),u=(0,f.__importStar)(t(102)),c=(0,f.__importDefault)(t(88));e.eccentricity=function(t,r,e,a){var n=t*t,f=r*r,u=(n-f)/n,c=0;return a?(n=(t*=1-u*(i.SIXTH+u*(i.RA4+u*i.RA6)))*t,u=0):c=Math.sqrt(u),{es:u,e:c,ep2:(n-f)/f}},e.sphere=function(t,r,e,a,n){if(!t){var f=(0,c.default)(u.default,a);f||(f=u.WGS84),t=f.a,r=f.b,e=f.rf}return e&&!r&&(r=(1-1/e)*t),(0===e||Math.abs(t-r)3&&(0===s.datum_params[3]&&0===s.datum_params[4]&&0===s.datum_params[5]&&0===s.datum_params[6]||(s.datum_type=d.PJD_7PARAM,s.datum_params[3]*=d.SEC_TO_RAD,s.datum_params[4]*=d.SEC_TO_RAD,s.datum_params[5]*=d.SEC_TO_RAD,s.datum_params[6]=s.datum_params[6]/1e6+1))),r&&(s.datum_type=d.PJD_GRIDSHIFT,s.grids=r),s.a=_,s.b=t,s.es=u,s.ep2=p,s}},\n", + " function _(t,e,n,r,i){r();var u={};function l(t){if(0===t.length)return null;var e=\"@\"===t[0];return e&&(t=t.slice(1)),\"null\"===t?{name:\"null\",mandatory:!e,grid:null,isNull:!0}:{name:t,mandatory:!e,grid:u[t]||null,isNull:!1}}function o(t){return t/3600*Math.PI/180}function a(t,e,n){return String.fromCharCode.apply(null,new Uint8Array(t.buffer.slice(e,n)))}function d(t){return t.map((function(t){return[o(t.longitudeShift),o(t.latitudeShift)]}))}function g(t,e,n){return{name:a(t,e+8,e+16).trim(),parent:a(t,e+24,e+24+8).trim(),lowerLatitude:t.getFloat64(e+72,n),upperLatitude:t.getFloat64(e+88,n),lowerLongitude:t.getFloat64(e+104,n),upperLongitude:t.getFloat64(e+120,n),latitudeInterval:t.getFloat64(e+136,n),longitudeInterval:t.getFloat64(e+152,n),gridNodeCount:t.getInt32(e+168,n)}}function s(t,e,n,r){for(var i=e+176,u=[],l=0;l1&&console.log(\"Only single NTv2 subgrids are currently supported, subsequent sub grids are ignored\");var l=function(t,e,n){for(var r=176,i=[],u=0;ua.y||f>a.x||N1e-12&&Math.abs(n.y)>1e-12);if(d<0)return console.log(\"Inverse grid shift iterator failed to converge.\"),a;a.x=(0,u.default)(l.x+t.ll[0]),a.y=l.y+t.ll[1]}else isNaN(l.x)||(a.x=r.x+l.x,a.y=r.y+l.y);return a}function f(r,e){var t,a={x:r.x/e.del[0],y:r.y/e.del[1]},i=Math.floor(a.x),l=Math.floor(a.y),n=a.x-1*i,o=a.y-1*l,u={x:Number.NaN,y:Number.NaN};if(i<0||i>=e.lim[0])return u;if(l<0||l>=e.lim[1])return u;t=l*e.lim[0]+i;var d=e.cvs[t][0],s=e.cvs[t][1];t++;var y=e.cvs[t][0],f=e.cvs[t][1];t+=e.lim[0];var x=e.cvs[t][0],m=e.cvs[t][1];t--;var N=e.cvs[t][0],c=e.cvs[t][1],_=n*o,g=n*(1-o),v=(1-n)*(1-o),S=(1-n)*o;return u.x=v*d+g*y+S*N+_*x,u.y=v*s+g*f+S*c+_*m,u}t.default=function(r,e,t){if((0,o.compareDatums)(r,e))return t;if(r.datum_type===n.PJD_NODATUM||e.datum_type===n.PJD_NODATUM)return t;var a=r.a,i=r.es;if(r.datum_type===n.PJD_GRIDSHIFT){if(0!==s(r,!1,t))return;a=n.SRS_WGS84_SEMIMAJOR,i=n.SRS_WGS84_ESQUARED}var l=e.a,u=e.b,y=e.es;if(e.datum_type===n.PJD_GRIDSHIFT&&(l=n.SRS_WGS84_SEMIMAJOR,u=n.SRS_WGS84_SEMIMINOR,y=n.SRS_WGS84_ESQUARED),i===y&&a===l&&!d(r.datum_type)&&!d(e.datum_type))return t;if(t=(0,o.geodeticToGeocentric)(t,i,a),d(r.datum_type)&&(t=(0,o.geocentricToWgs84)(t,r.datum_type,r.datum_params)),d(e.datum_type)&&(t=(0,o.geocentricFromWgs84)(t,e.datum_type,e.datum_params)),t=(0,o.geocentricToGeodetic)(t,y,l,u),e.datum_type===n.PJD_GRIDSHIFT&&0!==s(e,!0,t))return;return t},t.applyGridShift=s},\n", + " function _(a,t,r,m,s){m();const u=a(85);r.compareDatums=function(a,t){return a.datum_type===t.datum_type&&(!(a.a!==t.a||Math.abs(a.es-t.es)>5e-11)&&(a.datum_type===u.PJD_3PARAM?a.datum_params[0]===t.datum_params[0]&&a.datum_params[1]===t.datum_params[1]&&a.datum_params[2]===t.datum_params[2]:a.datum_type!==u.PJD_7PARAM||a.datum_params[0]===t.datum_params[0]&&a.datum_params[1]===t.datum_params[1]&&a.datum_params[2]===t.datum_params[2]&&a.datum_params[3]===t.datum_params[3]&&a.datum_params[4]===t.datum_params[4]&&a.datum_params[5]===t.datum_params[5]&&a.datum_params[6]===t.datum_params[6]))},r.geodeticToGeocentric=function(a,t,r){var m,s,_,e,n=a.x,d=a.y,i=a.z?a.z:0;if(d<-u.HALF_PI&&d>-1.001*u.HALF_PI)d=-u.HALF_PI;else if(d>u.HALF_PI&&d<1.001*u.HALF_PI)d=u.HALF_PI;else{if(d<-u.HALF_PI)return{x:-1/0,y:-1/0,z:a.z};if(d>u.HALF_PI)return{x:1/0,y:1/0,z:a.z}}return n>Math.PI&&(n-=2*Math.PI),s=Math.sin(d),e=Math.cos(d),_=s*s,{x:((m=r/Math.sqrt(1-t*_))+i)*e*Math.cos(n),y:(m+i)*e*Math.sin(n),z:(m*(1-t)+i)*s}},r.geocentricToGeodetic=function(a,t,r,m){var s,_,e,n,d,i,p,P,y,z,M,o,A,c,x,h=1e-12,f=a.x,I=a.y,F=a.z?a.z:0;if(s=Math.sqrt(f*f+I*I),_=Math.sqrt(f*f+I*I+F*F),s/r1e-24&&A<30);return{x:c,y:Math.atan(M/Math.abs(z)),z:x}},r.geocentricToWgs84=function(a,t,r){if(t===u.PJD_3PARAM)return{x:a.x+r[0],y:a.y+r[1],z:a.z+r[2]};if(t===u.PJD_7PARAM){var m=r[0],s=r[1],_=r[2],e=r[3],n=r[4],d=r[5],i=r[6];return{x:i*(a.x-d*a.y+n*a.z)+m,y:i*(d*a.x+a.y-e*a.z)+s,z:i*(-n*a.x+e*a.y+a.z)+_}}},r.geocentricFromWgs84=function(a,t,r){if(t===u.PJD_3PARAM)return{x:a.x-r[0],y:a.y-r[1],z:a.z-r[2]};if(t===u.PJD_7PARAM){var m=r[0],s=r[1],_=r[2],e=r[3],n=r[4],d=r[5],i=r[6],p=(a.x-m)/i,P=(a.y-s)/i,y=(a.z-_)/i;return{x:p+d*P-n*y,y:-d*p+P+e*y,z:n*p-e*P+y}}}},\n", + " function _(e,a,i,r,s){r(),i.default=function(e,a,i){var r,s,n,c=i.x,d=i.y,f=i.z||0,u={};for(n=0;n<3;n++)if(!a||2!==n||void 0!==i.z)switch(0===n?(r=c,s=-1!==\"ew\".indexOf(e.axis[n])?\"x\":\"y\"):1===n?(r=d,s=-1!==\"ns\".indexOf(e.axis[n])?\"y\":\"x\"):(r=f,s=\"z\"),e.axis[n]){case\"e\":u[s]=r;break;case\"w\":u[s]=-r;break;case\"n\":u[s]=r;break;case\"s\":u[s]=-r;break;case\"u\":void 0!==i[s]&&(u.z=r);break;case\"d\":void 0!==i[s]&&(u.z=-r);break;default:return null}return u}},\n", + " function _(n,t,e,u,f){u(),e.default=function(n){var t={x:n[0],y:n[1]};return n.length>2&&(t.z=n[2]),n.length>3&&(t.m=n[3]),t}},\n", + " function _(e,i,n,t,r){function o(e){if(\"function\"==typeof Number.isFinite){if(Number.isFinite(e))return;throw new TypeError(\"coordinates must be finite numbers\")}if(\"number\"!=typeof e||e!=e||!isFinite(e))throw new TypeError(\"coordinates must be finite numbers\")}t(),n.default=function(e){o(e.x),o(e.y)}},\n", + " function _(e,i,s,t,o){t();const n=e(1);var l,a,r,_,c;const d=e(53),v=e(42),u=(0,n.__importStar)(e(45)),h=e(48),m=(0,n.__importStar)(e(18));class T extends v.View{initialize(){super.initialize(),this.visuals=new u.Visuals(this)}request_render(){this.parent.request_render()}get canvas(){return this.parent.canvas}set_data(e){const i=this;for(const s of this.model){if(!(s instanceof m.VectorSpec||s instanceof m.ScalarSpec))continue;const t=s.uniform(e);i[`${s.attr}`]=t}}}s.ArrowHeadView=T,T.__name__=\"ArrowHeadView\";class p extends d.Model{constructor(e){super(e)}}s.ArrowHead=p,l=p,p.__name__=\"ArrowHead\",l.define((()=>({size:[m.NumberSpec,25]})));class V extends T{clip(e,i){this.visuals.line.set_vectorize(e,i);const s=this.size.get(i);e.moveTo(.5*s,s),e.lineTo(.5*s,-2),e.lineTo(-.5*s,-2),e.lineTo(-.5*s,s),e.lineTo(0,0),e.lineTo(.5*s,s)}render(e,i){if(this.visuals.line.doit){this.visuals.line.set_vectorize(e,i);const s=this.size.get(i);e.beginPath(),e.moveTo(.5*s,s),e.lineTo(0,0),e.lineTo(-.5*s,s),e.stroke()}}}s.OpenHeadView=V,V.__name__=\"OpenHeadView\";class f extends p{constructor(e){super(e)}}s.OpenHead=f,a=f,f.__name__=\"OpenHead\",a.prototype.default_view=V,a.mixins(h.LineVector);class w extends T{clip(e,i){this.visuals.line.set_vectorize(e,i);const s=this.size.get(i);e.moveTo(.5*s,s),e.lineTo(.5*s,-2),e.lineTo(-.5*s,-2),e.lineTo(-.5*s,s),e.lineTo(.5*s,s)}render(e,i){this.visuals.fill.doit&&(this.visuals.fill.set_vectorize(e,i),this._normal(e,i),e.fill()),this.visuals.line.doit&&(this.visuals.line.set_vectorize(e,i),this._normal(e,i),e.stroke())}_normal(e,i){const s=this.size.get(i);e.beginPath(),e.moveTo(.5*s,s),e.lineTo(0,0),e.lineTo(-.5*s,s),e.closePath()}}s.NormalHeadView=w,w.__name__=\"NormalHeadView\";class H extends p{constructor(e){super(e)}}s.NormalHead=H,r=H,H.__name__=\"NormalHead\",r.prototype.default_view=w,r.mixins([h.LineVector,h.FillVector]),r.override({fill_color:\"black\"});class z extends T{clip(e,i){this.visuals.line.set_vectorize(e,i);const s=this.size.get(i);e.moveTo(.5*s,s),e.lineTo(.5*s,-2),e.lineTo(-.5*s,-2),e.lineTo(-.5*s,s),e.lineTo(0,.5*s),e.lineTo(.5*s,s)}render(e,i){this.visuals.fill.doit&&(this.visuals.fill.set_vectorize(e,i),this._vee(e,i),e.fill()),this.visuals.line.doit&&(this.visuals.line.set_vectorize(e,i),this._vee(e,i),e.stroke())}_vee(e,i){const s=this.size.get(i);e.beginPath(),e.moveTo(.5*s,s),e.lineTo(0,0),e.lineTo(-.5*s,s),e.lineTo(0,.5*s),e.closePath()}}s.VeeHeadView=z,z.__name__=\"VeeHeadView\";class x extends p{constructor(e){super(e)}}s.VeeHead=x,_=x,x.__name__=\"VeeHead\",_.prototype.default_view=z,_.mixins([h.LineVector,h.FillVector]),_.override({fill_color:\"black\"});class g extends T{render(e,i){if(this.visuals.line.doit){this.visuals.line.set_vectorize(e,i);const s=this.size.get(i);e.beginPath(),e.moveTo(.5*s,0),e.lineTo(-.5*s,0),e.stroke()}}clip(e,i){}}s.TeeHeadView=g,g.__name__=\"TeeHeadView\";class b extends p{constructor(e){super(e)}}s.TeeHead=b,c=b,b.__name__=\"TeeHead\",c.prototype.default_view=g,c.mixins(h.LineVector)},\n", + " function _(n,e,t,i,o){i();const s=n(9);async function c(n,e,t){const i=new n(Object.assign(Object.assign({},t),{model:e}));return i.initialize(),await i.lazy_initialize(),i}t.build_view=async function(n,e={parent:null},t=(n=>n.default_view)){const i=await c(t(n),n,e);return i.connect_signals(),i},t.build_views=async function(n,e,t={parent:null},i=(n=>n.default_view)){const o=(0,s.difference)([...n.keys()],e);for(const e of o)n.get(e).remove(),n.delete(e);const a=[],f=e.filter((e=>!n.has(e)));for(const e of f){const o=await c(i(e),e,t);n.set(e,o),a.push(o)}for(const n of a)n.connect_signals();return a},t.remove_views=function(n){for(const[e,t]of n)t.remove(),n.delete(e)}},\n", + " function _(e,s,_,i,l){i();const t=e(1);var o;const r=e(115),p=(0,t.__importStar)(e(48));class h extends r.UpperLowerView{paint(e){e.beginPath(),e.moveTo(this._lower_sx[0],this._lower_sy[0]);for(let s=0,_=this._lower_sx.length;s<_;s++)e.lineTo(this._lower_sx[s],this._lower_sy[s]);for(let s=this._upper_sx.length-1;s>=0;s--)e.lineTo(this._upper_sx[s],this._upper_sy[s]);e.closePath(),this.visuals.fill.apply(e),e.beginPath(),e.moveTo(this._lower_sx[0],this._lower_sy[0]);for(let s=0,_=this._lower_sx.length;s<_;s++)e.lineTo(this._lower_sx[s],this._lower_sy[s]);this.visuals.line.apply(e),e.beginPath(),e.moveTo(this._upper_sx[0],this._upper_sy[0]);for(let s=0,_=this._upper_sx.length;s<_;s++)e.lineTo(this._upper_sx[s],this._upper_sy[s]);this.visuals.line.apply(e)}}_.BandView=h,h.__name__=\"BandView\";class n extends r.UpperLower{constructor(e){super(e)}}_.Band=n,o=n,n.__name__=\"Band\",o.prototype.default_view=h,o.mixins([p.Line,p.Fill]),o.override({fill_color:\"#fff9ba\",fill_alpha:.4,line_color:\"#cccccc\",line_alpha:.3})},\n", + " function _(e,t,i,s,o){s();const r=e(1);var n;const p=e(69),a=e(20),_=(0,r.__importStar)(e(18));class h extends p.DataAnnotationView{map_data(){const{frame:e}=this.plot_view,t=this.model.dimension,i=this.coordinates.x_scale,s=this.coordinates.y_scale,o=\"height\"==t?s:i,r=\"height\"==t?i:s,n=\"height\"==t?e.bbox.yview:e.bbox.xview,p=\"height\"==t?e.bbox.xview:e.bbox.yview;let a,_,h;a=\"data\"==this.model.properties.lower.units?o.v_compute(this._lower):n.v_compute(this._lower),_=\"data\"==this.model.properties.upper.units?o.v_compute(this._upper):n.v_compute(this._upper),h=\"data\"==this.model.properties.base.units?r.v_compute(this._base):p.v_compute(this._base);const[d,c]=\"height\"==t?[1,0]:[0,1],u=[a,h],l=[_,h];this._lower_sx=u[d],this._lower_sy=u[c],this._upper_sx=l[d],this._upper_sy=l[c]}}i.UpperLowerView=h,h.__name__=\"UpperLowerView\";class d extends _.CoordinateSpec{get dimension(){return\"width\"==this.obj.dimension?\"x\":\"y\"}get units(){var e;return null!==(e=this.spec.units)&&void 0!==e?e:\"data\"}}i.XOrYCoordinateSpec=d,d.__name__=\"XOrYCoordinateSpec\";class c extends p.DataAnnotation{constructor(e){super(e)}}i.UpperLower=c,n=c,c.__name__=\"UpperLower\",n.define((()=>({dimension:[a.Dimension,\"height\"],lower:[d,{field:\"lower\"}],upper:[d,{field:\"upper\"}],base:[d,{field:\"base\"}]})))},\n", + " function _(t,o,i,n,e){n();const s=t(1);var l;const r=t(40),a=(0,s.__importStar)(t(48)),c=t(20),h=t(65);i.EDGE_TOLERANCE=2.5;class b extends r.AnnotationView{constructor(){super(...arguments),this.bbox=new h.BBox}connect_signals(){super.connect_signals(),this.connect(this.model.change,(()=>this.request_render()))}_render(){const{left:t,right:o,top:i,bottom:n}=this.model;if(null==t&&null==o&&null==i&&null==n)return;const{frame:e}=this.plot_view,s=this.coordinates.x_scale,l=this.coordinates.y_scale,r=(t,o,i,n,e)=>{let s;return s=null!=t?this.model.screen?t:\"data\"==o?i.compute(t):n.compute(t):e,s};this.bbox=h.BBox.from_rect({left:r(t,this.model.left_units,s,e.bbox.xview,e.bbox.left),right:r(o,this.model.right_units,s,e.bbox.xview,e.bbox.right),top:r(i,this.model.top_units,l,e.bbox.yview,e.bbox.top),bottom:r(n,this.model.bottom_units,l,e.bbox.yview,e.bbox.bottom)}),this._paint_box()}_paint_box(){const{ctx:t}=this.layer;t.save();const{left:o,top:i,width:n,height:e}=this.bbox;t.beginPath(),t.rect(o,i,n,e),this.visuals.fill.apply(t),this.visuals.hatch.apply(t),this.visuals.line.apply(t),t.restore()}interactive_bbox(){const t=this.model.line_width+i.EDGE_TOLERANCE;return this.bbox.grow_by(t)}interactive_hit(t,o){if(null==this.model.in_cursor)return!1;return this.interactive_bbox().contains(t,o)}cursor(t,o){const{left:i,right:n,bottom:e,top:s}=this.bbox;return Math.abs(t-i)<3||Math.abs(t-n)<3?this.model.ew_cursor:Math.abs(o-e)<3||Math.abs(o-s)<3?this.model.ns_cursor:this.bbox.contains(t,o)?this.model.in_cursor:null}}i.BoxAnnotationView=b,b.__name__=\"BoxAnnotationView\";class u extends r.Annotation{constructor(t){super(t)}update({left:t,right:o,top:i,bottom:n}){this.setv({left:t,right:o,top:i,bottom:n,screen:!0})}}i.BoxAnnotation=u,l=u,u.__name__=\"BoxAnnotation\",l.prototype.default_view=b,l.mixins([a.Line,a.Fill,a.Hatch]),l.define((({Number:t,Nullable:o})=>({top:[o(t),null],top_units:[c.SpatialUnits,\"data\"],bottom:[o(t),null],bottom_units:[c.SpatialUnits,\"data\"],left:[o(t),null],left_units:[c.SpatialUnits,\"data\"],right:[o(t),null],right_units:[c.SpatialUnits,\"data\"],render_mode:[c.RenderMode,\"canvas\"]}))),l.internal((({Boolean:t,String:o,Nullable:i})=>({screen:[t,!1],ew_cursor:[i(o),null],ns_cursor:[i(o),null],in_cursor:[i(o),null]}))),l.override({fill_color:\"#fff9ba\",fill_alpha:.4,line_color:\"#cccccc\",line_alpha:.3})},\n", + " function _(t,e,i,o,n){o();const a=t(1);var r;const s=t(40),l=t(118),_=t(126),c=t(127),h=t(130),u=t(168),p=t(131),m=t(192),g=t(132),d=t(173),f=t(172),w=t(196),b=t(204),v=t(206),x=t(133),y=t(20),k=(0,a.__importStar)(t(48)),z=t(9),j=t(207),C=t(208),L=t(211),B=t(123),S=t(11),M=t(113),T=t(65),A=t(8);class O extends s.AnnotationView{get orientation(){return this._orientation}initialize(){super.initialize();const{ticker:t,formatter:e,color_mapper:i}=this.model;this._ticker=\"auto\"!=t?t:(()=>{switch(!0){case i instanceof w.LogColorMapper:return new u.LogTicker;case i instanceof w.ScanningColorMapper:return new u.BinnedTicker({mapper:i});case i instanceof w.CategoricalColorMapper:return new u.CategoricalTicker;default:return new u.BasicTicker}})(),this._formatter=\"auto\"!=e?e:(()=>{switch(!0){case this._ticker instanceof u.LogTicker:return new m.LogTickFormatter;case i instanceof w.CategoricalColorMapper:return new m.CategoricalTickFormatter;default:return new m.BasicTickFormatter}})(),this._major_range=(()=>{if(i instanceof w.CategoricalColorMapper){const{factors:t}=i;return new v.FactorRange({factors:t})}if(i instanceof f.ContinuousColorMapper){const{min:t,max:e}=i.metrics;return new v.Range1d({start:t,end:e})}(0,S.unreachable)()})(),this._major_scale=(()=>{if(i instanceof w.LinearColorMapper)return new b.LinearScale;if(i instanceof w.LogColorMapper)return new b.LogScale;if(i instanceof w.ScanningColorMapper){const{binning:t}=i.metrics;return new b.LinearInterpolationScale({binning:t})}if(i instanceof w.CategoricalColorMapper)return new b.CategoricalScale;(0,S.unreachable)()})(),this._minor_range=new v.Range1d({start:0,end:1}),this._minor_scale=new b.LinearScale;const o=k.attrs_of(this.model,\"major_label_\",k.Text,!0),n=k.attrs_of(this.model,\"major_tick_\",k.Line,!0),a=k.attrs_of(this.model,\"minor_tick_\",k.Line,!0),r=k.attrs_of(this.model,\"title_\",k.Text),s=i instanceof w.CategoricalColorMapper?c.CategoricalAxis:i instanceof w.LogColorMapper?c.LogAxis:c.LinearAxis;this._axis=new s(Object.assign(Object.assign(Object.assign({ticker:this._ticker,formatter:this._formatter,major_tick_in:this.model.major_tick_in,major_tick_out:this.model.major_tick_out,minor_tick_in:this.model.minor_tick_in,minor_tick_out:this.model.minor_tick_out,major_label_standoff:this.model.label_standoff,major_label_overrides:this.model.major_label_overrides,major_label_policy:this.model.major_label_policy,axis_line_color:null},o),n),a));const{title:_}=this.model;_&&(this._title=new l.Title(Object.assign({text:_,standoff:this.model.title_standoff},r)))}async lazy_initialize(){await super.lazy_initialize();const t=this,e={get parent(){return t.parent},get root(){return t.root},get frame(){return t._frame},get canvas_view(){return t.parent.canvas_view},request_layout(){t.parent.request_layout()}};this._axis_view=await(0,M.build_view)(this._axis,{parent:e}),null!=this._title&&(this._title_view=await(0,M.build_view)(this._title,{parent:e}))}remove(){var t;null===(t=this._title_view)||void 0===t||t.remove(),this._axis_view.remove(),super.remove()}connect_signals(){super.connect_signals(),this.connect(this._ticker.change,(()=>this.request_render())),this.connect(this._formatter.change,(()=>this.request_render())),this.connect(this.model.color_mapper.metrics_change,(()=>{const t=this._major_range,e=this._major_scale,{color_mapper:i}=this.model;if(i instanceof f.ContinuousColorMapper&&t instanceof v.Range1d){const{min:e,max:o}=i.metrics;t.setv({start:e,end:o})}if(i instanceof w.ScanningColorMapper&&e instanceof b.LinearInterpolationScale){const{binning:t}=i.metrics;e.binning=t}this._set_canvas_image(),this.plot_view.request_layout()}))}_set_canvas_image(){const{orientation:t}=this,e=(()=>{const{palette:e}=this.model.color_mapper;return\"vertical\"==t?(0,z.reversed)(e):e})(),[i,o]=\"vertical\"==t?[1,e.length]:[e.length,1],n=this._image=document.createElement(\"canvas\");n.width=i,n.height=o;const a=n.getContext(\"2d\"),r=a.getImageData(0,0,i,o),s=new w.LinearColorMapper({palette:e}).rgba_mapper.v_compute((0,z.range)(0,e.length));r.data.set(s),a.putImageData(r,0,0)}update_layout(){const{location:t,width:e,height:i,padding:o,margin:n}=this.model,[a,r]=(()=>{if(!(0,A.isString)(t))return[\"end\",\"start\"];switch(t){case\"top_left\":return[\"start\",\"start\"];case\"top\":case\"top_center\":return[\"start\",\"center\"];case\"top_right\":return[\"start\",\"end\"];case\"bottom_left\":return[\"end\",\"start\"];case\"bottom\":case\"bottom_center\":return[\"end\",\"center\"];case\"bottom_right\":return[\"end\",\"end\"];case\"left\":case\"center_left\":return[\"center\",\"start\"];case\"center\":case\"center_center\":return[\"center\",\"center\"];case\"right\":case\"center_right\":return[\"center\",\"end\"]}})(),s=this._orientation=(()=>{const{orientation:t}=this.model;return\"auto\"==t?null!=this.panel?this.panel.is_horizontal?\"horizontal\":\"vertical\":\"start\"==r||\"end\"==r||\"center\"==r&&\"center\"==a?\"vertical\":\"horizontal\":t})(),l=new C.NodeLayout,c=new C.VStack,h=new C.VStack,u=new C.HStack,p=new C.HStack;l.absolute=!0,c.absolute=!0,h.absolute=!0,u.absolute=!0,p.absolute=!0;const[m,g,d,f]=(()=>\"horizontal\"==s?[this._major_scale,this._minor_scale,this._major_range,this._minor_range]:[this._minor_scale,this._major_scale,this._minor_range,this._major_range])();this._frame=new _.CartesianFrame(m,g,d,f),l.on_resize((t=>this._frame.set_geometry(t)));const w=new L.BorderLayout;this._inner_layout=w,w.absolute=!0,w.center_panel=l,w.top_panel=c,w.bottom_panel=h,w.left_panel=u,w.right_panel=p;const b={left:o,right:o,top:o,bottom:o},v=(()=>{if(null==this.panel){if((0,A.isString)(t))return{left:n,right:n,top:n,bottom:n};{const[e,i]=t;return{left:e,right:n,top:n,bottom:i}}}if(!(0,A.isString)(t)){const[e,i]=t;return w.fixup_geometry=(t,o)=>{const n=t,a=this.layout.bbox,{width:r,height:s}=t;if(t=new T.BBox({left:a.left+e,bottom:a.bottom-i,width:r,height:s}),null!=o){const e=t.left-n.left,i=t.top-n.top,{left:a,top:r,width:s,height:l}=o;o=new T.BBox({left:a+e,top:r+i,width:s,height:l})}return[t,o]},{left:e,right:0,top:0,bottom:i}}w.fixup_geometry=(t,e)=>{const i=t;if(\"horizontal\"==s){const{top:e,width:i,height:o}=t;if(\"end\"==r){const{right:n}=this.layout.bbox;t=new T.BBox({right:n,top:e,width:i,height:o})}else if(\"center\"==r){const{hcenter:n}=this.layout.bbox;t=new T.BBox({hcenter:Math.round(n),top:e,width:i,height:o})}}else{const{left:e,width:i,height:o}=t;if(\"end\"==a){const{bottom:n}=this.layout.bbox;t=new T.BBox({left:e,bottom:n,width:i,height:o})}else if(\"center\"==a){const{vcenter:n}=this.layout.bbox;t=new T.BBox({left:e,vcenter:Math.round(n),width:i,height:o})}}if(null!=e){const o=t.left-i.left,n=t.top-i.top,{left:a,top:r,width:s,height:l}=e;e=new T.BBox({left:a+o,top:r+n,width:s,height:l})}return[t,e]}})();let x,y,k,z;if(w.padding=b,null!=this.panel?(x=\"max\",y=void 0,k=void 0,z=void 0):\"auto\"==(\"horizontal\"==s?e:i)?(x=\"fixed\",y=25*this.model.color_mapper.palette.length,k={percent:.3},z={percent:.8}):(x=\"fit\",y=void 0),\"horizontal\"==s){const t=\"auto\"==e?void 0:e,o=\"auto\"==i?25:i;w.set_sizing({width_policy:x,height_policy:\"min\",width:y,min_width:k,max_width:z,halign:r,valign:a,margin:v}),w.center_panel.set_sizing({width_policy:\"auto\"==e?\"fit\":\"fixed\",height_policy:\"fixed\",width:t,height:o})}else{const t=\"auto\"==e?25:e,o=\"auto\"==i?void 0:i;w.set_sizing({width_policy:\"min\",height_policy:x,height:y,min_height:k,max_height:z,halign:r,valign:a,margin:v}),w.center_panel.set_sizing({width_policy:\"fixed\",height_policy:\"auto\"==i?\"fit\":\"fixed\",width:t,height:o})}c.set_sizing({width_policy:\"fit\",height_policy:\"min\"}),h.set_sizing({width_policy:\"fit\",height_policy:\"min\"}),u.set_sizing({width_policy:\"min\",height_policy:\"fit\"}),p.set_sizing({width_policy:\"min\",height_policy:\"fit\"});const{_title_view:S}=this;null!=S&&(\"horizontal\"==s?(S.panel=new B.Panel(\"above\"),S.update_layout(),c.children.push(S.layout)):(S.panel=new B.Panel(\"left\"),S.update_layout(),u.children.push(S.layout)));const{panel:M}=this,O=null!=M&&s==M.orientation?M.side:\"horizontal\"==s?\"below\":\"right\",R=(()=>{switch(O){case\"above\":return c;case\"below\":return h;case\"left\":return u;case\"right\":return p}})(),{_axis_view:F}=this;if(F.panel=new B.Panel(O),F.update_layout(),R.children.push(F.layout),null!=this.panel){const t=new j.Grid([{layout:w,row:0,col:0}]);t.absolute=!0,\"horizontal\"==s?t.set_sizing({width_policy:\"max\",height_policy:\"min\"}):t.set_sizing({width_policy:\"min\",height_policy:\"max\"}),this.layout=t}else this.layout=this._inner_layout;const{visible:I}=this.model;this.layout.sizing.visible=I,this._set_canvas_image()}_render(){var t;const{ctx:e}=this.layer;e.save(),this._paint_bbox(e,this._inner_layout.bbox),this._paint_image(e,this._inner_layout.center_panel.bbox),null===(t=this._title_view)||void 0===t||t.render(),this._axis_view.render(),e.restore()}_paint_bbox(t,e){const{x:i,y:o}=e;let{width:n,height:a}=e;i+n>=this.parent.canvas_view.bbox.width&&(n-=1),o+a>=this.parent.canvas_view.bbox.height&&(a-=1),t.save(),this.visuals.background_fill.doit&&(this.visuals.background_fill.set_value(t),t.fillRect(i,o,n,a)),this.visuals.border_line.doit&&(this.visuals.border_line.set_value(t),t.strokeRect(i,o,n,a)),t.restore()}_paint_image(t,e){const{x:i,y:o,width:n,height:a}=e;t.save(),t.setImageSmoothingEnabled(!1),t.globalAlpha=this.model.scale_alpha,t.drawImage(this._image,i,o,n,a),this.visuals.bar_line.doit&&(this.visuals.bar_line.set_value(t),t.strokeRect(i,o,n,a)),t.restore()}serializable_state(){const t=super.serializable_state(),{children:e=[]}=t,i=(0,a.__rest)(t,[\"children\"]);return null!=this._title_view&&e.push(this._title_view.serializable_state()),e.push(this._axis_view.serializable_state()),Object.assign(Object.assign({},i),{children:e})}}i.ColorBarView=O,O.__name__=\"ColorBarView\";class R extends s.Annotation{constructor(t){super(t)}}i.ColorBar=R,r=R,R.__name__=\"ColorBar\",r.prototype.default_view=O,r.mixins([[\"major_label_\",k.Text],[\"title_\",k.Text],[\"major_tick_\",k.Line],[\"minor_tick_\",k.Line],[\"border_\",k.Line],[\"bar_\",k.Line],[\"background_\",k.Fill]]),r.define((({Alpha:t,Number:e,String:i,Tuple:o,Dict:n,Or:a,Ref:r,Auto:s,Nullable:l})=>({location:[a(y.Anchor,o(e,e)),\"top_right\"],orientation:[a(y.Orientation,s),\"auto\"],title:[l(i),null],title_standoff:[e,2],width:[a(e,s),\"auto\"],height:[a(e,s),\"auto\"],scale_alpha:[t,1],ticker:[a(r(h.Ticker),s),\"auto\"],formatter:[a(r(p.TickFormatter),s),\"auto\"],major_label_overrides:[n(a(i,r(x.BaseText))),{}],major_label_policy:[r(g.LabelingPolicy),()=>new g.NoOverlap],color_mapper:[r(d.ColorMapper)],label_standoff:[e,5],margin:[e,30],padding:[e,10],major_tick_in:[e,5],major_tick_out:[e,0],minor_tick_in:[e,0],minor_tick_out:[e,0]}))),r.override({background_fill_color:\"#ffffff\",background_fill_alpha:.95,bar_line_color:null,border_line_color:null,major_label_text_font_size:\"11px\",major_tick_line_color:\"#ffffff\",minor_tick_line_color:null,title_text_font_size:\"13px\",title_text_font_style:\"italic\"})},\n", + " function _(t,e,i,s,l){s();const o=t(1);var a;const n=t(119),r=t(20),c=t(120),h=(0,o.__importStar)(t(48));class _ extends n.TextAnnotationView{_get_location(){const t=this.model.offset,e=this.model.standoff/2;let i,s;const{bbox:l}=this.layout;switch(this.panel.side){case\"above\":case\"below\":switch(this.model.vertical_align){case\"top\":s=l.top+e;break;case\"middle\":s=l.vcenter;break;case\"bottom\":s=l.bottom-e}switch(this.model.align){case\"left\":i=l.left+t;break;case\"center\":i=l.hcenter;break;case\"right\":i=l.right-t}break;case\"left\":switch(this.model.vertical_align){case\"top\":i=l.left+e;break;case\"middle\":i=l.hcenter;break;case\"bottom\":i=l.right-e}switch(this.model.align){case\"left\":s=l.bottom-t;break;case\"center\":s=l.vcenter;break;case\"right\":s=l.top+t}break;case\"right\":switch(this.model.vertical_align){case\"top\":i=l.right-e;break;case\"middle\":i=l.hcenter;break;case\"bottom\":i=l.left+e}switch(this.model.align){case\"left\":s=l.top+t;break;case\"center\":s=l.vcenter;break;case\"right\":s=l.bottom-t}}return[i,s]}_render(){const{text:t}=this.model;if(null==t||0==t.length)return;this.model.text_baseline=this.model.vertical_align,this.model.text_align=this.model.align;const[e,i]=this._get_location(),s=this.panel.get_label_angle_heuristic(\"parallel\");(\"canvas\"==this.model.render_mode?this._canvas_text.bind(this):this._css_text.bind(this))(this.layer.ctx,t,e,i,s)}_get_size(){const{text:t}=this.model,e=new c.TextBox({text:t});e.visuals=this.visuals.text.values();const{width:i,height:s}=e.size();return{width:i,height:0==s?0:2+s+this.model.standoff}}}i.TitleView=_,_.__name__=\"TitleView\";class d extends n.TextAnnotation{constructor(t){super(t)}}i.Title=d,a=d,d.__name__=\"Title\",a.prototype.default_view=_,a.mixins([h.Text,[\"border_\",h.Line],[\"background_\",h.Fill]]),a.define((({Number:t,String:e})=>({text:[e,\"\"],vertical_align:[r.VerticalAlign,\"bottom\"],align:[r.TextAlign,\"left\"],offset:[t,0],standoff:[t,10]}))),a.prototype._props.text_align.options.internal=!0,a.prototype._props.text_baseline.options.internal=!0,a.override({text_font_size:\"13px\",text_font_style:\"bold\",text_line_height:1,background_fill_color:null,border_line_color:null})},\n", + " function _(e,t,s,i,l){var n;i();const o=e(40),a=e(43),r=e(20),d=e(120),u=e(123),c=e(11);class h extends o.AnnotationView{update_layout(){const{panel:e}=this;this.layout=null!=e?new u.SideLayout(e,(()=>this.get_size()),!0):void 0}initialize(){super.initialize(),\"css\"==this.model.render_mode&&(this.el=(0,a.div)(),this.plot_view.canvas_view.add_overlay(this.el))}remove(){null!=this.el&&(0,a.remove)(this.el),super.remove()}connect_signals(){super.connect_signals(),\"css\"==this.model.render_mode?this.connect(this.model.change,(()=>this.render())):this.connect(this.model.change,(()=>this.request_render()))}render(){this.model.visible||\"css\"!=this.model.render_mode||(0,a.undisplay)(this.el),super.render()}_canvas_text(e,t,s,i,l){const n=new d.TextBox({text:t});n.angle=l,n.position={sx:s,sy:i},n.visuals=this.visuals.text.values();const{background_fill:o,border_line:a}=this.visuals;if(o.doit||a.doit){const{p0:t,p1:s,p2:i,p3:l}=n.rect();e.beginPath(),e.moveTo(t.x,t.y),e.lineTo(s.x,s.y),e.lineTo(i.x,i.y),e.lineTo(l.x,l.y),e.closePath(),this.visuals.background_fill.apply(e),this.visuals.border_line.apply(e)}this.visuals.text.doit&&n.paint(e)}_css_text(e,t,s,i,l){const{el:n}=this;(0,c.assert)(null!=n),(0,a.undisplay)(n),n.textContent=t,this.visuals.text.set_value(e),n.style.position=\"absolute\",n.style.left=`${s}px`,n.style.top=`${i}px`,n.style.color=e.fillStyle,n.style.font=e.font,n.style.lineHeight=\"normal\",n.style.whiteSpace=\"pre\";const[o,r]=(()=>{switch(this.visuals.text.text_align.get_value()){case\"left\":return[\"left\",\"0%\"];case\"center\":return[\"center\",\"-50%\"];case\"right\":return[\"right\",\"-100%\"]}})(),[d,u]=(()=>{switch(this.visuals.text.text_baseline.get_value()){case\"top\":return[\"top\",\"0%\"];case\"middle\":return[\"center\",\"-50%\"];case\"bottom\":return[\"bottom\",\"-100%\"];default:return[\"center\",\"-50%\"]}})();let h=`translate(${r}, ${u})`;l&&(h+=`rotate(${l}rad)`),n.style.transformOrigin=`${o} ${d}`,n.style.transform=h,this.layout,this.visuals.background_fill.doit&&(this.visuals.background_fill.set_value(e),n.style.backgroundColor=e.fillStyle),this.visuals.border_line.doit&&(this.visuals.border_line.set_value(e),n.style.borderStyle=e.lineDash.length<2?\"solid\":\"dashed\",n.style.borderWidth=`${e.lineWidth}px`,n.style.borderColor=e.strokeStyle),(0,a.display)(n)}}s.TextAnnotationView=h,h.__name__=\"TextAnnotationView\";class _ extends o.Annotation{constructor(e){super(e)}}s.TextAnnotation=_,n=_,_.__name__=\"TextAnnotation\",n.define((()=>({render_mode:[r.RenderMode,\"canvas\"]})))},\n", + " function _(t,e,s,i,n){i();const h=t(65),o=t(121),r=t(9),a=t(8),c=t(122),_=t(22);s.text_width=(()=>{const t=document.createElement(\"canvas\").getContext(\"2d\");let e=\"\";return(s,i)=>(i!=e&&(e=i,t.font=i),t.measureText(s).width)})();class l{constructor(){this._position={sx:0,sy:0},this.font_size_scale=1,this.align=\"left\",this._base_font_size=13,this._x_anchor=\"left\",this._y_anchor=\"center\"}set base_font_size(t){null!=t&&(this._base_font_size=t)}get base_font_size(){return this._base_font_size}set position(t){this._position=t}get position(){return this._position}infer_text_height(){return\"ascent_descent\"}bbox(){const{p0:t,p1:e,p2:s,p3:i}=this.rect(),n=Math.min(t.x,e.x,s.x,i.x),o=Math.min(t.y,e.y,s.y,i.y),r=Math.max(t.x,e.x,s.x,i.x),a=Math.max(t.y,e.y,s.y,i.y);return new h.BBox({left:n,right:r,top:o,bottom:a})}size(){const{width:t,height:e}=this._size(),{angle:s}=this;if(s){const i=Math.cos(Math.abs(s)),n=Math.sin(Math.abs(s));return{width:Math.abs(t*i+e*n),height:Math.abs(t*n+e*i)}}return{width:t,height:e}}rect(){const t=this._rect(),{angle:e}=this;if(e){const{sx:s,sy:i}=this.position,n=new c.AffineTransform;return n.translate(s,i),n.rotate(e),n.translate(-s,-i),n.apply_rect(t)}return t}paint_rect(t){const{p0:e,p1:s,p2:i,p3:n}=this.rect();t.save(),t.strokeStyle=\"red\",t.lineWidth=1,t.beginPath();const{round:h}=Math;t.moveTo(h(e.x),h(e.y)),t.lineTo(h(s.x),h(s.y)),t.lineTo(h(i.x),h(i.y)),t.lineTo(h(n.x),h(n.y)),t.closePath(),t.stroke(),t.restore()}paint_bbox(t){const{x:e,y:s,width:i,height:n}=this.bbox();t.save(),t.strokeStyle=\"blue\",t.lineWidth=1,t.beginPath();const{round:h}=Math;t.moveTo(h(e),h(s)),t.lineTo(h(e),h(s+n)),t.lineTo(h(e+i),h(s+n)),t.lineTo(h(e+i),h(s)),t.closePath(),t.stroke(),t.restore()}}s.GraphicsBox=l,l.__name__=\"GraphicsBox\";class x extends l{constructor({text:t}){super(),this.text=t}set visuals(t){const e=t.color,s=t.alpha,i=t.font_style;let n=t.font_size;const h=t.font,{font_size_scale:r,base_font_size:a}=this,c=(0,o.parse_css_font_size)(n);if(null!=c){let{value:t,unit:e}=c;t*=r,\"em\"==e&&a&&(t*=a,e=\"px\"),n=`${t}${e}`}const l=`${i} ${n} ${h}`;this.font=l,this.color=(0,_.color2css)(e,s),this.line_height=t.line_height;const x=t.align;this._x_anchor=x;const u=t.baseline;this._y_anchor=(()=>{switch(u){case\"top\":return\"top\";case\"middle\":return\"center\";case\"bottom\":return\"bottom\";default:return\"baseline\"}})()}infer_text_height(){if(this.text.includes(\"\\n\"))return\"ascent_descent\";{function t(t){for(const e of new Set(t))if(!(\"0\"<=e&&e<=\"9\"))switch(e){case\",\":case\".\":case\"+\":case\"-\":case\"\\u2212\":case\"e\":continue;default:return!1}return!0}return t(this.text)?\"cap\":\"ascent_descent\"}}_text_line(t){var e;const s=null!==(e=this.text_height_metric)&&void 0!==e?e:this.infer_text_height(),i=(()=>{switch(s){case\"x\":case\"x_descent\":return t.x_height;case\"cap\":case\"cap_descent\":return t.cap_height;case\"ascent\":case\"ascent_descent\":return t.ascent}})(),n=(()=>{switch(s){case\"x\":case\"cap\":case\"ascent\":return 0;case\"x_descent\":case\"cap_descent\":case\"ascent_descent\":return t.descent}})();return{height:i+n,ascent:i,descent:n}}get nlines(){return this.text.split(\"\\n\").length}_size(){var t,e;const{font:i}=this,n=(0,o.font_metrics)(i),h=(this.line_height-1)*n.height,a=\"\"==this.text,c=this.text.split(\"\\n\"),_=c.length,l=c.map((t=>(0,s.text_width)(t,i))),x=this._text_line(n).height*_,u=\"%\"==(null===(t=this.width)||void 0===t?void 0:t.unit)?this.width.value:1,p=\"%\"==(null===(e=this.height)||void 0===e?void 0:e.unit)?this.height.value:1;return{width:(0,r.max)(l)*u,height:a?0:(x+h*(_-1))*p,metrics:n}}_computed_position(t,e,s){const{width:i,height:n}=t,{sx:h,sy:o,x_anchor:r=this._x_anchor,y_anchor:c=this._y_anchor}=this.position;return{x:h-(()=>{if((0,a.isNumber)(r))return r*i;switch(r){case\"left\":return 0;case\"center\":return.5*i;case\"right\":return i}})(),y:o-(()=>{var t;if((0,a.isNumber)(c))return c*n;switch(c){case\"top\":return 0;case\"center\":return.5*n;case\"bottom\":return n;case\"baseline\":if(1!=s)return.5*n;switch(null!==(t=this.text_height_metric)&&void 0!==t?t:this.infer_text_height()){case\"x\":case\"x_descent\":return e.x_height;case\"cap\":case\"cap_descent\":return e.cap_height;case\"ascent\":case\"ascent_descent\":return e.ascent}}})()}}_rect(){const{width:t,height:e,metrics:s}=this._size(),i=this.text.split(\"\\n\").length,{x:n,y:o}=this._computed_position({width:t,height:e},s,i);return new h.BBox({x:n,y:o,width:t,height:e}).rect}paint(t){var e,i;const{font:n}=this,h=(0,o.font_metrics)(n),a=(this.line_height-1)*h.height,c=this.text.split(\"\\n\"),_=c.length,l=c.map((t=>(0,s.text_width)(t,n))),x=this._text_line(h),u=x.height*_,p=\"%\"==(null===(e=this.width)||void 0===e?void 0:e.unit)?this.width.value:1,f=\"%\"==(null===(i=this.height)||void 0===i?void 0:i.unit)?this.height.value:1,g=(0,r.max)(l)*p,d=(u+a*(_-1))*f;t.save(),t.fillStyle=this.color,t.font=this.font,t.textAlign=\"left\",t.textBaseline=\"alphabetic\";const{sx:b,sy:m}=this.position,{align:y}=this,{angle:w}=this;w&&(t.translate(b,m),t.rotate(w),t.translate(-b,-m));let{x:v,y:z}=this._computed_position({width:g,height:d},h,_);if(\"justify\"==y)for(let e=0;e<_;e++){let i=v;const h=c[e].split(\" \"),o=h.length,_=h.map((t=>(0,s.text_width)(t,n))),l=(g-(0,r.sum)(_))/(o-1);for(let e=0;e{switch(y){case\"left\":return 0;case\"center\":return.5*(g-l[e]);case\"right\":return g-l[e]}})();t.fillStyle=this.color,t.fillText(c[e],s,z+x.ascent),z+=x.height+a}t.restore()}}s.TextBox=x,x.__name__=\"TextBox\";class u extends l{constructor(t,e){super(),this.base=t,this.expo=e}get children(){return[this.base,this.expo]}set base_font_size(t){super.base_font_size=t,this.base.base_font_size=t,this.expo.base_font_size=t}set position(t){this._position=t;const e=this.base.size(),s=this.expo.size(),i=this._shift_scale()*e.height,n=Math.max(e.height,i+s.height);this.base.position={sx:0,x_anchor:\"left\",sy:n,y_anchor:\"bottom\"},this.expo.position={sx:e.width,x_anchor:\"left\",sy:i,y_anchor:\"bottom\"}}get position(){return this._position}set visuals(t){this.expo.font_size_scale=.7,this.base.visuals=t,this.expo.visuals=t}_shift_scale(){if(this.base instanceof x&&1==this.base.nlines){const{x_height:t,cap_height:e}=(0,o.font_metrics)(this.base.font);return t/e}return 2/3}infer_text_height(){return this.base.infer_text_height()}_rect(){const t=this.base.bbox(),e=this.expo.bbox(),s=t.union(e),{x:i,y:n}=this._computed_position();return s.translate(i,n).rect}_size(){const t=this.base.size(),e=this.expo.size();return{width:t.width+e.width,height:Math.max(t.height,this._shift_scale()*t.height+e.height)}}paint(t){t.save();const{angle:e}=this;if(e){const{sx:s,sy:i}=this.position;t.translate(s,i),t.rotate(e),t.translate(-s,-i)}const{x:s,y:i}=this._computed_position();t.translate(s,i),this.base.paint(t),this.expo.paint(t),t.restore()}paint_bbox(t){super.paint_bbox(t);const{x:e,y:s}=this._computed_position();t.save(),t.translate(e,s);for(const e of this.children)e.paint_bbox(t);t.restore()}_computed_position(){const{width:t,height:e}=this._size(),{sx:s,sy:i,x_anchor:n=this._x_anchor,y_anchor:h=this._y_anchor}=this.position;return{x:s-(()=>{if((0,a.isNumber)(n))return n*t;switch(n){case\"left\":return 0;case\"center\":return.5*t;case\"right\":return t}})(),y:i-(()=>{if((0,a.isNumber)(h))return h*e;switch(h){case\"top\":return 0;case\"center\":return.5*e;case\"bottom\":return e;case\"baseline\":return.5*e}})()}}}s.BaseExpo=u,u.__name__=\"BaseExpo\";class p{constructor(t){this.items=t}set base_font_size(t){for(const e of this.items)e.base_font_size=t}get length(){return this.items.length}set visuals(t){for(const e of this.items)e.visuals=t;const e={x:0,cap:1,ascent:2,x_descent:3,cap_descent:4,ascent_descent:5},s=(0,r.max_by)(this.items.map((t=>t.infer_text_height())),(t=>e[t]));for(const t of this.items)t.text_height_metric=s}set angle(t){for(const e of this.items)e.angle=t}max_size(){let t=0,e=0;for(const s of this.items){const i=s.size();t=Math.max(t,i.width),e=Math.max(e,i.height)}return{width:t,height:e}}}s.GraphicsBoxes=p,p.__name__=\"GraphicsBoxes\"},\n", + " function _(t,e,n,r,l){r();const a=t(11),c=(()=>{try{return\"undefined\"!=typeof OffscreenCanvas&&null!=new OffscreenCanvas(0,0).getContext(\"2d\")}catch(t){return!1}})()?(t,e)=>new OffscreenCanvas(t,e):(t,e)=>{const n=document.createElement(\"canvas\");return n.width=t,n.height=e,n},o=(()=>{const t=c(0,0).getContext(\"2d\");return e=>{t.font=e;const n=t.measureText(\"M\"),r=t.measureText(\"x\"),l=t.measureText(\"\\xc5\\u015ag|\"),c=l.fontBoundingBoxAscent,o=l.fontBoundingBoxDescent;if(null!=c&&null!=o)return{height:c+o,ascent:c,descent:o,cap_height:n.actualBoundingBoxAscent,x_height:r.actualBoundingBoxAscent};const s=l.actualBoundingBoxAscent,u=l.actualBoundingBoxDescent;if(null!=s&&null!=u)return{height:s+u,ascent:s,descent:u,cap_height:n.actualBoundingBoxAscent,x_height:r.actualBoundingBoxAscent};(0,a.unreachable)()}})(),s=(()=>{const t=c(0,0).getContext(\"2d\");return(e,n)=>{t.font=n;const r=t.measureText(e),l=r.actualBoundingBoxAscent,c=r.actualBoundingBoxDescent;if(null!=l&&null!=c)return{width:r.width,height:l+c,ascent:l,descent:c};(0,a.unreachable)()}})(),u=(()=>{const t=document.createElement(\"canvas\"),e=t.getContext(\"2d\");let n=-1,r=-1;return(l,a=1)=>{e.font=l;const{width:c}=e.measureText(\"M\"),o=c*a,s=Math.ceil(o),u=Math.ceil(2*o),i=Math.ceil(1.5*o);n{let e=0;for(let n=0;n<=i;n++)for(let r=0;r{let e=t.length-4;for(let n=u;n>=i;n--)for(let r=0;r{const t=document.createElement(\"canvas\"),e=t.getContext(\"2d\");let n=-1,r=-1;return(l,a,c=1)=>{e.font=a;const{width:o}=e.measureText(\"M\"),s=o*c,u=Math.ceil(s),i=Math.ceil(2*s),f=Math.ceil(1.5*s);(n{let e=0;for(let n=0;n<=f;n++)for(let r=0;r{let e=t.length-4;for(let n=i;n>=f;n--)for(let r=0;r{try{return o(\"normal 10px sans-serif\"),o}catch(t){return u}})(),h=(()=>{try{return s(\"A\",\"normal 10px sans-serif\"),s}catch(t){return i}})(),g=new Map;function d(t){let e=g.get(t);return null==e&&(e={font:f(t),glyphs:new Map},g.set(t,e)),e.font}n.font_metrics=d,n.glyph_metrics=function(t,e){let n=g.get(e);null==n&&(d(e),n=g.get(e));let r=n.glyphs.get(t);return null==r&&(r=h(t,e),n.glyphs.set(t,r)),r},n.parse_css_font_size=function(t){const e=t.match(/^\\s*(\\d+(\\.\\d+)?)(\\w+)\\s*$/);if(null!=e){const[,t,,n]=e,r=Number(t);if(isFinite(r))return{value:r,unit:n}}return null}},\n", + " function _(t,s,r,n,i){n();const{sin:e,cos:a}=Math;class h{constructor(t=1,s=0,r=0,n=1,i=0,e=0){this.a=t,this.b=s,this.c=r,this.d=n,this.e=i,this.f=e}toString(){const{a:t,b:s,c:r,d:n,e:i,f:e}=this;return`matrix(${t}, ${s}, ${r}, ${n}, ${i}, ${e})`}static from_DOMMatrix(t){const{a:s,b:r,c:n,d:i,e,f:a}=t;return new h(s,r,n,i,e,a)}to_DOMMatrix(){const{a:t,b:s,c:r,d:n,e:i,f:e}=this;return new DOMMatrix([t,s,r,n,i,e])}clone(){const{a:t,b:s,c:r,d:n,e:i,f:e}=this;return new h(t,s,r,n,i,e)}get is_identity(){const{a:t,b:s,c:r,d:n,e:i,f:e}=this;return 1==t&&0==s&&0==r&&1==n&&0==i&&0==e}apply_point(t){const[s,r]=this.apply(t.x,t.y);return{x:s,y:r}}apply_rect(t){return{p0:this.apply_point(t.p0),p1:this.apply_point(t.p1),p2:this.apply_point(t.p2),p3:this.apply_point(t.p3)}}apply(t,s){const{a:r,b:n,c:i,d:e,e:a,f:h}=this;return[r*t+i*s+a,n*t+e*s+h]}iv_apply(t,s){const{a:r,b:n,c:i,d:e,e:a,f:h}=this,c=t.length;for(let o=0;o{const h={max:4,fit:3,min:2,fixed:1};return h[i]>h[t]};if(\"fixed\"!=n&&\"fixed\"!=s)if(n==s){const n=t,s=_(t/e),r=_(h*e),g=h;Math.abs(i.width-n)+Math.abs(i.height-s)<=Math.abs(i.width-r)+Math.abs(i.height-g)?(t=n,h=s):(t=r,h=g)}else r(n,s)?h=_(t/e):t=_(h*e);else\"fixed\"==n?h=_(t/e):\"fixed\"==s&&(t=_(h*e))}return{width:t,height:h}}measure(i){if(!this.sizing.visible)return{width:0,height:0};const t=i=>\"fixed\"==this.sizing.width_policy&&null!=this.sizing.width?this.sizing.width:i,h=i=>\"fixed\"==this.sizing.height_policy&&null!=this.sizing.height?this.sizing.height:i,e=new s.Sizeable(i).shrink_by(this.sizing.margin).map(t,h),n=this._measure(e),r=this.clip_size(n,e),g=t(r.width),l=h(r.height),a=this.apply_aspect(e,{width:g,height:l});return Object.assign(Object.assign({},n),a)}compute(i={}){const t=this.measure({width:null!=i.width&&this.is_width_expanding()?i.width:1/0,height:null!=i.height&&this.is_height_expanding()?i.height:1/0}),{width:h,height:e}=t,n=new r.BBox({left:0,top:0,width:h,height:e});let s;if(null!=t.inner){const{left:i,top:n,right:g,bottom:l}=t.inner;s=new r.BBox({left:i,top:n,right:h-g,bottom:e-l})}this.set_geometry(n,s)}get xview(){return this.bbox.xview}get yview(){return this.bbox.yview}clip_size(i,t){function h(i,t,h,e){return null==h?h=0:(0,g.isNumber)(h)||(h=Math.round(h.percent*t)),null==e?e=1/0:(0,g.isNumber)(e)||(e=Math.round(e.percent*t)),a(h,l(i,e))}return{width:h(i.width,t.width,this.sizing.min_width,this.sizing.max_width),height:h(i.height,t.height,this.sizing.min_height,this.sizing.max_height)}}has_size_changed(){const{_dirty:i}=this;return this._dirty=!1,i}}h.Layoutable=o,o.__name__=\"Layoutable\";class d extends o{_measure(i){const{width_policy:t,height_policy:h}=this.sizing;return{width:(()=>{const{width:h}=this.sizing;if(i.width==1/0)return null!=h?h:0;switch(t){case\"fixed\":return null!=h?h:0;case\"min\":return null!=h?l(i.width,h):0;case\"fit\":return null!=h?l(i.width,h):i.width;case\"max\":return null!=h?a(i.width,h):i.width}})(),height:(()=>{const{height:t}=this.sizing;if(i.height==1/0)return null!=t?t:0;switch(h){case\"fixed\":return null!=t?t:0;case\"min\":return null!=t?l(i.height,t):0;case\"fit\":return null!=t?l(i.height,t):i.height;case\"max\":return null!=t?a(i.height,t):i.height}})()}}}h.LayoutItem=d,d.__name__=\"LayoutItem\";class u extends o{_measure(i){const t=this._content_size(),h=i.bounded_to(this.sizing.size).bounded_to(t);return{width:(()=>{switch(this.sizing.width_policy){case\"fixed\":return null!=this.sizing.width?this.sizing.width:t.width;case\"min\":return t.width;case\"fit\":return h.width;case\"max\":return Math.max(t.width,h.width)}})(),height:(()=>{switch(this.sizing.height_policy){case\"fixed\":return null!=this.sizing.height?this.sizing.height:t.height;case\"min\":return t.height;case\"fit\":return h.height;case\"max\":return Math.max(t.height,h.height)}})()}}}h.ContentLayoutable=u,u.__name__=\"ContentLayoutable\"},\n", + " function _(e,t,s,a,_){a();const r=e(62),n=e(61),g=e(58),i=e(63),c=e(67),h=e(65),l=e(13),o=e(11);class x{constructor(e,t,s,a,_={},r={},n={},g={}){this.in_x_scale=e,this.in_y_scale=t,this.x_range=s,this.y_range=a,this.extra_x_ranges=_,this.extra_y_ranges=r,this.extra_x_scales=n,this.extra_y_scales=g,this._bbox=new h.BBox,(0,o.assert)(null==e.source_range&&null==e.target_range),(0,o.assert)(null==t.source_range&&null==t.target_range),this._configure_scales()}get bbox(){return this._bbox}_get_ranges(e,t){return new Map((0,l.entries)(Object.assign(Object.assign({},t),{default:e})))}_get_scales(e,t,s,a){var _;const g=new Map((0,l.entries)(Object.assign(Object.assign({},t),{default:e}))),h=new Map;for(const[t,l]of s){if(l instanceof c.FactorRange!=e instanceof r.CategoricalScale)throw new Error(`Range ${l.type} is incompatible is Scale ${e.type}`);e instanceof n.LogScale&&l instanceof i.DataRange1d&&(l.scale_hint=\"log\");const s=(null!==(_=g.get(t))&&void 0!==_?_:e).clone();s.setv({source_range:l,target_range:a}),h.set(t,s)}return h}_configure_frame_ranges(){const{bbox:e}=this;this._x_target=new g.Range1d({start:e.left,end:e.right}),this._y_target=new g.Range1d({start:e.bottom,end:e.top})}_configure_scales(){this._configure_frame_ranges(),this._x_ranges=this._get_ranges(this.x_range,this.extra_x_ranges),this._y_ranges=this._get_ranges(this.y_range,this.extra_y_ranges),this._x_scales=this._get_scales(this.in_x_scale,this.extra_x_scales,this._x_ranges,this._x_target),this._y_scales=this._get_scales(this.in_y_scale,this.extra_y_scales,this._y_ranges,this._y_target)}_update_scales(){this._configure_frame_ranges();for(const[,e]of this._x_scales)e.target_range=this._x_target;for(const[,e]of this._y_scales)e.target_range=this._y_target}set_geometry(e){this._bbox=e,this._update_scales()}get x_target(){return this._x_target}get y_target(){return this._y_target}get x_ranges(){return this._x_ranges}get y_ranges(){return this._y_ranges}get x_scales(){return this._x_scales}get y_scales(){return this._y_scales}get x_scale(){return this._x_scales.get(\"default\")}get y_scale(){return this._y_scales.get(\"default\")}get xscales(){return(0,l.to_object)(this.x_scales)}get yscales(){return(0,l.to_object)(this.y_scales)}}s.CartesianFrame=x,x.__name__=\"CartesianFrame\"},\n", + " function _(i,s,x,A,o){A(),o(\"Axis\",i(128).Axis),o(\"CategoricalAxis\",i(140).CategoricalAxis),o(\"ContinuousAxis\",i(143).ContinuousAxis),o(\"DatetimeAxis\",i(144).DatetimeAxis),o(\"LinearAxis\",i(145).LinearAxis),o(\"LogAxis\",i(162).LogAxis),o(\"MercatorAxis\",i(165).MercatorAxis)},\n", + " function _(t,e,i,s,a){s();const o=t(1);var l;const n=t(129),_=t(130),r=t(131),h=t(132),c=(0,o.__importStar)(t(48)),b=t(20),u=t(24),m=t(123),d=t(9),x=t(13),f=t(8),g=t(120),p=t(67),v=t(133),w=t(113),j=t(11),k=t(8),y=t(134),{abs:z}=Math;class M extends n.GuideRendererView{constructor(){super(...arguments),this._axis_label_view=null,this._major_label_views=new Map}async lazy_initialize(){await super.lazy_initialize(),await this._init_axis_label(),await this._init_major_labels()}async _init_axis_label(){const{axis_label:t}=this.model;if(null!=t){const e=(0,k.isString)(t)?(0,y.parse_delimited_string)(t):t;this._axis_label_view=await(0,w.build_view)(e,{parent:this})}else this._axis_label_view=null}async _init_major_labels(){const{major_label_overrides:t}=this.model;for(const[e,i]of(0,x.entries)(t)){const t=(0,k.isString)(i)?(0,y.parse_delimited_string)(i):i;this._major_label_views.set(e,await(0,w.build_view)(t,{parent:this}))}}update_layout(){this.layout=new m.SideLayout(this.panel,(()=>this.get_size()),!0),this.layout.on_resize((()=>this._coordinates=void 0))}get_size(){const{visible:t,fixed_location:e}=this.model;if(t&&null==e&&this.is_renderable){const{extents:t}=this;return{width:0,height:Math.round(t.tick+t.tick_label+t.axis_label)}}return{width:0,height:0}}get is_renderable(){const[t,e]=this.ranges;return t.is_valid&&e.is_valid}_render(){var t;if(!this.is_renderable)return;const{tick_coords:e,extents:i}=this,s=this.layer.ctx;s.save(),this._draw_rule(s,i),this._draw_major_ticks(s,i,e),this._draw_minor_ticks(s,i,e),this._draw_major_labels(s,i,e),this._draw_axis_label(s,i,e),null===(t=this._paint)||void 0===t||t.call(this,s,i,e),s.restore()}connect_signals(){super.connect_signals();const{axis_label:t,major_label_overrides:e}=this.model.properties;this.on_change(t,(async()=>{var t;null===(t=this._axis_label_view)||void 0===t||t.remove(),await this._init_axis_label()})),this.on_change(e,(async()=>{for(const t of this._major_label_views.values())t.remove();await this._init_major_labels()})),this.connect(this.model.change,(()=>this.plot_view.request_layout()))}get needs_clip(){return null!=this.model.fixed_location}_draw_rule(t,e){if(!this.visuals.axis_line.doit)return;const[i,s]=this.rule_coords,[a,o]=this.coordinates.map_to_screen(i,s),[l,n]=this.normals,[_,r]=this.offsets;this.visuals.axis_line.set_value(t),t.beginPath();for(let e=0;e0?s+i+3:0}_draw_axis_label(t,e,i){if(null==this._axis_label_view||null!=this.model.fixed_location)return;const[s,a]=(()=>{const{bbox:t}=this.layout;switch(this.panel.side){case\"above\":return[t.hcenter,t.bottom];case\"below\":return[t.hcenter,t.top];case\"left\":return[t.right,t.vcenter];case\"right\":return[t.left,t.vcenter]}})(),[o,l]=this.normals,n=e.tick+e.tick_label+this.model.axis_label_standoff,{vertical_align:_,align:r}=this.panel.get_label_text_heuristics(\"parallel\"),h={sx:s+o*n,sy:a+l*n,x_anchor:r,y_anchor:_},c=this._axis_label_view.graphics();c.visuals=this.visuals.axis_label_text.values(),c.angle=this.panel.get_label_angle_heuristic(\"parallel\"),this.plot_view.base_font_size&&(c.base_font_size=this.plot_view.base_font_size),c.position=h,c.align=r,c.paint(t)}_draw_ticks(t,e,i,s,a){if(!a.doit)return;const[o,l]=e,[n,_]=this.coordinates.map_to_screen(o,l),[r,h]=this.normals,[c,b]=this.offsets,[u,m]=[r*(c-i),h*(b-i)],[d,x]=[r*(c+s),h*(b+s)];a.set_value(t),t.beginPath();for(let e=0;et.bbox())),M=(()=>{const[t]=this.ranges;return t.is_reversed?0==this.dimension?(t,e)=>z[t].left-z[e].right:(t,e)=>z[e].top-z[t].bottom:0==this.dimension?(t,e)=>z[e].left-z[t].right:(t,e)=>z[t].top-z[e].bottom})(),{major_label_policy:O}=this.model,T=O.filter(k,z,M),A=[...T.ones()];if(0!=A.length){const t=this.parent.canvas_view.bbox,e=e=>{const i=z[e];if(i.left<0){const t=-i.left,{position:s}=y[e];y[e].position=Object.assign(Object.assign({},s),{sx:s.sx+t})}else if(i.right>t.width){const s=i.right-t.width,{position:a}=y[e];y[e].position=Object.assign(Object.assign({},a),{sx:a.sx-s})}},i=e=>{const i=z[e];if(i.top<0){const t=-i.top,{position:s}=y[e];y[e].position=Object.assign(Object.assign({},s),{sy:s.sy+t})}else if(i.bottom>t.height){const s=i.bottom-t.height,{position:a}=y[e];y[e].position=Object.assign(Object.assign({},a),{sy:a.sy-s})}},s=A[0],a=A[A.length-1];0==this.dimension?(e(s),e(a)):(i(s),i(a))}for(const e of T){y[e].paint(t)}}_tick_extent(){return this.model.major_tick_out}_tick_label_extents(){const t=this.tick_coords.major,e=this.compute_labels(t[this.dimension]),i=this.model.major_label_orientation,s=this.model.major_label_standoff,a=this.visuals.major_label_text;return[this._oriented_labels_extent(e,i,s,a)]}get extents(){const t=this._tick_label_extents();return{tick:this._tick_extent(),tick_labels:t,tick_label:(0,d.sum)(t),axis_label:this._axis_label_extent()}}_oriented_labels_extent(t,e,i,s){if(0==t.length||!s.doit)return 0;const a=this.panel.get_label_angle_heuristic(e);t.visuals=s.values(),t.angle=a,t.base_font_size=this.plot_view.base_font_size;const o=t.max_size(),l=0==this.dimension?o.height:o.width;return l>0?i+l+3:0}get normals(){return this.panel.normals}get dimension(){return this.panel.dimension}compute_labels(t){const e=this.model.formatter.format_graphics(t,this),{_major_label_views:i}=this,s=new Set;for(let a=0;az(l-n)?(t=r(_(a,o),l),s=_(r(a,o),n)):(t=_(a,o),s=r(a,o)),[t,s]}}get rule_coords(){const t=this.dimension,e=(t+1)%2,[i]=this.ranges,[s,a]=this.computed_bounds,o=[new Array(2),new Array(2)];return o[t][0]=Math.max(s,i.min),o[t][1]=Math.min(a,i.max),o[t][0]>o[t][1]&&(o[t][0]=o[t][1]=NaN),o[e][0]=this.loc,o[e][1]=this.loc,o}get tick_coords(){const t=this.dimension,e=(t+1)%2,[i]=this.ranges,[s,a]=this.computed_bounds,o=this.model.ticker.get_ticks(s,a,i,this.loc),l=o.major,n=o.minor,_=[[],[]],r=[[],[]],[h,c]=[i.min,i.max];for(let i=0;ic||(_[t].push(l[i]),_[e].push(this.loc));for(let i=0;ic||(r[t].push(n[i]),r[e].push(this.loc));return{major:_,minor:r}}get loc(){const{fixed_location:t}=this.model;if(null!=t){if((0,f.isNumber)(t))return t;const[,e]=this.ranges;if(e instanceof p.FactorRange)return e.synthetic(t);(0,j.unreachable)()}const[,e]=this.ranges;switch(this.panel.side){case\"left\":case\"below\":return e.start;case\"right\":case\"above\":return e.end}}serializable_state(){return Object.assign(Object.assign({},super.serializable_state()),{bbox:this.layout.bbox.box})}remove(){var t;null===(t=this._axis_label_view)||void 0===t||t.remove();for(const t of this._major_label_views.values())t.remove();super.remove()}has_finished(){if(!super.has_finished())return!1;if(null!=this._axis_label_view&&!this._axis_label_view.has_finished())return!1;for(const t of this._major_label_views.values())if(!t.has_finished())return!1;return!0}}i.AxisView=M,M.__name__=\"AxisView\";class O extends n.GuideRenderer{constructor(t){super(t)}}i.Axis=O,l=O,O.__name__=\"Axis\",l.prototype.default_view=M,l.mixins([[\"axis_\",c.Line],[\"major_tick_\",c.Line],[\"minor_tick_\",c.Line],[\"major_label_\",c.Text],[\"axis_label_\",c.Text]]),l.define((({Any:t,Int:e,Number:i,String:s,Ref:a,Dict:o,Tuple:l,Or:n,Nullable:c,Auto:u})=>({bounds:[n(l(i,i),u),\"auto\"],ticker:[a(_.Ticker)],formatter:[a(r.TickFormatter)],axis_label:[c(n(s,a(v.BaseText))),null],axis_label_standoff:[e,5],major_label_standoff:[e,5],major_label_orientation:[n(b.TickLabelOrientation,i),\"horizontal\"],major_label_overrides:[o(n(s,a(v.BaseText))),{}],major_label_policy:[a(h.LabelingPolicy),()=>new h.AllLabels],major_tick_in:[i,2],major_tick_out:[i,6],minor_tick_in:[i,0],minor_tick_out:[i,4],fixed_location:[c(n(i,t)),null]}))),l.override({axis_line_color:\"black\",major_tick_line_color:\"black\",minor_tick_line_color:\"black\",major_label_text_font_size:\"11px\",major_label_text_align:\"center\",major_label_text_baseline:\"alphabetic\",axis_label_text_font_size:\"13px\",axis_label_text_font_style:\"italic\"})},\n", + " function _(e,r,d,n,i){var s;n();const _=e(41);class u extends _.RendererView{}d.GuideRendererView=u,u.__name__=\"GuideRendererView\";class c extends _.Renderer{constructor(e){super(e)}}d.GuideRenderer=c,s=c,c.__name__=\"GuideRenderer\",s.override({level:\"guide\"})},\n", + " function _(c,e,n,s,o){s();const r=c(53);class t extends r.Model{constructor(c){super(c)}}n.Ticker=t,t.__name__=\"Ticker\"},\n", + " function _(t,o,r,e,c){e();const n=t(53),a=t(120);class m extends n.Model{constructor(t){super(t)}format_graphics(t,o){return this.doFormat(t,o).map((t=>new a.TextBox({text:t})))}compute(t,o){return this.doFormat([t],null!=o?o:{loc:0})[0]}v_compute(t,o){return this.doFormat(t,null!=o?o:{loc:0})}}r.TickFormatter=m,m.__name__=\"TickFormatter\"},\n", + " function _(e,n,s,t,i){var c,r;t();const l=e(53),o=e(13),a=e(34),u=e(8),d=e(24);class _ extends l.Model{constructor(e){super(e)}}s.LabelingPolicy=_,_.__name__=\"LabelingPolicy\";class f extends _{constructor(e){super(e)}filter(e,n,s){return e}}s.AllLabels=f,f.__name__=\"AllLabels\";class m extends _{constructor(e){super(e)}filter(e,n,s){const{min_distance:t}=this;let i=null;for(const n of e)null!=i&&s(i,n)({min_distance:[e,5]})));class b extends _{constructor(e){super(e)}get names(){return(0,o.keys)(this.args)}get values(){return(0,o.values)(this.args)}get func(){const e=(0,a.use_strict)(this.code);return new d.GeneratorFunction(\"indices\",\"bboxes\",\"distance\",...this.names,e)}filter(e,n,s){const t=Object.create(null),i=this.func.call(t,e,n,s,...this.values);let c=i.next();if(c.done&&void 0!==c.value){const{value:n}=c;return n instanceof d.Indices?n:void 0===n?e:(0,u.isIterable)(n)?d.Indices.from_indices(e.size,n):d.Indices.all_unset(e.size)}{const n=[];do{n.push(c.value),c=i.next()}while(!c.done);return d.Indices.from_indices(e.size,n)}}}s.CustomLabelingPolicy=b,r=b,b.__name__=\"CustomLabelingPolicy\",r.define((({Unknown:e,String:n,Dict:s})=>({args:[s(e),{}],code:[n,\"\"]})))},\n", + " function _(e,s,t,n,a){var _;n();const x=e(53),c=e(42);class i extends c.View{}t.BaseTextView=i,i.__name__=\"BaseTextView\";class o extends x.Model{constructor(e){super(e)}}t.BaseText=o,_=o,o.__name__=\"BaseText\",_.define((({String:e})=>({text:[e]})))},\n", + " function _(n,e,t,i,r){i();const s=n(135),l=n(139),d=[{start:\"$$\",end:\"$$\",inline:!1},{start:\"\\\\[\",end:\"\\\\]\",inline:!1},{start:\"\\\\(\",end:\"\\\\)\",inline:!0}];t.parse_delimited_string=function(n){for(const e of d){const t=n.indexOf(e.start),i=t+e.start.length;if(0==t){const t=n.indexOf(e.end,i),r=t;if(t==n.length-e.end.length)return new s.TeX({text:n.slice(i,r),inline:e.inline});break}}return new l.PlainText({text:n})}},\n", + " function _(t,e,s,i,n){var o,r,a;i();const h=t(8),_=t(136),l=t(22),c=t(120),d=t(121),u=t(122),g=t(65),p=t(133),x=t(137);class m extends p.BaseTextView{constructor(){super(...arguments),this._position={sx:0,sy:0},this.align=\"left\",this._x_anchor=\"left\",this._y_anchor=\"center\",this._base_font_size=13,this.font_size_scale=1,this.svg_image=null}graphics(){return this}infer_text_height(){return\"ascent_descent\"}set base_font_size(t){null!=t&&(this._base_font_size=t)}get base_font_size(){return this._base_font_size}get has_image_loaded(){return null!=this.svg_image}_rect(){const{width:t,height:e}=this._size(),{x:s,y:i}=this._computed_position();return new g.BBox({x:s,y:i,width:t,height:e}).rect}set position(t){this._position=t}get position(){return this._position}get text(){return this.model.text}get provider(){return x.default_provider}async lazy_initialize(){await super.lazy_initialize(),\"not_started\"==this.provider.status&&await this.provider.fetch(),\"not_started\"!=this.provider.status&&\"loading\"!=this.provider.status||this.provider.ready.connect((()=>this.load_image())),\"loaded\"==this.provider.status&&await this.load_image()}connect_signals(){super.connect_signals(),this.on_change(this.model.properties.text,(()=>this.load_image()))}set visuals(t){const e=t.color,s=t.alpha,i=t.font_style;let n=t.font_size;const o=t.font,{font_size_scale:r,_base_font_size:a}=this,h=(0,d.parse_css_font_size)(n);if(null!=h){let{value:t,unit:e}=h;t*=r,\"em\"==e&&a&&(t*=a,e=\"px\"),n=`${t}${e}`}const _=`${i} ${n} ${o}`;this.font=_,this.color=(0,l.color2css)(e,s)}_computed_position(){const{width:t,height:e}=this._size(),{sx:s,sy:i,x_anchor:n=this._x_anchor,y_anchor:o=this._y_anchor}=this.position;return{x:s-(()=>{if((0,h.isNumber)(n))return n*t;switch(n){case\"left\":return 0;case\"center\":return.5*t;case\"right\":return t}})(),y:i-(()=>{if((0,h.isNumber)(o))return o*e;switch(o){case\"top\":return 0;case\"center\":return.5*e;case\"bottom\":return e;case\"baseline\":return.5*e}})()}}size(){const{width:t,height:e}=this._size(),{angle:s}=this;if(s){const i=Math.cos(Math.abs(s)),n=Math.sin(Math.abs(s));return{width:Math.abs(t*i+e*n),height:Math.abs(t*n+e*i)}}return{width:t,height:e}}get_text_dimensions(){return{width:(0,c.text_width)(this.model.text,this.font),height:(0,d.font_metrics)(this.font).height}}get_image_dimensions(){var t,e,s,i;const n=parseFloat(null!==(e=null===(t=this.svg_element.getAttribute(\"height\"))||void 0===t?void 0:t.replace(/([A-z])/g,\"\"))&&void 0!==e?e:\"0\"),o=parseFloat(null!==(i=null===(s=this.svg_element.getAttribute(\"width\"))||void 0===s?void 0:s.replace(/([A-z])/g,\"\"))&&void 0!==i?i:\"0\");return{width:(0,d.font_metrics)(this.font).x_height*o,height:(0,d.font_metrics)(this.font).x_height*n}}_size(){return this.has_image_loaded?this.get_image_dimensions():this.get_text_dimensions()}bbox(){const{p0:t,p1:e,p2:s,p3:i}=this.rect(),n=Math.min(t.x,e.x,s.x,i.x),o=Math.min(t.y,e.y,s.y,i.y),r=Math.max(t.x,e.x,s.x,i.x),a=Math.max(t.y,e.y,s.y,i.y);return new g.BBox({left:n,right:r,top:o,bottom:a})}rect(){const t=this._rect(),{angle:e}=this;if(e){const{sx:s,sy:i}=this.position,n=new u.AffineTransform;return n.translate(s,i),n.rotate(e),n.translate(-s,-i),n.apply_rect(t)}return t}paint_rect(t){const{p0:e,p1:s,p2:i,p3:n}=this.rect();t.save(),t.strokeStyle=\"red\",t.lineWidth=1,t.beginPath();const{round:o}=Math;t.moveTo(o(e.x),o(e.y)),t.lineTo(o(s.x),o(s.y)),t.lineTo(o(i.x),o(i.y)),t.lineTo(o(n.x),o(n.y)),t.closePath(),t.stroke(),t.restore()}paint_bbox(t){const{x:e,y:s,width:i,height:n}=this.bbox();t.save(),t.strokeStyle=\"blue\",t.lineWidth=1,t.beginPath();const{round:o}=Math;t.moveTo(o(e),o(s)),t.lineTo(o(e),o(s+n)),t.lineTo(o(e+i),o(s+n)),t.lineTo(o(e+i),o(s)),t.closePath(),t.stroke(),t.restore()}async load_image(){if(null==this.provider.MathJax)return null;const t=this._process_text(this.model.text);if(null==t)return this._has_finished=!0,null;const e=t.children[0];this.svg_element=e,e.setAttribute(\"font\",this.font),e.setAttribute(\"stroke\",this.color);const s=e.outerHTML,i=new Blob([s],{type:\"image/svg+xml\"}),n=URL.createObjectURL(i);try{this.svg_image=await(0,_.load_image)(n)}finally{URL.revokeObjectURL(n)}return this.parent.request_layout(),this.svg_image}paint(t){t.save();const{sx:e,sy:s}=this.position;this.angle&&(t.translate(e,s),t.rotate(this.angle),t.translate(-e,-s));const{x:i,y:n}=this._computed_position();if(null!=this.svg_image){const{width:e,height:s}=this.get_image_dimensions();t.drawImage(this.svg_image,i,n,e,s)}else t.fillStyle=this.color,t.font=this.font,t.textAlign=\"left\",t.textBaseline=\"alphabetic\",t.fillText(this.model.text,i,n+(0,d.font_metrics)(this.font).ascent);t.restore(),this._has_finished||\"failed\"!=this.provider.status&&!this.has_image_loaded||(this._has_finished=!0,this.parent.notify_finished_after_paint())}}s.MathTextView=m,m.__name__=\"MathTextView\";class f extends p.BaseText{constructor(t){super(t)}}s.MathText=f,f.__name__=\"MathText\";class v extends m{_process_text(t){}}s.AsciiView=v,v.__name__=\"AsciiView\";class y extends f{constructor(t){super(t)}}s.Ascii=y,o=y,y.__name__=\"Ascii\",o.prototype.default_view=v;class w extends m{_process_text(t){var e;return null===(e=this.provider.MathJax)||void 0===e?void 0:e.mathml2svg(t.trim())}}s.MathMLView=w,w.__name__=\"MathMLView\";class b extends f{constructor(t){super(t)}}s.MathML=b,r=b,b.__name__=\"MathML\",r.prototype.default_view=w;class M extends m{_process_text(t){var e;return null===(e=this.provider.MathJax)||void 0===e?void 0:e.tex2svg(t,void 0,this.model.macros)}}s.TeXView=M,M.__name__=\"TeXView\";class T extends f{constructor(t){super(t)}}s.TeX=T,a=T,T.__name__=\"TeX\",a.prototype.default_view=M,a.define((({Boolean:t,Number:e,String:s,Dict:i,Tuple:n,Or:o})=>({macros:[i(o(s,n(s,e))),{}],inline:[t,!1]})))},\n", + " function _(i,e,t,s,o){s();const a=i(19);t.load_image=async function(i,e){return new n(i,e).promise};class n{constructor(i,e={}){this._image=new Image,this._finished=!1;const{attempts:t=1,timeout:s=1}=e;this.promise=new Promise(((o,n)=>{this._image.crossOrigin=\"anonymous\";let r=0;this._image.onerror=()=>{if(++r==t){const s=`unable to load ${i} image after ${t} attempts`;if(a.logger.warn(s),null==this._image.crossOrigin)return void(null!=e.failed&&e.failed());a.logger.warn(`attempting to load ${i} without a cross origin policy`),this._image.crossOrigin=null,r=0}setTimeout((()=>this._image.src=i),s)},this._image.onload=()=>{this._finished=!0,null!=e.loaded&&e.loaded(this._image),o(this._image)},this._image.src=i}))}get finished(){return this._finished}get image(){if(this._finished)return this._image;throw new Error(\"not loaded yet\")}}t.ImageLoader=n,n.__name__=\"ImageLoader\"},\n", + " function _(t,e,a,s,n){var r=this&&this.__createBinding||(Object.create?function(t,e,a,s){void 0===s&&(s=a),Object.defineProperty(t,s,{enumerable:!0,get:function(){return e[a]}})}:function(t,e,a,s){void 0===s&&(s=a),t[s]=e[a]}),i=this&&this.__setModuleDefault||(Object.create?function(t,e){Object.defineProperty(t,\"default\",{enumerable:!0,value:e})}:function(t,e){t.default=e}),d=this&&this.__importStar||function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var a in t)\"default\"!==a&&Object.prototype.hasOwnProperty.call(t,a)&&r(e,t,a);return i(e,t),e};s();const o=t(15),u=t(138);class c{constructor(){this.ready=new o.Signal0(this,\"ready\"),this.status=\"not_started\"}}a.MathJaxProvider=c,c.__name__=\"MathJaxProvider\";class h extends c{get MathJax(){return null}async fetch(){this.status=\"failed\"}}a.NoProvider=h,h.__name__=\"NoProvider\";class l extends c{get MathJax(){return\"undefined\"!=typeof MathJax?MathJax:null}async fetch(){const t=document.createElement(\"script\");t.src=\"https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-svg.js\",t.onload=()=>{this.status=\"loaded\",this.ready.emit()},t.onerror=()=>{this.status=\"failed\"},this.status=\"loading\",document.head.appendChild(t)}}a.CDNProvider=l,l.__name__=\"CDNProvider\";class _ extends c{get MathJax(){return this._mathjax}async fetch(){this.status=\"loading\";try{const e=await(0,u.load_module)(Promise.resolve().then((()=>d(t(519)))));this._mathjax=e,this.status=\"loaded\",this.ready.emit()}catch(t){this.status=\"failed\"}}}a.BundleProvider=_,_.__name__=\"BundleProvider\",a.default_provider=new _},\n", + " function _(n,r,o,t,c){t(),o.load_module=async function(n){try{return await n}catch(n){if((r=n)instanceof Error&&\"code\"in r&&\"MODULE_NOT_FOUND\"===n.code)return null;throw n}var r}},\n", + " function _(e,t,i,n,s){var a;n();const x=e(133),_=e(120);class l extends x.BaseTextView{initialize(){super.initialize(),this._has_finished=!0}graphics(){return new _.TextBox({text:this.model.text})}}i.PlainTextView=l,l.__name__=\"PlainTextView\";class r extends x.BaseText{constructor(e){super(e)}}i.PlainText=r,a=r,r.__name__=\"PlainText\",a.prototype.default_view=l},\n", + " function _(t,s,o,e,i){e();const r=t(1);var a;const l=t(128),_=t(141),n=t(142),p=(0,r.__importStar)(t(48)),c=t(20),h=t(120),m=t(8);class u extends l.AxisView{_paint(t,s,o){this._draw_group_separators(t,s,o)}_draw_group_separators(t,s,o){const[e]=this.ranges,[i,r]=this.computed_bounds;if(!e.tops||e.tops.length<2||!this.visuals.separator_line.doit)return;const a=this.dimension,l=(a+1)%2,_=[[],[]];let n=0;for(let t=0;ti&&pnew h.GraphicsBoxes(t.map((t=>(0,m.isString)(t)?new h.TextBox({text:t}):t))),_=t=>l(this.model.formatter.doFormat(t,this));if(1==t.levels){const t=_(i.major);a.push([t,r.major,this.model.major_label_orientation,this.visuals.major_label_text])}else if(2==t.levels){const t=_(i.major.map((t=>t[1])));a.push([t,r.major,this.model.major_label_orientation,this.visuals.major_label_text]),a.push([l(i.tops),r.tops,this.model.group_label_orientation,this.visuals.group_text])}else if(3==t.levels){const t=_(i.major.map((t=>t[2]))),s=i.mids.map((t=>t[1]));a.push([t,r.major,this.model.major_label_orientation,this.visuals.major_label_text]),a.push([l(s),r.mids,this.model.subgroup_label_orientation,this.visuals.subgroup_text]),a.push([l(i.tops),r.tops,this.model.group_label_orientation,this.visuals.group_text])}return a}get tick_coords(){const t=this.dimension,s=(t+1)%2,[o]=this.ranges,[e,i]=this.computed_bounds,r=this.model.ticker.get_ticks(e,i,o,this.loc),a={major:[[],[]],mids:[[],[]],tops:[[],[]],minor:[[],[]]};return a.major[t]=r.major,a.major[s]=r.major.map((()=>this.loc)),3==o.levels&&(a.mids[t]=r.mids,a.mids[s]=r.mids.map((()=>this.loc))),o.levels>1&&(a.tops[t]=r.tops,a.tops[s]=r.tops.map((()=>this.loc))),a}}o.CategoricalAxisView=u,u.__name__=\"CategoricalAxisView\";class d extends l.Axis{constructor(t){super(t)}}o.CategoricalAxis=d,a=d,d.__name__=\"CategoricalAxis\",a.prototype.default_view=u,a.mixins([[\"separator_\",p.Line],[\"group_\",p.Text],[\"subgroup_\",p.Text]]),a.define((({Number:t,Or:s})=>({group_label_orientation:[s(c.TickLabelOrientation,t),\"parallel\"],subgroup_label_orientation:[s(c.TickLabelOrientation,t),\"parallel\"]}))),a.override({ticker:()=>new _.CategoricalTicker,formatter:()=>new n.CategoricalTickFormatter,separator_line_color:\"lightgrey\",separator_line_width:2,group_text_font_style:\"bold\",group_text_font_size:\"11px\",group_text_color:\"grey\",subgroup_text_font_style:\"bold\",subgroup_text_font_size:\"11px\"})},\n", + " function _(t,c,o,s,e){s();const r=t(130);class i extends r.Ticker{constructor(t){super(t)}get_ticks(t,c,o,s){var e,r;return{major:this._collect(o.factors,o,t,c),minor:[],tops:this._collect(null!==(e=o.tops)&&void 0!==e?e:[],o,t,c),mids:this._collect(null!==(r=o.mids)&&void 0!==r?r:[],o,t,c)}}_collect(t,c,o,s){const e=[];for(const r of t){const t=c.synthetic(r);t>o&&tnew _.DatetimeTicker,formatter:()=>new m.DatetimeTickFormatter})},\n", + " function _(e,i,s,n,r){var t;n();const a=e(143),o=e(146),c=e(147);class _ extends a.ContinuousAxisView{}s.LinearAxisView=_,_.__name__=\"LinearAxisView\";class u extends a.ContinuousAxis{constructor(e){super(e)}}s.LinearAxis=u,t=u,u.__name__=\"LinearAxis\",t.prototype.default_view=_,t.override({ticker:()=>new c.BasicTicker,formatter:()=>new o.BasicTickFormatter})},\n", + " function _(i,t,e,n,o){var r;n();const s=i(131),c=i(34);function _(i){let t=\"\";for(const e of i)t+=\"-\"==e?\"\\u2212\":e;return t}e.unicode_replace=_;class a extends s.TickFormatter{constructor(i){super(i),this.last_precision=3}get scientific_limit_low(){return 10**this.power_limit_low}get scientific_limit_high(){return 10**this.power_limit_high}_need_sci(i){if(!this.use_scientific)return!1;const{scientific_limit_high:t}=this,{scientific_limit_low:e}=this,n=i.length<2?0:Math.abs(i[1]-i[0])/1e4;for(const o of i){const i=Math.abs(o);if(!(i<=n)&&(i>=t||i<=e))return!0}return!1}_format_with_precision(i,t,e){return t?i.map((i=>_(i.toExponential(e)))):i.map((i=>_((0,c.to_fixed)(i,e))))}_auto_precision(i,t){const e=new Array(i.length),n=this.last_precision<=15;i:for(let o=this.last_precision;n?o<=15:o>=1;n?o++:o--){if(t){e[0]=i[0].toExponential(o);for(let t=1;t({precision:[n(t,e),\"auto\"],use_scientific:[i,!0],power_limit_high:[t,5],power_limit_low:[t,-3]})))},\n", + " function _(c,e,s,i,n){i();const r=c(148);class t extends r.AdaptiveTicker{constructor(c){super(c)}}s.BasicTicker=t,t.__name__=\"BasicTicker\"},\n", + " function _(t,i,a,s,e){var n;s();const r=t(149),_=t(9),l=t(10);class h extends r.ContinuousTicker{constructor(t){super(t)}get_min_interval(){return this.min_interval}get_max_interval(){var t;return null!==(t=this.max_interval)&&void 0!==t?t:1/0}initialize(){super.initialize();const t=(0,_.nth)(this.mantissas,-1)/this.base,i=(0,_.nth)(this.mantissas,0)*this.base;this.extended_mantissas=[t,...this.mantissas,i],this.base_factor=0===this.get_min_interval()?1:this.get_min_interval()}get_interval(t,i,a){const s=i-t,e=this.get_ideal_interval(t,i,a),n=Math.floor((0,l.log)(e/this.base_factor,this.base)),r=this.base**n*this.base_factor,h=this.extended_mantissas,m=h.map((t=>Math.abs(a-s/(t*r)))),v=h[(0,_.argmin)(m)]*r;return(0,l.clamp)(v,this.get_min_interval(),this.get_max_interval())}}a.AdaptiveTicker=h,n=h,h.__name__=\"AdaptiveTicker\",n.define((({Number:t,Array:i,Nullable:a})=>({base:[t,10],mantissas:[i(t),[1,2,5]],min_interval:[t,0],max_interval:[a(t),null]})))},\n", + " function _(t,n,i,s,e){var o;s();const r=t(130),c=t(9);class _ extends r.Ticker{constructor(t){super(t)}get_ticks(t,n,i,s){return this.get_ticks_no_defaults(t,n,s,this.desired_num_ticks)}get_ticks_no_defaults(t,n,i,s){const e=this.get_interval(t,n,s),o=Math.floor(t/e),r=Math.ceil(n/e);let _;_=isFinite(o)&&isFinite(r)?(0,c.range)(o,r+1):[];const u=_.map((t=>t*e)).filter((i=>t<=i&&i<=n)),a=this.num_minor_ticks,f=[];if(a>0&&u.length>0){const i=e/a,s=(0,c.range)(0,a).map((t=>t*i));for(const i of s.slice(1)){const s=u[0]-i;t<=s&&s<=n&&f.push(s)}for(const i of u)for(const e of s){const s=i+e;t<=s&&s<=n&&f.push(s)}}return{major:u,minor:f}}get_ideal_interval(t,n,i){return(n-t)/i}}i.ContinuousTicker=_,o=_,_.__name__=\"ContinuousTicker\",o.define((({Int:t})=>({num_minor_ticks:[t,5],desired_num_ticks:[t,6]})))},\n", + " function _(s,t,e,n,i){n();var r;const o=(0,s(1).__importDefault)(s(151)),a=s(131),c=s(19),u=s(152),m=s(9),h=s(8);function d(s){return(0,o.default)(s,\"%Y %m %d %H %M %S\").split(/\\s+/).map((s=>parseInt(s,10)))}function l(s,t){if((0,h.isFunction)(t))return t(s);{const e=(0,u.sprintf)(\"$1%06d\",function(s){return Math.round(s/1e3%1*1e6)}(s));return-1==(t=t.replace(/((^|[^%])(%%)*)%f/,e)).indexOf(\"%\")?t:(0,o.default)(s,t)}}const f=[\"microseconds\",\"milliseconds\",\"seconds\",\"minsec\",\"minutes\",\"hourmin\",\"hours\",\"days\",\"months\",\"years\"];class _ extends a.TickFormatter{constructor(s){super(s),this.strip_leading_zeros=!0}initialize(){super.initialize(),this._update_width_formats()}_update_width_formats(){const s=+(0,o.default)(new Date),t=function(t){const e=t.map((t=>l(s,t).length)),n=(0,m.sort_by)((0,m.zip)(e,t),(([s])=>s));return(0,m.unzip)(n)};this._width_formats={microseconds:t(this.microseconds),milliseconds:t(this.milliseconds),seconds:t(this.seconds),minsec:t(this.minsec),minutes:t(this.minutes),hourmin:t(this.hourmin),hours:t(this.hours),days:t(this.days),months:t(this.months),years:t(this.years)}}_get_resolution_str(s,t){const e=1.1*s;switch(!1){case!(e<.001):return\"microseconds\";case!(e<1):return\"milliseconds\";case!(e<60):return t>=60?\"minsec\":\"seconds\";case!(e<3600):return t>=3600?\"hourmin\":\"minutes\";case!(e<86400):return\"hours\";case!(e<2678400):return\"days\";case!(e<31536e3):return\"months\";default:return\"years\"}}doFormat(s,t){if(0==s.length)return[];const e=Math.abs(s[s.length-1]-s[0])/1e3,n=e/(s.length-1),i=this._get_resolution_str(n,e),[,[r]]=this._width_formats[i],o=[],a=f.indexOf(i),u={};for(const s of f)u[s]=0;u.seconds=5,u.minsec=4,u.minutes=4,u.hourmin=3,u.hours=3;for(const t of s){let s,e;try{e=d(t),s=l(t,r)}catch(s){c.logger.warn(`unable to format tick for timestamp value ${t}`),c.logger.warn(` - ${s}`),o.push(\"ERR\");continue}let n=!1,m=a;for(;0==e[u[f[m]]];){let r;if(m+=1,m==f.length)break;if((\"minsec\"==i||\"hourmin\"==i)&&!n){if(\"minsec\"==i&&0==e[4]&&0!=e[5]||\"hourmin\"==i&&0==e[3]&&0!=e[4]){r=this._width_formats[f[a-1]][1][0],s=l(t,r);break}n=!0}r=this._width_formats[f[m]][1][0],s=l(t,r)}if(this.strip_leading_zeros){let t=s.replace(/^0+/g,\"\");t!=s&&isNaN(parseInt(t))&&(t=`0${t}`),o.push(t)}else o.push(s)}return o}}e.DatetimeTickFormatter=_,r=_,_.__name__=\"DatetimeTickFormatter\",r.define((({String:s,Array:t})=>({microseconds:[t(s),[\"%fus\"]],milliseconds:[t(s),[\"%3Nms\",\"%S.%3Ns\"]],seconds:[t(s),[\"%Ss\"]],minsec:[t(s),[\":%M:%S\"]],minutes:[t(s),[\":%M\",\"%Mm\"]],hourmin:[t(s),[\"%H:%M\"]],hours:[t(s),[\"%Hh\",\"%H:%M\"]],days:[t(s),[\"%m/%d\",\"%a%d\"]],months:[t(s),[\"%m/%Y\",\"%b %Y\"]],years:[t(s),[\"%Y\"]]})))},\n", + " function _(e,t,n,r,o){!function(e){\"object\"==typeof t&&t.exports?t.exports=e():\"function\"==typeof define?define(e):this.tz=e()}((function(){function e(e,t,n){var r,o=t.day[1];do{r=new Date(Date.UTC(n,t.month,Math.abs(o++)))}while(t.day[0]<7&&r.getUTCDay()!=t.day[0]);return(r={clock:t.clock,sort:r.getTime(),rule:t,save:6e4*t.save,offset:e.offset})[r.clock]=r.sort+6e4*t.time,r.posix?r.wallclock=r[r.clock]+(e.offset+t.saved):r.posix=r[r.clock]-(e.offset+t.saved),r}function t(t,n,r){var o,a,u,i,l,s,c,f=t[t.zone],h=[],T=new Date(r).getUTCFullYear(),g=1;for(o=1,a=f.length;o=T-g;--c)for(o=0,a=s.length;o=h[o][n]&&h[o][h[o].clock]>u[h[o].clock]&&(i=h[o])}return i&&((l=/^(.*)\\/(.*)$/.exec(u.format))?i.abbrev=l[i.save?2:1]:i.abbrev=u.format.replace(/%s/,i.rule.letter)),i||u}function n(e,n){return\"UTC\"==e.zone?n:(e.entry=t(e,\"posix\",n),n+e.entry.offset+e.entry.save)}function r(e,n){return\"UTC\"==e.zone?n:(e.entry=r=t(e,\"wallclock\",n),0<(o=n-r.wallclock)&&o9)t+=s*l[c-10];else{if(a=new Date(n(e,t)),c<7)for(;s;)a.setUTCDate(a.getUTCDate()+i),a.getUTCDay()==c&&(s-=i);else 7==c?a.setUTCFullYear(a.getUTCFullYear()+s):8==c?a.setUTCMonth(a.getUTCMonth()+s):a.setUTCDate(a.getUTCDate()+s);null==(t=r(e,a.getTime()))&&(t=r(e,a.getTime()+864e5*i)-864e5*i)}return t}var a={clock:function(){return+new Date},zone:\"UTC\",entry:{abbrev:\"UTC\",offset:0,save:0},UTC:1,z:function(e,t,n,r){var o,a,u=this.entry.offset+this.entry.save,i=Math.abs(u/1e3),l=[],s=3600;for(o=0;o<3;o++)l.push((\"0\"+Math.floor(i/s)).slice(-2)),i%=s,s/=60;return\"^\"!=n||u?(\"^\"==n&&(r=3),3==r?(a=(a=l.join(\":\")).replace(/:00$/,\"\"),\"^\"!=n&&(a=a.replace(/:00$/,\"\"))):r?(a=l.slice(0,r+1).join(\":\"),\"^\"==n&&(a=a.replace(/:00$/,\"\"))):a=l.slice(0,2).join(\"\"),a=(a=(u<0?\"-\":\"+\")+a).replace(/([-+])(0)/,{_:\" $1\",\"-\":\"$1\"}[n]||\"$1$2\")):\"Z\"},\"%\":function(e){return\"%\"},n:function(e){return\"\\n\"},t:function(e){return\"\\t\"},U:function(e){return s(e,0)},W:function(e){return s(e,1)},V:function(e){return c(e)[0]},G:function(e){return c(e)[1]},g:function(e){return c(e)[1]%100},j:function(e){return Math.floor((e.getTime()-Date.UTC(e.getUTCFullYear(),0))/864e5)+1},s:function(e){return Math.floor(e.getTime()/1e3)},C:function(e){return Math.floor(e.getUTCFullYear()/100)},N:function(e){return e.getTime()%1e3*1e6},m:function(e){return e.getUTCMonth()+1},Y:function(e){return e.getUTCFullYear()},y:function(e){return e.getUTCFullYear()%100},H:function(e){return e.getUTCHours()},M:function(e){return e.getUTCMinutes()},S:function(e){return e.getUTCSeconds()},e:function(e){return e.getUTCDate()},d:function(e){return e.getUTCDate()},u:function(e){return e.getUTCDay()||7},w:function(e){return e.getUTCDay()},l:function(e){return e.getUTCHours()%12||12},I:function(e){return e.getUTCHours()%12||12},k:function(e){return e.getUTCHours()},Z:function(e){return this.entry.abbrev},a:function(e){return this[this.locale].day.abbrev[e.getUTCDay()]},A:function(e){return this[this.locale].day.full[e.getUTCDay()]},h:function(e){return this[this.locale].month.abbrev[e.getUTCMonth()]},b:function(e){return this[this.locale].month.abbrev[e.getUTCMonth()]},B:function(e){return this[this.locale].month.full[e.getUTCMonth()]},P:function(e){return this[this.locale].meridiem[Math.floor(e.getUTCHours()/12)].toLowerCase()},p:function(e){return this[this.locale].meridiem[Math.floor(e.getUTCHours()/12)]},R:function(e,t){return this.convert([t,\"%H:%M\"])},T:function(e,t){return this.convert([t,\"%H:%M:%S\"])},D:function(e,t){return this.convert([t,\"%m/%d/%y\"])},F:function(e,t){return this.convert([t,\"%Y-%m-%d\"])},x:function(e,t){return this.convert([t,this[this.locale].date])},r:function(e,t){return this.convert([t,this[this.locale].time12||\"%I:%M:%S\"])},X:function(e,t){return this.convert([t,this[this.locale].time24])},c:function(e,t){return this.convert([t,this[this.locale].dateTime])},convert:function(e){if(!e.length)return\"1.0.23\";var t,a,u,l,s,c=Object.create(this),f=[];for(t=0;t=o?Math.floor((n-o)/7)+1:0}function c(e){var t,n,r;return n=e.getUTCFullYear(),t=new Date(Date.UTC(n,0)).getUTCDay(),(r=s(e,1)+(t>1&&t<=4?1:0))?53!=r||4==t||3==t&&29==new Date(n,1,29).getDate()?[r,e.getUTCFullYear()]:[1,e.getUTCFullYear()+1]:(n=e.getUTCFullYear()-1,[r=4==(t=new Date(Date.UTC(n,0)).getUTCDay())||3==t&&29==new Date(n,1,29).getDate()?53:52,e.getUTCFullYear()-1])}return u=u.toLowerCase().split(\"|\"),\"delmHMSUWVgCIky\".replace(/./g,(function(e){a[e].pad=2})),a.N.pad=9,a.j.pad=3,a.k.style=\"_\",a.l.style=\"_\",a.e.style=\"_\",function(){return a.convert(arguments)}}))},\n", + " function _(r,t,n,e,i){e();const u=r(1),a=(0,u.__importStar)(r(153)),f=r(154),o=(0,u.__importDefault)(r(151)),l=r(21),s=r(8);function c(r,...t){return(0,f.sprintf)(r,...t)}function m(r,t,n){if((0,s.isNumber)(r)){return c((()=>{switch(!1){case Math.floor(r)!=r:return\"%d\";case!(Math.abs(r)>.1&&Math.abs(r)<1e3):return\"%0.3f\";default:return\"%0.3e\"}})(),r)}return`${r}`}function _(r,t,e){if(null==t)return m;if(null!=e&&r in e){const t=e[r];if((0,s.isString)(t)){if(t in n.DEFAULT_FORMATTERS)return n.DEFAULT_FORMATTERS[t];throw new Error(`Unknown tooltip field formatter type '${t}'`)}return function(r,n,e){return t.format(r,n,e)}}return n.DEFAULT_FORMATTERS.numeral}function p(r,t,n){const e=t.get_column(r);if(null==e)return null;if((0,s.isNumber)(n))return e[n];const i=e[n.index];if((0,s.isTypedArray)(i)||(0,s.isArray)(i)){if((0,s.isArray)(i[0])){return i[n.dim2][n.dim1]}return i[n.flat_index]}return i}function d(r,t,n,e){if(\"$\"==r[0]){return function(r,t){if(r in t)return t[r];throw new Error(`Unknown special variable '$${r}'`)}(r.substring(1),e)}return p(r.substring(1).replace(/[{}]/g,\"\"),t,n)}n.FormatterType=(0,l.Enum)(\"numeral\",\"printf\",\"datetime\"),n.DEFAULT_FORMATTERS={numeral:(r,t,n)=>a.format(r,t),datetime:(r,t,n)=>(0,o.default)(r,t),printf:(r,t,n)=>c(t,r)},n.sprintf=c,n.basic_formatter=m,n.get_formatter=_,n._get_column_value=p,n.get_value=d,n.replace_placeholders=function(r,t,n,e,i={},u){let a,f;if((0,s.isString)(r)?(a=r,f=!1):(a=r.html,f=!0),a=a.replace(/@\\$name/g,(r=>`@{${i.name}}`)),a=a.replace(/((?:\\$\\w+)|(?:@\\w+)|(?:@{(?:[^{}]+)}))(?:{([^{}]+)})?/g,((r,a,o)=>{const l=d(a,t,n,i);if(null==l)return u?u(\"???\"):\"???\";if(\"safe\"==o)return f=!0,`${l}`;const s=`${_(a,o,e)(l,o,i)}`;return u?u(s):s})),f){return[...(new DOMParser).parseFromString(a,\"text/html\").body.childNodes]}return a}},\n", + " function _(e,n,t,r,i){\n", + " /*!\n", + " * numbro.js\n", + " * version : 1.6.2\n", + " * author : Företagsplatsen AB\n", + " * license : MIT\n", + " * http://www.foretagsplatsen.se\n", + " */\n", + " var a,o={},l=o,u=\"en-US\",c=null,s=\"0,0\";void 0!==n&&n.exports;function f(e){this._value=e}function d(e){var n,t=\"\";for(n=0;n-1?function(e,n){var t,r,i,a;return t=(a=e.toString()).split(\"e\")[0],i=a.split(\"e\")[1],a=t.split(\".\")[0]+(r=t.split(\".\")[1]||\"\")+d(i-r.length),n>0&&(a+=\".\"+d(n)),a}(e,n):(t(e*o)/o).toFixed(n),r&&(i=new RegExp(\"0{1,\"+r+\"}$\"),a=a.replace(i,\"\")),a}function p(e,n,t){var r;return r=n.indexOf(\"$\")>-1?function(e,n,t){var r,i,a=n,l=a.indexOf(\"$\"),c=a.indexOf(\"(\"),s=a.indexOf(\"+\"),f=a.indexOf(\"-\"),d=\"\",h=\"\";-1===a.indexOf(\"$\")?\"infix\"===o[u].currency.position?(h=o[u].currency.symbol,o[u].currency.spaceSeparated&&(h=\" \"+h+\" \")):o[u].currency.spaceSeparated&&(d=\" \"):a.indexOf(\" $\")>-1?(d=\" \",a=a.replace(\" $\",\"\")):a.indexOf(\"$ \")>-1?(d=\" \",a=a.replace(\"$ \",\"\")):a=a.replace(\"$\",\"\");if(i=m(e,a,t,h),-1===n.indexOf(\"$\"))switch(o[u].currency.position){case\"postfix\":i.indexOf(\")\")>-1?((i=i.split(\"\")).splice(-1,0,d+o[u].currency.symbol),i=i.join(\"\")):i=i+d+o[u].currency.symbol;break;case\"infix\":break;case\"prefix\":i.indexOf(\"(\")>-1||i.indexOf(\"-\")>-1?(i=i.split(\"\"),r=Math.max(c,f)+1,i.splice(r,0,o[u].currency.symbol+d),i=i.join(\"\")):i=o[u].currency.symbol+d+i;break;default:throw Error('Currency position should be among [\"prefix\", \"infix\", \"postfix\"]')}else l<=1?i.indexOf(\"(\")>-1||i.indexOf(\"+\")>-1||i.indexOf(\"-\")>-1?(r=1,(l-1?((i=i.split(\"\")).splice(-1,0,d+o[u].currency.symbol),i=i.join(\"\")):i=i+d+o[u].currency.symbol;return i}(e,n,t):n.indexOf(\"%\")>-1?function(e,n,t){var r,i=\"\";e*=100,n.indexOf(\" %\")>-1?(i=\" \",n=n.replace(\" %\",\"\")):n=n.replace(\"%\",\"\");(r=m(e,n,t)).indexOf(\")\")>-1?((r=r.split(\"\")).splice(-1,0,i+\"%\"),r=r.join(\"\")):r=r+i+\"%\";return r}(e,n,t):n.indexOf(\":\")>-1?function(e){var n=Math.floor(e/60/60),t=Math.floor((e-60*n*60)/60),r=Math.round(e-60*n*60-60*t);return n+\":\"+(t<10?\"0\"+t:t)+\":\"+(r<10?\"0\"+r:r)}(e):m(e,n,t),r}function m(e,n,t,r){var i,a,l,s,f,d,p,m,x,g,O,b,w,y,M,v,$,B=!1,E=!1,F=!1,k=\"\",U=!1,N=!1,S=!1,j=!1,D=!1,C=\"\",L=\"\",T=Math.abs(e),K=[\"B\",\"KiB\",\"MiB\",\"GiB\",\"TiB\",\"PiB\",\"EiB\",\"ZiB\",\"YiB\"],G=[\"B\",\"KB\",\"MB\",\"GB\",\"TB\",\"PB\",\"EB\",\"ZB\",\"YB\"],I=\"\",P=!1,R=!1;if(0===e&&null!==c)return c;if(!isFinite(e))return\"\"+e;if(0===n.indexOf(\"{\")){var W=n.indexOf(\"}\");if(-1===W)throw Error('Format should also contain a \"}\"');b=n.slice(1,W),n=n.slice(W+1)}else b=\"\";if(n.indexOf(\"}\")===n.length-1){var Y=n.indexOf(\"{\");if(-1===Y)throw Error('Format should also contain a \"{\"');w=n.slice(Y+1,-1),n=n.slice(0,Y+1)}else w=\"\";if(v=null===($=-1===n.indexOf(\".\")?n.match(/([0-9]+).*/):n.match(/([0-9]+)\\..*/))?-1:$[1].length,-1!==n.indexOf(\"-\")&&(P=!0),n.indexOf(\"(\")>-1?(B=!0,n=n.slice(1,-1)):n.indexOf(\"+\")>-1&&(E=!0,n=n.replace(/\\+/g,\"\")),n.indexOf(\"a\")>-1){if(g=n.split(\".\")[0].match(/[0-9]+/g)||[\"0\"],g=parseInt(g[0],10),U=n.indexOf(\"aK\")>=0,N=n.indexOf(\"aM\")>=0,S=n.indexOf(\"aB\")>=0,j=n.indexOf(\"aT\")>=0,D=U||N||S||j,n.indexOf(\" a\")>-1?(k=\" \",n=n.replace(\" a\",\"\")):n=n.replace(\"a\",\"\"),p=0===(p=(f=Math.floor(Math.log(T)/Math.LN10)+1)%3)?3:p,g&&0!==T&&(d=Math.floor(Math.log(T)/Math.LN10)+1-g,m=3*~~((Math.min(g,f)-p)/3),T/=Math.pow(10,m),-1===n.indexOf(\".\")&&g>3))for(n+=\"[.]\",M=(M=0===d?0:3*~~(d/3)-d)<0?M+3:M,i=0;i=Math.pow(10,12)&&!D||j?(k+=o[u].abbreviations.trillion,e/=Math.pow(10,12)):T=Math.pow(10,9)&&!D||S?(k+=o[u].abbreviations.billion,e/=Math.pow(10,9)):T=Math.pow(10,6)&&!D||N?(k+=o[u].abbreviations.million,e/=Math.pow(10,6)):(T=Math.pow(10,3)&&!D||U)&&(k+=o[u].abbreviations.thousand,e/=Math.pow(10,3)))}if(n.indexOf(\"b\")>-1)for(n.indexOf(\" b\")>-1?(C=\" \",n=n.replace(\" b\",\"\")):n=n.replace(\"b\",\"\"),s=0;s<=K.length;s++)if(a=Math.pow(1024,s),l=Math.pow(1024,s+1),e>=a&&e0&&(e/=a);break}if(n.indexOf(\"d\")>-1)for(n.indexOf(\" d\")>-1?(C=\" \",n=n.replace(\" d\",\"\")):n=n.replace(\"d\",\"\"),s=0;s<=G.length;s++)if(a=Math.pow(1e3,s),l=Math.pow(1e3,s+1),e>=a&&e0&&(e/=a);break}if(n.indexOf(\"o\")>-1&&(n.indexOf(\" o\")>-1?(L=\" \",n=n.replace(\" o\",\"\")):n=n.replace(\"o\",\"\"),o[u].ordinal&&(L+=o[u].ordinal(e))),n.indexOf(\"[.]\")>-1&&(F=!0,n=n.replace(\"[.]\",\".\")),x=e.toString().split(\".\")[0],O=n.split(\".\")[1],y=n.indexOf(\",\"),O){if(x=(I=-1!==O.indexOf(\"*\")?h(e,e.toString().split(\".\")[1].length,t):O.indexOf(\"[\")>-1?h(e,(O=(O=O.replace(\"]\",\"\")).split(\"[\"))[0].length+O[1].length,t,O[1].length):h(e,O.length,t)).split(\".\")[0],I.split(\".\")[1].length)I=(r?k+r:o[u].delimiters.decimal)+I.split(\".\")[1];else I=\"\";F&&0===Number(I.slice(1))&&(I=\"\")}else x=h(e,null,t);return x.indexOf(\"-\")>-1&&(x=x.slice(1),R=!0),x.length-1&&(x=x.toString().replace(/(\\d)(?=(\\d{3})+(?!\\d))/g,\"$1\"+o[u].delimiters.thousands)),0===n.indexOf(\".\")&&(x=\"\"),b+(n.indexOf(\"(\")2)&&(o.length<2?!!o[0].match(/^\\d+.*\\d$/)&&!o[0].match(u):1===o[0].length?!!o[0].match(/^\\d+$/)&&!o[0].match(u)&&!!o[1].match(/^\\d+$/):!!o[0].match(/^\\d+.*\\d$/)&&!o[0].match(u)&&!!o[1].match(/^\\d+$/)))))},n.exports={format:function(e,n,t,r){return null!=t&&t!==a.culture()&&a.setCulture(t),p(Number(e),null!=n?n:s,null==r?Math.round:r)}}},\n", + " function _(e,n,t,r,i){!function(){\"use strict\";var e={not_string:/[^s]/,not_bool:/[^t]/,not_type:/[^T]/,not_primitive:/[^v]/,number:/[diefg]/,numeric_arg:/[bcdiefguxX]/,json:/[j]/,not_json:/[^j]/,text:/^[^\\x25]+/,modulo:/^\\x25{2}/,placeholder:/^\\x25(?:([1-9]\\d*)\\$|\\(([^)]+)\\))?(\\+)?(0|'[^$])?(-)?(\\d+)?(?:\\.(\\d+))?([b-gijostTuvxX])/,key:/^([a-z_][a-z_\\d]*)/i,key_access:/^\\.([a-z_][a-z_\\d]*)/i,index_access:/^\\[(\\d+)\\]/,sign:/^[+-]/};function n(e){return i(a(e),arguments)}function r(e,t){return n.apply(null,[e].concat(t||[]))}function i(t,r){var i,s,a,o,p,c,l,u,f,d=1,g=t.length,y=\"\";for(s=0;s=0),o.type){case\"b\":i=parseInt(i,10).toString(2);break;case\"c\":i=String.fromCharCode(parseInt(i,10));break;case\"d\":case\"i\":i=parseInt(i,10);break;case\"j\":i=JSON.stringify(i,null,o.width?parseInt(o.width):0);break;case\"e\":i=o.precision?parseFloat(i).toExponential(o.precision):parseFloat(i).toExponential();break;case\"f\":i=o.precision?parseFloat(i).toFixed(o.precision):parseFloat(i);break;case\"g\":i=o.precision?String(Number(i.toPrecision(o.precision))):parseFloat(i);break;case\"o\":i=(parseInt(i,10)>>>0).toString(8);break;case\"s\":i=String(i),i=o.precision?i.substring(0,o.precision):i;break;case\"t\":i=String(!!i),i=o.precision?i.substring(0,o.precision):i;break;case\"T\":i=Object.prototype.toString.call(i).slice(8,-1).toLowerCase(),i=o.precision?i.substring(0,o.precision):i;break;case\"u\":i=parseInt(i,10)>>>0;break;case\"v\":i=i.valueOf(),i=o.precision?i.substring(0,o.precision):i;break;case\"x\":i=(parseInt(i,10)>>>0).toString(16);break;case\"X\":i=(parseInt(i,10)>>>0).toString(16).toUpperCase()}e.json.test(o.type)?y+=i:(!e.number.test(o.type)||u&&!o.sign?f=\"\":(f=u?\"+\":\"-\",i=i.toString().replace(e.sign,\"\")),c=o.pad_char?\"0\"===o.pad_char?\"0\":o.pad_char.charAt(1):\" \",l=o.width-(f+i).length,p=o.width&&l>0?c.repeat(l):\"\",y+=o.align?f+i+p:\"0\"===c?f+p+i:p+f+i)}return y}var s=Object.create(null);function a(n){if(s[n])return s[n];for(var t,r=n,i=[],a=0;r;){if(null!==(t=e.text.exec(r)))i.push(t[0]);else if(null!==(t=e.modulo.exec(r)))i.push(\"%\");else{if(null===(t=e.placeholder.exec(r)))throw new SyntaxError(\"[sprintf] unexpected placeholder\");if(t[2]){a|=1;var o=[],p=t[2],c=[];if(null===(c=e.key.exec(p)))throw new SyntaxError(\"[sprintf] failed to parse named argument key\");for(o.push(c[1]);\"\"!==(p=p.substring(c[0].length));)if(null!==(c=e.key_access.exec(p)))o.push(c[1]);else{if(null===(c=e.index_access.exec(p)))throw new SyntaxError(\"[sprintf] failed to parse named argument key\");o.push(c[1])}t[2]=o}else a|=2;if(3===a)throw new Error(\"[sprintf] mixing positional and named placeholders is not (yet) supported\");i.push({placeholder:t[0],param_no:t[1],keys:t[2],sign:t[3],pad_char:t[4],align:t[5],width:t[6],precision:t[7],type:t[8]})}r=r.substring(t[0].length)}return s[n]=i}void 0!==t&&(t.sprintf=n,t.vsprintf=r),\"undefined\"!=typeof window&&(window.sprintf=n,window.vsprintf=r,\"function\"==typeof define&&define.amd&&define((function(){return{sprintf:n,vsprintf:r}})))}()},\n", + " function _(e,n,i,a,s){var r;a();const t=e(9),c=e(148),m=e(156),_=e(157),k=e(160),o=e(161),T=e(159);class w extends m.CompositeTicker{constructor(e){super(e)}}i.DatetimeTicker=w,r=w,w.__name__=\"DatetimeTicker\",r.override({num_minor_ticks:0,tickers:()=>[new c.AdaptiveTicker({mantissas:[1,2,5],base:10,min_interval:0,max_interval:500*T.ONE_MILLI,num_minor_ticks:0}),new c.AdaptiveTicker({mantissas:[1,2,5,10,15,20,30],base:60,min_interval:T.ONE_SECOND,max_interval:30*T.ONE_MINUTE,num_minor_ticks:0}),new c.AdaptiveTicker({mantissas:[1,2,4,6,8,12],base:24,min_interval:T.ONE_HOUR,max_interval:12*T.ONE_HOUR,num_minor_ticks:0}),new _.DaysTicker({days:(0,t.range)(1,32)}),new _.DaysTicker({days:(0,t.range)(1,31,3)}),new _.DaysTicker({days:[1,8,15,22]}),new _.DaysTicker({days:[1,15]}),new k.MonthsTicker({months:(0,t.range)(0,12,1)}),new k.MonthsTicker({months:(0,t.range)(0,12,2)}),new k.MonthsTicker({months:(0,t.range)(0,12,4)}),new k.MonthsTicker({months:(0,t.range)(0,12,6)}),new o.YearsTicker({})]})},\n", + " function _(t,e,i,r,s){var n;r();const _=t(149),a=t(9);class l extends _.ContinuousTicker{constructor(t){super(t)}get min_intervals(){return this.tickers.map((t=>t.get_min_interval()))}get max_intervals(){return this.tickers.map((t=>t.get_max_interval()))}get_min_interval(){return this.min_intervals[0]}get_max_interval(){return this.max_intervals[0]}get_best_ticker(t,e,i){const r=e-t,s=this.get_ideal_interval(t,e,i),n=[(0,a.sorted_index)(this.min_intervals,s)-1,(0,a.sorted_index)(this.max_intervals,s)],_=[this.min_intervals[n[0]],this.max_intervals[n[1]]].map((t=>Math.abs(i-r/t)));let l;if((0,a.is_empty)(_.filter((t=>!isNaN(t)))))l=this.tickers[0];else{const t=n[(0,a.argmin)(_)];l=this.tickers[t]}return l}get_interval(t,e,i){return this.get_best_ticker(t,e,i).get_interval(t,e,i)}get_ticks_no_defaults(t,e,i,r){return this.get_best_ticker(t,e,r).get_ticks_no_defaults(t,e,i,r)}}i.CompositeTicker=l,n=l,l.__name__=\"CompositeTicker\",n.define((({Array:t,Ref:e})=>({tickers:[t(e(_.ContinuousTicker)),[]]})))},\n", + " function _(t,e,n,s,o){var a;s();const i=t(158),r=t(159),c=t(9);class _ extends i.SingleIntervalTicker{constructor(t){super(t)}initialize(){super.initialize();const t=this.days;t.length>1?this.interval=(t[1]-t[0])*r.ONE_DAY:this.interval=31*r.ONE_DAY}get_ticks_no_defaults(t,e,n,s){const o=function(t,e){const n=(0,r.last_month_no_later_than)(new Date(t)),s=(0,r.last_month_no_later_than)(new Date(e));s.setUTCMonth(s.getUTCMonth()+1);const o=[],a=n;for(;o.push((0,r.copy_date)(a)),a.setUTCMonth(a.getUTCMonth()+1),!(a>s););return o}(t,e),a=this.days,i=this.interval,_=(0,c.concat)(o.map((t=>((t,e)=>{const n=t.getUTCMonth(),s=[];for(const o of a){const a=(0,r.copy_date)(t);a.setUTCDate(o),new Date(a.getTime()+e/2).getUTCMonth()==n&&s.push(a)}return s})(t,i))));return{major:_.map((t=>t.getTime())).filter((n=>t<=n&&n<=e)),minor:[]}}}n.DaysTicker=_,a=_,_.__name__=\"DaysTicker\",a.define((({Int:t,Array:e})=>({days:[e(t),[]]}))),a.override({num_minor_ticks:0})},\n", + " function _(e,n,t,r,i){var a;r();const l=e(149);class s extends l.ContinuousTicker{constructor(e){super(e)}get_interval(e,n,t){return this.interval}get_min_interval(){return this.interval}get_max_interval(){return this.interval}}t.SingleIntervalTicker=s,a=s,s.__name__=\"SingleIntervalTicker\",a.define((({Number:e})=>({interval:[e]})))},\n", + " function _(t,n,e,_,E){function N(t){return new Date(t.getTime())}function O(t){const n=N(t);return n.setUTCDate(1),n.setUTCHours(0),n.setUTCMinutes(0),n.setUTCSeconds(0),n.setUTCMilliseconds(0),n}_(),e.ONE_MILLI=1,e.ONE_SECOND=1e3,e.ONE_MINUTE=60*e.ONE_SECOND,e.ONE_HOUR=60*e.ONE_MINUTE,e.ONE_DAY=24*e.ONE_HOUR,e.ONE_MONTH=30*e.ONE_DAY,e.ONE_YEAR=365*e.ONE_DAY,e.copy_date=N,e.last_month_no_later_than=O,e.last_year_no_later_than=function(t){const n=O(t);return n.setUTCMonth(0),n}},\n", + " function _(t,e,n,a,r){var s;a();const i=t(158),o=t(159),l=t(9);class _ extends i.SingleIntervalTicker{constructor(t){super(t)}initialize(){super.initialize();const t=this.months;t.length>1?this.interval=(t[1]-t[0])*o.ONE_MONTH:this.interval=12*o.ONE_MONTH}get_ticks_no_defaults(t,e,n,a){const r=function(t,e){const n=(0,o.last_year_no_later_than)(new Date(t)),a=(0,o.last_year_no_later_than)(new Date(e));a.setUTCFullYear(a.getUTCFullYear()+1);const r=[],s=n;for(;r.push((0,o.copy_date)(s)),s.setUTCFullYear(s.getUTCFullYear()+1),!(s>a););return r}(t,e),s=this.months;return{major:(0,l.concat)(r.map((t=>s.map((e=>{const n=(0,o.copy_date)(t);return n.setUTCMonth(e),n}))))).map((t=>t.getTime())).filter((n=>t<=n&&n<=e)),minor:[]}}}n.MonthsTicker=_,s=_,_.__name__=\"MonthsTicker\",s.define((({Int:t,Array:e})=>({months:[e(t),[]]})))},\n", + " function _(e,t,a,i,r){i();const n=e(147),_=e(158),s=e(159);class c extends _.SingleIntervalTicker{constructor(e){super(e)}initialize(){super.initialize(),this.interval=s.ONE_YEAR,this.basic_ticker=new n.BasicTicker({num_minor_ticks:0})}get_ticks_no_defaults(e,t,a,i){const r=(0,s.last_year_no_later_than)(new Date(e)).getUTCFullYear(),n=(0,s.last_year_no_later_than)(new Date(t)).getUTCFullYear();return{major:this.basic_ticker.get_ticks_no_defaults(r,n,a,i).major.map((e=>Date.UTC(e,0,1))).filter((a=>e<=a&&a<=t)),minor:[]}}}a.YearsTicker=c,c.__name__=\"YearsTicker\"},\n", + " function _(e,o,i,s,t){var n;s();const r=e(143),_=e(163),c=e(164);class a extends r.ContinuousAxisView{}i.LogAxisView=a,a.__name__=\"LogAxisView\";class u extends r.ContinuousAxis{constructor(e){super(e)}}i.LogAxis=u,n=u,u.__name__=\"LogAxis\",n.prototype.default_view=a,n.override({ticker:()=>new c.LogTicker,formatter:()=>new _.LogTickFormatter})},\n", + " function _(e,t,n,o,r){var i;o();const a=e(131),s=e(146),c=e(164),l=e(120),{abs:u,log:x,round:_}=Math;class p extends a.TickFormatter{constructor(e){super(e)}initialize(){super.initialize(),this.basic_formatter=new s.BasicTickFormatter}format_graphics(e,t){var n,o;if(0==e.length)return[];const r=null!==(o=null===(n=this.ticker)||void 0===n?void 0:n.base)&&void 0!==o?o:10,i=this._exponents(e,r);return null==i?this.basic_formatter.format_graphics(e,t):i.map((e=>{if(u(e)u(e)({ticker:[n(t(c.LogTicker)),null],min_exponent:[e,0]})))},\n", + " function _(t,o,e,s,n){var r;s();const i=t(148),a=t(9);class c extends i.AdaptiveTicker{constructor(t){super(t)}get_ticks_no_defaults(t,o,e,s){const n=this.num_minor_ticks,r=[],i=this.base,c=Math.log(t)/Math.log(i),f=Math.log(o)/Math.log(i),l=f-c;let h;if(isFinite(l))if(l<2){const e=this.get_interval(t,o,s),i=Math.floor(t/e),c=Math.ceil(o/e);if(h=(0,a.range)(i,c+1).filter((t=>0!=t)).map((t=>t*e)).filter((e=>t<=e&&e<=o)),n>0&&h.length>0){const t=e/n,o=(0,a.range)(0,n).map((o=>o*t));for(const t of o.slice(1))r.push(h[0]-t);for(const t of h)for(const e of o)r.push(t+e)}}else{const t=Math.ceil(.999999*c),o=Math.floor(1.000001*f),e=Math.ceil((o-t)/9);if(h=(0,a.range)(t-1,o+1,e).map((t=>i**t)),n>0&&h.length>0){const t=i**e/n,o=(0,a.range)(1,n+1).map((o=>o*t));for(const t of o)r.push(h[0]/t);r.push(h[0]);for(const t of h)for(const e of o)r.push(t*e)}}else h=[];return{major:h.filter((e=>t<=e&&e<=o)),minor:r.filter((e=>t<=e&&e<=o))}}}e.LogTicker=c,r=c,c.__name__=\"LogTicker\",r.override({mantissas:[1,5]})},\n", + " function _(e,r,t,i,a){var o;i();const s=e(128),c=e(145),n=e(166),_=e(167);class x extends s.AxisView{}t.MercatorAxisView=x,x.__name__=\"MercatorAxisView\";class d extends c.LinearAxis{constructor(e){super(e)}}t.MercatorAxis=d,o=d,d.__name__=\"MercatorAxis\",o.prototype.default_view=x,o.override({ticker:()=>new _.MercatorTicker({dimension:\"lat\"}),formatter:()=>new n.MercatorTickFormatter({dimension:\"lat\"})})},\n", + " function _(r,t,e,o,n){var i;o();const c=r(146),s=r(20),a=r(78);class l extends c.BasicTickFormatter{constructor(r){super(r)}doFormat(r,t){if(null==this.dimension)throw new Error(\"MercatorTickFormatter.dimension not configured\");if(0==r.length)return[];const e=r.length,o=new Array(e);if(\"lon\"==this.dimension)for(let n=0;n({dimension:[r(s.LatLon),null]})))},\n", + " function _(t,o,n,s,r){var e;s();const i=t(147),c=t(20),_=t(78);class a extends i.BasicTicker{constructor(t){super(t)}get_ticks_no_defaults(t,o,n,s){if(null==this.dimension)throw new Error(`${this}.dimension wasn't configured`);return[t,o]=(0,_.clip_mercator)(t,o,this.dimension),\"lon\"==this.dimension?this._get_ticks_lon(t,o,n,s):this._get_ticks_lat(t,o,n,s)}_get_ticks_lon(t,o,n,s){const[r]=_.wgs84_mercator.invert(t,n),[e,i]=_.wgs84_mercator.invert(o,n),c=super.get_ticks_no_defaults(r,e,n,s),a=[];for(const t of c.major)if((0,_.in_bounds)(t,\"lon\")){const[o]=_.wgs84_mercator.compute(t,i);a.push(o)}const m=[];for(const t of c.minor)if((0,_.in_bounds)(t,\"lon\")){const[o]=_.wgs84_mercator.compute(t,i);m.push(o)}return{major:a,minor:m}}_get_ticks_lat(t,o,n,s){const[,r]=_.wgs84_mercator.invert(n,t),[e,i]=_.wgs84_mercator.invert(n,o),c=super.get_ticks_no_defaults(r,i,n,s),a=[];for(const t of c.major)if((0,_.in_bounds)(t,\"lat\")){const[,o]=_.wgs84_mercator.compute(e,t);a.push(o)}const m=[];for(const t of c.minor)if((0,_.in_bounds)(t,\"lat\")){const[,o]=_.wgs84_mercator.compute(e,t);m.push(o)}return{major:a,minor:m}}}n.MercatorTicker=a,e=a,a.__name__=\"MercatorTicker\",e.define((({Nullable:t})=>({dimension:[t(c.LatLon),null]})))},\n", + " function _(e,i,r,c,k){c(),k(\"AdaptiveTicker\",e(148).AdaptiveTicker),k(\"BasicTicker\",e(147).BasicTicker),k(\"CategoricalTicker\",e(141).CategoricalTicker),k(\"CompositeTicker\",e(156).CompositeTicker),k(\"ContinuousTicker\",e(149).ContinuousTicker),k(\"DatetimeTicker\",e(155).DatetimeTicker),k(\"DaysTicker\",e(157).DaysTicker),k(\"FixedTicker\",e(169).FixedTicker),k(\"LogTicker\",e(164).LogTicker),k(\"MercatorTicker\",e(167).MercatorTicker),k(\"MonthsTicker\",e(160).MonthsTicker),k(\"SingleIntervalTicker\",e(158).SingleIntervalTicker),k(\"Ticker\",e(130).Ticker),k(\"YearsTicker\",e(161).YearsTicker),k(\"BinnedTicker\",e(170).BinnedTicker)},\n", + " function _(r,t,e,i,n){var s;i();const _=r(149);class c extends _.ContinuousTicker{constructor(r){super(r)}get_ticks_no_defaults(r,t,e,i){return{major:this.ticks,minor:this.minor_ticks}}get_interval(r,t,e){return 0}get_min_interval(){return 0}get_max_interval(){return 0}}e.FixedTicker=c,s=c,c.__name__=\"FixedTicker\",s.define((({Number:r,Array:t})=>({ticks:[t(r),[]],minor_ticks:[t(r),[]]})))},\n", + " function _(e,n,t,r,i){var o;r();const a=e(130),s=e(171),c=e(12);class m extends a.Ticker{constructor(e){super(e)}get_ticks(e,n,t,r){const{binning:i}=this.mapper.metrics,o=Math.max(0,(0,c.left_edge_index)(e,i)),a=Math.min((0,c.left_edge_index)(n,i)+1,i.length-1),s=[];for(let e=o;e<=a;e++)s.push(i[e]);const{num_major_ticks:m}=this,_=[],h=\"auto\"==m?s.length:m,l=Math.max(1,Math.floor(s.length/h));for(let e=0;e({mapper:[n(s.ScanningColorMapper)],num_major_ticks:[t(e,r),8]})))},\n", + " function _(n,e,i,r,o){r();const t=n(172),a=n(12);class c extends t.ContinuousColorMapper{constructor(n){super(n)}cmap(n,e,i,r,o){if(no.binning[o.binning.length-1])return r;return e[(0,a.left_edge_index)(n,o.binning)]}}i.ScanningColorMapper=c,c.__name__=\"ScanningColorMapper\"},\n", + " function _(t,e,o,n,s){var l;n();const c=t(173),i=t(175),a=t(9),h=t(8);class r extends c.ColorMapper{constructor(t){super(t),this._scan_data=null}connect_signals(){super.connect_signals();const t=()=>{for(const[t]of this.domain)this.connect(t.view.change,(()=>this.update_data())),this.connect(t.data_source.selected.change,(()=>this.update_data()))};this.connect(this.properties.domain.change,(()=>t())),t()}update_data(){const{domain:t,palette:e}=this,o=[...this._collect(t)];this._scan_data=this.scan(o,e.length),this.metrics_change.emit(),this.change.emit()}get metrics(){return null==this._scan_data&&this.update_data(),this._scan_data}*_collect(t){for(const[e,o]of t)for(const t of(0,h.isArray)(o)?o:[o]){let o=e.data_source.get_column(t);o=e.view.indices.select(o);const n=e.view.masked,s=e.data_source.selected.indices;let l;if(null!=n&&s.length>0?l=(0,a.intersection)([...n],s):null!=n?l=[...n]:s.length>0&&(l=s),null!=l&&(o=(0,a.map)(l,(t=>o[t]))),o.length>0&&!(0,h.isNumber)(o[0]))for(const t of o)yield*t;else yield*o}}_v_compute(t,e,o,n){const{nan_color:s}=n;let{low_color:l,high_color:c}=n;null==l&&(l=o[0]),null==c&&(c=o[o.length-1]);const{domain:i}=this,h=(0,a.is_empty)(i)?t:[...this._collect(i)];this._scan_data=this.scan(h,o.length),this.metrics_change.emit();for(let n=0,i=t.length;n({high:[a(t),null],low:[a(t),null],high_color:[a(n),null],low_color:[a(n),null],domain:[c(l(o(i.GlyphRenderer),s(e,c(e)))),[]]})))},\n", + " function _(e,r,t,n,o){var a;n();const c=e(174),i=e(15),_=e(24),l=e(22),s=e(27);function p(e){return(0,l.encode_rgba)((0,l.color2rgba)(e))}function u(e){const r=new Uint32Array(e.length);for(let t=0,n=e.length;te))),r}get rgba_mapper(){const e=this,r=u(this.palette),t=this._colors(p);return{v_compute(n){const o=new _.ColorArray(n.length);return e._v_compute(n,o,r,t),new Uint8ClampedArray((0,s.to_big_endian)(o).buffer)}}}_colors(e){return{nan_color:e(this.nan_color)}}}t.ColorMapper=h,a=h,h.__name__=\"ColorMapper\",a.define((({Color:e,Array:r})=>({palette:[r(e)],nan_color:[e,\"gray\"]})))},\n", + " function _(r,e,n,s,o){s();const p=r(56);class t extends p.Transform{constructor(r){super(r)}compute(r){throw new Error(\"mapping single values is not supported\")}}n.Mapper=t,t.__name__=\"Mapper\"},\n", + " function _(e,t,i,s,l){var h;s();const n=e(176),o=e(177),a=e(186),c=e(187),_=e(189),r=e(179),d=e(70),p=e(190),g=e(24),u=e(12),y=e(13),m=e(113),v=e(67),f={fill:{},line:{}},w={fill:{fill_alpha:.3,fill_color:\"grey\"},line:{line_alpha:.3,line_color:\"grey\"}},b={fill:{fill_alpha:.2},line:{}},V={fill:{fill_alpha:.2},line:{}};class x extends n.DataRendererView{get glyph_view(){return this.glyph}async lazy_initialize(){var e;await super.lazy_initialize();const t=this.model.glyph;this.glyph=await this.build_glyph_view(t);const i=\"fill\"in this.glyph.visuals,s=\"line\"in this.glyph.visuals,l=Object.assign({},t.attributes);function h(e){const h=(0,y.clone)(l);return i&&(0,y.extend)(h,e.fill),s&&(0,y.extend)(h,e.line),new t.constructor(h)}function n(e,t){return t instanceof r.Glyph?t:h(\"auto\"==t?e:{fill:{},line:{}})}delete l.id;let{selection_glyph:o,nonselection_glyph:a,hover_glyph:c,muted_glyph:_}=this.model;o=n(f,o),this.selection_glyph=await this.build_glyph_view(o),a=n(b,a),this.nonselection_glyph=await this.build_glyph_view(a),null!=c&&(this.hover_glyph=await this.build_glyph_view(c)),_=n(V,_),this.muted_glyph=await this.build_glyph_view(_);const d=n(w,\"auto\");this.decimated_glyph=await this.build_glyph_view(d),this.selection_glyph.set_base(this.glyph),this.nonselection_glyph.set_base(this.glyph),null===(e=this.hover_glyph)||void 0===e||e.set_base(this.glyph),this.muted_glyph.set_base(this.glyph),this.decimated_glyph.set_base(this.glyph),this.set_data()}async build_glyph_view(e){return(0,m.build_view)(e,{parent:this})}remove(){var e;this.glyph.remove(),this.selection_glyph.remove(),this.nonselection_glyph.remove(),null===(e=this.hover_glyph)||void 0===e||e.remove(),this.muted_glyph.remove(),this.decimated_glyph.remove(),super.remove()}connect_signals(){super.connect_signals();const e=()=>this.request_render(),t=()=>this.update_data();this.connect(this.model.change,e),this.connect(this.glyph.model.change,t),this.connect(this.selection_glyph.model.change,t),this.connect(this.nonselection_glyph.model.change,t),null!=this.hover_glyph&&this.connect(this.hover_glyph.model.change,t),this.connect(this.muted_glyph.model.change,t),this.connect(this.decimated_glyph.model.change,t),this.connect(this.model.data_source.change,t),this.connect(this.model.data_source.streaming,t),this.connect(this.model.data_source.patching,(e=>this.update_data(e))),this.connect(this.model.data_source.selected.change,e),this.connect(this.model.data_source._select,e),null!=this.hover_glyph&&this.connect(this.model.data_source.inspect,e),this.connect(this.model.properties.view.change,t),this.connect(this.model.view.properties.indices.change,t),this.connect(this.model.view.properties.masked.change,(()=>this.set_visuals())),this.connect(this.model.properties.visible.change,(()=>this.plot_view.invalidate_dataranges=!0));const{x_ranges:i,y_ranges:s}=this.plot_view.frame;for(const[,e]of i)e instanceof v.FactorRange&&this.connect(e.change,t);for(const[,e]of s)e instanceof v.FactorRange&&this.connect(e.change,t);const{transformchange:l,exprchange:h}=this.model.glyph;this.connect(l,t),this.connect(h,t)}_update_masked_indices(){const e=this.glyph.mask_data();return this.model.view.masked=e,e}update_data(e){this.set_data(e),this.request_render()}set_data(e){const t=this.model.data_source;this.all_indices=this.model.view.indices;const{all_indices:i}=this;this.glyph.set_data(t,i,e),this.set_visuals(),this._update_masked_indices();const{lod_factor:s}=this.plot_model,l=this.all_indices.count;this.decimated=new g.Indices(l);for(let e=0;e!n||n.is_empty()?[]:n.selected_glyph?this.model.view.convert_indices_from_subset(i):n.indices.length>0?n.indices:Object.keys(n.multiline_indices).map((e=>parseInt(e))))()),d=(0,u.filter)(i,(e=>r.has(t[e]))),{lod_threshold:p}=this.plot_model;let g,y,m;if(null!=this.model.document&&this.model.document.interactive_duration()>0&&!e&&null!=p&&t.length>p?(i=[...this.decimated],g=this.decimated_glyph,y=this.decimated_glyph,m=this.selection_glyph):(g=this.model.muted?this.muted_glyph:this.glyph,y=this.nonselection_glyph,m=this.selection_glyph),null!=this.hover_glyph&&d.length){const e=new Set(i);for(const t of d)e.delete(t);i=[...e]}if(h.length){const e={};for(const t of h)e[t]=!0;const l=new Array,n=new Array;if(this.glyph instanceof o.LineView)for(const i of t)null!=e[i]?l.push(i):n.push(i);else for(const s of i)null!=e[t[s]]?l.push(s):n.push(s);y.render(s,n),m.render(s,l),null!=this.hover_glyph&&(this.glyph instanceof o.LineView?this.hover_glyph.render(s,this.model.view.convert_indices_from_subset(d)):this.hover_glyph.render(s,d))}else if(this.glyph instanceof o.LineView)this.hover_glyph&&d.length?this.hover_glyph.render(s,this.model.view.convert_indices_from_subset(d)):g.render(s,t);else if(this.glyph instanceof a.PatchView||this.glyph instanceof c.HAreaView||this.glyph instanceof _.VAreaView)if(0==n.selected_glyphs.length||null==this.hover_glyph)g.render(s,t);else for(const e of n.selected_glyphs)e==this.glyph.model&&this.hover_glyph.render(s,t);else g.render(s,i),this.hover_glyph&&d.length&&this.hover_glyph.render(s,d);s.restore()}draw_legend(e,t,i,s,l,h,n,o){0!=this.glyph.data_size&&(null==o&&(o=this.model.get_reference_point(h,n)),this.glyph.draw_legend_for_index(e,{x0:t,x1:i,y0:s,y1:l},o))}hit_test(e){if(!this.model.visible)return null;const t=this.glyph.hit_test(e);return null==t?null:this.model.view.convert_selection_from_subset(t)}}i.GlyphRendererView=x,x.__name__=\"GlyphRendererView\";class G extends n.DataRenderer{constructor(e){super(e)}initialize(){super.initialize(),this.view.source!=this.data_source&&(this.view.source=this.data_source,this.view.compute_indices())}get_reference_point(e,t){if(null!=e){const i=this.data_source.get_column(e);if(null!=i)for(const[e,s]of Object.entries(this.view.indices_map))if(i[parseInt(e)]==t)return s}return 0}get_selection_manager(){return this.data_source.selection_manager}}i.GlyphRenderer=G,h=G,G.__name__=\"GlyphRenderer\",h.prototype.default_view=x,h.define((({Boolean:e,Auto:t,Or:i,Ref:s,Null:l,Nullable:h})=>({data_source:[s(d.ColumnarDataSource)],view:[s(p.CDSView),e=>new p.CDSView({source:e.data_source})],glyph:[s(r.Glyph)],hover_glyph:[h(s(r.Glyph)),null],nonselection_glyph:[i(s(r.Glyph),t,l),\"auto\"],selection_glyph:[i(s(r.Glyph),t,l),\"auto\"],muted_glyph:[i(s(r.Glyph),t,l),\"auto\"],muted:[e,!1]})))},\n", + " function _(e,r,t,a,n){var s;a();const c=e(41);class _ extends c.RendererView{get xscale(){return this.coordinates.x_scale}get yscale(){return this.coordinates.y_scale}}t.DataRendererView=_,_.__name__=\"DataRendererView\";class i extends c.Renderer{constructor(e){super(e)}get selection_manager(){return this.get_selection_manager()}}t.DataRenderer=i,s=i,i.__name__=\"DataRenderer\",s.override({level:\"glyph\"})},\n", + " function _(e,t,i,s,n){s();const l=e(1);var _;const r=e(178),o=e(184),a=(0,l.__importStar)(e(48)),h=(0,l.__importStar)(e(185)),c=e(72);class d extends r.XYGlyphView{async lazy_initialize(){await super.lazy_initialize();const{webgl:t}=this.renderer.plot_view.canvas_view;if(null==t?void 0:t.regl_wrapper.has_webgl){const{LineGL:i}=await Promise.resolve().then((()=>(0,l.__importStar)(e(426))));this.glglyph=new i(t.regl_wrapper,this)}}_render(e,t,i){const{sx:s,sy:n}=null!=i?i:this;let l=null;const _=e=>null!=l&&e-l!=1;let r=!0;e.beginPath();for(const i of t){const t=s[i],o=n[i];isFinite(t+o)?r||_(i)?(e.moveTo(t,o),r=!1):e.lineTo(t,o):r=!0,l=i}this.visuals.line.set_value(e),e.stroke()}_hit_point(e){const t=new c.Selection,i={x:e.sx,y:e.sy};let s=9999;const n=Math.max(2,this.line_width.value/2);for(let e=0,l=this.sx.length-1;e({x:[c.XCoordinateSpec,{field:\"x\"}],y:[c.YCoordinateSpec,{field:\"y\"}]})))},\n", + " function _(e,t,s,i,n){i();const r=e(1),a=(0,r.__importStar)(e(18)),o=(0,r.__importStar)(e(65)),_=(0,r.__importStar)(e(45)),l=e(42),c=e(53),h=e(19),d=e(24),u=e(8),f=e(180),p=e(12),g=e(26),y=e(181),x=e(67),v=e(72),{abs:b,ceil:m}=Math;class w extends l.View{constructor(){super(...arguments),this._index=null,this._data_size=null,this._nohit_warned=new Set}get renderer(){return this.parent}get has_webgl(){return null!=this.glglyph}get index(){const{_index:e}=this;if(null!=e)return e;throw new Error(`${this}.index_data() wasn't called`)}get data_size(){const{_data_size:e}=this;if(null!=e)return e;throw new Error(`${this}.set_data() wasn't called`)}initialize(){super.initialize(),this.visuals=new _.Visuals(this)}request_render(){this.parent.request_render()}get canvas(){return this.renderer.parent.canvas_view}render(e,t,s){var i;null!=this.glglyph&&(this.renderer.needs_webgl_blit=this.glglyph.render(e,t,null!==(i=this.base)&&void 0!==i?i:this),this.renderer.needs_webgl_blit)||this._render(e,t,null!=s?s:this.base)}has_finished(){return!0}notify_finished(){this.renderer.notify_finished()}_bounds(e){return e}bounds(){return this._bounds(this.index.bbox)}log_bounds(){const{x0:e,x1:t}=this.index.bounds(o.positive_x()),{y0:s,y1:i}=this.index.bounds(o.positive_y());return this._bounds({x0:e,y0:s,x1:t,y1:i})}get_anchor_point(e,t,[s,i]){switch(e){case\"center\":case\"center_center\":{const[e,n]=this.scenterxy(t,s,i);return{x:e,y:n}}default:return null}}scenterx(e,t,s){return this.scenterxy(e,t,s)[0]}scentery(e,t,s){return this.scenterxy(e,t,s)[1]}sdist(e,t,s,i=\"edge\",n=!1){const r=t.length,a=new d.ScreenArray(r),o=e.s_compute;if(\"center\"==i)for(let e=0;em(e))),a}draw_legend_for_index(e,t,s){}hit_test(e){switch(e.type){case\"point\":if(null!=this._hit_point)return this._hit_point(e);break;case\"span\":if(null!=this._hit_span)return this._hit_span(e);break;case\"rect\":if(null!=this._hit_rect)return this._hit_rect(e);break;case\"poly\":if(null!=this._hit_poly)return this._hit_poly(e)}return this._nohit_warned.has(e.type)||(h.logger.debug(`'${e.type}' selection not available for ${this.model.type}`),this._nohit_warned.add(e.type)),null}_hit_rect_against_index(e){const{sx0:t,sx1:s,sy0:i,sy1:n}=e,[r,a]=this.renderer.coordinates.x_scale.r_invert(t,s),[o,_]=this.renderer.coordinates.y_scale.r_invert(i,n),l=[...this.index.indices({x0:r,x1:a,y0:o,y1:_})];return new v.Selection({indices:l})}_project_data(){}*_iter_visuals(){for(const e of this.visuals)for(const t of e)(t instanceof a.VectorSpec||t instanceof a.ScalarSpec)&&(yield t)}set_base(e){e!=this&&e instanceof this.constructor&&(this.base=e)}_configure(e,t){Object.defineProperty(this,(0,u.isString)(e)?e:e.attr,Object.assign({configurable:!0,enumerable:!0},t))}set_visuals(e,t){var s;for(const s of this._iter_visuals()){const{base:i}=this;if(null!=i){const e=i.model.properties[s.attr];if(null!=e&&(0,g.is_equal)(s.get_value(),e.get_value())){this._configure(s,{get:()=>i[`${s.attr}`]});continue}}const n=s.uniform(e).select(t);this._configure(s,{value:n})}for(const e of this.visuals)e.update();null===(s=this.glglyph)||void 0===s||s.set_visuals_changed()}set_data(e,t,s){var i;const{x_source:n,y_source:r}=this.renderer.coordinates,o=new Set(this._iter_visuals());this._data_size=t.count;for(const s of this.model)if((s instanceof a.VectorSpec||s instanceof a.ScalarSpec)&&!o.has(s))if(s instanceof a.BaseCoordinateSpec){const i=s.array(e);let o=t.select(i);const _=\"x\"==s.dimension?n:r;if(_ instanceof x.FactorRange)if(s instanceof a.CoordinateSpec)o=_.v_synthetic(o);else if(s instanceof a.CoordinateSeqSpec)for(let e=0;e{const s=new Uint32Array(r);for(let a=0;a>1;t[s]>i?e=s:n=s+1}return t[n]}class r extends d.default{get boxes(){return this._boxes}search_indices(i,t,n,e){if(this._pos!==this._boxes.length)throw new Error(\"Data not yet indexed - call index.finish().\");let s=this._boxes.length-4;const d=[],x=new o.Indices(this.numItems);for(;void 0!==s;){const o=Math.min(s+4*this.nodeSize,h(s,this._levelBounds));for(let h=s;h>2],r=this._boxes[h+0],l=this._boxes[h+1],a=this._boxes[h+2],_=this._boxes[h+3];na||t>_||(s<4*this.numItems?x.set(o):d.push(o)))}s=d.pop()}return x}}r.__name__=\"_FlatBush\";class l{constructor(i){this.index=null,i>0&&(this.index=new r(i))}add_rect(i,t,n,e){var s;isFinite(i+t+n+e)?null===(s=this.index)||void 0===s||s.add(i,t,n,e):this.add_empty()}add_point(i,t){var n;isFinite(i+t)?null===(n=this.index)||void 0===n||n.add(i,t,i,t):this.add_empty()}add_empty(){var i;null===(i=this.index)||void 0===i||i.add(1/0,1/0,-1/0,-1/0)}finish(){var i;null===(i=this.index)||void 0===i||i.finish()}_normalize(i){let{x0:t,y0:n,x1:e,y1:s}=i;return t>e&&([t,e]=[e,t]),n>s&&([n,s]=[s,n]),{x0:t,y0:n,x1:e,y1:s}}get bbox(){if(null==this.index)return(0,x.empty)();{const{minX:i,minY:t,maxX:n,maxY:e}=this.index;return{x0:i,y0:t,x1:n,y1:e}}}indices(i){if(null==this.index)return new o.Indices(0);{const{x0:t,y0:n,x1:e,y1:s}=this._normalize(i);return this.index.search_indices(t,n,e,s)}}bounds(i){const t=(0,x.empty)();if(null==this.index)return t;const{boxes:n}=this.index;for(const e of this.indices(i)){const s=n[4*e+0],d=n[4*e+1],o=n[4*e+2],x=n[4*e+3];s>=i.x0&&st.x1&&(t.x1=o),d>=i.y0&&dt.y1&&(t.y1=x)}return t}}n.SpatialIndex=l,l.__name__=\"SpatialIndex\"},\n", + " function _(t,s,i,e,h){e();const n=(0,t(1).__importDefault)(t(183)),o=[Int8Array,Uint8Array,Uint8ClampedArray,Int16Array,Uint16Array,Int32Array,Uint32Array,Float32Array,Float64Array];class r{static from(t){if(!(t instanceof ArrayBuffer))throw new Error(\"Data must be an instance of ArrayBuffer.\");const[s,i]=new Uint8Array(t,0,2);if(251!==s)throw new Error(\"Data does not appear to be in a Flatbush format.\");if(i>>4!=3)throw new Error(`Got v${i>>4} data when expected v3.`);const[e]=new Uint16Array(t,2,1),[h]=new Uint32Array(t,4,1);return new r(h,e,o[15&i],t)}constructor(t,s=16,i=Float64Array,e){if(void 0===t)throw new Error(\"Missing required argument: numItems.\");if(isNaN(t)||t<=0)throw new Error(`Unpexpected numItems value: ${t}.`);this.numItems=+t,this.nodeSize=Math.min(Math.max(+s,2),65535);let h=t,r=h;this._levelBounds=[4*h];do{h=Math.ceil(h/this.nodeSize),r+=h,this._levelBounds.push(4*r)}while(1!==h);this.ArrayType=i||Float64Array,this.IndexArrayType=r<16384?Uint16Array:Uint32Array;const a=o.indexOf(this.ArrayType),_=4*r*this.ArrayType.BYTES_PER_ELEMENT;if(a<0)throw new Error(`Unexpected typed array class: ${i}.`);e&&e instanceof ArrayBuffer?(this.data=e,this._boxes=new this.ArrayType(this.data,8,4*r),this._indices=new this.IndexArrayType(this.data,8+_,r),this._pos=4*r,this.minX=this._boxes[this._pos-4],this.minY=this._boxes[this._pos-3],this.maxX=this._boxes[this._pos-2],this.maxY=this._boxes[this._pos-1]):(this.data=new ArrayBuffer(8+_+r*this.IndexArrayType.BYTES_PER_ELEMENT),this._boxes=new this.ArrayType(this.data,8,4*r),this._indices=new this.IndexArrayType(this.data,8+_,r),this._pos=0,this.minX=1/0,this.minY=1/0,this.maxX=-1/0,this.maxY=-1/0,new Uint8Array(this.data,0,2).set([251,48+a]),new Uint16Array(this.data,2,1)[0]=s,new Uint32Array(this.data,4,1)[0]=t),this._queue=new n.default}add(t,s,i,e){const h=this._pos>>2;return this._indices[h]=h,this._boxes[this._pos++]=t,this._boxes[this._pos++]=s,this._boxes[this._pos++]=i,this._boxes[this._pos++]=e,tthis.maxX&&(this.maxX=i),e>this.maxY&&(this.maxY=e),h}finish(){if(this._pos>>2!==this.numItems)throw new Error(`Added ${this._pos>>2} items when expected ${this.numItems}.`);if(this.numItems<=this.nodeSize)return this._boxes[this._pos++]=this.minX,this._boxes[this._pos++]=this.minY,this._boxes[this._pos++]=this.maxX,void(this._boxes[this._pos++]=this.maxY);const t=this.maxX-this.minX,s=this.maxY-this.minY,i=new Uint32Array(this.numItems);for(let e=0;e>2]=t,this._boxes[this._pos++]=e,this._boxes[this._pos++]=h,this._boxes[this._pos++]=n,this._boxes[this._pos++]=o}}}search(t,s,i,e,h){if(this._pos!==this._boxes.length)throw new Error(\"Data not yet indexed - call index.finish().\");let n=this._boxes.length-4;const o=[],r=[];for(;void 0!==n;){const a=Math.min(n+4*this.nodeSize,_(n,this._levelBounds));for(let _=n;_>2];ithis._boxes[_+2]||s>this._boxes[_+3]||(n<4*this.numItems?(void 0===h||h(a))&&r.push(a):o.push(a)))}n=o.pop()}return r}neighbors(t,s,i=1/0,e=1/0,h){if(this._pos!==this._boxes.length)throw new Error(\"Data not yet indexed - call index.finish().\");let n=this._boxes.length-4;const o=this._queue,r=[],x=e*e;for(;void 0!==n;){const e=Math.min(n+4*this.nodeSize,_(n,this._levelBounds));for(let i=n;i>2],r=a(t,this._boxes[i],this._boxes[i+2]),_=a(s,this._boxes[i+1],this._boxes[i+3]),x=r*r+_*_;n<4*this.numItems?(void 0===h||h(e))&&o.push(-e-1,x):o.push(e,x)}for(;o.length&&o.peek()<0;){if(o.peekValue()>x)return o.clear(),r;if(r.push(-o.pop()-1),r.length===i)return o.clear(),r}n=o.pop()}return o.clear(),r}}function a(t,s,i){return t>1;s[h]>t?e=h:i=h+1}return s[i]}function x(t,s,i,e,h,n){if(Math.floor(e/n)>=Math.floor(h/n))return;const o=t[e+h>>1];let r=e-1,a=h+1;for(;;){do{r++}while(t[r]o);if(r>=a)break;d(t,s,i,r,a)}x(t,s,i,e,a,n),x(t,s,i,a+1,h,n)}function d(t,s,i,e,h){const n=t[e];t[e]=t[h],t[h]=n;const o=4*e,r=4*h,a=s[o],_=s[o+1],x=s[o+2],d=s[o+3];s[o]=s[r],s[o+1]=s[r+1],s[o+2]=s[r+2],s[o+3]=s[r+3],s[r]=a,s[r+1]=_,s[r+2]=x,s[r+3]=d;const m=i[e];i[e]=i[h],i[h]=m}function m(t,s){let i=t^s,e=65535^i,h=65535^(t|s),n=t&(65535^s),o=i|e>>1,r=i>>1^i,a=h>>1^e&n>>1^h,_=i&h>>1^n>>1^n;i=o,e=r,h=a,n=_,o=i&i>>2^e&e>>2,r=i&e>>2^e&(i^e)>>2,a^=i&h>>2^e&n>>2,_^=e&h>>2^(i^e)&n>>2,i=o,e=r,h=a,n=_,o=i&i>>4^e&e>>4,r=i&e>>4^e&(i^e)>>4,a^=i&h>>4^e&n>>4,_^=e&h>>4^(i^e)&n>>4,i=o,e=r,h=a,n=_,a^=i&h>>8^e&n>>8,_^=e&h>>8^(i^e)&n>>8,i=a^a>>1,e=_^_>>1;let x=t^s,d=e|65535^(x|i);return x=16711935&(x|x<<8),x=252645135&(x|x<<4),x=858993459&(x|x<<2),x=1431655765&(x|x<<1),d=16711935&(d|d<<8),d=252645135&(d|d<<4),d=858993459&(d|d<<2),d=1431655765&(d|d<<1),(d<<1|x)>>>0}i.default=r},\n", + " function _(s,t,i,h,e){h();i.default=class{constructor(){this.ids=[],this.values=[],this.length=0}clear(){this.length=0}push(s,t){let i=this.length++;for(this.ids[i]=s,this.values[i]=t;i>0;){const s=i-1>>1,h=this.values[s];if(t>=h)break;this.ids[i]=this.ids[s],this.values[i]=h,i=s}this.ids[i]=s,this.values[i]=t}pop(){if(0===this.length)return;const s=this.ids[0];if(this.length--,this.length>0){const s=this.ids[0]=this.ids[this.length],t=this.values[0]=this.values[this.length],i=this.length>>1;let h=0;for(;h=t)break;this.ids[h]=e,this.values[h]=l,h=s}this.ids[h]=s,this.values[h]=t}return s}peek(){if(0!==this.length)return this.ids[0]}peekValue(){if(0!==this.length)return this.values[0]}}},\n", + " function _(e,n,a,t,i){t();const l=(0,e(1).__importStar)(e(185));function r(e,n,{x0:a,x1:t,y0:i,y1:l},r){n.save(),n.beginPath(),n.moveTo(a,(i+l)/2),n.lineTo(t,(i+l)/2),e.line.apply(n,r),n.restore()}function c(e,n,{x0:a,x1:t,y0:i,y1:l},r){var c,o;const _=.1*Math.abs(t-a),s=.1*Math.abs(l-i),y=a+_,p=t-_,g=i+s,h=l-s;n.beginPath(),n.rect(y,g,p-y,h-g),e.fill.apply(n,r),null===(c=e.hatch)||void 0===c||c.apply(n,r),null===(o=e.line)||void 0===o||o.apply(n,r)}a.generic_line_scalar_legend=function(e,n,{x0:a,x1:t,y0:i,y1:l}){n.save(),n.beginPath(),n.moveTo(a,(i+l)/2),n.lineTo(t,(i+l)/2),e.line.apply(n),n.restore()},a.generic_line_vector_legend=r,a.generic_line_legend=r,a.generic_area_scalar_legend=function(e,n,{x0:a,x1:t,y0:i,y1:l}){var r,c;const o=.1*Math.abs(t-a),_=.1*Math.abs(l-i),s=a+o,y=t-o,p=i+_,g=l-_;n.beginPath(),n.rect(s,p,y-s,g-p),e.fill.apply(n),null===(r=e.hatch)||void 0===r||r.apply(n),null===(c=e.line)||void 0===c||c.apply(n)},a.generic_area_vector_legend=c,a.generic_area_legend=c,a.line_interpolation=function(e,n,a,t,i,r){const{sx:c,sy:o}=n;let _,s,y,p;\"point\"==n.type?([y,p]=e.yscale.r_invert(o-1,o+1),[_,s]=e.xscale.r_invert(c-1,c+1)):\"v\"==n.direction?([y,p]=e.yscale.r_invert(o,o),[_,s]=[Math.min(a-1,i-1),Math.max(a+1,i+1)]):([_,s]=e.xscale.r_invert(c,c),[y,p]=[Math.min(t-1,r-1),Math.max(t+1,r+1)]);const{x:g,y:h}=l.check_2_segments_intersect(_,y,s,p,a,t,i,r);return[g,h]}},\n", + " function _(t,n,e,i,r){function s(t,n){return(t.x-n.x)**2+(t.y-n.y)**2}function o(t,n,e){const i=s(n,e);if(0==i)return s(t,n);const r=((t.x-n.x)*(e.x-n.x)+(t.y-n.y)*(e.y-n.y))/i;if(r<0)return s(t,n);if(r>1)return s(t,e);return s(t,{x:n.x+r*(e.x-n.x),y:n.y+r*(e.y-n.y)})}i(),e.point_in_poly=function(t,n,e,i){let r=!1,s=e[e.length-1],o=i[i.length-1];for(let u=0;u0&&_<1&&h>0&&h<1,x:t+_*(e-t),y:n+_*(i-n)}}}},\n", + " function _(t,s,e,i,a){i();const l=t(1);var n;const _=t(178),o=t(184),c=(0,l.__importStar)(t(185)),h=(0,l.__importStar)(t(48)),r=t(72);class p extends _.XYGlyphView{_render(t,s,e){const{sx:i,sy:a}=null!=e?e:this;let l=!0;t.beginPath();for(const e of s){const s=i[e],n=a[e];isFinite(s+n)?l?(t.moveTo(s,n),l=!1):t.lineTo(s,n):(t.closePath(),l=!0)}t.closePath(),this.visuals.fill.apply(t),this.visuals.hatch.apply(t),this.visuals.line.apply(t)}draw_legend_for_index(t,s,e){(0,o.generic_area_scalar_legend)(this.visuals,t,s)}_hit_point(t){const s=new r.Selection;return c.point_in_poly(t.sx,t.sy,this.sx,this.sy)&&(s.add_to_selected_glyphs(this.model),s.view=this),s}}e.PatchView=p,p.__name__=\"PatchView\";class d extends _.XYGlyph{constructor(t){super(t)}}e.Patch=d,n=d,d.__name__=\"Patch\",n.prototype.default_view=p,n.mixins([h.LineScalar,h.FillScalar,h.HatchScalar])},\n", + " function _(t,s,e,i,n){i();const h=t(1);var r;const a=t(188),_=(0,h.__importStar)(t(185)),o=(0,h.__importStar)(t(18)),l=t(72);class c extends a.AreaView{_index_data(t){const{min:s,max:e}=Math,{data_size:i}=this;for(let n=0;n=0;s--)t.lineTo(n[s],h[s]);t.closePath(),this.visuals.fill.apply(t),this.visuals.hatch.apply(t)}_hit_point(t){const s=this.sy.length,e=new l.Selection;for(let i=0,n=s-1;i({x1:[o.XCoordinateSpec,{field:\"x1\"}],x2:[o.XCoordinateSpec,{field:\"x2\"}],y:[o.YCoordinateSpec,{field:\"y\"}]})))},\n", + " function _(e,a,r,_,s){_();const n=e(1);var c;const i=e(179),l=e(184),t=(0,n.__importStar)(e(48));class o extends i.GlyphView{draw_legend_for_index(e,a,r){(0,l.generic_area_scalar_legend)(this.visuals,e,a)}}r.AreaView=o,o.__name__=\"AreaView\";class d extends i.Glyph{constructor(e){super(e)}}r.Area=d,c=d,d.__name__=\"Area\",c.mixins([t.FillScalar,t.HatchScalar])},\n", + " function _(t,s,e,i,n){i();const h=t(1);var r;const a=t(188),_=(0,h.__importStar)(t(185)),o=(0,h.__importStar)(t(18)),l=t(72);class c extends a.AreaView{_index_data(t){const{min:s,max:e}=Math,{data_size:i}=this;for(let n=0;n=0;s--)t.lineTo(i[s],h[s]);t.closePath(),this.visuals.fill.apply(t),this.visuals.hatch.apply(t)}scenterxy(t){return[this.sx[t],(this.sy1[t]+this.sy2[t])/2]}_hit_point(t){const s=this.sx.length,e=new l.Selection;for(let i=0,n=s-1;i({x:[o.XCoordinateSpec,{field:\"x\"}],y1:[o.YCoordinateSpec,{field:\"y1\"}],y2:[o.YCoordinateSpec,{field:\"y2\"}]})))},\n", + " function _(e,i,s,t,n){var c;t();const o=e(53),r=e(24),u=e(191),_=e(70);class a extends o.Model{constructor(e){super(e)}initialize(){super.initialize(),this.compute_indices()}connect_signals(){super.connect_signals(),this.connect(this.properties.filters.change,(()=>this.compute_indices()));const e=()=>{const e=()=>this.compute_indices();null!=this.source&&(this.connect(this.source.change,e),this.source instanceof _.ColumnarDataSource&&(this.connect(this.source.streaming,e),this.connect(this.source.patching,e)))};let i=null!=this.source;i?e():this.connect(this.properties.source.change,(()=>{i||(e(),i=!0)}))}compute_indices(){var e;const{source:i}=this;if(null==i)return;const s=null!==(e=i.get_length())&&void 0!==e?e:1,t=r.Indices.all_set(s);for(const e of this.filters)t.intersect(e.compute_indices(i));this.indices=t,this._indices=[...t],this.indices_map_to_subset()}indices_map_to_subset(){this.indices_map={};for(let e=0;ethis._indices[e]))}convert_selection_to_subset(e){return e.map((e=>this.indices_map[e]))}convert_indices_from_subset(e){return e.map((e=>this._indices[e]))}}s.CDSView=a,c=a,a.__name__=\"CDSView\",c.define((({Array:e,Ref:i})=>({filters:[e(i(u.Filter)),[]],source:[i(_.ColumnarDataSource)]}))),c.internal((({Int:e,Dict:i,Ref:s,Nullable:t})=>({indices:[s(r.Indices)],indices_map:[i(e),{}],masked:[t(s(r.Indices)),null]})))},\n", + " function _(e,t,n,s,c){s();const o=e(53);class r extends o.Model{constructor(e){super(e)}}n.Filter=r,r.__name__=\"Filter\"},\n", + " function _(t,r,a,e,c){e(),c(\"BasicTickFormatter\",t(146).BasicTickFormatter),c(\"CategoricalTickFormatter\",t(142).CategoricalTickFormatter),c(\"DatetimeTickFormatter\",t(150).DatetimeTickFormatter),c(\"FuncTickFormatter\",t(193).FuncTickFormatter),c(\"LogTickFormatter\",t(163).LogTickFormatter),c(\"MercatorTickFormatter\",t(166).MercatorTickFormatter),c(\"NumeralTickFormatter\",t(194).NumeralTickFormatter),c(\"PrintfTickFormatter\",t(195).PrintfTickFormatter),c(\"TickFormatter\",t(131).TickFormatter)},\n", + " function _(t,e,n,s,r){var c;s();const i=t(131),a=t(13),u=t(34);class o extends i.TickFormatter{constructor(t){super(t)}get names(){return(0,a.keys)(this.args)}get values(){return(0,a.values)(this.args)}_make_func(){const t=(0,u.use_strict)(this.code);return new Function(\"tick\",\"index\",\"ticks\",...this.names,t)}doFormat(t,e){const n=this._make_func().bind({});return t.map(((t,e,s)=>`${n(t,e,s,...this.values)}`))}}n.FuncTickFormatter=o,c=o,o.__name__=\"FuncTickFormatter\",c.define((({Unknown:t,String:e,Dict:n})=>({args:[n(t),{}],code:[e,\"\"]})))},\n", + " function _(r,n,t,o,e){o();var a;const u=(0,r(1).__importStar)(r(153)),c=r(131),i=r(20);class s extends c.TickFormatter{constructor(r){super(r)}get _rounding_fn(){switch(this.rounding){case\"round\":case\"nearest\":return Math.round;case\"floor\":case\"rounddown\":return Math.floor;case\"ceil\":case\"roundup\":return Math.ceil}}doFormat(r,n){const{format:t,language:o,_rounding_fn:e}=this;return r.map((r=>u.format(r,t,o,e)))}}t.NumeralTickFormatter=s,a=s,s.__name__=\"NumeralTickFormatter\",a.define((({String:r})=>({format:[r,\"0,0\"],language:[r,\"en\"],rounding:[i.RoundingFunction,\"round\"]})))},\n", + " function _(t,r,n,o,a){var e;o();const i=t(131),s=t(152);class c extends i.TickFormatter{constructor(t){super(t)}doFormat(t,r){return t.map((t=>(0,s.sprintf)(this.format,t)))}}n.PrintfTickFormatter=c,e=c,c.__name__=\"PrintfTickFormatter\",e.define((({String:t})=>({format:[t,\"%s\"]})))},\n", + " function _(r,o,a,p,e){p(),e(\"CategoricalColorMapper\",r(197).CategoricalColorMapper),e(\"CategoricalMarkerMapper\",r(199).CategoricalMarkerMapper),e(\"CategoricalPatternMapper\",r(200).CategoricalPatternMapper),e(\"ContinuousColorMapper\",r(172).ContinuousColorMapper),e(\"ColorMapper\",r(173).ColorMapper),e(\"LinearColorMapper\",r(201).LinearColorMapper),e(\"LogColorMapper\",r(202).LogColorMapper),e(\"ScanningColorMapper\",r(171).ScanningColorMapper),e(\"EqHistColorMapper\",r(203).EqHistColorMapper)},\n", + " function _(t,o,r,a,e){var c;a();const s=t(198),l=t(173),n=t(67);class _ extends l.ColorMapper{constructor(t){super(t)}_v_compute(t,o,r,{nan_color:a}){(0,s.cat_v_compute)(t,this.factors,r,o,this.start,this.end,a)}}r.CategoricalColorMapper=_,c=_,_.__name__=\"CategoricalColorMapper\",c.define((({Number:t,Nullable:o})=>({factors:[n.FactorSeq],start:[t,0],end:[o(t),null]})))},\n", + " function _(n,t,e,l,i){l();const c=n(12),u=n(8);function f(n,t){if(n.length!=t.length)return!1;for(let e=0,l=n.length;ef(n,h)))),s=_<0||_>=e.length?r:e[_],l[g]=s}}},\n", + " function _(e,r,a,t,s){var c;t();const l=e(198),n=e(67),u=e(174),o=e(20);class p extends u.Mapper{constructor(e){super(e)}v_compute(e){const r=new Array(e.length);return(0,l.cat_v_compute)(e,this.factors,this.markers,r,this.start,this.end,this.default_value),r}}a.CategoricalMarkerMapper=p,c=p,p.__name__=\"CategoricalMarkerMapper\",c.define((({Number:e,Array:r,Nullable:a})=>({factors:[n.FactorSeq],markers:[r(o.MarkerType)],start:[e,0],end:[a(e),null],default_value:[o.MarkerType,\"circle\"]})))},\n", + " function _(t,e,a,r,n){var s;r();const c=t(198),l=t(67),p=t(174),u=t(20);class o extends p.Mapper{constructor(t){super(t)}v_compute(t){const e=new Array(t.length);return(0,c.cat_v_compute)(t,this.factors,this.patterns,e,this.start,this.end,this.default_value),e}}a.CategoricalPatternMapper=o,s=o,o.__name__=\"CategoricalPatternMapper\",s.define((({Number:t,Array:e,Nullable:a})=>({factors:[l.FactorSeq],patterns:[e(u.HatchPatternType)],start:[t,0],end:[a(t),null],default_value:[u.HatchPatternType,\" \"]})))},\n", + " function _(n,r,o,t,a){t();const e=n(172),i=n(12);class s extends e.ContinuousColorMapper{constructor(n){super(n)}scan(n,r){const o=null!=this.low?this.low:(0,i.min)(n),t=null!=this.high?this.high:(0,i.max)(n);return{max:t,min:o,norm_factor:1/(t-o),normed_interval:1/r}}cmap(n,r,o,t,a){const e=r.length-1;if(n==a.max)return r[e];const i=(n-a.min)*a.norm_factor,s=Math.floor(i/a.normed_interval);return s<0?o:s>e?t:r[s]}}o.LinearColorMapper=s,s.__name__=\"LinearColorMapper\"},\n", + " function _(o,t,n,r,l){r();const a=o(172),s=o(12);class e extends a.ContinuousColorMapper{constructor(o){super(o)}scan(o,t){const n=null!=this.low?this.low:(0,s.min)(o),r=null!=this.high?this.high:(0,s.max)(o);return{max:r,min:n,scale:t/(Math.log(r)-Math.log(n))}}cmap(o,t,n,r,l){const a=t.length-1;if(o>l.max)return r;if(o==l.max)return t[a];if(oa&&(e=a),t[e]}}n.LogColorMapper=e,e.__name__=\"LogColorMapper\"},\n", + " function _(e,n,s,t,l){var i;t();const r=e(171),o=e(12),c=e(9);class a extends r.ScanningColorMapper{constructor(e){super(e)}scan(e,n){let s=null!=this.low?this.low:(0,o.min)(e);const t=null!=this.high?this.high:(0,o.max)(e),l=this.bins,i=(0,c.linspace)(s,t,l+1),r=(0,o.bin_counts)(e,i);let a=0;for(let e=0;e1&&(f=1-n)}const d=(0,c.linspace)(f,1,n+1),g=(0,o.interpolate)(d,p,_);return this.rescale_discrete_levels?s=g[0]:g[0]=s,g[g.length-1]=t,{min:s,max:t,binning:g}}}s.EqHistColorMapper=a,i=a,a.__name__=\"EqHistColorMapper\",i.define((({Boolean:e,Int:n})=>({bins:[n,65536],rescale_discrete_levels:[e,!1]})))},\n", + " function _(a,e,l,c,n){c(),n(\"CategoricalScale\",a(62).CategoricalScale),n(\"ContinuousScale\",a(60).ContinuousScale),n(\"LinearScale\",a(59).LinearScale),n(\"LinearInterpolationScale\",a(205).LinearInterpolationScale),n(\"LogScale\",a(61).LogScale),n(\"Scale\",a(55).Scale)},\n", + " function _(e,r,n,t,a){var i;t();const s=e(55),o=e(59),c=e(12);class _ extends s.Scale{constructor(e){super(e)}connect_signals(){super.connect_signals();const{source_range:e,target_range:r}=this.properties;this.on_change([e,r],(()=>{this.linear_scale=new o.LinearScale({source_range:this.source_range,target_range:this.target_range})}))}get s_compute(){throw new Error(\"not implemented\")}get s_invert(){throw new Error(\"not implemented\")}compute(e){return e}v_compute(e){const{binning:r}=this,{start:n,end:t}=this.source_range,a=n,i=t,s=r.length,o=(t-n)/(s-1),_=new Float64Array(s);for(let e=0;e{if(ei)return i;const n=(0,c.left_edge_index)(e,r);if(-1==n)return a;if(n>=s-1)return i;const t=r[n],o=(e-t)/(r[n+1]-t),l=_[n];return l+o*(_[n+1]-l)}));return this.linear_scale.v_compute(l)}invert(e){return e}v_invert(e){return new Float64Array(e)}}n.LinearInterpolationScale=_,i=_,_.__name__=\"LinearInterpolationScale\",i.internal((({Arrayable:e,Ref:r})=>({binning:[e],linear_scale:[r(o.LinearScale),e=>new o.LinearScale({source_range:e.source_range,target_range:e.target_range})]})))},\n", + " function _(a,n,e,g,R){g(),R(\"DataRange\",a(64).DataRange),R(\"DataRange1d\",a(63).DataRange1d),R(\"FactorRange\",a(67).FactorRange),R(\"Range\",a(57).Range),R(\"Range1d\",a(58).Range1d)},\n", + " function _(a,o,i,t,e){t();var n=a(124);e(\"Sizeable\",n.Sizeable),e(\"SizingPolicy\",n.SizingPolicy);var c=a(125);e(\"Layoutable\",c.Layoutable),e(\"LayoutItem\",c.LayoutItem);var r=a(208);e(\"HStack\",r.HStack),e(\"VStack\",r.VStack);var l=a(209);e(\"Grid\",l.Grid),e(\"Row\",l.Row),e(\"Column\",l.Column);var S=a(210);e(\"ContentBox\",S.ContentBox),e(\"VariadicBox\",S.VariadicBox)},\n", + " function _(t,e,h,i,r){i();const n=t(125),o=t(65);class s extends n.Layoutable{constructor(){super(...arguments),this.children=[]}*[Symbol.iterator](){yield*this.children}}h.Stack=s,s.__name__=\"Stack\";class c extends s{_measure(t){let e=0,h=0;for(const t of this.children){const i=t.measure({width:0,height:0});e+=i.width,h=Math.max(h,i.height)}return{width:e,height:h}}_set_geometry(t,e){super._set_geometry(t,e);const h=this.absolute?t.top:0;let i=this.absolute?t.left:0;const{height:r}=t;for(const t of this.children){const{width:e}=t.measure({width:0,height:0});t.set_geometry(new o.BBox({left:i,width:e,top:h,height:r})),i+=e}}}h.HStack=c,c.__name__=\"HStack\";class a extends s{_measure(t){let e=0,h=0;for(const t of this.children){const i=t.measure({width:0,height:0});e=Math.max(e,i.width),h+=i.height}return{width:e,height:h}}_set_geometry(t,e){super._set_geometry(t,e);const h=this.absolute?t.left:0;let i=this.absolute?t.top:0;const{width:r}=t;for(const t of this.children){const{height:e}=t.measure({width:0,height:0});t.set_geometry(new o.BBox({top:i,height:e,left:h,width:r})),i+=e}}}h.VStack=a,a.__name__=\"VStack\";class l extends n.Layoutable{constructor(){super(...arguments),this.children=[]}*[Symbol.iterator](){yield*this.children}_measure(t){const{width_policy:e,height_policy:h}=this.sizing,{min:i,max:r}=Math;let n=0,o=0;for(const e of this.children){const{width:h,height:i}=e.measure(t);n=r(n,h),o=r(o,i)}return{width:(()=>{const{width:h}=this.sizing;if(t.width==1/0)return\"fixed\"==e&&null!=h?h:n;switch(e){case\"fixed\":return null!=h?h:n;case\"min\":return n;case\"fit\":return null!=h?i(t.width,h):t.width;case\"max\":return null!=h?r(t.width,h):t.width}})(),height:(()=>{const{height:e}=this.sizing;if(t.height==1/0)return\"fixed\"==h&&null!=e?e:o;switch(h){case\"fixed\":return null!=e?e:o;case\"min\":return o;case\"fit\":return null!=e?i(t.height,e):t.height;case\"max\":return null!=e?r(t.height,e):t.height}})()}}_set_geometry(t,e){super._set_geometry(t,e);const h=this.absolute?t:t.relative(),{left:i,right:r,top:n,bottom:s}=h,c=Math.round(h.vcenter),a=Math.round(h.hcenter);for(const e of this.children){const{margin:h,halign:l,valign:d}=e.sizing,{width:u,height:g,inner:_}=e.measure(t),w=(()=>{switch(`${d}_${l}`){case\"start_start\":return new o.BBox({left:i+h.left,top:n+h.top,width:u,height:g});case\"start_center\":return new o.BBox({hcenter:a,top:n+h.top,width:u,height:g});case\"start_end\":return new o.BBox({right:r-h.right,top:n+h.top,width:u,height:g});case\"center_start\":return new o.BBox({left:i+h.left,vcenter:c,width:u,height:g});case\"center_center\":return new o.BBox({hcenter:a,vcenter:c,width:u,height:g});case\"center_end\":return new o.BBox({right:r-h.right,vcenter:c,width:u,height:g});case\"end_start\":return new o.BBox({left:i+h.left,bottom:s-h.bottom,width:u,height:g});case\"end_center\":return new o.BBox({hcenter:a,bottom:s-h.bottom,width:u,height:g});case\"end_end\":return new o.BBox({right:r-h.right,bottom:s-h.bottom,width:u,height:g})}})(),m=null==_?w:new o.BBox({left:w.left+_.left,top:w.top+_.top,right:w.right-_.right,bottom:w.bottom-_.bottom});e.set_geometry(w,m)}}}h.NodeLayout=l,l.__name__=\"NodeLayout\"},\n", + " function _(t,i,s,e,o){e();const n=t(124),l=t(125),r=t(8),h=t(65),c=t(9),{max:a,round:g}=Math;class p{constructor(t){this.def=t,this._map=new Map}get(t){let i=this._map.get(t);return void 0===i&&(i=this.def(),this._map.set(t,i)),i}apply(t,i){const s=this.get(t);this._map.set(t,i(s))}}p.__name__=\"DefaultMap\";class f{constructor(){this._items=[],this._nrows=0,this._ncols=0}get nrows(){return this._nrows}get ncols(){return this._ncols}add(t,i){const{r1:s,c1:e}=t;this._nrows=a(this._nrows,s+1),this._ncols=a(this._ncols,e+1),this._items.push({span:t,data:i})}at(t,i){return this._items.filter((({span:s})=>s.r0<=t&&t<=s.r1&&s.c0<=i&&i<=s.c1)).map((({data:t})=>t))}row(t){return this._items.filter((({span:i})=>i.r0<=t&&t<=i.r1)).map((({data:t})=>t))}col(t){return this._items.filter((({span:i})=>i.c0<=t&&t<=i.c1)).map((({data:t})=>t))}foreach(t){for(const{span:i,data:s}of this._items)t(i,s)}map(t){const i=new f;for(const{span:s,data:e}of this._items)i.add(s,t(s,e));return i}}f.__name__=\"Container\";class _ extends l.Layoutable{constructor(t=[]){super(),this.items=t,this.rows=\"auto\",this.cols=\"auto\",this.spacing=0}*[Symbol.iterator](){for(const{layout:t}of this.items)yield t}is_width_expanding(){if(super.is_width_expanding())return!0;if(\"fixed\"==this.sizing.width_policy)return!1;const{cols:t}=this._state;return(0,c.some)(t,(t=>\"max\"==t.policy))}is_height_expanding(){if(super.is_height_expanding())return!0;if(\"fixed\"==this.sizing.height_policy)return!1;const{rows:t}=this._state;return(0,c.some)(t,(t=>\"max\"==t.policy))}_init(){var t,i,s,e;super._init();const o=new f;for(const{layout:t,row:i,col:s,row_span:e,col_span:n}of this.items)if(t.sizing.visible){const l=i,r=s,h=i+(null!=e?e:1)-1,c=s+(null!=n?n:1)-1;o.add({r0:l,c0:r,r1:h,c1:c},t)}const{nrows:n,ncols:l}=o,h=new Array(n);for(let s=0;s{var t;const i=(0,r.isPlainObject)(this.rows)?null!==(t=this.rows[s])&&void 0!==t?t:this.rows[\"*\"]:this.rows;return null==i?{policy:\"auto\"}:(0,r.isNumber)(i)?{policy:\"fixed\",height:i}:(0,r.isString)(i)?{policy:i}:i})(),n=null!==(t=e.align)&&void 0!==t?t:\"auto\";if(\"fixed\"==e.policy)h[s]={policy:\"fixed\",height:e.height,align:n};else if(\"min\"==e.policy)h[s]={policy:\"min\",align:n};else if(\"fit\"==e.policy||\"max\"==e.policy)h[s]={policy:e.policy,flex:null!==(i=e.flex)&&void 0!==i?i:1,align:n};else{if(\"auto\"!=e.policy)throw new Error(\"unrechable\");(0,c.some)(o.row(s),(t=>t.is_height_expanding()))?h[s]={policy:\"max\",flex:1,align:n}:h[s]={policy:\"min\",align:n}}}const a=new Array(l);for(let t=0;t{var i;const s=(0,r.isPlainObject)(this.cols)?null!==(i=this.cols[t])&&void 0!==i?i:this.cols[\"*\"]:this.cols;return null==s?{policy:\"auto\"}:(0,r.isNumber)(s)?{policy:\"fixed\",width:s}:(0,r.isString)(s)?{policy:s}:s})(),n=null!==(s=i.align)&&void 0!==s?s:\"auto\";if(\"fixed\"==i.policy)a[t]={policy:\"fixed\",width:i.width,align:n};else if(\"min\"==i.policy)a[t]={policy:\"min\",align:n};else if(\"fit\"==i.policy||\"max\"==i.policy)a[t]={policy:i.policy,flex:null!==(e=i.flex)&&void 0!==e?e:1,align:n};else{if(\"auto\"!=i.policy)throw new Error(\"unrechable\");(0,c.some)(o.col(t),(t=>t.is_width_expanding()))?a[t]={policy:\"max\",flex:1,align:n}:a[t]={policy:\"min\",align:n}}}const[g,p]=(0,r.isNumber)(this.spacing)?[this.spacing,this.spacing]:this.spacing;this._state={items:o,nrows:n,ncols:l,rows:h,cols:a,rspacing:g,cspacing:p}}_measure_totals(t,i){const{nrows:s,ncols:e,rspacing:o,cspacing:n}=this._state;return{height:(0,c.sum)(t)+(s-1)*o,width:(0,c.sum)(i)+(e-1)*n}}_measure_cells(t){const{items:i,nrows:s,ncols:e,rows:o,cols:l,rspacing:r,cspacing:h}=this._state,c=new Array(s);for(let t=0;t{const{r0:e,c0:f,r1:d,c1:u}=i,w=(d-e)*r,m=(u-f)*h;let y=0;for(let i=e;i<=d;i++)y+=t(i,f).height;y+=w;let x=0;for(let i=f;i<=u;i++)x+=t(e,i).width;x+=m;const b=s.measure({width:x,height:y});_.add(i,{layout:s,size_hint:b});const z=new n.Sizeable(b).grow_by(s.sizing.margin);z.height-=w,z.width-=m;const v=[];for(let t=e;t<=d;t++){const i=o[t];\"fixed\"==i.policy?z.height-=i.height:v.push(t)}if(z.height>0){const t=g(z.height/v.length);for(const i of v)c[i]=a(c[i],t)}const j=[];for(let t=f;t<=u;t++){const i=l[t];\"fixed\"==i.policy?z.width-=i.width:j.push(t)}if(z.width>0){const t=g(z.width/j.length);for(const i of j)p[i]=a(p[i],t)}}));return{size:this._measure_totals(c,p),row_heights:c,col_widths:p,size_hints:_}}_measure_grid(t){const{nrows:i,ncols:s,rows:e,cols:o,rspacing:n,cspacing:l}=this._state,r=this._measure_cells(((t,i)=>{const s=e[t],n=o[i];return{width:\"fixed\"==n.policy?n.width:1/0,height:\"fixed\"==s.policy?s.height:1/0}}));let h;h=\"fixed\"==this.sizing.height_policy&&null!=this.sizing.height?this.sizing.height:t.height!=1/0&&this.is_height_expanding()?t.height:r.size.height;let c,p=0;for(let t=0;t0)for(let t=0;ti?i:e,t--}}}c=\"fixed\"==this.sizing.width_policy&&null!=this.sizing.width?this.sizing.width:t.width!=1/0&&this.is_width_expanding()?t.width:r.size.width;let f=0;for(let t=0;t0)for(let t=0;ts?s:o,t--}}}const{row_heights:_,col_widths:d,size_hints:u}=this._measure_cells(((t,i)=>({width:r.col_widths[i],height:r.row_heights[t]})));return{size:this._measure_totals(_,d),row_heights:_,col_widths:d,size_hints:u}}_measure(t){const{size:i}=this._measure_grid(t);return i}_set_geometry(t,i){super._set_geometry(t,i);const{nrows:s,ncols:e,rspacing:o,cspacing:n}=this._state,{row_heights:l,col_widths:r,size_hints:c}=this._measure_grid(t),f=this._state.rows.map(((t,i)=>Object.assign(Object.assign({},t),{top:0,height:l[i],get bottom(){return this.top+this.height}}))),_=this._state.cols.map(((t,i)=>Object.assign(Object.assign({},t),{left:0,width:r[i],get right(){return this.left+this.width}}))),d=c.map(((t,i)=>Object.assign(Object.assign({},i),{outer:new h.BBox,inner:new h.BBox})));for(let i=0,e=this.absolute?t.top:0;i{const{layout:r,size_hint:c}=l,{sizing:a}=r,{width:p,height:d}=c,u=function(t,i){let s=(i-t)*n;for(let e=t;e<=i;e++)s+=_[e].width;return s}(i,e),w=function(t,i){let s=(i-t)*o;for(let e=t;e<=i;e++)s+=f[e].height;return s}(t,s),m=i==e&&\"auto\"!=_[i].align?_[i].align:a.halign,y=t==s&&\"auto\"!=f[t].align?f[t].align:a.valign;let x=_[i].left;\"start\"==m?x+=a.margin.left:\"center\"==m?x+=g((u-p)/2):\"end\"==m&&(x+=u-a.margin.right-p);let b=f[t].top;\"start\"==y?b+=a.margin.top:\"center\"==y?b+=g((w-d)/2):\"end\"==y&&(b+=w-a.margin.bottom-d),l.outer=new h.BBox({left:x,top:b,width:p,height:d})}));const u=f.map((()=>({start:new p((()=>0)),end:new p((()=>0))}))),w=_.map((()=>({start:new p((()=>0)),end:new p((()=>0))})));d.foreach((({r0:t,c0:i,r1:s,c1:e},{size_hint:o,outer:n})=>{const{inner:l}=o;null!=l&&(u[t].start.apply(n.top,(t=>a(t,l.top))),u[s].end.apply(f[s].bottom-n.bottom,(t=>a(t,l.bottom))),w[i].start.apply(n.left,(t=>a(t,l.left))),w[e].end.apply(_[e].right-n.right,(t=>a(t,l.right))))})),d.foreach((({r0:t,c0:i,r1:s,c1:e},o)=>{const{size_hint:n,outer:l}=o,r=t=>{const i=this.absolute?l:l.relative(),s=i.left+t.left,e=i.top+t.top,o=i.right-t.right,n=i.bottom-t.bottom;return new h.BBox({left:s,top:e,right:o,bottom:n})};if(null!=n.inner){let h=r(n.inner);if(!1!==n.align){const o=u[t].start.get(l.top),n=u[s].end.get(f[s].bottom-l.bottom),c=w[i].start.get(l.left),a=w[e].end.get(_[e].right-l.right);try{h=r({top:o,bottom:n,left:c,right:a})}catch(t){}}o.inner=h}else o.inner=l})),d.foreach(((t,{layout:i,outer:s,inner:e})=>{i.set_geometry(s,e)}))}}s.Grid=_,_.__name__=\"Grid\";class d extends _{constructor(t){super(),this.items=t.map(((t,i)=>({layout:t,row:0,col:i}))),this.rows=\"fit\"}}s.Row=d,d.__name__=\"Row\";class u extends _{constructor(t){super(),this.items=t.map(((t,i)=>({layout:t,row:i,col:0}))),this.cols=\"fit\"}}s.Column=u,u.__name__=\"Column\"},\n", + " function _(e,t,s,n,i){n();const a=e(125),c=e(124),o=e(43);class r extends a.ContentLayoutable{constructor(e){super(),this.content_size=(0,o.unsized)(e,(()=>new c.Sizeable((0,o.size)(e))))}_content_size(){return this.content_size}}s.ContentBox=r,r.__name__=\"ContentBox\";class _ extends a.Layoutable{constructor(e){super(),this.el=e}_measure(e){const t=new c.Sizeable(e).bounded_to(this.sizing.size);return(0,o.sized)(this.el,t,(()=>{const e=new c.Sizeable((0,o.content_size)(this.el)),{border:t,padding:s}=(0,o.extents)(this.el);return e.grow_by(t).grow_by(s).map(Math.ceil)}))}}s.VariadicBox=_,_.__name__=\"VariadicBox\";class h extends _{constructor(e){super(e),this._cache=new Map}_measure(e){const{width:t,height:s}=e,n=`${t},${s}`;let i=this._cache.get(n);return null==i&&(i=super._measure(e),this._cache.set(n,i)),i}invalidate_cache(){this._cache.clear()}}s.CachedVariadicBox=h,h.__name__=\"CachedVariadicBox\"},\n", + " function _(t,e,i,h,o){h();const s=t(124),r=t(125),n=t(65);class g extends r.Layoutable{constructor(){super(...arguments),this.min_border={left:0,top:0,right:0,bottom:0},this.padding={left:0,top:0,right:0,bottom:0}}*[Symbol.iterator](){yield this.top_panel,yield this.bottom_panel,yield this.left_panel,yield this.right_panel,yield this.center_panel}_measure(t){t=new s.Sizeable({width:\"fixed\"==this.sizing.width_policy||t.width==1/0?this.sizing.width:t.width,height:\"fixed\"==this.sizing.height_policy||t.height==1/0?this.sizing.height:t.height});const e=this.left_panel.measure({width:0,height:t.height}),i=Math.max(e.width,this.min_border.left)+this.padding.left,h=this.right_panel.measure({width:0,height:t.height}),o=Math.max(h.width,this.min_border.right)+this.padding.right,r=this.top_panel.measure({width:t.width,height:0}),n=Math.max(r.height,this.min_border.top)+this.padding.top,g=this.bottom_panel.measure({width:t.width,height:0}),a=Math.max(g.height,this.min_border.bottom)+this.padding.bottom,d=new s.Sizeable(t).shrink_by({left:i,right:o,top:n,bottom:a}),l=this.center_panel.measure(d);return{width:i+l.width+o,height:n+l.height+a,inner:{left:i,right:o,top:n,bottom:a},align:(()=>{const{width_policy:t,height_policy:e}=this.center_panel.sizing;return\"fixed\"!=t&&\"fixed\"!=e})()}}_set_geometry(t,e){super._set_geometry(t,e),this.center_panel.set_geometry(e);const i=this.left_panel.measure({width:0,height:t.height}),h=this.right_panel.measure({width:0,height:t.height}),o=this.top_panel.measure({width:t.width,height:0}),s=this.bottom_panel.measure({width:t.width,height:0}),{left:r,top:g,right:a,bottom:d}=e;this.top_panel.set_geometry(new n.BBox({left:r,right:a,bottom:g,height:o.height})),this.bottom_panel.set_geometry(new n.BBox({left:r,right:a,top:d,height:s.height})),this.left_panel.set_geometry(new n.BBox({top:g,bottom:d,right:r,width:i.width})),this.right_panel.set_geometry(new n.BBox({top:g,bottom:d,left:a,width:h.width}))}}i.BorderLayout=g,g.__name__=\"BorderLayout\"},\n", + " function _(t,e,i,s,l){s();const n=t(1);var o;const a=t(119),_=t(10),d=t(20),h=t(120),r=t(123),u=(0,n.__importStar)(t(48));class c extends a.TextAnnotationView{update_layout(){const{panel:t}=this;this.layout=null!=t?new r.SideLayout(t,(()=>this.get_size()),!1):void 0}_get_size(){const{text:t}=this.model,e=new h.TextBox({text:t}),{angle:i,angle_units:s}=this.model;e.angle=(0,_.resolve_angle)(i,s),e.visuals=this.visuals.text.values();const{width:l,height:n}=e.size();return{width:l,height:n}}_render(){const{angle:t,angle_units:e}=this.model,i=(0,_.resolve_angle)(t,e),s=null!=this.layout?this.layout:this.plot_view.frame,l=this.coordinates.x_scale,n=this.coordinates.y_scale;let o=\"data\"==this.model.x_units?l.compute(this.model.x):s.bbox.xview.compute(this.model.x),a=\"data\"==this.model.y_units?n.compute(this.model.y):s.bbox.yview.compute(this.model.y);o+=this.model.x_offset,a-=this.model.y_offset;(\"canvas\"==this.model.render_mode?this._canvas_text.bind(this):this._css_text.bind(this))(this.layer.ctx,this.model.text,o,a,i)}}i.LabelView=c,c.__name__=\"LabelView\";class x extends a.TextAnnotation{constructor(t){super(t)}}i.Label=x,o=x,x.__name__=\"Label\",o.prototype.default_view=c,o.mixins([u.Text,[\"border_\",u.Line],[\"background_\",u.Fill]]),o.define((({Number:t,String:e,Angle:i})=>({x:[t],x_units:[d.SpatialUnits,\"data\"],y:[t],y_units:[d.SpatialUnits,\"data\"],text:[e,\"\"],angle:[i,0],angle_units:[d.AngleUnits,\"rad\"],x_offset:[t,0],y_offset:[t,0]}))),o.override({background_fill_color:null,border_line_color:null})},\n", + " function _(t,e,s,i,l){i();const o=t(1);var a;const r=t(69),n=(0,o.__importStar)(t(48)),d=t(20),_=t(43),c=t(120),h=(0,o.__importStar)(t(18)),u=t(11);class v extends r.DataAnnotationView{set_data(t){var e;if(super.set_data(t),null===(e=this.els)||void 0===e||e.forEach((t=>(0,_.remove)(t))),\"css\"==this.model.render_mode){const t=this.els=[...this.text].map((()=>(0,_.div)({style:{display:\"none\"}})));for(const e of t)this.plot_view.canvas_view.add_overlay(e)}else delete this.els}remove(){var t;null===(t=this.els)||void 0===t||t.forEach((t=>(0,_.remove)(t))),super.remove()}_rerender(){\"css\"==this.model.render_mode?this.render():this.request_render()}map_data(){const{x_scale:t,y_scale:e}=this.coordinates,s=null!=this.layout?this.layout:this.plot_view.frame;this.sx=\"data\"==this.model.x_units?t.v_compute(this._x):s.bbox.xview.v_compute(this._x),this.sy=\"data\"==this.model.y_units?e.v_compute(this._y):s.bbox.yview.v_compute(this._y)}paint(){const t=\"canvas\"==this.model.render_mode?this._v_canvas_text.bind(this):this._v_css_text.bind(this),{ctx:e}=this.layer;for(let s=0,i=this.text.length;s{switch(this.visuals.text.text_align.get(e)){case\"left\":return[\"left\",\"0%\"];case\"center\":return[\"center\",\"-50%\"];case\"right\":return[\"right\",\"-100%\"]}})(),[d,c]=(()=>{switch(this.visuals.text.text_baseline.get(e)){case\"top\":return[\"top\",\"0%\"];case\"middle\":return[\"center\",\"-50%\"];case\"bottom\":return[\"bottom\",\"-100%\"];default:return[\"center\",\"-50%\"]}})();let h=`translate(${n}, ${c})`;o&&(h+=`rotate(${o}rad)`),a.style.transformOrigin=`${r} ${d}`,a.style.transform=h,this.layout,this.visuals.background_fill.doit&&(this.visuals.background_fill.set_vectorize(t,e),a.style.backgroundColor=t.fillStyle),this.visuals.border_line.doit&&(this.visuals.border_line.set_vectorize(t,e),a.style.borderStyle=t.lineDash.length<2?\"solid\":\"dashed\",a.style.borderWidth=`${t.lineWidth}px`,a.style.borderColor=t.strokeStyle),(0,_.display)(a)}}s.LabelSetView=v,v.__name__=\"LabelSetView\";class x extends r.DataAnnotation{constructor(t){super(t)}}s.LabelSet=x,a=x,x.__name__=\"LabelSet\",a.prototype.default_view=v,a.mixins([n.TextVector,[\"border_\",n.LineVector],[\"background_\",n.FillVector]]),a.define((()=>({x:[h.XCoordinateSpec,{field:\"x\"}],y:[h.YCoordinateSpec,{field:\"y\"}],x_units:[d.SpatialUnits,\"data\"],y_units:[d.SpatialUnits,\"data\"],text:[h.StringSpec,{field:\"text\"}],angle:[h.AngleSpec,0],x_offset:[h.NumberSpec,{value:0}],y_offset:[h.NumberSpec,{value:0}],render_mode:[d.RenderMode,\"canvas\"]}))),a.override({background_fill_color:null,border_line_color:null})},\n", + " function _(t,e,i,l,s){l();const n=t(1);var o;const h=t(40),a=t(215),_=t(20),r=(0,n.__importStar)(t(48)),d=t(15),c=t(123),g=t(121),m=t(65),b=t(9),f=t(8),u=t(11);class x extends h.AnnotationView{update_layout(){const{panel:t}=this;this.layout=null!=t?new c.SideLayout(t,(()=>this.get_size())):void 0}cursor(t,e){return\"none\"==this.model.click_policy?null:\"pointer\"}get legend_padding(){return null!=this.model.border_line_color?this.model.padding:0}connect_signals(){super.connect_signals(),this.connect(this.model.change,(()=>this.request_render())),this.connect(this.model.item_change,(()=>this.request_render()))}compute_legend_bbox(){const t=this.model.get_legend_names(),{glyph_height:e,glyph_width:i}=this.model,{label_height:l,label_width:s}=this.model;this.max_label_height=(0,b.max)([(0,g.font_metrics)(this.visuals.label_text.font_value()).height,l,e]);const{ctx:n}=this.layer;n.save(),this.visuals.label_text.set_value(n),this.text_widths=new Map;for(const e of t)this.text_widths.set(e,(0,b.max)([n.measureText(e).width,s]));this.visuals.title_text.set_value(n),this.title_height=this.model.title?(0,g.font_metrics)(this.visuals.title_text.font_value()).height+this.model.title_standoff:0,this.title_width=this.model.title?n.measureText(this.model.title).width:0,n.restore();const o=Math.max((0,b.max)([...this.text_widths.values()]),0),h=this.model.margin,{legend_padding:a}=this,_=this.model.spacing,{label_standoff:r}=this.model;let d,c;if(\"vertical\"==this.model.orientation)d=t.length*this.max_label_height+Math.max(t.length-1,0)*_+2*a+this.title_height,c=(0,b.max)([o+i+r+2*a,this.title_width+2*a]);else{let e=2*a+Math.max(t.length-1,0)*_;for(const[,t]of this.text_widths)e+=(0,b.max)([t,s])+i+r;c=(0,b.max)([this.title_width+2*a,e]),d=this.max_label_height+this.title_height+2*a}const x=null!=this.layout?this.layout:this.plot_view.frame,[p,w]=x.bbox.ranges,{location:v}=this.model;let y,k;if((0,f.isString)(v))switch(v){case\"top_left\":y=p.start+h,k=w.start+h;break;case\"top\":case\"top_center\":y=(p.end+p.start)/2-c/2,k=w.start+h;break;case\"top_right\":y=p.end-h-c,k=w.start+h;break;case\"bottom_right\":y=p.end-h-c,k=w.end-h-d;break;case\"bottom\":case\"bottom_center\":y=(p.end+p.start)/2-c/2,k=w.end-h-d;break;case\"bottom_left\":y=p.start+h,k=w.end-h-d;break;case\"left\":case\"center_left\":y=p.start+h,k=(w.end+w.start)/2-d/2;break;case\"center\":case\"center_center\":y=(p.end+p.start)/2-c/2,k=(w.end+w.start)/2-d/2;break;case\"right\":case\"center_right\":y=p.end-h-c,k=(w.end+w.start)/2-d/2}else if((0,f.isArray)(v)&&2==v.length){const[t,e]=v;y=x.bbox.xview.compute(t),k=x.bbox.yview.compute(e)-d}else(0,u.unreachable)();return new m.BBox({left:y,top:k,width:c,height:d})}interactive_bbox(){return this.compute_legend_bbox()}interactive_hit(t,e){return this.interactive_bbox().contains(t,e)}on_hit(t,e){let i;const{glyph_width:l}=this.model,{legend_padding:s}=this,n=this.model.spacing,{label_standoff:o}=this.model;let h=i=s;const a=this.compute_legend_bbox(),_=\"vertical\"==this.model.orientation;for(const r of this.model.items){const d=r.get_labels_list_from_label_prop();for(const c of d){const d=a.x+h,g=a.y+i+this.title_height;let b,f;[b,f]=_?[a.width-2*s,this.max_label_height]:[this.text_widths.get(c)+l+o,this.max_label_height];if(new m.BBox({left:d,top:g,width:b,height:f}).contains(t,e)){switch(this.model.click_policy){case\"hide\":for(const t of r.renderers)t.visible=!t.visible;break;case\"mute\":for(const t of r.renderers)t.muted=!t.muted}return!0}_?i+=this.max_label_height+n:h+=this.text_widths.get(c)+l+o+n}}return!1}_render(){if(0==this.model.items.length)return;if(!(0,b.some)(this.model.items,(t=>t.visible)))return;for(const t of this.model.items)t.legend=this.model;const{ctx:t}=this.layer,e=this.compute_legend_bbox();t.save(),this._draw_legend_box(t,e),this._draw_legend_items(t,e),this._draw_title(t,e),t.restore()}_draw_legend_box(t,e){t.beginPath(),t.rect(e.x,e.y,e.width,e.height),this.visuals.background_fill.apply(t),this.visuals.border_line.apply(t)}_draw_legend_items(t,e){const{glyph_width:i,glyph_height:l}=this.model,{legend_padding:s}=this,n=this.model.spacing,{label_standoff:o}=this.model;let h=s,a=s;const _=\"vertical\"==this.model.orientation;for(const r of this.model.items){if(!r.visible)continue;const d=r.get_labels_list_from_label_prop(),c=r.get_field_from_label_prop();if(0==d.length)continue;const g=(()=>{switch(this.model.click_policy){case\"none\":return!0;case\"hide\":return(0,b.every)(r.renderers,(t=>t.visible));case\"mute\":return(0,b.every)(r.renderers,(t=>!t.muted))}})();for(const m of d){const d=e.x+h,b=e.y+a+this.title_height,f=d+i,u=b+l;_?a+=this.max_label_height+n:h+=this.text_widths.get(m)+i+o+n,this.visuals.label_text.set_value(t),t.fillText(m,f+o,b+this.max_label_height/2);for(const e of r.renderers){const i=this.plot_view.renderer_view(e);null==i||i.draw_legend(t,d,f,b,u,c,m,r.index)}if(!g){let l,n;[l,n]=_?[e.width-2*s,this.max_label_height]:[this.text_widths.get(m)+i+o,this.max_label_height],t.beginPath(),t.rect(d,b,l,n),this.visuals.inactive_fill.set_value(t),t.fill()}}}}_draw_title(t,e){const{title:i}=this.model;i&&this.visuals.title_text.doit&&(t.save(),t.translate(e.x0,e.y0+this.title_height),this.visuals.title_text.set_value(t),t.fillText(i,this.legend_padding,this.legend_padding-this.model.title_standoff),t.restore())}_get_size(){const{width:t,height:e}=this.compute_legend_bbox();return{width:t+2*this.model.margin,height:e+2*this.model.margin}}}i.LegendView=x,x.__name__=\"LegendView\";class p extends h.Annotation{constructor(t){super(t)}initialize(){super.initialize(),this.item_change=new d.Signal0(this,\"item_change\")}get_legend_names(){const t=[];for(const e of this.items){const i=e.get_labels_list_from_label_prop();t.push(...i)}return t}}i.Legend=p,o=p,p.__name__=\"Legend\",o.prototype.default_view=x,o.mixins([[\"label_\",r.Text],[\"title_\",r.Text],[\"inactive_\",r.Fill],[\"border_\",r.Line],[\"background_\",r.Fill]]),o.define((({Number:t,String:e,Array:i,Tuple:l,Or:s,Ref:n,Nullable:o})=>({orientation:[_.Orientation,\"vertical\"],location:[s(_.LegendLocation,l(t,t)),\"top_right\"],title:[o(e),null],title_standoff:[t,5],label_standoff:[t,5],glyph_height:[t,20],glyph_width:[t,20],label_height:[t,20],label_width:[t,20],margin:[t,10],padding:[t,10],spacing:[t,3],items:[i(n(a.LegendItem)),[]],click_policy:[_.LegendClickPolicy,\"none\"]}))),o.override({border_line_color:\"#e5e5e5\",border_line_alpha:.5,border_line_width:1,background_fill_color:\"#ffffff\",background_fill_alpha:.95,inactive_fill_color:\"white\",inactive_fill_alpha:.7,label_text_font_size:\"13px\",label_text_baseline:\"middle\",title_text_font_size:\"13px\",title_text_font_style:\"italic\"})},\n", + " function _(e,r,l,n,t){n();const i=e(1);var s;const o=e(53),a=e(175),_=e(70),u=e(216),d=(0,i.__importStar)(e(18)),c=e(19),f=e(9);class h extends o.Model{constructor(e){super(e)}_check_data_sources_on_renderers(){if(null!=this.get_field_from_label_prop()){if(this.renderers.length<1)return!1;const e=this.renderers[0].data_source;if(null!=e)for(const r of this.renderers)if(r.data_source!=e)return!1}return!0}_check_field_label_on_data_source(){const e=this.get_field_from_label_prop();if(null!=e){if(this.renderers.length<1)return!1;const r=this.renderers[0].data_source;if(null!=r&&!(0,f.includes)(r.columns(),e))return!1}return!0}initialize(){super.initialize(),this.legend=null,this.connect(this.change,(()=>{var e;return null===(e=this.legend)||void 0===e?void 0:e.item_change.emit()}));this._check_data_sources_on_renderers()||c.logger.error(\"Non matching data sources on legend item renderers\");this._check_field_label_on_data_source()||c.logger.error(`Bad column name on label: ${this.label}`)}get_field_from_label_prop(){const{label:e}=this;return(0,u.isField)(e)?e.field:null}get_labels_list_from_label_prop(){if(!this.visible)return[];if((0,u.isValue)(this.label)){const{value:e}=this.label;return null!=e?[e]:[]}const e=this.get_field_from_label_prop();if(null!=e){let r;if(!this.renderers[0]||null==this.renderers[0].data_source)return[\"No source found\"];if(r=this.renderers[0].data_source,r instanceof _.ColumnarDataSource){const l=r.get_column(e);return null!=l?(0,f.uniq)(Array.from(l)):[\"Invalid field\"]}}return[]}}l.LegendItem=h,s=h,h.__name__=\"LegendItem\",s.define((({Boolean:e,Int:r,Array:l,Ref:n,Nullable:t})=>({label:[d.NullStringSpec,null],renderers:[l(n(a.GlyphRenderer)),[]],index:[t(r),null],visible:[e,!0]})))},\n", + " function _(i,n,e,t,u){t();const c=i(8);e.isValue=function(i){return(0,c.isPlainObject)(i)&&\"value\"in i},e.isField=function(i){return(0,c.isPlainObject)(i)&&\"field\"in i},e.isExpr=function(i){return(0,c.isPlainObject)(i)&&\"expr\"in i}},\n", + " function _(t,n,e,s,i){s();const o=t(1);var a;const l=t(40),c=(0,o.__importStar)(t(48)),r=t(20);class _ extends l.AnnotationView{connect_signals(){super.connect_signals(),this.connect(this.model.change,(()=>this.request_render()))}_render(){const{xs:t,ys:n}=this.model;if(t.length!=n.length)return;const e=t.length;if(e<3)return;const{frame:s}=this.plot_view,{ctx:i}=this.layer,o=this.coordinates.x_scale,a=this.coordinates.y_scale,{screen:l}=this.model;function c(t,n,e,s){return l?t:\"data\"==n?e.v_compute(t):s.v_compute(t)}const r=c(t,this.model.xs_units,o,s.bbox.xview),_=c(n,this.model.ys_units,a,s.bbox.yview);i.beginPath();for(let t=0;t({xs:[n(t),[]],xs_units:[r.SpatialUnits,\"data\"],ys:[n(t),[]],ys_units:[r.SpatialUnits,\"data\"]}))),a.internal((({Boolean:t})=>({screen:[t,!1]}))),a.override({fill_color:\"#fff9ba\",fill_alpha:.4,line_color:\"#cccccc\",line_alpha:.3})},\n", + " function _(e,t,n,o,i){o();const s=e(1);var l;const r=e(40),c=(0,s.__importStar)(e(48));class a extends r.AnnotationView{connect_signals(){super.connect_signals(),this.connect(this.model.change,(()=>this.request_render()))}_render(){const{gradient:e,y_intercept:t}=this.model;if(null==e||null==t)return;const{frame:n}=this.plot_view,o=this.coordinates.x_scale,i=this.coordinates.y_scale;let s,l,r,c;if(0==e)s=i.compute(t),l=s,r=n.bbox.left,c=r+n.bbox.width;else{s=n.bbox.top,l=s+n.bbox.height;const a=(i.invert(s)-t)/e,_=(i.invert(l)-t)/e;r=o.compute(a),c=o.compute(_)}const{ctx:a}=this.layer;a.save(),a.beginPath(),this.visuals.line.set_value(a),a.moveTo(r,s),a.lineTo(c,l),a.stroke(),a.restore()}}n.SlopeView=a,a.__name__=\"SlopeView\";class _ extends r.Annotation{constructor(e){super(e)}}n.Slope=_,l=_,_.__name__=\"Slope\",l.prototype.default_view=a,l.mixins(c.Line),l.define((({Number:e,Nullable:t})=>({gradient:[t(e),null],y_intercept:[t(e),null]}))),l.override({line_color:\"black\"})},\n", + " function _(e,t,i,o,n){o();const s=e(1);var l;const a=e(40),r=(0,s.__importStar)(e(48)),c=e(20);class d extends a.AnnotationView{connect_signals(){super.connect_signals(),this.connect(this.model.change,(()=>this.plot_view.request_paint(this)))}_render(){const{location:e}=this.model;if(null==e)return;const{frame:t}=this.plot_view,i=this.coordinates.x_scale,o=this.coordinates.y_scale,n=(t,i)=>\"data\"==this.model.location_units?t.compute(e):this.model.for_hover?e:i.compute(e);let s,l,a,r;\"width\"==this.model.dimension?(a=n(o,t.bbox.yview),l=t.bbox.left,r=t.bbox.width,s=this.model.line_width):(a=t.bbox.top,l=n(i,t.bbox.xview),r=this.model.line_width,s=t.bbox.height);const{ctx:c}=this.layer;c.save(),c.beginPath(),this.visuals.line.set_value(c),c.moveTo(l,a),\"width\"==this.model.dimension?c.lineTo(l+r,a):c.lineTo(l,a+s),c.stroke(),c.restore()}}i.SpanView=d,d.__name__=\"SpanView\";class _ extends a.Annotation{constructor(e){super(e)}}i.Span=_,l=_,_.__name__=\"Span\",l.prototype.default_view=d,l.mixins(r.Line),l.define((({Number:e,Nullable:t})=>({render_mode:[c.RenderMode,\"canvas\"],location:[t(e),null],location_units:[c.SpatialUnits,\"data\"],dimension:[c.Dimension,\"width\"]}))),l.internal((({Boolean:e})=>({for_hover:[e,!1]}))),l.override({line_color:\"black\"})},\n", + " function _(i,e,t,o,l){var s;o();const a=i(40),_=i(221),n=i(113),r=i(43),h=i(123),b=i(65);class v extends a.AnnotationView{constructor(){super(...arguments),this._invalidate_toolbar=!0,this._previous_bbox=new b.BBox}update_layout(){this.layout=new h.SideLayout(this.panel,(()=>this.get_size()),!0)}initialize(){super.initialize(),this.el=(0,r.div)(),this.plot_view.canvas_view.add_event(this.el)}async lazy_initialize(){await super.lazy_initialize(),this._toolbar_view=await(0,n.build_view)(this.model.toolbar,{parent:this}),this.plot_view.visibility_callbacks.push((i=>this._toolbar_view.set_visibility(i)))}remove(){this._toolbar_view.remove(),(0,r.remove)(this.el),super.remove()}render(){this.model.visible||(0,r.undisplay)(this.el),super.render()}_render(){const{bbox:i}=this.layout;this._previous_bbox.equals(i)||((0,r.position)(this.el,i),this._previous_bbox=i,this._invalidate_toolbar=!0),this._invalidate_toolbar&&(this.el.style.position=\"absolute\",this.el.style.overflow=\"hidden\",(0,r.empty)(this.el),this.el.appendChild(this._toolbar_view.el),this._toolbar_view.layout.bbox=i,this._toolbar_view.render(),this._invalidate_toolbar=!1),(0,r.display)(this.el)}_get_size(){const{tools:i,logo:e}=this.model.toolbar;return{width:30*i.length+(null!=e?25:0)+15,height:30}}}t.ToolbarPanelView=v,v.__name__=\"ToolbarPanelView\";class d extends a.Annotation{constructor(i){super(i)}}t.ToolbarPanel=d,s=d,d.__name__=\"ToolbarPanel\",s.prototype.default_view=v,s.define((({Ref:i})=>({toolbar:[i(_.Toolbar)]})))},\n", + " function _(t,e,s,i,o){var c;i();const n=t(8),a=t(9),l=t(13),r=t(222),_=t(223),u=t(232),p=t(233);function v(t){switch(t){case\"tap\":return\"active_tap\";case\"pan\":return\"active_drag\";case\"pinch\":case\"scroll\":return\"active_scroll\";case\"multi\":return\"active_multi\"}return null}function h(t){return\"tap\"==t||\"pan\"==t}s.Drag=r.Tool,s.Inspection=r.Tool,s.Scroll=r.Tool,s.Tap=r.Tool;class f extends p.ToolbarBase{constructor(t){super(t)}connect_signals(){super.connect_signals();const{tools:t,active_drag:e,active_inspect:s,active_scroll:i,active_tap:o,active_multi:c}=this.properties;this.on_change([t,e,s,i,o,c],(()=>this._init_tools()))}_init_tools(){if(super._init_tools(),\"auto\"==this.active_inspect);else if(this.active_inspect instanceof u.InspectTool){let t=!1;for(const e of this.inspectors)e!=this.active_inspect?e.active=!1:t=!0;t||(this.active_inspect=null)}else if((0,n.isArray)(this.active_inspect)){const t=(0,a.intersection)(this.active_inspect,this.inspectors);t.length!=this.active_inspect.length&&(this.active_inspect=t);for(const t of this.inspectors)(0,a.includes)(this.active_inspect,t)||(t.active=!1)}else if(null==this.active_inspect)for(const t of this.inspectors)t.active=!1;const t=t=>{t.active?this._active_change(t):t.active=!0};for(const t of(0,l.values)(this.gestures)){t.tools=(0,a.sort_by)(t.tools,(t=>t.default_order));for(const e of t.tools)this.connect(e.properties.active.change,(()=>this._active_change(e)))}for(const[e,s]of(0,l.entries)(this.gestures)){const i=v(e);if(i){const o=this[i];\"auto\"==o?0!=s.tools.length&&h(e)&&t(s.tools[0]):null!=o&&((0,a.includes)(this.tools,o)?t(o):this[i]=null)}}}}s.Toolbar=f,c=f,f.__name__=\"Toolbar\",c.prototype.default_view=p.ToolbarBaseView,c.define((({Or:t,Ref:e,Auto:i,Null:o})=>({active_drag:[t(e(s.Drag),i,o),\"auto\"],active_inspect:[t(e(s.Inspection),i,o),\"auto\"],active_scroll:[t(e(s.Scroll),i,o),\"auto\"],active_tap:[t(e(s.Tap),i,o),\"auto\"],active_multi:[t(e(_.GestureTool),i,o),\"auto\"]})))},\n", + " function _(t,e,n,o,s){var i;o();const a=t(42),r=t(9),l=t(53);class c extends a.View{get plot_view(){return this.parent}get plot_model(){return this.parent.model}connect_signals(){super.connect_signals(),this.connect(this.model.properties.active.change,(()=>{this.model.active?this.activate():this.deactivate()}))}activate(){}deactivate(){}}n.ToolView=c,c.__name__=\"ToolView\";class _ extends l.Model{constructor(t){super(t)}get synthetic_renderers(){return[]}_get_dim_limits([t,e],[n,o],s,i){const a=s.bbox.h_range;let l;\"width\"==i||\"both\"==i?(l=[(0,r.min)([t,n]),(0,r.max)([t,n])],l=[(0,r.max)([l[0],a.start]),(0,r.min)([l[1],a.end])]):l=[a.start,a.end];const c=s.bbox.v_range;let _;return\"height\"==i||\"both\"==i?(_=[(0,r.min)([e,o]),(0,r.max)([e,o])],_=[(0,r.max)([_[0],c.start]),(0,r.min)([_[1],c.end])]):_=[c.start,c.end],[l,_]}static register_alias(t,e){this.prototype._known_aliases.set(t,e)}static from_string(t){const e=this.prototype._known_aliases.get(t);if(null!=e)return e();{const e=[...this.prototype._known_aliases.keys()];throw new Error(`unexpected tool name '${t}', possible tools are ${e.join(\", \")}`)}}}n.Tool=_,i=_,_.__name__=\"Tool\",i.prototype._known_aliases=new Map,i.define((({String:t,Nullable:e})=>({description:[e(t),null]}))),i.internal((({Boolean:t})=>({active:[t,!1]})))},\n", + " function _(e,o,t,s,n){s();const u=e(224),_=e(231);class l extends u.ButtonToolView{}t.GestureToolView=l,l.__name__=\"GestureToolView\";class i extends u.ButtonTool{constructor(e){super(e),this.button_view=_.OnOffButtonView}}t.GestureTool=i,i.__name__=\"GestureTool\"},\n", + " function _(t,e,o,s,i){s();const n=t(1);var l;const r=(0,n.__importDefault)(t(225)),a=t(226),u=t(222),h=t(43),_=t(34),d=t(8),c=t(9),m=(0,n.__importStar)(t(227)),p=m,v=(0,n.__importDefault)(t(228)),f=(0,n.__importDefault)(t(229)),g=t(230);class b extends a.DOMView{initialize(){super.initialize();const t=this.model.menu;if(null!=t){const e=this.parent.model.toolbar_location,o=\"left\"==e||\"above\"==e,s=this.parent.model.horizontal?\"vertical\":\"horizontal\";this._menu=new g.ContextMenu(o?(0,c.reversed)(t):t,{orientation:s,prevent_hide:t=>t.target==this.el})}this._hammer=new r.default(this.el,{touchAction:\"auto\",inputClass:r.default.TouchMouseInput}),this.connect(this.model.change,(()=>this.render())),this._hammer.on(\"tap\",(t=>{var e;(null===(e=this._menu)||void 0===e?void 0:e.is_open)?this._menu.hide():t.target==this.el&&this._clicked()})),this._hammer.on(\"press\",(()=>this._pressed())),this.el.addEventListener(\"keydown\",(t=>{t.keyCode==h.Keys.Enter&&this._clicked()}))}remove(){var t;this._hammer.destroy(),null===(t=this._menu)||void 0===t||t.remove(),super.remove()}styles(){return[...super.styles(),m.default,v.default,f.default]}css_classes(){return super.css_classes().concat(p.toolbar_button)}render(){(0,h.empty)(this.el);const t=this.model.computed_icon;(0,d.isString)(t)&&((0,_.startsWith)(t,\"data:image\")?this.el.style.backgroundImage=`url(\"${t}\")`:this.el.classList.add(t)),this.el.title=this.model.tooltip,this.el.tabIndex=0,null!=this._menu&&this.root.el.appendChild(this._menu.el)}_pressed(){var t;const e=(()=>{switch(this.parent.model.toolbar_location){case\"right\":return{left_of:this.el};case\"left\":return{right_of:this.el};case\"above\":return{below:this.el};case\"below\":return{above:this.el}}})();null===(t=this._menu)||void 0===t||t.toggle(e)}}o.ButtonToolButtonView=b,b.__name__=\"ButtonToolButtonView\";class w extends u.ToolView{}o.ButtonToolView=w,w.__name__=\"ButtonToolView\";class y extends u.Tool{constructor(t){super(t)}_get_dim_tooltip(t){const{description:e,tool_name:o}=this;return null!=e?e:\"both\"==t?o:`${o} (${\"width\"==t?\"x\":\"y\"}-axis)`}get tooltip(){var t;return null!==(t=this.description)&&void 0!==t?t:this.tool_name}get computed_icon(){return this.icon}get menu(){return null}}o.ButtonTool=y,l=y,y.__name__=\"ButtonTool\",l.internal((({Boolean:t})=>({disabled:[t,!1]})))},\n", + " function _(t,e,i,n,r){\n", + " /*! Hammer.JS - v2.0.7 - 2016-04-22\n", + " * http://hammerjs.github.io/\n", + " *\n", + " * Copyright (c) 2016 Jorik Tangelder;\n", + " * Licensed under the MIT license */\n", + " !function(t,i,n,r){\"use strict\";var s,o=[\"\",\"webkit\",\"Moz\",\"MS\",\"ms\",\"o\"],a=i.createElement(\"div\"),h=Math.round,u=Math.abs,c=Date.now;function l(t,e,i){return setTimeout(T(t,i),e)}function p(t,e,i){return!!Array.isArray(t)&&(f(t,i[e],i),!0)}function f(t,e,i){var n;if(t)if(t.forEach)t.forEach(e,i);else if(t.length!==r)for(n=0;n\\s*\\(/gm,\"{anonymous}()@\"):\"Unknown Stack Trace\",s=t.console&&(t.console.warn||t.console.log);return s&&s.call(t.console,r,n),e.apply(this,arguments)}}s=\"function\"!=typeof Object.assign?function(t){if(t===r||null===t)throw new TypeError(\"Cannot convert undefined or null to object\");for(var e=Object(t),i=1;i-1}function S(t){return t.trim().split(/\\s+/g)}function b(t,e,i){if(t.indexOf&&!i)return t.indexOf(e);for(var n=0;ni[e]})):n.sort()),n}function x(t,e){for(var i,n,s=e[0].toUpperCase()+e.slice(1),a=0;a1&&!i.firstMultiple?i.firstMultiple=H(e):1===s&&(i.firstMultiple=!1);var o=i.firstInput,a=i.firstMultiple,h=a?a.center:o.center,l=e.center=L(n);e.timeStamp=c(),e.deltaTime=e.timeStamp-o.timeStamp,e.angle=G(h,l),e.distance=j(h,l),function(t,e){var i=e.center,n=t.offsetDelta||{},r=t.prevDelta||{},s=t.prevInput||{};1!==e.eventType&&4!==s.eventType||(r=t.prevDelta={x:s.deltaX||0,y:s.deltaY||0},n=t.offsetDelta={x:i.x,y:i.y});e.deltaX=r.x+(i.x-n.x),e.deltaY=r.y+(i.y-n.y)}(i,e),e.offsetDirection=V(e.deltaX,e.deltaY);var p=U(e.deltaTime,e.deltaX,e.deltaY);e.overallVelocityX=p.x,e.overallVelocityY=p.y,e.overallVelocity=u(p.x)>u(p.y)?p.x:p.y,e.scale=a?(f=a.pointers,v=n,j(v[0],v[1],W)/j(f[0],f[1],W)):1,e.rotation=a?function(t,e){return G(e[1],e[0],W)+G(t[1],t[0],W)}(a.pointers,n):0,e.maxPointers=i.prevInput?e.pointers.length>i.prevInput.maxPointers?e.pointers.length:i.prevInput.maxPointers:e.pointers.length,function(t,e){var i,n,s,o,a=t.lastInterval||e,h=e.timeStamp-a.timeStamp;if(8!=e.eventType&&(h>25||a.velocity===r)){var c=e.deltaX-a.deltaX,l=e.deltaY-a.deltaY,p=U(h,c,l);n=p.x,s=p.y,i=u(p.x)>u(p.y)?p.x:p.y,o=V(c,l),t.lastInterval=e}else i=a.velocity,n=a.velocityX,s=a.velocityY,o=a.direction;e.velocity=i,e.velocityX=n,e.velocityY=s,e.direction=o}(i,e);var f,v;var d=t.element;_(e.srcEvent.target,d)&&(d=e.srcEvent.target);e.target=d}(t,i),t.emit(\"hammer.input\",i),t.recognize(i),t.session.prevInput=i}function H(t){for(var e=[],i=0;i=u(e)?t<0?2:4:e<0?8:16}function j(t,e,i){i||(i=F);var n=e[i[0]]-t[i[0]],r=e[i[1]]-t[i[1]];return Math.sqrt(n*n+r*r)}function G(t,e,i){i||(i=F);var n=e[i[0]]-t[i[0]],r=e[i[1]]-t[i[1]];return 180*Math.atan2(r,n)/Math.PI}q.prototype={handler:function(){},init:function(){this.evEl&&I(this.element,this.evEl,this.domHandler),this.evTarget&&I(this.target,this.evTarget,this.domHandler),this.evWin&&I(O(this.element),this.evWin,this.domHandler)},destroy:function(){this.evEl&&A(this.element,this.evEl,this.domHandler),this.evTarget&&A(this.target,this.evTarget,this.domHandler),this.evWin&&A(O(this.element),this.evWin,this.domHandler)}};var Z={mousedown:1,mousemove:2,mouseup:4},B=\"mousedown\",$=\"mousemove mouseup\";function J(){this.evEl=B,this.evWin=$,this.pressed=!1,q.apply(this,arguments)}g(J,q,{handler:function(t){var e=Z[t.type];1&e&&0===t.button&&(this.pressed=!0),2&e&&1!==t.which&&(e=4),this.pressed&&(4&e&&(this.pressed=!1),this.callback(this.manager,e,{pointers:[t],changedPointers:[t],pointerType:X,srcEvent:t}))}});var K={pointerdown:1,pointermove:2,pointerup:4,pointercancel:8,pointerout:8},Q={2:N,3:\"pen\",4:X,5:\"kinect\"},tt=\"pointerdown\",et=\"pointermove pointerup pointercancel\";function it(){this.evEl=tt,this.evWin=et,q.apply(this,arguments),this.store=this.manager.session.pointerEvents=[]}t.MSPointerEvent&&!t.PointerEvent&&(tt=\"MSPointerDown\",et=\"MSPointerMove MSPointerUp MSPointerCancel\"),g(it,q,{handler:function(t){var e=this.store,i=!1,n=t.type.toLowerCase().replace(\"ms\",\"\"),r=K[n],s=Q[t.pointerType]||t.pointerType,o=s==N,a=b(e,t.pointerId,\"pointerId\");1&r&&(0===t.button||o)?a<0&&(e.push(t),a=e.length-1):12&r&&(i=!0),a<0||(e[a]=t,this.callback(this.manager,r,{pointers:e,changedPointers:[t],pointerType:s,srcEvent:t}),i&&e.splice(a,1))}});var nt={touchstart:1,touchmove:2,touchend:4,touchcancel:8},rt=\"touchstart\",st=\"touchstart touchmove touchend touchcancel\";function ot(){this.evTarget=rt,this.evWin=st,this.started=!1,q.apply(this,arguments)}function at(t,e){var i=P(t.touches),n=P(t.changedTouches);return 12&e&&(i=D(i.concat(n),\"identifier\",!0)),[i,n]}g(ot,q,{handler:function(t){var e=nt[t.type];if(1===e&&(this.started=!0),this.started){var i=at.call(this,t,e);12&e&&i[0].length-i[1].length==0&&(this.started=!1),this.callback(this.manager,e,{pointers:i[0],changedPointers:i[1],pointerType:N,srcEvent:t})}}});var ht={touchstart:1,touchmove:2,touchend:4,touchcancel:8},ut=\"touchstart touchmove touchend touchcancel\";function ct(){this.evTarget=ut,this.targetIds={},q.apply(this,arguments)}function lt(t,e){var i=P(t.touches),n=this.targetIds;if(3&e&&1===i.length)return n[i[0].identifier]=!0,[i,i];var r,s,o=P(t.changedTouches),a=[],h=this.target;if(s=i.filter((function(t){return _(t.target,h)})),1===e)for(r=0;r-1&&n.splice(t,1)}),2500)}}function dt(t){for(var e=t.srcEvent.clientX,i=t.srcEvent.clientY,n=0;n-1&&this.requireFail.splice(e,1),this},hasRequireFailures:function(){return this.requireFail.length>0},canRecognizeWith:function(t){return!!this.simultaneous[t.id]},emit:function(t){var e=this,i=this.state;function n(i){e.manager.emit(i,t)}i<8&&n(e.options.event+Dt(i)),n(e.options.event),t.additionalEvent&&n(t.additionalEvent),i>=8&&n(e.options.event+Dt(i))},tryEmit:function(t){if(this.canEmit())return this.emit(t);this.state=bt},canEmit:function(){for(var t=0;te.threshold&&r&e.direction},attrTest:function(t){return Ot.prototype.attrTest.call(this,t)&&(2&this.state||!(2&this.state)&&this.directionTest(t))},emit:function(t){this.pX=t.deltaX,this.pY=t.deltaY;var e=xt(t.direction);e&&(t.additionalEvent=this.options.event+e),this._super.emit.call(this,t)}}),g(Mt,Ot,{defaults:{event:\"pinch\",threshold:0,pointers:2},getTouchAction:function(){return[It]},attrTest:function(t){return this._super.attrTest.call(this,t)&&(Math.abs(t.scale-1)>this.options.threshold||2&this.state)},emit:function(t){if(1!==t.scale){var e=t.scale<1?\"in\":\"out\";t.additionalEvent=this.options.event+e}this._super.emit.call(this,t)}}),g(zt,Pt,{defaults:{event:\"press\",pointers:1,time:251,threshold:9},getTouchAction:function(){return[yt]},process:function(t){var e=this.options,i=t.pointers.length===e.pointers,n=t.distancee.time;if(this._input=t,!n||!i||12&t.eventType&&!r)this.reset();else if(1&t.eventType)this.reset(),this._timer=l((function(){this.state=8,this.tryEmit()}),e.time,this);else if(4&t.eventType)return 8;return bt},reset:function(){clearTimeout(this._timer)},emit:function(t){8===this.state&&(t&&4&t.eventType?this.manager.emit(this.options.event+\"up\",t):(this._input.timeStamp=c(),this.manager.emit(this.options.event,this._input)))}}),g(Nt,Ot,{defaults:{event:\"rotate\",threshold:0,pointers:2},getTouchAction:function(){return[It]},attrTest:function(t){return this._super.attrTest.call(this,t)&&(Math.abs(t.rotation)>this.options.threshold||2&this.state)}}),g(Xt,Ot,{defaults:{event:\"swipe\",threshold:10,velocity:.3,direction:30,pointers:1},getTouchAction:function(){return Rt.prototype.getTouchAction.call(this)},attrTest:function(t){var e,i=this.options.direction;return 30&i?e=t.overallVelocity:6&i?e=t.overallVelocityX:i&Y&&(e=t.overallVelocityY),this._super.attrTest.call(this,t)&&i&t.offsetDirection&&t.distance>this.options.threshold&&t.maxPointers==this.options.pointers&&u(e)>this.options.velocity&&4&t.eventType},emit:function(t){var e=xt(t.offsetDirection);e&&this.manager.emit(this.options.event+e,t),this.manager.emit(this.options.event,t)}}),g(Yt,Pt,{defaults:{event:\"tap\",pointers:1,taps:1,interval:300,time:250,threshold:9,posThreshold:10},getTouchAction:function(){return[Et]},process:function(t){var e=this.options,i=t.pointers.length===e.pointers,n=t.distance .bk-divider{cursor:default;overflow:hidden;background-color:#e5e5e5;}.bk-root .bk-context-menu.bk-horizontal > .bk-divider{width:1px;margin:5px 0;}.bk-root .bk-context-menu.bk-vertical > .bk-divider{height:1px;margin:0 5px;}.bk-root .bk-context-menu > :not(.bk-divider){border:1px solid transparent;}.bk-root .bk-context-menu > :not(.bk-divider).bk-active{border-color:#26aae1;}.bk-root .bk-context-menu > :not(.bk-divider):hover{background-color:#f9f9f9;}.bk-root .bk-context-menu > :not(.bk-divider):focus,.bk-root .bk-context-menu > :not(.bk-divider):focus-visible{outline:1px dotted #26aae1;outline-offset:-1px;}.bk-root .bk-context-menu > :not(.bk-divider)::-moz-focus-inner{border:0;}.bk-root .bk-context-menu.bk-horizontal > :not(.bk-divider):first-child{border-top-left-radius:4px;border-bottom-left-radius:4px;}.bk-root .bk-context-menu.bk-horizontal > :not(.bk-divider):last-child{border-top-right-radius:4px;border-bottom-right-radius:4px;}.bk-root .bk-context-menu.bk-vertical > :not(.bk-divider):first-child{border-top-left-radius:4px;border-top-right-radius:4px;}.bk-root .bk-context-menu.bk-vertical > :not(.bk-divider):last-child{border-bottom-left-radius:4px;border-bottom-right-radius:4px;}.bk-root .bk-menu{position:absolute;left:0;width:100%;z-index:100;cursor:pointer;font-size:12px;background-color:#fff;border:1px solid #ccc;border-radius:4px;box-shadow:0 6px 12px rgba(0, 0, 0, 0.175);}.bk-root .bk-menu.bk-above{bottom:100%;}.bk-root .bk-menu.bk-below{top:100%;}.bk-root .bk-menu > .bk-divider{height:1px;margin:7.5px 0;overflow:hidden;background-color:#e5e5e5;}.bk-root .bk-menu > :not(.bk-divider){padding:6px 12px;}.bk-root .bk-menu > :not(.bk-divider):hover,.bk-root .bk-menu > :not(.bk-divider).bk-active{background-color:#e6e6e6;}.bk-root .bk-caret{display:inline-block;vertical-align:middle;width:0;height:0;margin:0 5px;}.bk-root .bk-caret.bk-down{border-top:4px solid;}.bk-root .bk-caret.bk-up{border-bottom:4px solid;}.bk-root .bk-caret.bk-down,.bk-root .bk-caret.bk-up{border-right:4px solid transparent;border-left:4px solid transparent;}.bk-root .bk-caret.bk-left{border-right:4px solid;}.bk-root .bk-caret.bk-right{border-left:4px solid;}.bk-root .bk-caret.bk-left,.bk-root .bk-caret.bk-right{border-top:4px solid transparent;border-bottom:4px solid transparent;}\"},\n", + " function _(t,e,i,n,o){n();const s=t(1),l=t(43),h=t(9),r=(0,s.__importStar)(t(229));class d{constructor(t,e={}){var i,n;this.items=t,this.el=(0,l.div)(),this._open=!1,this._item_click=t=>{var e;null===(e=t.handler)||void 0===e||e.call(t),this.hide()},this._on_mousedown=t=>{var e;const{target:i}=t;i instanceof Node&&this.el.contains(i)||(null===(e=this.prevent_hide)||void 0===e?void 0:e.call(this,t))||this.hide()},this._on_keydown=t=>{t.keyCode==l.Keys.Esc&&this.hide()},this._on_blur=()=>{this.hide()},this.orientation=null!==(i=e.orientation)&&void 0!==i?i:\"vertical\",this.reversed=null!==(n=e.reversed)&&void 0!==n&&n,this.prevent_hide=e.prevent_hide,(0,l.undisplay)(this.el)}get is_open(){return this._open}get can_open(){return 0!=this.items.length}remove(){(0,l.remove)(this.el),this._unlisten()}_listen(){document.addEventListener(\"mousedown\",this._on_mousedown),document.addEventListener(\"keydown\",this._on_keydown),window.addEventListener(\"blur\",this._on_blur)}_unlisten(){document.removeEventListener(\"mousedown\",this._on_mousedown),document.removeEventListener(\"keydown\",this._on_keydown),window.removeEventListener(\"blur\",this._on_blur)}_position(t){const e=this.el.parentElement;if(null!=e){const i=(()=>{if(\"left_of\"in t){const{left:e,top:i}=t.left_of.getBoundingClientRect();return{right:e,top:i}}if(\"right_of\"in t){const{top:e,right:i}=t.right_of.getBoundingClientRect();return{left:i,top:e}}if(\"below\"in t){const{left:e,bottom:i}=t.below.getBoundingClientRect();return{left:e,top:i}}if(\"above\"in t){const{left:e,top:i}=t.above.getBoundingClientRect();return{left:e,bottom:i}}return t})(),n=e.getBoundingClientRect();this.el.style.left=null!=i.left?i.left-n.left+\"px\":\"\",this.el.style.top=null!=i.top?i.top-n.top+\"px\":\"\",this.el.style.right=null!=i.right?n.right-i.right+\"px\":\"\",this.el.style.bottom=null!=i.bottom?n.bottom-i.bottom+\"px\":\"\"}}render(){var t;(0,l.empty)(this.el,!0),(0,l.classes)(this.el).add(\"bk-context-menu\",`bk-${this.orientation}`);const e=this.reversed?(0,h.reversed)(this.items):this.items;for(const i of e){let e;if(null==i)e=(0,l.div)({class:r.divider});else{if(null!=i.if&&!i.if())continue;if(null!=i.content)e=i.content;else{const n=null!=i.icon?(0,l.div)({class:[\"bk-menu-icon\",i.icon]}):null,o=[(null===(t=i.active)||void 0===t?void 0:t.call(i))?\"bk-active\":null,i.class];e=(0,l.div)({class:o,title:i.tooltip,tabIndex:0},n,i.label,i.content),e.addEventListener(\"click\",(()=>{this._item_click(i)})),e.addEventListener(\"keydown\",(t=>{t.keyCode==l.Keys.Enter&&this._item_click(i)}))}}this.el.appendChild(e)}}show(t){if(0!=this.items.length&&!this._open){if(this.render(),0==this.el.children.length)return;this._position(null!=t?t:{left:0,top:0}),(0,l.display)(this.el),this._listen(),this._open=!0}}hide(){this._open&&(this._open=!1,this._unlisten(),(0,l.undisplay)(this.el))}toggle(t){this._open?this.hide():this.show(t)}}i.ContextMenu=d,d.__name__=\"ContextMenu\"},\n", + " function _(t,e,i,n,o){n();const s=t(1),c=t(224),l=(0,s.__importStar)(t(227)),a=t(43);class _ extends c.ButtonToolButtonView{render(){super.render(),(0,a.classes)(this.el).toggle(l.active,this.model.active)}_clicked(){const{active:t}=this.model;this.model.active=!t}}i.OnOffButtonView=_,_.__name__=\"OnOffButtonView\"},\n", + " function _(e,o,t,n,s){var c;n();const l=e(224),_=e(231);class i extends l.ButtonToolView{}t.InspectToolView=i,i.__name__=\"InspectToolView\";class a extends l.ButtonTool{constructor(e){super(e),this.event_type=\"move\"}}t.InspectTool=a,c=a,a.__name__=\"InspectTool\",c.prototype.button_view=_.OnOffButtonView,c.define((({Boolean:e})=>({toggleable:[e,!0]}))),c.override({active:!0})},\n", + " function _(t,o,e,l,i){l();const s=t(1);var n,a;const r=t(19),c=t(43),h=t(113),_=t(226),u=t(20),v=t(9),d=t(234),p=t(13),b=t(8),g=t(235),f=t(65),m=t(53),w=t(222),y=t(223),T=t(238),z=t(239),x=t(232),B=t(230),C=(0,s.__importStar)(t(227)),k=C,L=(0,s.__importStar)(t(240)),M=L;class S extends m.Model{constructor(t){super(t)}get visible(){var t;return!this.autohide||null!==(t=this._visible)&&void 0!==t&&t}}e.ToolbarViewModel=S,n=S,S.__name__=\"ToolbarViewModel\",n.define((({Boolean:t})=>({autohide:[t,!1]}))),n.internal((({Boolean:t,Nullable:o})=>({_visible:[o(t),null]})));class $ extends _.DOMView{constructor(){super(...arguments),this.layout={bbox:new f.BBox}}initialize(){super.initialize(),this._tool_button_views=new Map,this._toolbar_view_model=new S({autohide:this.model.autohide});const{toolbar_location:t}=this.model,o=\"left\"==t||\"above\"==t,e=this.model.horizontal?\"vertical\":\"horizontal\";this._overflow_menu=new B.ContextMenu([],{orientation:e,reversed:o})}async lazy_initialize(){await super.lazy_initialize(),await this._build_tool_button_views()}connect_signals(){super.connect_signals(),this.connect(this.model.properties.tools.change,(async()=>{await this._build_tool_button_views(),this.render()})),this.connect(this.model.properties.autohide.change,(()=>{this._toolbar_view_model.autohide=this.model.autohide,this._on_visible_change()})),this.connect(this._toolbar_view_model.properties._visible.change,(()=>this._on_visible_change()))}styles(){return[...super.styles(),C.default,L.default]}remove(){(0,h.remove_views)(this._tool_button_views),super.remove()}async _build_tool_button_views(){const t=null!=this.model._proxied_tools?this.model._proxied_tools:this.model.tools;await(0,h.build_views)(this._tool_button_views,t,{parent:this},(t=>t.button_view))}set_visibility(t){t!=this._toolbar_view_model._visible&&(this._toolbar_view_model._visible=t)}_on_visible_change(){const{visible:t}=this._toolbar_view_model;(0,c.classes)(this.el).toggle(k.toolbar_hidden,!t)}render(){(0,c.empty)(this.el),this.el.classList.add(k.toolbar),this.el.classList.add(k[this.model.toolbar_location]),this._toolbar_view_model.autohide=this.model.autohide,this._on_visible_change();const{horizontal:t}=this.model;let o=0;if(null!=this.model.logo){const e=\"grey\"===this.model.logo?M.grey:null,l=(0,c.a)({href:\"https://bokeh.org/\",target:\"_blank\",class:[M.logo,M.logo_small,e]});this.el.appendChild(l);const{width:i,height:s}=l.getBoundingClientRect();o+=t?i:s}for(const[,t]of this._tool_button_views)t.render();const e=[],l=t=>this._tool_button_views.get(t).el,{gestures:i}=this.model;for(const t of(0,p.values)(i))e.push(t.tools.map(l));e.push(this.model.actions.map(l)),e.push(this.model.inspectors.filter((t=>t.toggleable)).map(l));const s=e.filter((t=>0!=t.length)),n=()=>(0,c.div)({class:k.divider}),{bbox:a}=this.layout;let r=!1;this.root.el.appendChild(this._overflow_menu.el);const h=(0,c.div)({class:k.tool_overflow,tabIndex:0},t?\"\\u22ee\":\"\\u22ef\"),_=()=>{const t=(()=>{switch(this.model.toolbar_location){case\"right\":return{left_of:h};case\"left\":return{right_of:h};case\"above\":return{below:h};case\"below\":return{above:h}}})();this._overflow_menu.toggle(t)};h.addEventListener(\"click\",(()=>{_()})),h.addEventListener(\"keydown\",(t=>{t.keyCode==c.Keys.Enter&&_()}));for(const e of(0,d.join)(s,n))if(r)this._overflow_menu.items.push({content:e,class:t?k.right:k.above});else{this.el.appendChild(e);const{width:l,height:i}=e.getBoundingClientRect();if(o+=t?l:i,r=t?o>a.width-15:o>a.height-15,r){this.el.removeChild(e),this.el.appendChild(h);const{items:t}=this._overflow_menu;t.splice(0,t.length),t.push({content:e})}}}update_layout(){}update_position(){}after_layout(){this._has_finished=!0}export(t,o=!0){const e=\"png\"==t?\"canvas\":\"svg\",l=new g.CanvasLayer(e,o);return l.resize(0,0),l}}function V(){return{pan:{tools:[],active:null},scroll:{tools:[],active:null},pinch:{tools:[],active:null},tap:{tools:[],active:null},doubletap:{tools:[],active:null},press:{tools:[],active:null},pressup:{tools:[],active:null},rotate:{tools:[],active:null},move:{tools:[],active:null},multi:{tools:[],active:null}}}e.ToolbarBaseView=$,$.__name__=\"ToolbarBaseView\";class A extends m.Model{constructor(t){super(t)}initialize(){super.initialize(),this._init_tools()}_init_tools(){const t=function(t,o){if(t.length!=o.length)return!0;const e=new Set(o.map((t=>t.id)));return(0,v.some)(t,(t=>!e.has(t.id)))},o=this.tools.filter((t=>t instanceof x.InspectTool));t(this.inspectors,o)&&(this.inspectors=o);const e=this.tools.filter((t=>t instanceof z.HelpTool));t(this.help,e)&&(this.help=e);const l=this.tools.filter((t=>t instanceof T.ActionTool));t(this.actions,l)&&(this.actions=l);const i=(t,o)=>{t in this.gestures||r.logger.warn(`Toolbar: unknown event type '${t}' for tool: ${o}`)},s={pan:{tools:[],active:null},scroll:{tools:[],active:null},pinch:{tools:[],active:null},tap:{tools:[],active:null},doubletap:{tools:[],active:null},press:{tools:[],active:null},pressup:{tools:[],active:null},rotate:{tools:[],active:null},move:{tools:[],active:null},multi:{tools:[],active:null}};for(const t of this.tools)if(t instanceof y.GestureTool&&t.event_type)if((0,b.isString)(t.event_type))s[t.event_type].tools.push(t),i(t.event_type,t);else{s.multi.tools.push(t);for(const o of t.event_type)i(o,t)}for(const o of Object.keys(s)){const e=this.gestures[o];t(e.tools,s[o].tools)&&(e.tools=s[o].tools),e.active&&(0,v.every)(e.tools,(t=>t.id!=e.active.id))&&(e.active=null)}}get horizontal(){return\"above\"===this.toolbar_location||\"below\"===this.toolbar_location}get vertical(){return\"left\"===this.toolbar_location||\"right\"===this.toolbar_location}_active_change(t){const{event_type:o}=t;if(null==o)return;const e=(0,b.isString)(o)?[o]:o;for(const o of e)if(t.active){const e=this.gestures[o].active;null!=e&&t!=e&&(r.logger.debug(`Toolbar: deactivating tool: ${e} for event type '${o}'`),e.active=!1),this.gestures[o].active=t,r.logger.debug(`Toolbar: activating tool: ${t} for event type '${o}'`)}else this.gestures[o].active=null}}e.ToolbarBase=A,a=A,A.__name__=\"ToolbarBase\",a.prototype.default_view=$,a.define((({Boolean:t,Array:o,Ref:e,Nullable:l})=>({tools:[o(e(w.Tool)),[]],logo:[l(u.Logo),\"normal\"],autohide:[t,!1]}))),a.internal((({Array:t,Struct:o,Ref:e,Nullable:l})=>{const i=o({tools:t(e(y.GestureTool)),active:l(e(w.Tool))});return{gestures:[o({pan:i,scroll:i,pinch:i,tap:i,doubletap:i,press:i,pressup:i,rotate:i,move:i,multi:i}),V],actions:[t(e(T.ActionTool)),[]],inspectors:[t(e(x.InspectTool)),[]],help:[t(e(z.HelpTool)),[]],toolbar_location:[u.Location,\"right\"]}}))},\n", + " function _(n,o,e,t,f){t();const r=n(9);function*i(n,o){const e=n.length;if(o>e)return;const t=(0,r.range)(o);for(yield t.map((o=>n[o]));;){let f;for(const n of(0,r.reversed)((0,r.range)(o)))if(t[n]!=n+e-o){f=n;break}if(null==f)return;t[f]+=1;for(const n of(0,r.range)(f+1,o))t[n]=t[n-1]+1;yield t.map((o=>n[o]))}}e.enumerate=function*(n){let o=0;for(const e of n)yield[e,o++]},e.join=function*(n,o){let e=!0;for(const t of n)e?e=!1:null!=o&&(yield o()),yield*t},e.combinations=i,e.subsets=function*(n){for(const o of(0,r.range)(n.length+1))yield*i(n,o)}},\n", + " function _(t,e,s,i,n){i();const o=t(236),a=t(65),r=t(43);function h(t){!function(t){void 0===t.lineDash&&Object.defineProperty(t,\"lineDash\",{get:()=>t.getLineDash(),set:e=>t.setLineDash(e)})}(t),function(t){t.setImageSmoothingEnabled=e=>{t.imageSmoothingEnabled=e,t.mozImageSmoothingEnabled=e,t.oImageSmoothingEnabled=e,t.webkitImageSmoothingEnabled=e,t.msImageSmoothingEnabled=e},t.getImageSmoothingEnabled=()=>{const e=t.imageSmoothingEnabled;return null==e||e}}(t),function(t){t.ellipse||(t.ellipse=function(e,s,i,n,o,a,r,h=!1){const l=.551784;t.translate(e,s),t.rotate(o);let c=i,g=n;h&&(c=-i,g=-n),t.moveTo(-c,0),t.bezierCurveTo(-c,g*l,-c*l,g,0,g),t.bezierCurveTo(c*l,g,c,g*l,c,0),t.bezierCurveTo(c,-g*l,c*l,-g,0,-g),t.bezierCurveTo(-c*l,-g,-c,-g*l,-c,0),t.rotate(-o),t.translate(-e,-s)})}(t)}const l={position:\"absolute\",top:\"0\",left:\"0\",width:\"100%\",height:\"100%\"};class c{constructor(t,e){switch(this.backend=t,this.hidpi=e,this.pixel_ratio=1,this.bbox=new a.BBox,t){case\"webgl\":case\"canvas\":{this._el=this._canvas=(0,r.canvas)({style:l});const t=this.canvas.getContext(\"2d\");if(null==t)throw new Error(\"unable to obtain 2D rendering context\");this._ctx=t,e&&(this.pixel_ratio=devicePixelRatio);break}case\"svg\":{const t=new o.SVGRenderingContext2D;this._ctx=t,this._canvas=t.get_svg(),this._el=(0,r.div)({style:l},this._canvas);break}}this._ctx.layer=this,h(this._ctx)}get canvas(){return this._canvas}get ctx(){return this._ctx}get el(){return this._el}resize(t,e){this.bbox=new a.BBox({left:0,top:0,width:t,height:e});const s=this._ctx instanceof o.SVGRenderingContext2D?this._ctx:this.canvas;s.width=t*this.pixel_ratio,s.height=e*this.pixel_ratio}undo_transform(t){const{ctx:e}=this;if(void 0===e.getTransform)t(e);else{const s=e.getTransform();e.setTransform(this._base_transform);try{t(e)}finally{e.setTransform(s)}}}prepare(){const{ctx:t,hidpi:e,pixel_ratio:s}=this;t.save(),e&&(t.scale(s,s),t.translate(.5,.5)),void 0!==t.getTransform&&(this._base_transform=t.getTransform()),this.clear()}clear(){const{x:t,y:e,width:s,height:i}=this.bbox;this.ctx.clearRect(t,e,s,i)}finish(){this.ctx.restore()}to_blob(){const{_canvas:t}=this;if(t instanceof HTMLCanvasElement)return null!=t.msToBlob?Promise.resolve(t.msToBlob()):new Promise(((e,s)=>{t.toBlob((t=>null!=t?e(t):s()),\"image/png\")}));{const t=this._ctx.get_serialized_svg(!0),e=new Blob([t],{type:\"image/svg+xml\"});return Promise.resolve(e)}}}s.CanvasLayer=c,c.__name__=\"CanvasLayer\"},\n", + " function _(t,e,i,s,r){s();const n=t(122),a=t(8),o=t(237),l=t(10),h=t(43);function _(t){var e;const i={left:\"start\",right:\"end\",center:\"middle\",start:\"start\",end:\"end\"};return null!==(e=i[t])&&void 0!==e?e:i.start}function c(t){var e;const i={alphabetic:\"alphabetic\",hanging:\"hanging\",top:\"text-before-edge\",bottom:\"text-after-edge\",middle:\"central\"};return null!==(e=i[t])&&void 0!==e?e:i.alphabetic}const p=function(t,e){const i=new Map,s=t.split(\",\");e=null!=e?e:10;for(let t=0;t=0?Math.acos(e):-Math.acos(e)}const v=b(f),A=b(g);this.lineTo(d+f[0]*r,m+f[1]*r),this.arc(d,m,r,v,A)}stroke(){\"path\"===this.__currentElement.nodeName&&this.__currentElement.setAttribute(\"paint-order\",\"fill\"),this.__applyCurrentDefaultPath(),this.__applyStyleToCurrentElement(\"stroke\"),null!=this._clip_path&&this.__currentElement.setAttribute(\"clip-path\",this._clip_path)}fill(t,e){let i=null;if(t instanceof Path2D)i=t;else{if(\"evenodd\"!=t&&\"nonzero\"!=t&&null!=t||null!=e)throw new Error(\"invalid arguments\");e=t}if(null!=i)throw new Error(\"not implemented\");\"none\"!=this.__currentElement.getAttribute(\"fill\")&&this.__init_element(),\"path\"===this.__currentElement.nodeName&&this.__currentElement.setAttribute(\"paint-order\",\"stroke\"),this.__applyCurrentDefaultPath(),this.__applyStyleToCurrentElement(\"fill\"),null!=e&&this.__currentElement.setAttribute(\"fill-rule\",e),null!=this._clip_path&&this.__currentElement.setAttribute(\"clip-path\",this._clip_path)}rect(t,e,i,s){isFinite(t+e+i+s)&&(this.moveTo(t,e),this.lineTo(t+i,e),this.lineTo(t+i,e+s),this.lineTo(t,e+s),this.lineTo(t,e))}fillRect(t,e,i,s){isFinite(t+e+i+s)&&(this.beginPath(),this.rect(t,e,i,s),this.fill())}strokeRect(t,e,i,s){isFinite(t+e+i+s)&&(this.beginPath(),this.rect(t,e,i,s),this.stroke())}__clearCanvas(){(0,h.empty)(this.__defs),(0,h.empty)(this.__root),this.__root.appendChild(this.__defs),this.__currentElement=this.__root}clearRect(t,e,i,s){if(!isFinite(t+e+i+s))return;if(0===t&&0===e&&i===this.width&&s===this.height)return void this.__clearCanvas();const r=this.__createElement(\"rect\",{x:t,y:e,width:i,height:s,fill:\"#FFFFFF\"},!0);this._apply_transform(r),this.__root.appendChild(r)}createLinearGradient(t,e,i,s){if(!isFinite(t+e+i+s))throw new Error(\"The provided double value is non-finite\");const[r,n]=this._transform.apply(t,e),[a,o]=this._transform.apply(i,s),l=this.__createElement(\"linearGradient\",{id:this._random_string(),x1:`${r}px`,x2:`${a}px`,y1:`${n}px`,y2:`${o}px`,gradientUnits:\"userSpaceOnUse\"},!1);return this.__defs.appendChild(l),new d(l,this)}createRadialGradient(t,e,i,s,r,n){if(!isFinite(t+e+i+s+r+n))throw new Error(\"The provided double value is non-finite\");const[a,o]=this._transform.apply(t,e),[l,h]=this._transform.apply(s,r),_=this.__createElement(\"radialGradient\",{id:this._random_string(),cx:`${l}px`,cy:`${h}px`,r:`${n}px`,r0:`${i}px`,fx:`${a}px`,fy:`${o}px`,gradientUnits:\"userSpaceOnUse\"},!1);return this.__defs.appendChild(_),new d(_,this)}__parseFont(){var t,e,i,s,r;const n=/^\\s*(?=(?:(?:[-a-z]+\\s*){0,2}(italic|oblique))?)(?=(?:(?:[-a-z]+\\s*){0,2}(small-caps))?)(?=(?:(?:[-a-z]+\\s*){0,2}(bold(?:er)?|lighter|[1-9]00))?)(?:(?:normal|\\1|\\2|\\3)\\s*){0,3}((?:xx?-)?(?:small|large)|medium|smaller|larger|[.\\d]+(?:\\%|in|[cem]m|ex|p[ctx]))(?:\\s*\\/\\s*(normal|[.\\d]+(?:\\%|in|[cem]m|ex|p[ctx])))?\\s*([-,\\'\\\"\\sa-z0-9]+?)\\s*$/i.exec(this.font);return{style:null!==(t=n[1])&&void 0!==t?t:\"normal\",size:null!==(e=n[4])&&void 0!==e?e:\"10px\",family:null!==(i=n[6])&&void 0!==i?i:\"sans-serif\",weight:null!==(s=n[3])&&void 0!==s?s:\"normal\",decoration:null!==(r=n[2])&&void 0!==r?r:\"normal\"}}__applyText(t,e,i,s){const r=this.__parseFont(),n=this.__createElement(\"text\",{\"font-family\":r.family,\"font-size\":r.size,\"font-style\":r.style,\"font-weight\":r.weight,\"text-decoration\":r.decoration,x:e,y:i,\"text-anchor\":_(this.textAlign),\"dominant-baseline\":c(this.textBaseline)},!0);n.appendChild(this.__document.createTextNode(t)),this._apply_transform(n),this.__currentElement=n,this.__applyStyleToCurrentElement(s);const a=(()=>{if(null!=this._clip_path){const t=this.__createElement(\"g\");return t.setAttribute(\"clip-path\",this._clip_path),t.appendChild(n),t}return n})();this.__root.appendChild(a)}fillText(t,e,i){null!=t&&isFinite(e+i)&&this.__applyText(t,e,i,\"fill\")}strokeText(t,e,i){null!=t&&isFinite(e+i)&&this.__applyText(t,e,i,\"stroke\")}measureText(t){return this.__ctx.font=this.font,this.__ctx.measureText(t)}arc(t,e,i,s,r,n=!1){this.ellipse(t,e,i,i,0,s,r,n)}ellipse(t,e,i,s,r,n,a,o=!1){if(!isFinite(t+e+i+s+r+n+a))return;if(i<0||s<0)throw new DOMException(\"IndexSizeError, radius can't be negative\");const h=o?a-n:n-a;n%=2*Math.PI,a%=2*Math.PI;const _=t+i*Math.cos(n),c=e+s*Math.sin(n);this.lineTo(_,c);const p=180*r/Math.PI,u=o?0:1;if(Math.abs(n-a)<2*l.float32_epsilon&&!(Math.abs(h)<2*l.float32_epsilon&&h<0)){const r=t+i*Math.cos(n+Math.PI),a=e+s*Math.sin(n+Math.PI),[o,l]=this._transform.apply(_,c),[h,d]=this._transform.apply(r,a);this.__addPathCommand(o,l,`A ${i} ${s} ${p} 0 ${u} ${h} ${d} A ${i} ${s} ${p} 0 ${u} ${o} ${l}`)}else{const r=t+i*Math.cos(a),l=e+s*Math.sin(a);let h=a-n;h<0&&(h+=2*Math.PI);const _=o!==h>Math.PI?1:0,[c,d]=this._transform.apply(r,l);this.__addPathCommand(c,d,`A ${i} ${s} ${p} ${_} ${u} ${c} ${d}`)}}clip(){const t=this.__createElement(\"clipPath\"),e=this._random_string();this.__applyCurrentDefaultPath(),t.setAttribute(\"id\",e),t.appendChild(this.__currentElement),this.__defs.appendChild(t),this._clip_path=`url(#${e})`}drawImage(t,...e){let i,s,r,n,a,o,l,h;if(2==e.length){if([i,s]=e,!isFinite(i+s))return;a=0,o=0,l=t.width,h=t.height,r=l,n=h}else if(4==e.length){if([i,s,r,n]=e,!isFinite(i+s+r+n))return;a=0,o=0,l=t.width,h=t.height}else{if(8!==e.length)throw new Error(`Inavlid number of arguments passed to drawImage: ${arguments.length}`);if([a,o,l,h,i,s,r,n]=e,!isFinite(a+o+l+h+i+s+r+n))return}const _=this.__root,c=this._transform.clone().translate(i,s);if(t instanceof f||t instanceof SVGSVGElement){const e=(t instanceof SVGSVGElement?t:t.get_svg()).cloneNode(!0);let i;c.is_identity&&1==this.globalAlpha&&null==this._clip_path?i=_:(i=this.__createElement(\"g\"),c.is_identity||this._apply_transform(i,c),1!=this.globalAlpha&&i.setAttribute(\"opacity\",`${this.globalAlpha}`),null!=this._clip_path&&i.setAttribute(\"clip-path\",this._clip_path),_.appendChild(i));for(const t of[...e.childNodes])if(t instanceof SVGDefsElement){for(const e of[...t.childNodes])if(e instanceof Element){const t=e.getAttribute(\"id\");this.__ids.add(t),this.__defs.appendChild(e.cloneNode(!0))}}else i.appendChild(t.cloneNode(!0))}else if(t instanceof HTMLImageElement||t instanceof SVGImageElement){const e=this.__createElement(\"image\");if(e.setAttribute(\"width\",`${r}`),e.setAttribute(\"height\",`${n}`),e.setAttribute(\"preserveAspectRatio\",\"none\"),1!=this.globalAlpha&&e.setAttribute(\"opacity\",`${this.globalAlpha}`),a||o||l!==t.width||h!==t.height){const e=this.__document.createElement(\"canvas\");e.width=r,e.height=n;e.getContext(\"2d\").drawImage(t,a,o,l,h,0,0,r,n),t=e}this._apply_transform(e,c);const i=t instanceof HTMLCanvasElement?t.toDataURL():t.getAttribute(\"src\");if(e.setAttribute(\"href\",i),null!=this._clip_path){const t=this.__createElement(\"g\");t.setAttribute(\"clip-path\",this._clip_path),t.appendChild(e),_.appendChild(t)}else _.appendChild(e)}else if(t instanceof HTMLCanvasElement){const e=this.__createElement(\"image\");e.setAttribute(\"width\",`${r}`),e.setAttribute(\"height\",`${n}`),e.setAttribute(\"preserveAspectRatio\",\"none\"),1!=this.globalAlpha&&e.setAttribute(\"opacity\",`${this.globalAlpha}`);const i=this.__document.createElement(\"canvas\");i.width=r,i.height=n;const s=i.getContext(\"2d\");if(s.imageSmoothingEnabled=!1,s.drawImage(t,a,o,l,h,0,0,r,n),t=i,this._apply_transform(e,c),e.setAttribute(\"href\",t.toDataURL()),null!=this._clip_path){const t=this.__createElement(\"g\");t.setAttribute(\"clip-path\",this._clip_path),t.appendChild(e),_.appendChild(t)}else _.appendChild(e)}}createPattern(t,e){const i=this.__document.createElementNS(\"http://www.w3.org/2000/svg\",\"pattern\"),s=this._random_string();if(i.setAttribute(\"id\",s),i.setAttribute(\"width\",`${this._to_number(t.width)}`),i.setAttribute(\"height\",`${this._to_number(t.height)}`),i.setAttribute(\"patternUnits\",\"userSpaceOnUse\"),t instanceof HTMLCanvasElement||t instanceof HTMLImageElement||t instanceof SVGImageElement){const e=this.__document.createElementNS(\"http://www.w3.org/2000/svg\",\"image\"),s=t instanceof HTMLCanvasElement?t.toDataURL():t.getAttribute(\"src\");e.setAttribute(\"href\",s),i.appendChild(e),this.__defs.appendChild(i)}else if(t instanceof f){for(const e of[...t.__root.childNodes])e instanceof SVGDefsElement||i.appendChild(e.cloneNode(!0));this.__defs.appendChild(i)}else{if(!(t instanceof SVGSVGElement))throw new Error(\"unsupported\");for(const e of[...t.childNodes])e instanceof SVGDefsElement||i.appendChild(e.cloneNode(!0));this.__defs.appendChild(i)}return new m(i,this)}getLineDash(){const{lineDash:t}=this;return(0,a.isString)(t)?t.split(\",\").map((t=>parseInt(t))):null==t?[]:t}setLineDash(t){t&&t.length>0?this.lineDash=t.join(\",\"):this.lineDash=null}_to_number(t){return(0,a.isNumber)(t)?t:t.baseVal.value}getTransform(){return this._transform.to_DOMMatrix()}setTransform(...t){let e;e=(0,a.isNumber)(t[0])?new DOMMatrix(t):t[0]instanceof DOMMatrix?t[0]:new DOMMatrix(Object.values(!t[0])),this._transform=n.AffineTransform.from_DOMMatrix(e)}resetTransform(){this._transform=new n.AffineTransform}isPointInPath(...t){throw new Error(\"not implemented\")}isPointInStroke(...t){throw new Error(\"not implemented\")}createImageData(...t){throw new Error(\"not implemented\")}getImageData(t,e,i,s){throw new Error(\"not implemented\")}putImageData(...t){throw new Error(\"not implemented\")}drawFocusIfNeeded(...t){throw new Error(\"not implemented\")}scrollPathIntoView(...t){throw new Error(\"not implemented\")}}i.SVGRenderingContext2D=f,f.__name__=\"SVGRenderingContext2D\",f.__random=o.random},\n", + " function _(e,t,s,n,r){n();const o=2147483647;class i{constructor(e){this.seed=e%o,this.seed<=0&&(this.seed+=2147483646)}integer(){return this.seed=48271*this.seed%o,this.seed}float(){return(this.integer()-1)/2147483646}floats(e,t=0,s=1){const n=new Array(e);for(let r=0;rthis.doit(o)))}}n.ActionToolView=_,_.__name__=\"ActionToolView\";class d extends s.ButtonTool{constructor(o){super(o),this.button_view=l,this.do=new c.Signal(this,\"do\")}}n.ActionTool=d,d.__name__=\"ActionTool\"},\n", + " function _(o,e,t,l,i){var s;l();const n=o(238),r=o(228);class c extends n.ActionToolView{doit(){window.open(this.model.redirect)}}t.HelpToolView=c,c.__name__=\"HelpToolView\";class _ extends n.ActionTool{constructor(o){super(o),this.tool_name=\"Help\",this.icon=r.tool_icon_help}}t.HelpTool=_,s=_,_.__name__=\"HelpTool\",s.prototype.default_view=c,s.define((({String:o})=>({redirect:[o,\"https://docs.bokeh.org/en/latest/docs/user_guide/tools.html\"]}))),s.override({description:\"Click the question mark to learn more about Bokeh plot tools.\"}),s.register_alias(\"help\",(()=>new _))},\n", + " function _(o,l,g,A,r){A(),g.root=\"bk-root\",g.logo=\"bk-logo\",g.grey=\"bk-grey\",g.logo_small=\"bk-logo-small\",g.logo_notebook=\"bk-logo-notebook\",g.default=\".bk-root .bk-logo{margin:5px;position:relative;display:block;background-repeat:no-repeat;}.bk-root .bk-logo.bk-grey{filter:url(\\\"data:image/svg+xml;utf8,#grayscale\\\");filter:gray;-webkit-filter:grayscale(100%);}.bk-root .bk-logo-small{width:20px;height:20px;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAABx0RVh0U29mdHdhcmUAQWRvYmUgRmlyZXdvcmtzIENTNui8sowAAAOkSURBVDiNjZRtaJVlGMd/1/08zzln5zjP1LWcU9N0NkN8m2CYjpgQYQXqSs0I84OLIC0hkEKoPtiH3gmKoiJDU7QpLgoLjLIQCpEsNJ1vqUOdO7ppbuec5+V+rj4ctwzd8IIbbi6u+8f1539dt3A78eXC7QizUF7gyV1fD1Yqg4JWz84yffhm0qkFqBogB9rM8tZdtwVsPUhWhGcFJngGeWrPzHm5oaMmkfEg1usvLFyc8jLRqDOMru7AyC8saQr7GG7f5fvDeH7Ej8CM66nIF+8yngt6HWaKh7k49Soy9nXurCi1o3qUbS3zWfrYeQDTB/Qj6kX6Ybhw4B+bOYoLKCC9H3Nu/leUTZ1JdRWkkn2ldcCamzrcf47KKXdAJllSlxAOkRgyHsGC/zRday5Qld9DyoM4/q/rUoy/CXh3jzOu3bHUVZeU+DEn8FInkPBFlu3+nW3Nw0mk6vCDiWg8CeJaxEwuHS3+z5RgY+YBR6V1Z1nxSOfoaPa4LASWxxdNp+VWTk7+4vzaou8v8PN+xo+KY2xsw6une2frhw05CTYOmQvsEhjhWjn0bmXPjpE1+kplmmkP3suftwTubK9Vq22qKmrBhpY4jvd5afdRA3wGjFAgcnTK2s4hY0/GPNIb0nErGMCRxWOOX64Z8RAC4oCXdklmEvcL8o0BfkNK4lUg9HTl+oPlQxdNo3Mg4Nv175e/1LDGzZen30MEjRUtmXSfiTVu1kK8W4txyV6BMKlbgk3lMwYCiusNy9fVfvvwMxv8Ynl6vxoByANLTWplvuj/nF9m2+PDtt1eiHPBr1oIfhCChQMBw6Aw0UulqTKZdfVvfG7VcfIqLG9bcldL/+pdWTLxLUy8Qq38heUIjh4XlzZxzQm19lLFlr8vdQ97rjZVOLf8nclzckbcD4wxXMidpX30sFd37Fv/GtwwhzhxGVAprjbg0gCAEeIgwCZyTV2Z1REEW8O4py0wsjeloKoMr6iCY6dP92H6Vw/oTyICIthibxjm/DfN9lVz8IqtqKYLUXfoKVMVQVVJOElGjrnnUt9T9wbgp8AyYKaGlqingHZU/uG2NTZSVqwHQTWkx9hxjkpWDaCg6Ckj5qebgBVbT3V3NNXMSiWSDdGV3hrtzla7J+duwPOToIg42ChPQOQjspnSlp1V+Gjdged7+8UN5CRAV7a5EdFNwCjEaBR27b3W890TE7g24NAP/mMDXRWrGoFPQI9ls/MWO2dWFAar/xcOIImbbpA3zgAAAABJRU5ErkJggg==);}.bk-root .bk-logo-notebook{display:inline-block;vertical-align:middle;margin-right:5px;}\"},\n", + " function _(e,t,s,i,l){i();const o=e(1);var n;const a=e(40),h=e(20),r=e(43),c=(0,o.__importStar)(e(242)),d=c;class p extends a.AnnotationView{initialize(){super.initialize(),this.el=(0,r.div)({class:d.tooltip}),(0,r.undisplay)(this.el),this.plot_view.canvas_view.add_overlay(this.el)}remove(){(0,r.remove)(this.el),super.remove()}connect_signals(){super.connect_signals(),this.connect(this.model.properties.content.change,(()=>this.render())),this.connect(this.model.properties.position.change,(()=>this._reposition()))}styles(){return[...super.styles(),c.default]}render(){this.model.visible||(0,r.undisplay)(this.el),super.render()}_render(){const{content:e}=this.model;null!=e?((0,r.empty)(this.el),(0,r.classes)(this.el).toggle(\"bk-tooltip-custom\",this.model.custom),this.el.appendChild(e),this.model.show_arrow&&this.el.classList.add(d.tooltip_arrow)):(0,r.undisplay)(this.el)}_reposition(){const{position:e}=this.model;if(null==e)return void(0,r.undisplay)(this.el);const[t,s]=e,i=(()=>{const e=this.parent.layout.bbox.relative(),{attachment:i}=this.model;switch(i){case\"horizontal\":return t({attachment:[h.TooltipAttachment,\"horizontal\"],inner_only:[e,!0],show_arrow:[e,!0]}))),n.internal((({Boolean:e,Number:t,Tuple:s,Ref:i,Nullable:l})=>({position:[l(s(t,t)),null],content:[i(HTMLElement),()=>(0,r.div)()],custom:[e]}))),n.override({level:\"overlay\"})},\n", + " function _(o,t,r,e,l){e(),r.root=\"bk-root\",r.tooltip=\"bk-tooltip\",r.left=\"bk-left\",r.tooltip_arrow=\"bk-tooltip-arrow\",r.right=\"bk-right\",r.above=\"bk-above\",r.below=\"bk-below\",r.tooltip_row_label=\"bk-tooltip-row-label\",r.tooltip_row_value=\"bk-tooltip-row-value\",r.tooltip_color_block=\"bk-tooltip-color-block\",r.default='.bk-root{}.bk-root .bk-tooltip{font-weight:300;font-size:12px;position:absolute;padding:5px;border:1px solid #e5e5e5;color:#2f2f2f;background-color:white;pointer-events:none;opacity:0.95;z-index:100;}.bk-root .bk-tooltip > div:not(:first-child){margin-top:5px;border-top:#e5e5e5 1px dashed;}.bk-root .bk-tooltip.bk-left.bk-tooltip-arrow::before{position:absolute;margin:-7px 0 0 0;top:50%;width:0;height:0;border-style:solid;border-width:7px 0 7px 0;border-color:transparent;content:\" \";display:block;left:-10px;border-right-width:10px;border-right-color:#909599;}.bk-root .bk-tooltip.bk-left::before{left:-10px;border-right-width:10px;border-right-color:#909599;}.bk-root .bk-tooltip.bk-right.bk-tooltip-arrow::after{position:absolute;margin:-7px 0 0 0;top:50%;width:0;height:0;border-style:solid;border-width:7px 0 7px 0;border-color:transparent;content:\" \";display:block;right:-10px;border-left-width:10px;border-left-color:#909599;}.bk-root .bk-tooltip.bk-right::after{right:-10px;border-left-width:10px;border-left-color:#909599;}.bk-root .bk-tooltip.bk-above::before{position:absolute;margin:0 0 0 -7px;left:50%;width:0;height:0;border-style:solid;border-width:0 7px 0 7px;border-color:transparent;content:\" \";display:block;top:-10px;border-bottom-width:10px;border-bottom-color:#909599;}.bk-root .bk-tooltip.bk-below::after{position:absolute;margin:0 0 0 -7px;left:50%;width:0;height:0;border-style:solid;border-width:0 7px 0 7px;border-color:transparent;content:\" \";display:block;bottom:-10px;border-top-width:10px;border-top-color:#909599;}.bk-root .bk-tooltip-row-label{text-align:right;color:#26aae1;}.bk-root .bk-tooltip-row-value{color:default;}.bk-root .bk-tooltip-color-block{width:12px;height:12px;margin-left:5px;margin-right:5px;outline:#dddddd solid 1px;display:inline-block;}'},\n", + " function _(e,t,s,i,r){var a;i();const l=e(115),_=e(112),h=e(113),o=e(48);class n extends l.UpperLowerView{async lazy_initialize(){await super.lazy_initialize();const{lower_head:e,upper_head:t}=this.model;null!=e&&(this.lower_head=await(0,h.build_view)(e,{parent:this})),null!=t&&(this.upper_head=await(0,h.build_view)(t,{parent:this}))}set_data(e){var t,s;super.set_data(e),null===(t=this.lower_head)||void 0===t||t.set_data(e),null===(s=this.upper_head)||void 0===s||s.set_data(e)}paint(e){if(this.visuals.line.doit)for(let t=0,s=this._lower_sx.length;t({lower_head:[t(e(_.ArrowHead)),()=>new _.TeeHead({size:10})],upper_head:[t(e(_.ArrowHead)),()=>new _.TeeHead({size:10})]}))),a.override({level:\"underlay\"})},\n", + " function _(n,o,t,u,e){u(),e(\"CustomJS\",n(245).CustomJS),e(\"OpenURL\",n(247).OpenURL)},\n", + " function _(t,e,s,n,c){var a;n();const r=t(246),u=t(13),o=t(34);class i extends r.Callback{constructor(t){super(t)}get names(){return(0,u.keys)(this.args)}get values(){return(0,u.values)(this.args)}get func(){const t=(0,o.use_strict)(this.code);return new Function(...this.names,\"cb_obj\",\"cb_data\",t)}execute(t,e={}){return this.func.apply(t,this.values.concat(t,e))}}s.CustomJS=i,a=i,i.__name__=\"CustomJS\",a.define((({Unknown:t,String:e,Dict:s})=>({args:[s(t),{}],code:[e,\"\"]})))},\n", + " function _(c,a,l,n,s){n();const e=c(53);class o extends e.Model{constructor(c){super(c)}}l.Callback=o,o.__name__=\"Callback\"},\n", + " function _(e,t,n,o,i){var s;o();const c=e(246),r=e(152),a=e(8);class d extends c.Callback{constructor(e){super(e)}navigate(e){this.same_tab?window.location.href=e:window.open(e)}execute(e,{source:t}){const n=e=>{const n=(0,r.replace_placeholders)(this.url,t,e,void 0,void 0,encodeURI);if(!(0,a.isString)(n))throw new Error(\"HTML output is not supported in this context\");this.navigate(n)},{selected:o}=t;for(const e of o.indices)n(e);for(const e of o.line_indices)n(e)}}n.OpenURL=d,s=d,d.__name__=\"OpenURL\",s.define((({Boolean:e,String:t})=>({url:[t,\"http://\"],same_tab:[e,!1]})))},\n", + " function _(a,n,i,e,r){e(),r(\"Canvas\",a(249).Canvas),r(\"CartesianFrame\",a(126).CartesianFrame),r(\"CoordinateMapping\",a(54).CoordinateMapping)},\n", + " function _(e,t,i,s,a){var l,r=this&&this.__createBinding||(Object.create?function(e,t,i,s){void 0===s&&(s=i),Object.defineProperty(e,s,{enumerable:!0,get:function(){return t[i]}})}:function(e,t,i,s){void 0===s&&(s=i),e[s]=t[i]}),n=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,\"default\",{enumerable:!0,value:t})}:function(e,t){e.default=t}),o=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var i in e)\"default\"!==i&&Object.prototype.hasOwnProperty.call(e,i)&&r(t,e,i);return n(t,e),t};s();const h=e(14),c=e(28),u=e(226),_=e(19),d=e(43),p=e(20),b=e(13),v=e(250),g=e(65),w=e(138),y=e(235);const f=(()=>{let t;return async()=>void 0!==t?t:t=await async function(){const t=document.createElement(\"canvas\"),i=t.getContext(\"webgl\",{premultipliedAlpha:!0});if(null!=i){const s=await(0,w.load_module)(Promise.resolve().then((()=>o(e(410)))));if(null!=s){const e=s.get_regl(i);if(e.has_webgl)return{canvas:t,regl_wrapper:e};_.logger.trace(\"WebGL is supported, but not the required extensions\")}else _.logger.trace(\"WebGL is supported, but bokehjs(.min).js bundle is not available\")}else _.logger.trace(\"WebGL is not supported\");return null}()})(),m={position:\"absolute\",top:\"0\",left:\"0\",width:\"100%\",height:\"100%\"};class x extends u.DOMView{constructor(){super(...arguments),this.bbox=new g.BBox,this.webgl=null}initialize(){super.initialize(),this.underlays_el=(0,d.div)({style:m}),this.primary=this.create_layer(),this.overlays=this.create_layer(),this.overlays_el=(0,d.div)({style:m}),this.events_el=(0,d.div)({class:\"bk-canvas-events\",style:m});const e=[this.underlays_el,this.primary.el,this.overlays.el,this.overlays_el,this.events_el];(0,b.extend)(this.el.style,m),(0,d.append)(this.el,...e),this.ui_event_bus=new v.UIEventBus(this)}async lazy_initialize(){if(await super.lazy_initialize(),\"webgl\"==this.model.output_backend&&(this.webgl=await f(),c.settings.force_webgl&&null==this.webgl))throw new Error(\"webgl is not available\")}remove(){this.ui_event_bus.destroy(),super.remove()}add_underlay(e){this.underlays_el.appendChild(e)}add_overlay(e){this.overlays_el.appendChild(e)}add_event(e){this.events_el.appendChild(e)}get pixel_ratio(){return this.primary.pixel_ratio}resize(e,t){this.bbox=new g.BBox({left:0,top:0,width:e,height:t}),this.primary.resize(e,t),this.overlays.resize(e,t)}prepare_webgl(e){const{webgl:t}=this;if(null!=t){const{width:i,height:s}=this.bbox;t.canvas.width=this.pixel_ratio*i,t.canvas.height=this.pixel_ratio*s;const[a,l,r,n]=e,{xview:o,yview:h}=this.bbox,c=o.compute(a),u=h.compute(l+n),_=this.pixel_ratio;t.regl_wrapper.set_scissor(_*c,_*u,_*r,_*n),this._clear_webgl()}}blit_webgl(e){const{webgl:t}=this;if(null!=t){if(_.logger.debug(\"Blitting WebGL canvas\"),e.restore(),e.drawImage(t.canvas,0,0),e.save(),this.model.hidpi){const t=this.pixel_ratio;e.scale(t,t),e.translate(.5,.5)}this._clear_webgl()}}_clear_webgl(){const{webgl:e}=this;if(null!=e){const{regl_wrapper:t,canvas:i}=e;t.clear(i.width,i.height)}}compose(){const e=this.create_layer(),{width:t,height:i}=this.bbox;return e.resize(t,i),e.ctx.drawImage(this.primary.canvas,0,0),e.ctx.drawImage(this.overlays.canvas,0,0),e}create_layer(){const{output_backend:e,hidpi:t}=this.model;return new y.CanvasLayer(e,t)}to_blob(){return this.compose().to_blob()}}i.CanvasView=x,x.__name__=\"CanvasView\";class z extends h.HasProps{constructor(e){super(e)}}i.Canvas=z,l=z,z.__name__=\"Canvas\",l.prototype.default_view=x,l.internal((({Boolean:e})=>({hidpi:[e,!0],output_backend:[p.OutputBackend,\"canvas\"]})))},\n", + " function _(t,e,s,n,i){n();const r=t(1),a=(0,r.__importDefault)(t(225)),_=t(15),h=t(19),o=t(43),l=(0,r.__importStar)(t(251)),c=t(252),p=t(9),u=t(8),v=t(27),d=t(230);class g{constructor(t){this.canvas_view=t,this.pan_start=new _.Signal(this,\"pan:start\"),this.pan=new _.Signal(this,\"pan\"),this.pan_end=new _.Signal(this,\"pan:end\"),this.pinch_start=new _.Signal(this,\"pinch:start\"),this.pinch=new _.Signal(this,\"pinch\"),this.pinch_end=new _.Signal(this,\"pinch:end\"),this.rotate_start=new _.Signal(this,\"rotate:start\"),this.rotate=new _.Signal(this,\"rotate\"),this.rotate_end=new _.Signal(this,\"rotate:end\"),this.tap=new _.Signal(this,\"tap\"),this.doubletap=new _.Signal(this,\"doubletap\"),this.press=new _.Signal(this,\"press\"),this.pressup=new _.Signal(this,\"pressup\"),this.move_enter=new _.Signal(this,\"move:enter\"),this.move=new _.Signal(this,\"move\"),this.move_exit=new _.Signal(this,\"move:exit\"),this.scroll=new _.Signal(this,\"scroll\"),this.keydown=new _.Signal(this,\"keydown\"),this.keyup=new _.Signal(this,\"keyup\"),this.hammer=new a.default(this.hit_area,{touchAction:\"auto\",inputClass:a.default.TouchMouseInput}),this._prev_move=null,this._curr_pan=null,this._curr_pinch=null,this._curr_rotate=null,this._configure_hammerjs(),this.hit_area.addEventListener(\"mousemove\",(t=>this._mouse_move(t))),this.hit_area.addEventListener(\"mouseenter\",(t=>this._mouse_enter(t))),this.hit_area.addEventListener(\"mouseleave\",(t=>this._mouse_exit(t))),this.hit_area.addEventListener(\"contextmenu\",(t=>this._context_menu(t))),this.hit_area.addEventListener(\"wheel\",(t=>this._mouse_wheel(t))),document.addEventListener(\"keydown\",this),document.addEventListener(\"keyup\",this),this.menu=new d.ContextMenu([],{prevent_hide:t=>2==t.button&&t.target==this.hit_area}),this.hit_area.appendChild(this.menu.el)}get hit_area(){return this.canvas_view.events_el}destroy(){this.menu.remove(),this.hammer.destroy(),document.removeEventListener(\"keydown\",this),document.removeEventListener(\"keyup\",this)}handleEvent(t){\"keydown\"==t.type?this._key_down(t):\"keyup\"==t.type&&this._key_up(t)}_configure_hammerjs(){this.hammer.get(\"doubletap\").recognizeWith(\"tap\"),this.hammer.get(\"tap\").requireFailure(\"doubletap\"),this.hammer.get(\"doubletap\").dropRequireFailure(\"tap\"),this.hammer.on(\"doubletap\",(t=>this._doubletap(t))),this.hammer.on(\"tap\",(t=>this._tap(t))),this.hammer.on(\"press\",(t=>this._press(t))),this.hammer.on(\"pressup\",(t=>this._pressup(t))),this.hammer.get(\"pan\").set({direction:a.default.DIRECTION_ALL}),this.hammer.on(\"panstart\",(t=>this._pan_start(t))),this.hammer.on(\"pan\",(t=>this._pan(t))),this.hammer.on(\"panend\",(t=>this._pan_end(t))),this.hammer.get(\"pinch\").set({enable:!0}),this.hammer.on(\"pinchstart\",(t=>this._pinch_start(t))),this.hammer.on(\"pinch\",(t=>this._pinch(t))),this.hammer.on(\"pinchend\",(t=>this._pinch_end(t))),this.hammer.get(\"rotate\").set({enable:!0}),this.hammer.on(\"rotatestart\",(t=>this._rotate_start(t))),this.hammer.on(\"rotate\",(t=>this._rotate(t))),this.hammer.on(\"rotateend\",(t=>this._rotate_end(t)))}register_tool(t){const e=t.model.event_type;null!=e&&((0,u.isString)(e)?this._register_tool(t,e):e.forEach(((e,s)=>this._register_tool(t,e,s<1))))}_register_tool(t,e,s=!0){const n=t,{id:i}=n.model,r=t=>e=>{e.id==i&&t(e.e)},a=t=>e=>{t(e.e)};switch(e){case\"pan\":null!=n._pan_start&&n.connect(this.pan_start,r(n._pan_start.bind(n))),null!=n._pan&&n.connect(this.pan,r(n._pan.bind(n))),null!=n._pan_end&&n.connect(this.pan_end,r(n._pan_end.bind(n)));break;case\"pinch\":null!=n._pinch_start&&n.connect(this.pinch_start,r(n._pinch_start.bind(n))),null!=n._pinch&&n.connect(this.pinch,r(n._pinch.bind(n))),null!=n._pinch_end&&n.connect(this.pinch_end,r(n._pinch_end.bind(n)));break;case\"rotate\":null!=n._rotate_start&&n.connect(this.rotate_start,r(n._rotate_start.bind(n))),null!=n._rotate&&n.connect(this.rotate,r(n._rotate.bind(n))),null!=n._rotate_end&&n.connect(this.rotate_end,r(n._rotate_end.bind(n)));break;case\"move\":null!=n._move_enter&&n.connect(this.move_enter,r(n._move_enter.bind(n))),null!=n._move&&n.connect(this.move,r(n._move.bind(n))),null!=n._move_exit&&n.connect(this.move_exit,r(n._move_exit.bind(n)));break;case\"tap\":null!=n._tap&&n.connect(this.tap,r(n._tap.bind(n))),null!=n._doubletap&&n.connect(this.doubletap,r(n._doubletap.bind(n)));break;case\"press\":null!=n._press&&n.connect(this.press,r(n._press.bind(n))),null!=n._pressup&&n.connect(this.pressup,r(n._pressup.bind(n)));break;case\"scroll\":null!=n._scroll&&n.connect(this.scroll,r(n._scroll.bind(n)));break;default:throw new Error(`unsupported event_type: ${e}`)}s&&(null!=n._keydown&&n.connect(this.keydown,a(n._keydown.bind(n))),null!=n._keyup&&n.connect(this.keyup,a(n._keyup.bind(n))),v.is_mobile&&null!=n._scroll&&\"pinch\"==e&&(h.logger.debug(\"Registering scroll on touch screen\"),n.connect(this.scroll,r(n._scroll.bind(n)))))}_hit_test_renderers(t,e,s){var n;const i=t.get_renderer_views();for(const t of(0,p.reversed)(i))if(null===(n=t.interactive_hit)||void 0===n?void 0:n.call(t,e,s))return t;return null}set_cursor(t=\"default\"){this.hit_area.style.cursor=t}_hit_test_frame(t,e,s){return t.frame.bbox.contains(e,s)}_hit_test_canvas(t,e,s){return t.layout.bbox.contains(e,s)}_hit_test_plot(t,e){for(const s of this.canvas_view.plot_views)if(s.layout.bbox.relative().contains(t,e))return s;return null}_trigger(t,e,s){var n;const{sx:i,sy:r}=e,a=this._hit_test_plot(i,r),_=t=>{const[s,n]=[i,r];return Object.assign(Object.assign({},e),{sx:s,sy:n})};if(\"panstart\"==e.type||\"pan\"==e.type||\"panend\"==e.type){let n;if(\"panstart\"==e.type&&null!=a?(this._curr_pan={plot_view:a},n=a):\"pan\"==e.type&&null!=this._curr_pan?n=this._curr_pan.plot_view:\"panend\"==e.type&&null!=this._curr_pan?(n=this._curr_pan.plot_view,this._curr_pan=null):n=null,null!=n){const e=_();this.__trigger(n,t,e,s)}}else if(\"pinchstart\"==e.type||\"pinch\"==e.type||\"pinchend\"==e.type){let n;if(\"pinchstart\"==e.type&&null!=a?(this._curr_pinch={plot_view:a},n=a):\"pinch\"==e.type&&null!=this._curr_pinch?n=this._curr_pinch.plot_view:\"pinchend\"==e.type&&null!=this._curr_pinch?(n=this._curr_pinch.plot_view,this._curr_pinch=null):n=null,null!=n){const e=_();this.__trigger(n,t,e,s)}}else if(\"rotatestart\"==e.type||\"rotate\"==e.type||\"rotateend\"==e.type){let n;if(\"rotatestart\"==e.type&&null!=a?(this._curr_rotate={plot_view:a},n=a):\"rotate\"==e.type&&null!=this._curr_rotate?n=this._curr_rotate.plot_view:\"rotateend\"==e.type&&null!=this._curr_rotate?(n=this._curr_rotate.plot_view,this._curr_rotate=null):n=null,null!=n){const e=_();this.__trigger(n,t,e,s)}}else if(\"mouseenter\"==e.type||\"mousemove\"==e.type||\"mouseleave\"==e.type){const h=null===(n=this._prev_move)||void 0===n?void 0:n.plot_view;if(null!=h&&(\"mouseleave\"==e.type||h!=a)){const{sx:t,sy:e}=_();this.__trigger(h,this.move_exit,{type:\"mouseleave\",sx:t,sy:e,shiftKey:!1,ctrlKey:!1},s)}if(null!=a&&(\"mouseenter\"==e.type||h!=a)){const{sx:t,sy:e}=_();this.__trigger(a,this.move_enter,{type:\"mouseenter\",sx:t,sy:e,shiftKey:!1,ctrlKey:!1},s)}if(null!=a&&\"mousemove\"==e.type){const e=_();this.__trigger(a,t,e,s)}this._prev_move={sx:i,sy:r,plot_view:a}}else if(null!=a){const e=_();this.__trigger(a,t,e,s)}}__trigger(t,e,s,n){var i,r,a;const _=t.model.toolbar.gestures,h=e.name.split(\":\")[0],o=this._hit_test_renderers(t,s.sx,s.sy),l=this._hit_test_canvas(t,s.sx,s.sy);switch(h){case\"move\":{const n=_.move.active;null!=n&&this.trigger(e,s,n.id);const r=t.model.toolbar.inspectors.filter((t=>t.active));let a=\"default\";null!=o?(a=null!==(i=o.cursor(s.sx,s.sy))&&void 0!==i?i:a,(0,p.is_empty)(r)||(e=this.move_exit)):this._hit_test_frame(t,s.sx,s.sy)&&((0,p.is_empty)(r)||(a=\"crosshair\")),this.set_cursor(a),t.set_toolbar_visibility(l),r.map((t=>this.trigger(e,s,t.id)));break}case\"tap\":{const{target:i}=n;if(null!=i&&i!=this.hit_area)return;if(null===(r=null==o?void 0:o.on_hit)||void 0===r||r.call(o,s.sx,s.sy),this._hit_test_frame(t,s.sx,s.sy)){const t=_.tap.active;null!=t&&this.trigger(e,s,t.id)}break}case\"doubletap\":if(this._hit_test_frame(t,s.sx,s.sy)){const t=null!==(a=_.doubletap.active)&&void 0!==a?a:_.tap.active;null!=t&&this.trigger(e,s,t.id)}break;case\"scroll\":{const t=_[v.is_mobile?\"pinch\":\"scroll\"].active;null!=t&&(n.preventDefault(),n.stopPropagation(),this.trigger(e,s,t.id));break}case\"pan\":{const t=_.pan.active;null!=t&&(n.preventDefault(),this.trigger(e,s,t.id));break}default:{const t=_[h].active;null!=t&&this.trigger(e,s,t.id)}}this._trigger_bokeh_event(t,s)}trigger(t,e,s=null){t.emit({id:s,e})}_trigger_bokeh_event(t,e){const s=(()=>{const{sx:s,sy:n}=e,i=t.frame.x_scale.invert(s),r=t.frame.y_scale.invert(n);switch(e.type){case\"wheel\":return new l.MouseWheel(s,n,i,r,e.delta);case\"mousemove\":return new l.MouseMove(s,n,i,r);case\"mouseenter\":return new l.MouseEnter(s,n,i,r);case\"mouseleave\":return new l.MouseLeave(s,n,i,r);case\"tap\":return new l.Tap(s,n,i,r);case\"doubletap\":return new l.DoubleTap(s,n,i,r);case\"press\":return new l.Press(s,n,i,r);case\"pressup\":return new l.PressUp(s,n,i,r);case\"pan\":return new l.Pan(s,n,i,r,e.deltaX,e.deltaY);case\"panstart\":return new l.PanStart(s,n,i,r);case\"panend\":return new l.PanEnd(s,n,i,r);case\"pinch\":return new l.Pinch(s,n,i,r,e.scale);case\"pinchstart\":return new l.PinchStart(s,n,i,r);case\"pinchend\":return new l.PinchEnd(s,n,i,r);case\"rotate\":return new l.Rotate(s,n,i,r,e.rotation);case\"rotatestart\":return new l.RotateStart(s,n,i,r);case\"rotateend\":return new l.RotateEnd(s,n,i,r);default:return}})();null!=s&&t.model.trigger_event(s)}_get_sxy(t){const{pageX:e,pageY:s}=function(t){return\"undefined\"!=typeof TouchEvent&&t instanceof TouchEvent}(t)?(0!=t.touches.length?t.touches:t.changedTouches)[0]:t,{left:n,top:i}=(0,o.offset)(this.hit_area);return{sx:e-n,sy:s-i}}_pan_event(t){return Object.assign(Object.assign({type:t.type},this._get_sxy(t.srcEvent)),{deltaX:t.deltaX,deltaY:t.deltaY,shiftKey:t.srcEvent.shiftKey,ctrlKey:t.srcEvent.ctrlKey})}_pinch_event(t){return Object.assign(Object.assign({type:t.type},this._get_sxy(t.srcEvent)),{scale:t.scale,shiftKey:t.srcEvent.shiftKey,ctrlKey:t.srcEvent.ctrlKey})}_rotate_event(t){return Object.assign(Object.assign({type:t.type},this._get_sxy(t.srcEvent)),{rotation:t.rotation,shiftKey:t.srcEvent.shiftKey,ctrlKey:t.srcEvent.ctrlKey})}_tap_event(t){return Object.assign(Object.assign({type:t.type},this._get_sxy(t.srcEvent)),{shiftKey:t.srcEvent.shiftKey,ctrlKey:t.srcEvent.ctrlKey})}_move_event(t){return Object.assign(Object.assign({type:t.type},this._get_sxy(t)),{shiftKey:t.shiftKey,ctrlKey:t.ctrlKey})}_scroll_event(t){return Object.assign(Object.assign({type:t.type},this._get_sxy(t)),{delta:(0,c.getDeltaY)(t),shiftKey:t.shiftKey,ctrlKey:t.ctrlKey})}_key_event(t){return{type:t.type,keyCode:t.keyCode}}_pan_start(t){const e=this._pan_event(t);e.sx-=t.deltaX,e.sy-=t.deltaY,this._trigger(this.pan_start,e,t.srcEvent)}_pan(t){this._trigger(this.pan,this._pan_event(t),t.srcEvent)}_pan_end(t){this._trigger(this.pan_end,this._pan_event(t),t.srcEvent)}_pinch_start(t){this._trigger(this.pinch_start,this._pinch_event(t),t.srcEvent)}_pinch(t){this._trigger(this.pinch,this._pinch_event(t),t.srcEvent)}_pinch_end(t){this._trigger(this.pinch_end,this._pinch_event(t),t.srcEvent)}_rotate_start(t){this._trigger(this.rotate_start,this._rotate_event(t),t.srcEvent)}_rotate(t){this._trigger(this.rotate,this._rotate_event(t),t.srcEvent)}_rotate_end(t){this._trigger(this.rotate_end,this._rotate_event(t),t.srcEvent)}_tap(t){this._trigger(this.tap,this._tap_event(t),t.srcEvent)}_doubletap(t){this._trigger(this.doubletap,this._tap_event(t),t.srcEvent)}_press(t){this._trigger(this.press,this._tap_event(t),t.srcEvent)}_pressup(t){this._trigger(this.pressup,this._tap_event(t),t.srcEvent)}_mouse_enter(t){this._trigger(this.move_enter,this._move_event(t),t)}_mouse_move(t){this._trigger(this.move,this._move_event(t),t)}_mouse_exit(t){this._trigger(this.move_exit,this._move_event(t),t)}_mouse_wheel(t){this._trigger(this.scroll,this._scroll_event(t),t)}_context_menu(t){!this.menu.is_open&&this.menu.can_open&&t.preventDefault();const{sx:e,sy:s}=this._get_sxy(t);this.menu.toggle({left:e,top:s})}_key_down(t){this.trigger(this.keydown,this._key_event(t))}_key_up(t){this.trigger(this.keyup,this._key_event(t))}}s.UIEventBus=g,g.__name__=\"UIEventBus\"},\n", + " function _(e,t,s,n,_){n();var a=this&&this.__decorate||function(e,t,s,n){var _,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,s):n;if(\"object\"==typeof Reflect&&\"function\"==typeof Reflect.decorate)o=Reflect.decorate(e,t,s,n);else for(var r=e.length-1;r>=0;r--)(_=e[r])&&(o=(a<3?_(o):a>3?_(t,s,o):_(t,s))||o);return a>3&&o&&Object.defineProperty(t,s,o),o};function o(e){return function(t){t.prototype.event_name=e}}class r{to_json(){const{event_name:e}=this;return{event_name:e,event_values:this._to_json()}}}s.BokehEvent=r,r.__name__=\"BokehEvent\";class c extends r{constructor(){super(...arguments),this.origin=null}_to_json(){return{model:this.origin}}}s.ModelEvent=c,c.__name__=\"ModelEvent\";let l=class extends r{_to_json(){return{}}};s.DocumentReady=l,l.__name__=\"DocumentReady\",s.DocumentReady=l=a([o(\"document_ready\")],l);let i=class extends c{};s.ButtonClick=i,i.__name__=\"ButtonClick\",s.ButtonClick=i=a([o(\"button_click\")],i);let u=class extends c{constructor(e){super(),this.item=e}_to_json(){const{item:e}=this;return Object.assign(Object.assign({},super._to_json()),{item:e})}};s.MenuItemClick=u,u.__name__=\"MenuItemClick\",s.MenuItemClick=u=a([o(\"menu_item_click\")],u);class d extends c{}s.UIEvent=d,d.__name__=\"UIEvent\";let m=class extends d{};s.LODStart=m,m.__name__=\"LODStart\",s.LODStart=m=a([o(\"lodstart\")],m);let h=class extends d{};s.LODEnd=h,h.__name__=\"LODEnd\",s.LODEnd=h=a([o(\"lodend\")],h);let p=class extends d{constructor(e,t,s,n){super(),this.x0=e,this.x1=t,this.y0=s,this.y1=n}_to_json(){const{x0:e,x1:t,y0:s,y1:n}=this;return Object.assign(Object.assign({},super._to_json()),{x0:e,x1:t,y0:s,y1:n})}};s.RangesUpdate=p,p.__name__=\"RangesUpdate\",s.RangesUpdate=p=a([o(\"rangesupdate\")],p);let x=class extends d{constructor(e,t){super(),this.geometry=e,this.final=t}_to_json(){const{geometry:e,final:t}=this;return Object.assign(Object.assign({},super._to_json()),{geometry:e,final:t})}};s.SelectionGeometry=x,x.__name__=\"SelectionGeometry\",s.SelectionGeometry=x=a([o(\"selectiongeometry\")],x);let j=class extends d{};s.Reset=j,j.__name__=\"Reset\",s.Reset=j=a([o(\"reset\")],j);class y extends d{constructor(e,t,s,n){super(),this.sx=e,this.sy=t,this.x=s,this.y=n}_to_json(){const{sx:e,sy:t,x:s,y:n}=this;return Object.assign(Object.assign({},super._to_json()),{sx:e,sy:t,x:s,y:n})}}s.PointEvent=y,y.__name__=\"PointEvent\";let g=class extends y{constructor(e,t,s,n,_,a){super(e,t,s,n),this.delta_x=_,this.delta_y=a}_to_json(){const{delta_x:e,delta_y:t}=this;return Object.assign(Object.assign({},super._to_json()),{delta_x:e,delta_y:t})}};s.Pan=g,g.__name__=\"Pan\",s.Pan=g=a([o(\"pan\")],g);let P=class extends y{constructor(e,t,s,n,_){super(e,t,s,n),this.scale=_}_to_json(){const{scale:e}=this;return Object.assign(Object.assign({},super._to_json()),{scale:e})}};s.Pinch=P,P.__name__=\"Pinch\",s.Pinch=P=a([o(\"pinch\")],P);let O=class extends y{constructor(e,t,s,n,_){super(e,t,s,n),this.rotation=_}_to_json(){const{rotation:e}=this;return Object.assign(Object.assign({},super._to_json()),{rotation:e})}};s.Rotate=O,O.__name__=\"Rotate\",s.Rotate=O=a([o(\"rotate\")],O);let b=class extends y{constructor(e,t,s,n,_){super(e,t,s,n),this.delta=_}_to_json(){const{delta:e}=this;return Object.assign(Object.assign({},super._to_json()),{delta:e})}};s.MouseWheel=b,b.__name__=\"MouseWheel\",s.MouseWheel=b=a([o(\"wheel\")],b);let v=class extends y{};s.MouseMove=v,v.__name__=\"MouseMove\",s.MouseMove=v=a([o(\"mousemove\")],v);let E=class extends y{};s.MouseEnter=E,E.__name__=\"MouseEnter\",s.MouseEnter=E=a([o(\"mouseenter\")],E);let R=class extends y{};s.MouseLeave=R,R.__name__=\"MouseLeave\",s.MouseLeave=R=a([o(\"mouseleave\")],R);let M=class extends y{};s.Tap=M,M.__name__=\"Tap\",s.Tap=M=a([o(\"tap\")],M);let f=class extends y{};s.DoubleTap=f,f.__name__=\"DoubleTap\",s.DoubleTap=f=a([o(\"doubletap\")],f);let S=class extends y{};s.Press=S,S.__name__=\"Press\",s.Press=S=a([o(\"press\")],S);let D=class extends y{};s.PressUp=D,D.__name__=\"PressUp\",s.PressUp=D=a([o(\"pressup\")],D);let k=class extends y{};s.PanStart=k,k.__name__=\"PanStart\",s.PanStart=k=a([o(\"panstart\")],k);let L=class extends y{};s.PanEnd=L,L.__name__=\"PanEnd\",s.PanEnd=L=a([o(\"panend\")],L);let U=class extends y{};s.PinchStart=U,U.__name__=\"PinchStart\",s.PinchStart=U=a([o(\"pinchstart\")],U);let C=class extends y{};s.PinchEnd=C,C.__name__=\"PinchEnd\",s.PinchEnd=C=a([o(\"pinchend\")],C);let T=class extends y{};s.RotateStart=T,T.__name__=\"RotateStart\",s.RotateStart=T=a([o(\"rotatestart\")],T);let B=class extends y{};s.RotateEnd=B,B.__name__=\"RotateEnd\",s.RotateEnd=B=a([o(\"rotateend\")],B)},\n", + " function _(t,e,n,l,o){\n", + " /*!\n", + " * jQuery Mousewheel 3.1.13\n", + " *\n", + " * Copyright jQuery Foundation and other contributors\n", + " * Released under the MIT license\n", + " * http://jquery.org/license\n", + " */\n", + " function u(t){const e=getComputedStyle(t).fontSize;return null!=e?parseInt(e,10):null}l(),n.getDeltaY=function(t){let e=-t.deltaY;if(t.target instanceof HTMLElement)switch(t.deltaMode){case t.DOM_DELTA_LINE:e*=(n=t.target,null!==(a=null!==(o=u(null!==(l=n.offsetParent)&&void 0!==l?l:document.body))&&void 0!==o?o:u(n))&&void 0!==a?a:16);break;case t.DOM_DELTA_PAGE:e*=function(t){return t.clientHeight}(t.target)}var n,l,o,a;return e}},\n", + " function _(m,o,n,r,a){r(),a(\"Expression\",m(254).Expression),a(\"CustomJSExpr\",m(255).CustomJSExpr),a(\"Stack\",m(256).Stack),a(\"CumSum\",m(257).CumSum),a(\"ScalarExpression\",m(254).ScalarExpression),a(\"Minimum\",m(258).Minimum),a(\"Maximum\",m(259).Maximum);var s=m(260);a(\"XComponent\",s.XComponent),a(\"YComponent\",s.YComponent),a(\"PolarTransform\",m(261).PolarTransform)},\n", + " function _(e,t,s,i,r){i();const n=e(53);class _ extends n.Model{constructor(e){super(e)}initialize(){super.initialize(),this._result=new Map}v_compute(e){let t=this._result.get(e);return(void 0===t||e.changed_for(this))&&(t=this._v_compute(e),this._result.set(e,t)),t}}s.Expression=_,_.__name__=\"Expression\";class o extends n.Model{constructor(e){super(e)}initialize(){super.initialize(),this._result=new Map}compute(e){let t=this._result.get(e);return(void 0===t||e.changed_for(this))&&(t=this._compute(e),this._result.set(e,t)),t}}s.ScalarExpression=o,o.__name__=\"ScalarExpression\"},\n", + " function _(e,s,t,n,r){var a;n();const o=e(14),c=e(254),i=e(24),u=e(9),l=e(13),h=e(34),g=e(8);class p extends c.Expression{constructor(e){super(e)}connect_signals(){super.connect_signals();for(const e of(0,l.values)(this.args))e instanceof o.HasProps&&e.change.connect((()=>{this._result.clear(),this.change.emit()}))}get names(){return(0,l.keys)(this.args)}get values(){return(0,l.values)(this.args)}get func(){const e=(0,h.use_strict)(this.code);return new i.GeneratorFunction(...this.names,e)}_v_compute(e){const s=this.func.apply(e,this.values);let t=s.next();if(t.done&&void 0!==t.value){const{value:s}=t;return(0,g.isArray)(s)||(0,g.isTypedArray)(s)?s:(0,g.isIterable)(s)?[...s]:(0,u.repeat)(s,e.length)}{const e=[];do{e.push(t.value),t=s.next()}while(!t.done);return e}}}t.CustomJSExpr=p,a=p,p.__name__=\"CustomJSExpr\",a.define((({Unknown:e,String:s,Dict:t})=>({args:[t(e),{}],code:[s,\"\"]})))},\n", + " function _(t,n,e,o,r){var s;o();const a=t(254);class c extends a.Expression{constructor(t){super(t)}_v_compute(t){var n;const e=null!==(n=t.get_length())&&void 0!==n?n:0,o=new Float64Array(e);for(const n of this.fields){const r=t.data[n];if(null!=r){const t=Math.min(e,r.length);for(let n=0;n({fields:[n(t),[]]})))},\n", + " function _(e,n,t,o,r){var i;o();const l=e(254);class u extends l.Expression{constructor(e){super(e)}_v_compute(e){var n;const t=new Float64Array(null!==(n=e.get_length())&&void 0!==n?n:0),o=e.data[this.field],r=this.include_zero?1:0;t[0]=this.include_zero?0:o[0];for(let e=1;e({field:[n],include_zero:[e,!1]})))},\n", + " function _(i,n,l,t,e){var a;t();const u=i(254),r=i(9);class s extends u.ScalarExpression{constructor(i){super(i)}_compute(i){var n,l;const t=null!==(n=i.data[this.field])&&void 0!==n?n:[];return Math.min(null!==(l=this.initial)&&void 0!==l?l:1/0,(0,r.min)(t))}}l.Minimum=s,a=s,s.__name__=\"Minimum\",a.define((({Number:i,String:n,Nullable:l})=>({field:[n],initial:[l(i),null]})))},\n", + " function _(i,a,n,l,t){var e;l();const u=i(254),r=i(9);class s extends u.ScalarExpression{constructor(i){super(i)}_compute(i){var a,n;const l=null!==(a=i.data[this.field])&&void 0!==a?a:[];return Math.max(null!==(n=this.initial)&&void 0!==n?n:-1/0,(0,r.max)(l))}}n.Maximum=s,e=s,s.__name__=\"Maximum\",e.define((({Number:i,String:a,Nullable:n})=>({field:[a],initial:[n(i),null]})))},\n", + " function _(n,e,t,o,r){var s;o();const _=n(254);class m extends _.Expression{constructor(n){super(n)}get x(){return new c({transform:this})}get y(){return new u({transform:this})}}t.CoordinateTransform=m,m.__name__=\"CoordinateTransform\";class a extends _.Expression{constructor(n){super(n)}}t.XYComponent=a,s=a,a.__name__=\"XYComponent\",s.define((({Ref:n})=>({transform:[n(m)]})));class c extends a{constructor(n){super(n)}_v_compute(n){return this.transform.v_compute(n).x}}t.XComponent=c,c.__name__=\"XComponent\";class u extends a{constructor(n){super(n)}_v_compute(n){return this.transform.v_compute(n).y}}t.YComponent=u,u.__name__=\"YComponent\"},\n", + " function _(r,t,n,e,o){e();const i=r(1);var a;const s=r(260),c=r(20),l=(0,i.__importStar)(r(18));class d extends s.CoordinateTransform{constructor(r){super(r)}_v_compute(r){const t=this.properties.radius.uniform(r),n=this.properties.angle.uniform(r),e=\"anticlock\"==this.direction?-1:1,o=Math.min(t.length,n.length),i=new Float64Array(o),a=new Float64Array(o);for(let r=0;r({radius:[l.DistanceSpec,{field:\"radius\"}],angle:[l.AngleSpec,{field:\"angle\"}],direction:[c.Direction,\"anticlock\"]})))},\n", + " function _(e,t,l,r,i){r(),i(\"BooleanFilter\",e(263).BooleanFilter),i(\"CustomJSFilter\",e(264).CustomJSFilter),i(\"Filter\",e(191).Filter),i(\"GroupFilter\",e(265).GroupFilter),i(\"IndexFilter\",e(266).IndexFilter)},\n", + " function _(e,n,l,o,s){var t;o();const a=e(191),r=e(24);class c extends a.Filter{constructor(e){super(e)}compute_indices(e){const n=e.length,{booleans:l}=this;return null==l?r.Indices.all_set(n):r.Indices.from_booleans(n,l)}}l.BooleanFilter=c,t=c,c.__name__=\"BooleanFilter\",t.define((({Boolean:e,Array:n,Nullable:l})=>({booleans:[l(n(e)),null]})))},\n", + " function _(e,n,r,s,t){var i;s();const o=e(191),c=e(24),u=e(13),a=e(8),l=e(34);class f extends o.Filter{constructor(e){super(e)}get names(){return(0,u.keys)(this.args)}get values(){return(0,u.values)(this.args)}get func(){const e=(0,l.use_strict)(this.code);return new Function(...this.names,\"source\",e)}compute_indices(e){const n=e.length,r=this.func(...this.values,e);if(null==r)return c.Indices.all_set(n);if((0,a.isArrayOf)(r,a.isInteger))return c.Indices.from_indices(n,r);if((0,a.isArrayOf)(r,a.isBoolean))return c.Indices.from_booleans(n,r);throw new Error(`expect an array of integers or booleans, or null, got ${r}`)}}r.CustomJSFilter=f,i=f,f.__name__=\"CustomJSFilter\",i.define((({Unknown:e,String:n,Dict:r})=>({args:[r(e),{}],code:[n,\"\"]})))},\n", + " function _(n,e,t,o,r){var u;o();const s=n(191),c=n(24),i=n(19);class l extends s.Filter{constructor(n){super(n)}compute_indices(n){const e=n.get_column(this.column_name);if(null==e)return i.logger.warn(`${this}: groupby column '${this.column_name}' not found in the data source`),new c.Indices(n.length,1);{const t=new c.Indices(n.length);for(let n=0;n({column_name:[n],group:[n]})))},\n", + " function _(e,n,i,s,t){var l;s();const c=e(191),r=e(24);class d extends c.Filter{constructor(e){super(e)}compute_indices(e){const n=e.length,{indices:i}=this;return null==i?r.Indices.all_set(n):r.Indices.from_indices(n,i)}}i.IndexFilter=d,l=d,d.__name__=\"IndexFilter\",l.define((({Int:e,Array:n,Nullable:i})=>({indices:[i(n(e)),null]})))},\n", + " function _(e,a,l,i,t){i(),t(\"AnnularWedge\",e(268).AnnularWedge),t(\"Annulus\",e(269).Annulus),t(\"Arc\",e(270).Arc),t(\"Bezier\",e(271).Bezier),t(\"Circle\",e(272).Circle),t(\"Ellipse\",e(273).Ellipse),t(\"EllipseOval\",e(274).EllipseOval),t(\"Glyph\",e(179).Glyph),t(\"HArea\",e(187).HArea),t(\"HBar\",e(276).HBar),t(\"HexTile\",e(278).HexTile),t(\"Image\",e(279).Image),t(\"ImageRGBA\",e(281).ImageRGBA),t(\"ImageURL\",e(282).ImageURL),t(\"Line\",e(177).Line),t(\"MultiLine\",e(283).MultiLine),t(\"MultiPolygons\",e(284).MultiPolygons),t(\"Oval\",e(285).Oval),t(\"Patch\",e(186).Patch),t(\"Patches\",e(286).Patches),t(\"Quad\",e(287).Quad),t(\"Quadratic\",e(288).Quadratic),t(\"Ray\",e(289).Ray),t(\"Rect\",e(290).Rect),t(\"Scatter\",e(291).Scatter),t(\"Segment\",e(294).Segment),t(\"Spline\",e(295).Spline),t(\"Step\",e(297).Step),t(\"Text\",e(298).Text),t(\"VArea\",e(189).VArea),t(\"VBar\",e(299).VBar),t(\"Wedge\",e(300).Wedge)},\n", + " function _(e,s,t,i,r){i();const n=e(1);var a;const _=e(178),o=e(184),d=e(48),u=e(24),h=e(20),c=(0,n.__importStar)(e(18)),l=e(10),g=e(72),p=e(12);class x extends _.XYGlyphView{_map_data(){\"data\"==this.model.properties.inner_radius.units?this.sinner_radius=this.sdist(this.renderer.xscale,this._x,this.inner_radius):this.sinner_radius=(0,u.to_screen)(this.inner_radius),\"data\"==this.model.properties.outer_radius.units?this.souter_radius=this.sdist(this.renderer.xscale,this._x,this.outer_radius):this.souter_radius=(0,u.to_screen)(this.outer_radius),this.max_souter_radius=(0,p.max)(this.souter_radius)}_render(e,s,t){const{sx:i,sy:r,start_angle:n,end_angle:a,sinner_radius:_,souter_radius:o}=null!=t?t:this,d=\"anticlock\"==this.model.direction;for(const t of s){const s=i[t],u=r[t],h=_[t],c=o[t],l=n.get(t),g=a.get(t);if(!isFinite(s+u+h+c+l+g))continue;const p=g-l;e.translate(s,u),e.rotate(l),e.beginPath(),e.moveTo(c,0),e.arc(0,0,c,0,p,d),e.rotate(p),e.lineTo(h,0),e.arc(0,0,h,0,-p,!d),e.closePath(),e.rotate(-p-l),e.translate(-s,-u),this.visuals.fill.apply(e,t),this.visuals.hatch.apply(e,t),this.visuals.line.apply(e,t)}}_hit_point(e){const{sx:s,sy:t}=e,i=this.renderer.xscale.invert(s),r=this.renderer.yscale.invert(t),n=s-this.max_souter_radius,a=s+this.max_souter_radius,[_,o]=this.renderer.xscale.r_invert(n,a),d=t-this.max_souter_radius,u=t+this.max_souter_radius,[h,c]=this.renderer.yscale.r_invert(d,u),p=[];for(const e of this.index.indices({x0:_,x1:o,y0:h,y1:c})){const s=this.souter_radius[e]**2,t=this.sinner_radius[e]**2,[n,a]=this.renderer.xscale.r_compute(i,this._x[e]),[_,o]=this.renderer.yscale.r_compute(r,this._y[e]),d=(n-a)**2+(_-o)**2;d<=s&&d>=t&&p.push(e)}const x=\"anticlock\"==this.model.direction,m=[];for(const e of p){const i=Math.atan2(t-this.sy[e],s-this.sx[e]);(0,l.angle_between)(-i,-this.start_angle.get(e),-this.end_angle.get(e),x)&&m.push(e)}return new g.Selection({indices:m})}draw_legend_for_index(e,s,t){(0,o.generic_area_vector_legend)(this.visuals,e,s,t)}scenterxy(e){const s=(this.sinner_radius[e]+this.souter_radius[e])/2,t=(this.start_angle.get(e)+this.end_angle.get(e))/2;return[this.sx[e]+s*Math.cos(t),this.sy[e]+s*Math.sin(t)]}}t.AnnularWedgeView=x,x.__name__=\"AnnularWedgeView\";class m extends _.XYGlyph{constructor(e){super(e)}}t.AnnularWedge=m,a=m,m.__name__=\"AnnularWedge\",a.prototype.default_view=x,a.mixins([d.LineVector,d.FillVector,d.HatchVector]),a.define((({})=>({direction:[h.Direction,\"anticlock\"],inner_radius:[c.DistanceSpec,{field:\"inner_radius\"}],outer_radius:[c.DistanceSpec,{field:\"outer_radius\"}],start_angle:[c.AngleSpec,{field:\"start_angle\"}],end_angle:[c.AngleSpec,{field:\"end_angle\"}]})))},\n", + " function _(s,e,i,r,t){r();const n=s(1);var a;const u=s(178),o=s(24),_=s(48),d=(0,n.__importStar)(s(18)),h=s(27),c=s(72);class l extends u.XYGlyphView{_map_data(){\"data\"==this.model.properties.inner_radius.units?this.sinner_radius=this.sdist(this.renderer.xscale,this._x,this.inner_radius):this.sinner_radius=(0,o.to_screen)(this.inner_radius),\"data\"==this.model.properties.outer_radius.units?this.souter_radius=this.sdist(this.renderer.xscale,this._x,this.outer_radius):this.souter_radius=(0,o.to_screen)(this.outer_radius)}_render(s,e,i){const{sx:r,sy:t,sinner_radius:n,souter_radius:a}=null!=i?i:this;for(const i of e){const e=r[i],u=t[i],o=n[i],_=a[i];if(isFinite(e+u+o+_)){if(s.beginPath(),h.is_ie)for(const i of[!1,!0])s.moveTo(e,u),s.arc(e,u,o,0,Math.PI,i),s.moveTo(e+_,u),s.arc(e,u,_,Math.PI,0,!i);else s.arc(e,u,o,0,2*Math.PI,!0),s.moveTo(e+_,u),s.arc(e,u,_,2*Math.PI,0,!1);this.visuals.fill.apply(s,i),this.visuals.hatch.apply(s,i),this.visuals.line.apply(s,i)}}}_hit_point(s){const{sx:e,sy:i}=s,r=this.renderer.xscale.invert(e),t=this.renderer.yscale.invert(i);let n,a,u,o;if(\"data\"==this.model.properties.outer_radius.units)n=r-this.max_outer_radius,u=r+this.max_outer_radius,a=t-this.max_outer_radius,o=t+this.max_outer_radius;else{const s=e-this.max_outer_radius,r=e+this.max_outer_radius;[n,u]=this.renderer.xscale.r_invert(s,r);const t=i-this.max_outer_radius,_=i+this.max_outer_radius;[a,o]=this.renderer.yscale.r_invert(t,_)}const _=[];for(const s of this.index.indices({x0:n,x1:u,y0:a,y1:o})){const e=this.souter_radius[s]**2,i=this.sinner_radius[s]**2,[n,a]=this.renderer.xscale.r_compute(r,this._x[s]),[u,o]=this.renderer.yscale.r_compute(t,this._y[s]),d=(n-a)**2+(u-o)**2;d<=e&&d>=i&&_.push(s)}return new c.Selection({indices:_})}draw_legend_for_index(s,{x0:e,y0:i,x1:r,y1:t},n){const a=n+1,u=new Array(a);u[n]=(e+r)/2;const o=new Array(a);o[n]=(i+t)/2;const _=.5*Math.min(Math.abs(r-e),Math.abs(t-i)),d=new Array(a);d[n]=.4*_;const h=new Array(a);h[n]=.8*_,this._render(s,[n],{sx:u,sy:o,sinner_radius:d,souter_radius:h})}}i.AnnulusView=l,l.__name__=\"AnnulusView\";class x extends u.XYGlyph{constructor(s){super(s)}}i.Annulus=x,a=x,x.__name__=\"Annulus\",a.prototype.default_view=l,a.mixins([_.LineVector,_.FillVector,_.HatchVector]),a.define((({})=>({inner_radius:[d.DistanceSpec,{field:\"inner_radius\"}],outer_radius:[d.DistanceSpec,{field:\"outer_radius\"}]})))},\n", + " function _(e,i,s,t,n){t();const r=e(1);var a;const c=e(178),d=e(184),l=e(48),_=e(24),o=e(20),u=(0,r.__importStar)(e(18));class h extends c.XYGlyphView{_map_data(){\"data\"==this.model.properties.radius.units?this.sradius=this.sdist(this.renderer.xscale,this._x,this.radius):this.sradius=(0,_.to_screen)(this.radius)}_render(e,i,s){if(this.visuals.line.doit){const{sx:t,sy:n,sradius:r,start_angle:a,end_angle:c}=null!=s?s:this,d=\"anticlock\"==this.model.direction;for(const s of i){const i=t[s],l=n[s],_=r[s],o=a.get(s),u=c.get(s);isFinite(i+l+_+o+u)&&(e.beginPath(),e.arc(i,l,_,o,u,d),this.visuals.line.set_vectorize(e,s),e.stroke())}}}draw_legend_for_index(e,i,s){(0,d.generic_line_vector_legend)(this.visuals,e,i,s)}}s.ArcView=h,h.__name__=\"ArcView\";class g extends c.XYGlyph{constructor(e){super(e)}}s.Arc=g,a=g,g.__name__=\"Arc\",a.prototype.default_view=h,a.mixins(l.LineVector),a.define((({})=>({direction:[o.Direction,\"anticlock\"],radius:[u.DistanceSpec,{field:\"radius\"}],start_angle:[u.AngleSpec,{field:\"start_angle\"}],end_angle:[u.AngleSpec,{field:\"end_angle\"}]})))},\n", + " function _(e,t,i,n,s){n();const o=e(1);var c;const r=e(48),a=e(179),_=e(184),d=e(78),l=(0,o.__importStar)(e(18));function x(e,t,i,n,s,o,c,r){const a=[],_=[[],[]];for(let _=0;_<=2;_++){let d,l,x;if(0===_?(l=6*e-12*i+6*s,d=-3*e+9*i-9*s+3*c,x=3*i-3*e):(l=6*t-12*n+6*o,d=-3*t+9*n-9*o+3*r,x=3*n-3*t),Math.abs(d)<1e-12){if(Math.abs(l)<1e-12)continue;const e=-x/l;0({x0:[l.XCoordinateSpec,{field:\"x0\"}],y0:[l.YCoordinateSpec,{field:\"y0\"}],x1:[l.XCoordinateSpec,{field:\"x1\"}],y1:[l.YCoordinateSpec,{field:\"y1\"}],cx0:[l.XCoordinateSpec,{field:\"cx0\"}],cy0:[l.YCoordinateSpec,{field:\"cy0\"}],cx1:[l.XCoordinateSpec,{field:\"cx1\"}],cy1:[l.YCoordinateSpec,{field:\"cy1\"}]}))),c.mixins(r.LineVector)},\n", + " function _(s,i,e,t,r){t();const a=s(1);var n;const h=s(178),d=s(48),l=s(24),_=s(20),c=(0,a.__importStar)(s(185)),u=(0,a.__importStar)(s(18)),o=s(9),x=s(12),m=s(72);class p extends h.XYGlyphView{async lazy_initialize(){await super.lazy_initialize();const{webgl:i}=this.renderer.plot_view.canvas_view;if(null!=i&&i.regl_wrapper.has_webgl){const{CircleGL:e}=await Promise.resolve().then((()=>(0,a.__importStar)(s(423))));this.glglyph=new e(i.regl_wrapper,this)}}get use_radius(){return!(this.radius.is_Scalar()&&isNaN(this.radius.value))}_set_data(s){super._set_data(s);const i=(()=>{if(this.use_radius)return 2*this.max_radius;{const{size:s}=this;return s.is_Scalar()?s.value:(0,x.max)(s.array)}})();this._configure(\"max_size\",{value:i})}_map_data(){if(this.use_radius)if(\"data\"==this.model.properties.radius.units)switch(this.model.radius_dimension){case\"x\":this.sradius=this.sdist(this.renderer.xscale,this._x,this.radius);break;case\"y\":this.sradius=this.sdist(this.renderer.yscale,this._y,this.radius);break;case\"max\":{const s=this.sdist(this.renderer.xscale,this._x,this.radius),i=this.sdist(this.renderer.yscale,this._y,this.radius);this.sradius=(0,x.map)(s,((s,e)=>Math.max(s,i[e])));break}case\"min\":{const s=this.sdist(this.renderer.xscale,this._x,this.radius),i=this.sdist(this.renderer.yscale,this._y,this.radius);this.sradius=(0,x.map)(s,((s,e)=>Math.min(s,i[e])));break}}else this.sradius=(0,l.to_screen)(this.radius);else{const s=l.ScreenArray.from(this.size);this.sradius=(0,x.map)(s,(s=>s/2))}}_mask_data(){const{frame:s}=this.renderer.plot_view,i=s.x_target,e=s.y_target;let t,r;return this.use_radius&&\"data\"==this.model.properties.radius.units?(t=i.map((s=>this.renderer.xscale.invert(s))).widen(this.max_radius),r=e.map((s=>this.renderer.yscale.invert(s))).widen(this.max_radius)):(t=i.widen(this.max_size).map((s=>this.renderer.xscale.invert(s))),r=e.widen(this.max_size).map((s=>this.renderer.yscale.invert(s)))),this.index.indices({x0:t.start,x1:t.end,y0:r.start,y1:r.end})}_render(s,i,e){const{sx:t,sy:r,sradius:a}=null!=e?e:this;for(const e of i){const i=t[e],n=r[e],h=a[e];isFinite(i+n+h)&&(s.beginPath(),s.arc(i,n,h,0,2*Math.PI,!1),this.visuals.fill.apply(s,e),this.visuals.hatch.apply(s,e),this.visuals.line.apply(s,e))}}_hit_point(s){const{sx:i,sy:e}=s,t=this.renderer.xscale.invert(i),r=this.renderer.yscale.invert(e),{hit_dilation:a}=this.model;let n,h,d,l;if(this.use_radius&&\"data\"==this.model.properties.radius.units)n=t-this.max_radius*a,h=t+this.max_radius*a,d=r-this.max_radius*a,l=r+this.max_radius*a;else{const s=i-this.max_size*a,t=i+this.max_size*a;[n,h]=this.renderer.xscale.r_invert(s,t);const r=e-this.max_size*a,_=e+this.max_size*a;[d,l]=this.renderer.yscale.r_invert(r,_)}const _=this.index.indices({x0:n,x1:h,y0:d,y1:l}),c=[];if(this.use_radius&&\"data\"==this.model.properties.radius.units)for(const s of _){const i=(this.sradius[s]*a)**2,[e,n]=this.renderer.xscale.r_compute(t,this._x[s]),[h,d]=this.renderer.yscale.r_compute(r,this._y[s]);(e-n)**2+(h-d)**2<=i&&c.push(s)}else for(const s of _){const t=(this.sradius[s]*a)**2;(this.sx[s]-i)**2+(this.sy[s]-e)**2<=t&&c.push(s)}return new m.Selection({indices:c})}_hit_span(s){const{sx:i,sy:e}=s,t=this.bounds();let r,a,n,h;if(\"h\"==s.direction){let s,e;if(n=t.y0,h=t.y1,this.use_radius&&\"data\"==this.model.properties.radius.units)s=i-this.max_radius,e=i+this.max_radius,[r,a]=this.renderer.xscale.r_invert(s,e);else{const t=this.max_size/2;s=i-t,e=i+t,[r,a]=this.renderer.xscale.r_invert(s,e)}}else{let s,i;if(r=t.x0,a=t.x1,this.use_radius&&\"data\"==this.model.properties.radius.units)s=e-this.max_radius,i=e+this.max_radius,[n,h]=this.renderer.yscale.r_invert(s,i);else{const t=this.max_size/2;s=e-t,i=e+t,[n,h]=this.renderer.yscale.r_invert(s,i)}}const d=[...this.index.indices({x0:r,x1:a,y0:n,y1:h})];return new m.Selection({indices:d})}_hit_rect(s){const{sx0:i,sx1:e,sy0:t,sy1:r}=s,[a,n]=this.renderer.xscale.r_invert(i,e),[h,d]=this.renderer.yscale.r_invert(t,r),l=[...this.index.indices({x0:a,x1:n,y0:h,y1:d})];return new m.Selection({indices:l})}_hit_poly(s){const{sx:i,sy:e}=s,t=(0,o.range)(0,this.sx.length),r=[];for(let s=0,a=t.length;s({angle:[u.AngleSpec,0],size:[u.ScreenSizeSpec,{value:4}],radius:[u.NullDistanceSpec,null],radius_dimension:[_.RadiusDimension,\"x\"],hit_dilation:[s,1]})))},\n", + " function _(e,l,s,i,_){var p;i();const t=e(274);class a extends t.EllipseOvalView{}s.EllipseView=a,a.__name__=\"EllipseView\";class n extends t.EllipseOval{constructor(e){super(e)}}s.Ellipse=n,p=n,n.__name__=\"Ellipse\",p.prototype.default_view=a},\n", + " function _(t,s,e,i,h){i();const n=t(1),r=t(275),a=(0,n.__importStar)(t(185)),l=t(24),_=t(72),o=(0,n.__importStar)(t(18));class d extends r.CenterRotatableView{_map_data(){\"data\"==this.model.properties.width.units?this.sw=this.sdist(this.renderer.xscale,this._x,this.width,\"center\"):this.sw=(0,l.to_screen)(this.width),\"data\"==this.model.properties.height.units?this.sh=this.sdist(this.renderer.yscale,this._y,this.height,\"center\"):this.sh=(0,l.to_screen)(this.height)}_render(t,s,e){const{sx:i,sy:h,sw:n,sh:r,angle:a}=null!=e?e:this;for(const e of s){const s=i[e],l=h[e],_=n[e],o=r[e],d=a.get(e);isFinite(s+l+_+o+d)&&(t.beginPath(),t.ellipse(s,l,_/2,o/2,d,0,2*Math.PI),this.visuals.fill.apply(t,e),this.visuals.hatch.apply(t,e),this.visuals.line.apply(t,e))}}_hit_point(t){let s,e,i,h,n,r,l,o,d;const{sx:c,sy:p}=t,w=this.renderer.xscale.invert(c),x=this.renderer.yscale.invert(p);\"data\"==this.model.properties.width.units?(s=w-this.max_width,e=w+this.max_width):(r=c-this.max_width,l=c+this.max_width,[s,e]=this.renderer.xscale.r_invert(r,l)),\"data\"==this.model.properties.height.units?(i=x-this.max_height,h=x+this.max_height):(o=p-this.max_height,d=p+this.max_height,[i,h]=this.renderer.yscale.r_invert(o,d));const m=this.index.indices({x0:s,x1:e,y0:i,y1:h}),y=[];for(const t of m)n=a.point_in_ellipse(c,p,this.angle.get(t),this.sh[t]/2,this.sw[t]/2,this.sx[t],this.sy[t]),n&&y.push(t);return new _.Selection({indices:y})}draw_legend_for_index(t,{x0:s,y0:e,x1:i,y1:h},n){const r=n+1,a=new Array(r);a[n]=(s+i)/2;const l=new Array(r);l[n]=(e+h)/2;const _=this.sw[n]/this.sh[n],d=.8*Math.min(Math.abs(i-s),Math.abs(h-e)),c=new Array(r),p=new Array(r);_>1?(c[n]=d,p[n]=d/_):(c[n]=d*_,p[n]=d);const w=new o.UniformScalar(0,r);this._render(t,[n],{sx:a,sy:l,sw:c,sh:p,angle:w})}}e.EllipseOvalView=d,d.__name__=\"EllipseOvalView\";class c extends r.CenterRotatable{constructor(t){super(t)}}e.EllipseOval=c,c.__name__=\"EllipseOval\"},\n", + " function _(e,t,i,a,n){a();const s=e(1);var r;const h=e(178),o=e(48),_=(0,s.__importStar)(e(18));class c extends h.XYGlyphView{get max_w2(){return\"data\"==this.model.properties.width.units?this.max_width/2:0}get max_h2(){return\"data\"==this.model.properties.height.units?this.max_height/2:0}_bounds({x0:e,x1:t,y0:i,y1:a}){const{max_w2:n,max_h2:s}=this;return{x0:e-n,x1:t+n,y0:i-s,y1:a+s}}}i.CenterRotatableView=c,c.__name__=\"CenterRotatableView\";class l extends h.XYGlyph{constructor(e){super(e)}}i.CenterRotatable=l,r=l,l.__name__=\"CenterRotatable\",r.mixins([o.LineVector,o.FillVector,o.HatchVector]),r.define((({})=>({angle:[_.AngleSpec,0],width:[_.DistanceSpec,{field:\"width\"}],height:[_.DistanceSpec,{field:\"height\"}]})))},\n", + " function _(t,e,s,i,r){i();const h=t(1);var a;const n=t(277),_=t(24),o=(0,h.__importStar)(t(18));class l extends n.BoxView{async lazy_initialize(){await super.lazy_initialize();const{webgl:e}=this.renderer.plot_view.canvas_view;if(null!=e&&e.regl_wrapper.has_webgl){const{LRTBGL:s}=await Promise.resolve().then((()=>(0,h.__importStar)(t(427))));this.glglyph=new s(e.regl_wrapper,this)}}scenterxy(t){return[(this.sleft[t]+this.sright[t])/2,this.sy[t]]}_lrtb(t){const e=this._left[t],s=this._right[t],i=this._y[t],r=this.height.get(t)/2;return[Math.min(e,s),Math.max(e,s),i+r,i-r]}_map_data(){this.sy=this.renderer.yscale.v_compute(this._y),this.sh=this.sdist(this.renderer.yscale,this._y,this.height,\"center\"),this.sleft=this.renderer.xscale.v_compute(this._left),this.sright=this.renderer.xscale.v_compute(this._right);const t=this.sy.length;this.stop=new _.ScreenArray(t),this.sbottom=new _.ScreenArray(t);for(let e=0;e({left:[o.XCoordinateSpec,{value:0}],y:[o.YCoordinateSpec,{field:\"y\"}],height:[o.NumberSpec,{value:1}],right:[o.XCoordinateSpec,{field:\"right\"}]})))},\n", + " function _(t,e,s,r,i){var n;r();const a=t(48),h=t(179),o=t(184),c=t(72);class _ extends h.GlyphView{get_anchor_point(t,e,s){const r=Math.min(this.sleft[e],this.sright[e]),i=Math.max(this.sright[e],this.sleft[e]),n=Math.min(this.stop[e],this.sbottom[e]),a=Math.max(this.sbottom[e],this.stop[e]);switch(t){case\"top_left\":return{x:r,y:n};case\"top\":case\"top_center\":return{x:(r+i)/2,y:n};case\"top_right\":return{x:i,y:n};case\"bottom_left\":return{x:r,y:a};case\"bottom\":case\"bottom_center\":return{x:(r+i)/2,y:a};case\"bottom_right\":return{x:i,y:a};case\"left\":case\"center_left\":return{x:r,y:(n+a)/2};case\"center\":case\"center_center\":return{x:(r+i)/2,y:(n+a)/2};case\"right\":case\"center_right\":return{x:i,y:(n+a)/2}}}_index_data(t){const{min:e,max:s}=Math,{data_size:r}=this;for(let i=0;i(0,n.__importStar)(e(425))));this.glglyph=new s(t.regl_wrapper,this)}}scenterxy(e){return[this.sx[e],this.sy[e]]}_set_data(){const{orientation:e,size:t,aspect_scale:s}=this.model,{q:i,r}=this,n=this.q.length;this._x=new Float64Array(n),this._y=new Float64Array(n);const{_x:a,_y:l}=this,o=Math.sqrt(3);if(\"pointytop\"==e)for(let e=0;e({r:[c.NumberSpec,{field:\"r\"}],q:[c.NumberSpec,{field:\"q\"}],scale:[c.NumberSpec,1],size:[e,1],aspect_scale:[e,1],orientation:[_.HexTileOrientation,\"pointytop\"]}))),a.override({line_color:null})},\n", + " function _(e,a,t,_,r){var n;_();const s=e(280),o=e(173),i=e(201);class p extends s.ImageBaseView{connect_signals(){super.connect_signals(),this.connect(this.model.color_mapper.change,(()=>this._update_image()))}_update_image(){null!=this.image_data&&(this._set_data(null),this.renderer.request_render())}_flat_img_to_buf8(e){return this.model.color_mapper.rgba_mapper.v_compute(e)}}t.ImageView=p,p.__name__=\"ImageView\";class m extends s.ImageBase{constructor(e){super(e)}}t.Image=m,n=m,m.__name__=\"Image\",n.prototype.default_view=p,n.define((({Ref:e})=>({color_mapper:[e(o.ColorMapper),()=>new i.LinearColorMapper({palette:[\"#000000\",\"#252525\",\"#525252\",\"#737373\",\"#969696\",\"#bdbdbd\",\"#d9d9d9\",\"#f0f0f0\",\"#ffffff\"]})]})))},\n", + " function _(e,t,i,s,a){s();const h=e(1);var n;const r=e(178),_=e(24),d=(0,h.__importStar)(e(18)),l=e(72),g=e(9),o=e(29),c=e(11);class m extends r.XYGlyphView{connect_signals(){super.connect_signals(),this.connect(this.model.properties.global_alpha.change,(()=>this.renderer.request_render()))}_render(e,t,i){const{image_data:s,sx:a,sy:h,sw:n,sh:r,global_alpha:_}=null!=i?i:this,d=e.getImageSmoothingEnabled();e.setImageSmoothingEnabled(!1);const l=_.is_Scalar();l&&(e.globalAlpha=_.value);for(const i of t){const t=s[i],_=a[i],d=h[i],g=n[i],o=r[i],c=this.global_alpha.get(i);if(null==t||!isFinite(_+d+g+o+c))continue;l||(e.globalAlpha=c);const m=d;e.translate(0,m),e.scale(1,-1),e.translate(0,-m),e.drawImage(t,0|_,0|d,g,o),e.translate(0,m),e.scale(1,-1),e.translate(0,-m)}e.setImageSmoothingEnabled(d)}_set_data(e){this._set_width_heigh_data();for(let t=0,i=this.image.length;t({image:[d.NDArraySpec,{field:\"image\"}],dw:[d.DistanceSpec,{field:\"dw\"}],dh:[d.DistanceSpec,{field:\"dh\"}],global_alpha:[d.NumberSpec,{value:1}],dilate:[e,!1]})))},\n", + " function _(e,a,t,r,_){var n;r();const s=e(280),m=e(8);class i extends s.ImageBaseView{_flat_img_to_buf8(e){let a;return a=(0,m.isArray)(e)?new Uint32Array(e):e,new Uint8ClampedArray(a.buffer)}}t.ImageRGBAView=i,i.__name__=\"ImageRGBAView\";class g extends s.ImageBase{constructor(e){super(e)}}t.ImageRGBA=g,n=g,g.__name__=\"ImageRGBA\",n.prototype.default_view=i},\n", + " function _(e,t,s,r,a){r();const i=e(1);var n;const o=e(178),c=e(24),_=e(20),h=(0,i.__importStar)(e(18)),l=e(12),d=e(136);class m extends o.XYGlyphView{constructor(){super(...arguments),this._images_rendered=!1,this._set_data_iteration=0}connect_signals(){super.connect_signals(),this.connect(this.model.properties.global_alpha.change,(()=>this.renderer.request_render()))}_index_data(e){const{data_size:t}=this;for(let s=0;s{this._set_data_iteration==r&&(this.image[a]=e,this.renderer.request_render())},attempts:t+1,timeout:s})}const a=\"data\"==this.model.properties.w.units,i=\"data\"==this.model.properties.h.units,n=this._x.length,o=new c.ScreenArray(a?2*n:n),_=new c.ScreenArray(i?2*n:n),{anchor:h}=this.model;function m(e,t){switch(h){case\"top_left\":case\"bottom_left\":case\"left\":case\"center_left\":return[e,e+t];case\"top\":case\"top_center\":case\"bottom\":case\"bottom_center\":case\"center\":case\"center_center\":return[e-t/2,e+t/2];case\"top_right\":case\"bottom_right\":case\"right\":case\"center_right\":return[e-t,e]}}function g(e,t){switch(h){case\"top_left\":case\"top\":case\"top_center\":case\"top_right\":return[e,e-t];case\"bottom_left\":case\"bottom\":case\"bottom_center\":case\"bottom_right\":return[e+t,e];case\"left\":case\"center_left\":case\"center\":case\"center_center\":case\"right\":case\"center_right\":return[e+t/2,e-t/2]}}if(a)for(let e=0;e({url:[h.StringSpec,{field:\"url\"}],anchor:[_.Anchor,\"top_left\"],global_alpha:[h.NumberSpec,{value:1}],angle:[h.AngleSpec,0],w:[h.NullDistanceSpec,null],h:[h.NullDistanceSpec,null],dilate:[e,!1],retry_attempts:[t,0],retry_timeout:[t,0]})))},\n", + " function _(e,t,s,i,n){i();const o=e(1);var r;const l=e(78),_=e(48),c=(0,o.__importStar)(e(185)),h=(0,o.__importStar)(e(18)),a=e(12),d=e(13),x=e(179),y=e(184),g=e(72);class p extends x.GlyphView{_project_data(){l.inplace.project_xy(this._xs.array,this._ys.array)}_index_data(e){const{data_size:t}=this;for(let s=0;s0&&o.set(e,s)}return new g.Selection({indices:[...o.keys()],multiline_indices:(0,d.to_object)(o)})}get_interpolation_hit(e,t,s){const i=this._xs.get(e),n=this._ys.get(e),o=i[t],r=n[t],l=i[t+1],_=n[t+1];return(0,y.line_interpolation)(this.renderer,s,o,r,l,_)}draw_legend_for_index(e,t,s){(0,y.generic_line_vector_legend)(this.visuals,e,t,s)}scenterxy(){throw new Error(`${this}.scenterxy() is not implemented`)}}s.MultiLineView=p,p.__name__=\"MultiLineView\";class u extends x.Glyph{constructor(e){super(e)}}s.MultiLine=u,r=u,u.__name__=\"MultiLine\",r.prototype.default_view=p,r.define((({})=>({xs:[h.XCoordinateSeqSpec,{field:\"xs\"}],ys:[h.YCoordinateSeqSpec,{field:\"ys\"}]}))),r.mixins(_.LineVector)},\n", + " function _(t,e,s,n,i){n();const o=t(1);var r;const l=t(181),h=t(179),a=t(184),_=t(12),c=t(12),d=t(48),x=(0,o.__importStar)(t(185)),y=(0,o.__importStar)(t(18)),f=t(72),g=t(11);class p extends h.GlyphView{_project_data(){}_index_data(t){const{min:e,max:s}=Math,{data_size:n}=this;for(let i=0;i1&&c.length>1)for(let s=1,n=i.length;s1){let r=!1;for(let t=1;t({xs:[y.XCoordinateSeqSeqSeqSpec,{field:\"xs\"}],ys:[y.YCoordinateSeqSeqSeqSpec,{field:\"ys\"}]}))),r.mixins([d.LineVector,d.FillVector,d.HatchVector])},\n", + " function _(a,e,l,s,_){var t;s();const i=a(274),n=a(12);class p extends i.EllipseOvalView{_map_data(){super._map_data(),(0,n.mul)(this.sw,.75)}}l.OvalView=p,p.__name__=\"OvalView\";class v extends i.EllipseOval{constructor(a){super(a)}}l.Oval=v,t=v,v.__name__=\"Oval\",t.prototype.default_view=p},\n", + " function _(e,t,s,i,n){i();const r=e(1);var a;const o=e(179),c=e(184),_=e(12),h=e(48),l=(0,r.__importStar)(e(185)),d=(0,r.__importStar)(e(18)),y=e(72),p=e(11),x=e(78);class f extends o.GlyphView{_project_data(){x.inplace.project_xy(this._xs.array,this._ys.array)}_index_data(e){const{data_size:t}=this;for(let s=0;s({xs:[d.XCoordinateSeqSpec,{field:\"xs\"}],ys:[d.YCoordinateSeqSpec,{field:\"ys\"}]}))),a.mixins([h.LineVector,h.FillVector,h.HatchVector])},\n", + " function _(t,e,i,o,r){o();const s=t(1);var a;const n=t(277),l=(0,s.__importStar)(t(18));class _ extends n.BoxView{async lazy_initialize(){await super.lazy_initialize();const{webgl:e}=this.renderer.plot_view.canvas_view;if(null!=e&&e.regl_wrapper.has_webgl){const{LRTBGL:i}=await Promise.resolve().then((()=>(0,s.__importStar)(t(427))));this.glglyph=new i(e.regl_wrapper,this)}}scenterxy(t){return[this.sleft[t]/2+this.sright[t]/2,this.stop[t]/2+this.sbottom[t]/2]}_lrtb(t){return[this._left[t],this._right[t],this._top[t],this._bottom[t]]}}i.QuadView=_,_.__name__=\"QuadView\";class p extends n.Box{constructor(t){super(t)}}i.Quad=p,a=p,p.__name__=\"Quad\",a.prototype.default_view=_,a.define((({})=>({right:[l.XCoordinateSpec,{field:\"right\"}],bottom:[l.YCoordinateSpec,{field:\"bottom\"}],left:[l.XCoordinateSpec,{field:\"left\"}],top:[l.YCoordinateSpec,{field:\"top\"}]})))},\n", + " function _(e,t,i,n,s){n();const c=e(1);var o;const r=e(48),a=e(78),_=e(179),d=e(184),l=(0,c.__importStar)(e(18));function x(e,t,i){if(t==(e+i)/2)return[e,i];{const n=(e-t)/(e-2*t+i),s=e*(1-n)**2+2*t*(1-n)*n+i*n**2;return[Math.min(e,i,s),Math.max(e,i,s)]}}class y extends _.GlyphView{_project_data(){a.inplace.project_xy(this._x0,this._y0),a.inplace.project_xy(this._x1,this._y1)}_index_data(e){const{_x0:t,_x1:i,_y0:n,_y1:s,_cx:c,_cy:o,data_size:r}=this;for(let a=0;a({x0:[l.XCoordinateSpec,{field:\"x0\"}],y0:[l.YCoordinateSpec,{field:\"y0\"}],x1:[l.XCoordinateSpec,{field:\"x1\"}],y1:[l.YCoordinateSpec,{field:\"y1\"}],cx:[l.XCoordinateSpec,{field:\"cx\"}],cy:[l.YCoordinateSpec,{field:\"cy\"}]}))),o.mixins(r.LineVector)},\n", + " function _(e,t,s,i,n){i();const l=e(1);var a;const r=e(178),o=e(184),h=e(48),_=e(24),c=(0,l.__importStar)(e(18));class g extends r.XYGlyphView{_map_data(){\"data\"==this.model.properties.length.units?this.slength=this.sdist(this.renderer.xscale,this._x,this.length):this.slength=(0,_.to_screen)(this.length);const{width:e,height:t}=this.renderer.plot_view.frame.bbox,s=2*(e+t),{slength:i}=this;for(let e=0,t=i.length;e({length:[c.DistanceSpec,0],angle:[c.AngleSpec,0]})))},\n", + " function _(t,e,s,i,r){var n,h=this&&this.__createBinding||(Object.create?function(t,e,s,i){void 0===i&&(i=s),Object.defineProperty(t,i,{enumerable:!0,get:function(){return e[s]}})}:function(t,e,s,i){void 0===i&&(i=s),t[i]=e[s]}),a=this&&this.__setModuleDefault||(Object.create?function(t,e){Object.defineProperty(t,\"default\",{enumerable:!0,value:e})}:function(t,e){t.default=e}),l=this&&this.__importStar||function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var s in t)\"default\"!==s&&Object.prototype.hasOwnProperty.call(t,s)&&h(e,t,s);return a(e,t),e};i();const o=t(275),c=t(184),_=t(24),d=t(12),f=t(72);class y extends o.CenterRotatableView{async lazy_initialize(){await super.lazy_initialize();const{webgl:e}=this.renderer.plot_view.canvas_view;if(null==e?void 0:e.regl_wrapper.has_webgl){const{RectGL:s}=await Promise.resolve().then((()=>l(t(429))));this.glglyph=new s(e.regl_wrapper,this)}}_map_data(){if(\"data\"==this.model.properties.width.units)[this.sw,this.sx0]=this._map_dist_corner_for_data_side_length(this._x,this.width,this.renderer.xscale);else{this.sw=(0,_.to_screen)(this.width);const t=this.sx.length;this.sx0=new _.ScreenArray(t);for(let e=0;e({dilate:[t,!1]})))},\n", + " function _(e,t,r,a,s){a();const i=e(1);var n;const l=e(292),_=e(293),c=(0,i.__importStar)(e(18));class o extends l.MarkerView{async lazy_initialize(){await super.lazy_initialize();const{webgl:t}=this.renderer.plot_view.canvas_view;if(null!=t&&t.regl_wrapper.has_webgl){const{MultiMarkerGL:r}=await Promise.resolve().then((()=>(0,i.__importStar)(e(428))));this.glglyph=new r(t.regl_wrapper,this)}}_render(e,t,r){const{sx:a,sy:s,size:i,angle:n,marker:l}=null!=r?r:this;for(const r of t){const t=a[r],c=s[r],o=i.get(r),g=n.get(r),w=l.get(r);if(!isFinite(t+c+o+g)||null==w)continue;const p=o/2;e.beginPath(),e.translate(t,c),g&&e.rotate(g),_.marker_funcs[w](e,r,p,this.visuals),g&&e.rotate(-g),e.translate(-t,-c)}}draw_legend_for_index(e,{x0:t,x1:r,y0:a,y1:s},i){const n=i+1,l=this.marker.get(i),_=Object.assign(Object.assign({},this._get_legend_args({x0:t,x1:r,y0:a,y1:s},i)),{marker:new c.UniformScalar(l,n)});this._render(e,[i],_)}}r.ScatterView=o,o.__name__=\"ScatterView\";class g extends l.Marker{constructor(e){super(e)}}r.Scatter=g,n=g,g.__name__=\"Scatter\",n.prototype.default_view=o,n.define((()=>({marker:[c.MarkerSpec,{value:\"circle\"}]})))},\n", + " function _(e,t,s,n,i){n();const r=e(1);var a;const c=e(178),o=e(48),_=(0,r.__importStar)(e(185)),h=(0,r.__importStar)(e(18)),l=e(9),x=e(72);class d extends c.XYGlyphView{_render(e,t,s){const{sx:n,sy:i,size:r,angle:a}=null!=s?s:this;for(const s of t){const t=n[s],c=i[s],o=r.get(s),_=a.get(s);if(!isFinite(t+c+o+_))continue;const h=o/2;e.beginPath(),e.translate(t,c),_&&e.rotate(_),this._render_one(e,s,h,this.visuals),_&&e.rotate(-_),e.translate(-t,-c)}}_mask_data(){const{x_target:e,y_target:t}=this.renderer.plot_view.frame,s=e.widen(this.max_size).map((e=>this.renderer.xscale.invert(e))),n=t.widen(this.max_size).map((e=>this.renderer.yscale.invert(e)));return this.index.indices({x0:s.start,x1:s.end,y0:n.start,y1:n.end})}_hit_point(e){const{sx:t,sy:s}=e,{max_size:n}=this,{hit_dilation:i}=this.model,r=t-n*i,a=t+n*i,[c,o]=this.renderer.xscale.r_invert(r,a),_=s-n*i,h=s+n*i,[l,d]=this.renderer.yscale.r_invert(_,h),y=this.index.indices({x0:c,x1:o,y0:l,y1:d}),g=[];for(const e of y){const n=this.size.get(e)/2*i;Math.abs(this.sx[e]-t)<=n&&Math.abs(this.sy[e]-s)<=n&&g.push(e)}return new x.Selection({indices:g})}_hit_span(e){const{sx:t,sy:s}=e,n=this.bounds(),i=this.max_size/2;let r,a,c,o;if(\"h\"==e.direction){c=n.y0,o=n.y1;const e=t-i,s=t+i;[r,a]=this.renderer.xscale.r_invert(e,s)}else{r=n.x0,a=n.x1;const e=s-i,t=s+i;[c,o]=this.renderer.yscale.r_invert(e,t)}const _=[...this.index.indices({x0:r,x1:a,y0:c,y1:o})];return new x.Selection({indices:_})}_hit_rect(e){const{sx0:t,sx1:s,sy0:n,sy1:i}=e,[r,a]=this.renderer.xscale.r_invert(t,s),[c,o]=this.renderer.yscale.r_invert(n,i),_=[...this.index.indices({x0:r,x1:a,y0:c,y1:o})];return new x.Selection({indices:_})}_hit_poly(e){const{sx:t,sy:s}=e,n=(0,l.range)(0,this.sx.length),i=[];for(let e=0,r=n.length;e({size:[h.ScreenSizeSpec,{value:4}],angle:[h.AngleSpec,0],hit_dilation:[e,1]})))},\n", + " function _(l,o,n,t,i){t();const e=Math.sqrt(3),a=Math.sqrt(5),c=(a+1)/4,p=Math.sqrt((5-a)/8),r=(a-1)/4,h=Math.sqrt((5+a)/8);function u(l,o){l.rotate(Math.PI/4),s(l,o),l.rotate(-Math.PI/4)}function f(l,o){const n=o*e,t=n/3;l.moveTo(-n/2,-t),l.lineTo(0,0),l.lineTo(n/2,-t),l.lineTo(0,0),l.lineTo(0,o)}function s(l,o){l.moveTo(0,o),l.lineTo(0,-o),l.moveTo(-o,0),l.lineTo(o,0)}function T(l,o){l.moveTo(0,o),l.lineTo(o/1.5,0),l.lineTo(0,-o),l.lineTo(-o/1.5,0),l.closePath()}function y(l,o){const n=o*e,t=n/3;l.moveTo(-o,t),l.lineTo(o,t),l.lineTo(0,t-n),l.closePath()}function v(l,o,n,t){l.arc(0,0,n,0,2*Math.PI,!1),t.fill.apply(l,o),t.hatch.apply(l,o),t.line.apply(l,o)}function d(l,o,n,t){T(l,n),t.fill.apply(l,o),t.hatch.apply(l,o),t.line.apply(l,o)}function _(l,o,n,t){!function(l,o){l.beginPath(),l.arc(0,0,o/4,0,2*Math.PI,!1),l.closePath()}(l,n),t.line.set_vectorize(l,o),l.fillStyle=l.strokeStyle,l.fill()}function P(l,o,n,t){!function(l,o){const n=o/2,t=e*n;l.moveTo(o,0),l.lineTo(n,-t),l.lineTo(-n,-t),l.lineTo(-o,0),l.lineTo(-n,t),l.lineTo(n,t),l.closePath()}(l,n),t.fill.apply(l,o),t.hatch.apply(l,o),t.line.apply(l,o)}function m(l,o,n,t){const i=2*n;l.rect(-n,-n,i,i),t.fill.apply(l,o),t.hatch.apply(l,o),t.line.apply(l,o)}function q(l,o,n,t){!function(l,o){const n=Math.sqrt(5-2*a)*o;l.moveTo(0,-o),l.lineTo(n*r,n*h-o),l.lineTo(n*(1+r),n*h-o),l.lineTo(n*(1+r-c),n*(h+p)-o),l.lineTo(n*(1+2*r-c),n*(2*h+p)-o),l.lineTo(0,2*n*h-o),l.lineTo(-n*(1+2*r-c),n*(2*h+p)-o),l.lineTo(-n*(1+r-c),n*(h+p)-o),l.lineTo(-n*(1+r),n*h-o),l.lineTo(-n*r,n*h-o),l.closePath()}(l,n),t.fill.apply(l,o),t.hatch.apply(l,o),t.line.apply(l,o)}function M(l,o,n,t){y(l,n),t.fill.apply(l,o),t.hatch.apply(l,o),t.line.apply(l,o)}n.marker_funcs={asterisk:function(l,o,n,t){s(l,n),u(l,n),t.line.apply(l,o)},circle:v,circle_cross:function(l,o,n,t){l.arc(0,0,n,0,2*Math.PI,!1),t.fill.apply(l,o),t.hatch.apply(l,o),t.line.doit&&(t.line.set_vectorize(l,o),s(l,n),l.stroke())},circle_dot:function(l,o,n,t){v(l,o,n,t),_(l,o,n,t)},circle_y:function(l,o,n,t){l.arc(0,0,n,0,2*Math.PI,!1),t.fill.apply(l,o),t.hatch.apply(l,o),t.line.doit&&(t.line.set_vectorize(l,o),f(l,n),l.stroke())},circle_x:function(l,o,n,t){l.arc(0,0,n,0,2*Math.PI,!1),t.fill.apply(l,o),t.hatch.apply(l,o),t.line.doit&&(t.line.set_vectorize(l,o),u(l,n),l.stroke())},cross:function(l,o,n,t){s(l,n),t.line.apply(l,o)},diamond:d,diamond_dot:function(l,o,n,t){d(l,o,n,t),_(l,o,n,t)},diamond_cross:function(l,o,n,t){T(l,n),t.fill.apply(l,o),t.hatch.apply(l,o),t.line.doit&&(t.line.set_vectorize(l,o),l.moveTo(0,n),l.lineTo(0,-n),l.moveTo(-n/1.5,0),l.lineTo(n/1.5,0),l.stroke())},dot:_,hex:P,hex_dot:function(l,o,n,t){P(l,o,n,t),_(l,o,n,t)},inverted_triangle:function(l,o,n,t){l.rotate(Math.PI),y(l,n),l.rotate(-Math.PI),t.fill.apply(l,o),t.hatch.apply(l,o),t.line.apply(l,o)},plus:function(l,o,n,t){const i=3*n/8,e=[i,i,n,n,i,i,-i,-i,-n,-n,-i,-i],a=[n,i,i,-i,-i,-n,-n,-i,-i,i,i,n];l.beginPath();for(let o=0;o<12;o++)l.lineTo(e[o],a[o]);l.closePath(),t.fill.apply(l,o),t.hatch.apply(l,o),t.line.apply(l,o)},square:m,square_cross:function(l,o,n,t){const i=2*n;l.rect(-n,-n,i,i),t.fill.apply(l,o),t.hatch.apply(l,o),t.line.doit&&(t.line.set_vectorize(l,o),s(l,n),l.stroke())},square_dot:function(l,o,n,t){m(l,o,n,t),_(l,o,n,t)},square_pin:function(l,o,n,t){const i=3*n/8;l.moveTo(-n,-n),l.quadraticCurveTo(0,-i,n,-n),l.quadraticCurveTo(i,0,n,n),l.quadraticCurveTo(0,i,-n,n),l.quadraticCurveTo(-i,0,-n,-n),l.closePath(),t.fill.apply(l,o),t.hatch.apply(l,o),t.line.apply(l,o)},square_x:function(l,o,n,t){const i=2*n;l.rect(-n,-n,i,i),t.fill.apply(l,o),t.hatch.apply(l,o),t.line.doit&&(t.line.set_vectorize(l,o),l.moveTo(-n,n),l.lineTo(n,-n),l.moveTo(-n,-n),l.lineTo(n,n),l.stroke())},star:q,star_dot:function(l,o,n,t){q(l,o,n,t),_(l,o,n,t)},triangle:M,triangle_dot:function(l,o,n,t){M(l,o,n,t),_(l,o,n,t)},triangle_pin:function(l,o,n,t){const i=n*e,a=i/3,c=3*a/8;l.moveTo(-n,a),l.quadraticCurveTo(0,c,n,a),l.quadraticCurveTo(e*c/2,c/2,0,a-i),l.quadraticCurveTo(-e*c/2,c/2,-n,a),l.closePath(),t.fill.apply(l,o),t.hatch.apply(l,o),t.line.apply(l,o)},dash:function(l,o,n,t){!function(l,o){l.moveTo(-o,0),l.lineTo(o,0)}(l,n),t.line.apply(l,o)},x:function(l,o,n,t){u(l,n),t.line.apply(l,o)},y:function(l,o,n,t){f(l,n),t.line.apply(l,o)}}},\n", + " function _(e,t,s,i,n){i();const r=e(1);var o;const _=(0,r.__importStar)(e(185)),h=(0,r.__importStar)(e(18)),c=e(48),a=e(78),d=e(179),x=e(184),l=e(72);class y extends d.GlyphView{_project_data(){a.inplace.project_xy(this._x0,this._y0),a.inplace.project_xy(this._x1,this._y1)}_index_data(e){const{min:t,max:s}=Math,{_x0:i,_x1:n,_y0:r,_y1:o,data_size:_}=this;for(let h=0;h<_;h++){const _=i[h],c=n[h],a=r[h],d=o[h];e.add_rect(t(_,c),t(a,d),s(_,c),s(a,d))}}_render(e,t,s){if(this.visuals.line.doit){const{sx0:i,sy0:n,sx1:r,sy1:o}=null!=s?s:this;for(const s of t){const t=i[s],_=n[s],h=r[s],c=o[s];isFinite(t+_+h+c)&&(e.beginPath(),e.moveTo(t,_),e.lineTo(h,c),this.visuals.line.set_vectorize(e,s),e.stroke())}}}_hit_point(e){const{sx:t,sy:s}=e,i={x:t,y:s},[n,r]=this.renderer.xscale.r_invert(t-2,t+2),[o,h]=this.renderer.yscale.r_invert(s-2,s+2),c=this.index.indices({x0:n,y0:o,x1:r,y1:h}),a=[];for(const e of c){const t=Math.max(2,this.line_width.get(e)/2)**2,s={x:this.sx0[e],y:this.sy0[e]},n={x:this.sx1[e],y:this.sy1[e]};_.dist_to_segment_squared(i,s,n)({x0:[h.XCoordinateSpec,{field:\"x0\"}],y0:[h.YCoordinateSpec,{field:\"y0\"}],x1:[h.XCoordinateSpec,{field:\"x1\"}],y1:[h.YCoordinateSpec,{field:\"y1\"}]}))),o.mixins(c.LineVector)},\n", + " function _(t,e,s,i,n){i();const o=t(1);var _;const l=t(178),a=(0,o.__importStar)(t(48)),c=t(296);class r extends l.XYGlyphView{_set_data(){const{tension:t,closed:e}=this.model;[this._xt,this._yt]=(0,c.catmullrom_spline)(this._x,this._y,20,t,e)}_map_data(){const{x_scale:t,y_scale:e}=this.renderer.coordinates;this.sxt=t.v_compute(this._xt),this.syt=e.v_compute(this._yt)}_render(t,e,s){const{sxt:i,syt:n}=null!=s?s:this;let o=!0;t.beginPath();const _=i.length;for(let e=0;e<_;e++){const s=i[e],_=n[e];isFinite(s+_)?o?(t.moveTo(s,_),o=!1):t.lineTo(s,_):o=!0}this.visuals.line.set_value(t),t.stroke()}}s.SplineView=r,r.__name__=\"SplineView\";class h extends l.XYGlyph{constructor(t){super(t)}}s.Spline=h,_=h,h.__name__=\"Spline\",_.prototype.default_view=r,_.mixins(a.LineScalar),_.define((({Boolean:t,Number:e})=>({tension:[e,.5],closed:[t,!1]})))},\n", + " function _(n,t,e,o,s){o();const c=n(24),l=n(11);e.catmullrom_spline=function(n,t,e=10,o=.5,s=!1){(0,l.assert)(n.length==t.length);const r=n.length,f=s?r+1:r,w=(0,c.infer_type)(n,t),i=new w(f+2),u=new w(f+2);i.set(n,1),u.set(t,1),s?(i[0]=n[r-1],u[0]=t[r-1],i[f]=n[0],u[f]=t[0],i[f+1]=n[1],u[f+1]=t[1]):(i[0]=n[0],u[0]=t[0],i[f+1]=n[r-1],u[f+1]=t[r-1]);const g=new w(4*(e+1));for(let n=0,t=0;n<=e;n++){const o=n/e,s=o**2,c=o*s;g[t++]=2*c-3*s+1,g[t++]=-2*c+3*s,g[t++]=c-2*s+o,g[t++]=c-s}const h=new w((f-1)*(e+1)),_=new w((f-1)*(e+1));for(let n=1,t=0;n1&&(e.stroke(),o=!1)}o?(e.lineTo(t,r),e.lineTo(a,c)):(e.beginPath(),e.moveTo(s[n],i[n]),o=!0),l=n}e.lineTo(s[a-1],i[a-1]),e.stroke()}}draw_legend_for_index(e,t,n){(0,r.generic_line_scalar_legend)(this.visuals,e,t)}}n.StepView=f,f.__name__=\"StepView\";class u extends a.XYGlyph{constructor(e){super(e)}}n.Step=u,l=u,u.__name__=\"Step\",l.prototype.default_view=f,l.mixins(c.LineScalar),l.define((()=>({mode:[_.StepMode,\"before\"]})))},\n", + " function _(t,e,s,i,n){i();const o=t(1);var _;const h=t(178),l=t(48),r=(0,o.__importStar)(t(185)),a=(0,o.__importStar)(t(18)),c=t(121),x=t(11),u=t(72);class f extends h.XYGlyphView{_rotate_point(t,e,s,i,n){return[(t-s)*Math.cos(n)-(e-i)*Math.sin(n)+s,(t-s)*Math.sin(n)+(e-i)*Math.cos(n)+i]}_text_bounds(t,e,s,i){return[[t,t+s,t+s,t,t],[e,e,e-i,e-i,e]]}_render(t,e,s){const{sx:i,sy:n,x_offset:o,y_offset:_,angle:h,text:l}=null!=s?s:this;this._sys=[],this._sxs=[];for(const s of e){const e=this._sxs[s]=[],r=this._sys[s]=[],a=i[s],x=n[s],u=o.get(s),f=_.get(s),p=h.get(s),g=l.get(s);if(isFinite(a+x+u+f+p)&&null!=g&&this.visuals.text.doit){const i=`${g}`;t.save(),t.translate(a+u,x+f),t.rotate(p),this.visuals.text.set_vectorize(t,s);const n=this.visuals.text.font_value(s),{height:o}=(0,c.font_metrics)(n),_=this.text_line_height.get(s)*o;if(-1==i.indexOf(\"\\n\")){t.fillText(i,0,0);const s=a+u,n=x+f,o=t.measureText(i).width,[h,l]=this._text_bounds(s,n,o,_);e.push(h),r.push(l)}else{const n=i.split(\"\\n\"),o=_*n.length,h=this.text_baseline.get(s);let l;switch(h){case\"top\":l=0;break;case\"middle\":l=-o/2+_/2;break;case\"bottom\":l=-o+_;break;default:l=0,console.warn(`'${h}' baseline not supported with multi line text`)}for(const s of n){t.fillText(s,0,l);const i=a+u,n=l+x+f,o=t.measureText(s).width,[h,c]=this._text_bounds(i,n,o,_);e.push(h),r.push(c),l+=_}}t.restore()}}}_hit_point(t){const{sx:e,sy:s}=t,i=[];for(let t=0;t({text:[a.NullStringSpec,{field:\"text\"}],angle:[a.AngleSpec,0],x_offset:[a.NumberSpec,0],y_offset:[a.NumberSpec,0]})))},\n", + " function _(t,e,s,i,r){i();const h=t(1);var o;const a=t(277),n=t(24),_=(0,h.__importStar)(t(18));class l extends a.BoxView{async lazy_initialize(){await super.lazy_initialize();const{webgl:e}=this.renderer.plot_view.canvas_view;if(null!=e&&e.regl_wrapper.has_webgl){const{LRTBGL:s}=await Promise.resolve().then((()=>(0,h.__importStar)(t(427))));this.glglyph=new s(e.regl_wrapper,this)}}scenterxy(t){return[this.sx[t],(this.stop[t]+this.sbottom[t])/2]}_lrtb(t){const e=this.width.get(t)/2,s=this._x[t],i=this._top[t],r=this._bottom[t];return[s-e,s+e,Math.max(i,r),Math.min(i,r)]}_map_data(){this.sx=this.renderer.xscale.v_compute(this._x),this.sw=this.sdist(this.renderer.xscale,this._x,this.width,\"center\"),this.stop=this.renderer.yscale.v_compute(this._top),this.sbottom=this.renderer.yscale.v_compute(this._bottom);const t=this.sx.length;this.sleft=new n.ScreenArray(t),this.sright=new n.ScreenArray(t);for(let e=0;e({x:[_.XCoordinateSpec,{field:\"x\"}],bottom:[_.YCoordinateSpec,{value:0}],width:[_.NumberSpec,{value:1}],top:[_.YCoordinateSpec,{field:\"top\"}]})))},\n", + " function _(e,s,t,i,n){i();const r=e(1);var a;const c=e(178),d=e(184),l=e(48),h=e(24),o=e(20),_=(0,r.__importStar)(e(18)),u=e(10),g=e(72),x=e(12);class p extends c.XYGlyphView{_map_data(){\"data\"==this.model.properties.radius.units?this.sradius=this.sdist(this.renderer.xscale,this._x,this.radius):this.sradius=(0,h.to_screen)(this.radius),this.max_sradius=(0,x.max)(this.sradius)}_render(e,s,t){const{sx:i,sy:n,sradius:r,start_angle:a,end_angle:c}=null!=t?t:this,d=\"anticlock\"==this.model.direction;for(const t of s){const s=i[t],l=n[t],h=r[t],o=a.get(t),_=c.get(t);isFinite(s+l+h+o+_)&&(e.beginPath(),e.arc(s,l,h,o,_,d),e.lineTo(s,l),e.closePath(),this.visuals.fill.apply(e,t),this.visuals.hatch.apply(e,t),this.visuals.line.apply(e,t))}}_hit_point(e){let s,t,i,n,r;const{sx:a,sy:c}=e,d=this.renderer.xscale.invert(a),l=this.renderer.yscale.invert(c);t=a-this.max_sradius,i=a+this.max_sradius;const[h,o]=this.renderer.xscale.r_invert(t,i);n=c-this.max_sradius,r=c+this.max_sradius;const[_,x]=this.renderer.yscale.r_invert(n,r),p=[];for(const e of this.index.indices({x0:h,x1:o,y0:_,y1:x})){const a=this.sradius[e]**2;[t,i]=this.renderer.xscale.r_compute(d,this._x[e]),[n,r]=this.renderer.yscale.r_compute(l,this._y[e]),s=(t-i)**2+(n-r)**2,s<=a&&p.push(e)}const y=\"anticlock\"==this.model.direction,m=[];for(const e of p){const s=Math.atan2(c-this.sy[e],a-this.sx[e]);(0,u.angle_between)(-s,-this.start_angle.get(e),-this.end_angle.get(e),y)&&m.push(e)}return new g.Selection({indices:m})}draw_legend_for_index(e,s,t){(0,d.generic_area_vector_legend)(this.visuals,e,s,t)}scenterxy(e){const s=this.sradius[e]/2,t=(this.start_angle.get(e)+this.end_angle.get(e))/2;return[this.sx[e]+s*Math.cos(t),this.sy[e]+s*Math.sin(t)]}}t.WedgeView=p,p.__name__=\"WedgeView\";class y extends c.XYGlyph{constructor(e){super(e)}}t.Wedge=y,a=y,y.__name__=\"Wedge\",a.prototype.default_view=p,a.mixins([l.LineVector,l.FillVector,l.HatchVector]),a.define((({})=>({direction:[o.Direction,\"anticlock\"],radius:[_.DistanceSpec,{field:\"radius\"}],start_angle:[_.AngleSpec,{field:\"start_angle\"}],end_angle:[_.AngleSpec,{field:\"end_angle\"}]})))},\n", + " function _(t,_,r,o,a){o();const e=t(1);(0,e.__exportStar)(t(302),r),(0,e.__exportStar)(t(303),r),(0,e.__exportStar)(t(304),r)},\n", + " function _(e,t,d,n,s){n();const o=e(53),r=e(12),_=e(9),i=e(72);class c extends o.Model{constructor(e){super(e)}_hit_test(e,t,d){if(!t.model.visible)return null;const n=d.glyph.hit_test(e);return null==n?null:d.model.view.convert_selection_from_subset(n)}}d.GraphHitTestPolicy=c,c.__name__=\"GraphHitTestPolicy\";class a extends c{constructor(e){super(e)}hit_test(e,t){return this._hit_test(e,t,t.edge_view)}do_selection(e,t,d,n){if(null==e)return!1;const s=t.edge_renderer.data_source.selected;return s.update(e,d,n),t.edge_renderer.data_source._select.emit(),!s.is_empty()}do_inspection(e,t,d,n,s){if(null==e)return!1;const{edge_renderer:o}=d.model,r=o.get_selection_manager().get_or_create_inspector(d.edge_view.model);return r.update(e,n,s),d.edge_view.model.data_source.setv({inspected:r},{silent:!0}),d.edge_view.model.data_source.inspect.emit([d.edge_view.model,{geometry:t}]),!r.is_empty()}}d.EdgesOnly=a,a.__name__=\"EdgesOnly\";class l extends c{constructor(e){super(e)}hit_test(e,t){return this._hit_test(e,t,t.node_view)}do_selection(e,t,d,n){if(null==e)return!1;const s=t.node_renderer.data_source.selected;return s.update(e,d,n),t.node_renderer.data_source._select.emit(),!s.is_empty()}do_inspection(e,t,d,n,s){if(null==e)return!1;const{node_renderer:o}=d.model,r=o.get_selection_manager().get_or_create_inspector(d.node_view.model);return r.update(e,n,s),d.node_view.model.data_source.setv({inspected:r},{silent:!0}),d.node_view.model.data_source.inspect.emit([d.node_view.model,{geometry:t}]),!r.is_empty()}}d.NodesOnly=l,l.__name__=\"NodesOnly\";class u extends c{constructor(e){super(e)}hit_test(e,t){return this._hit_test(e,t,t.node_view)}get_linked_edges(e,t,d){let n=[];\"selection\"==d?n=e.selected.indices.map((t=>e.data.index[t])):\"inspection\"==d&&(n=e.inspected.indices.map((t=>e.data.index[t])));const s=[];for(let e=0;e(0,r.indexOf)(e.data.index,t)));return new i.Selection({indices:o})}do_selection(e,t,d,n){if(null==e)return!1;const s=t.edge_renderer.data_source.selected;s.update(e,d,n);const o=t.node_renderer.data_source.selected,r=this.get_linked_nodes(t.node_renderer.data_source,t.edge_renderer.data_source,\"selection\");return o.update(r,d,n),t.edge_renderer.data_source._select.emit(),!s.is_empty()}do_inspection(e,t,d,n,s){if(null==e)return!1;const o=d.edge_view.model.data_source.selection_manager.get_or_create_inspector(d.edge_view.model);o.update(e,n,s),d.edge_view.model.data_source.setv({inspected:o},{silent:!0});const r=d.node_view.model.data_source.selection_manager.get_or_create_inspector(d.node_view.model),_=this.get_linked_nodes(d.node_view.model.data_source,d.edge_view.model.data_source,\"inspection\");return r.update(_,n,s),d.node_view.model.data_source.setv({inspected:r},{silent:!0}),d.edge_view.model.data_source.inspect.emit([d.edge_view.model,{geometry:t}]),!o.is_empty()}}d.EdgesAndLinkedNodes=m,m.__name__=\"EdgesAndLinkedNodes\"},\n", + " function _(e,o,t,r,n){var s;r();const a=e(53),d=e(260);class _ extends a.Model{constructor(e){super(e)}get node_coordinates(){return new u({layout:this})}get edge_coordinates(){return new i({layout:this})}}t.LayoutProvider=_,_.__name__=\"LayoutProvider\";class c extends d.CoordinateTransform{constructor(e){super(e)}}t.GraphCoordinates=c,s=c,c.__name__=\"GraphCoordinates\",s.define((({Ref:e})=>({layout:[e(_)]})));class u extends c{constructor(e){super(e)}_v_compute(e){const[o,t]=this.layout.get_node_coordinates(e);return{x:o,y:t}}}t.NodeCoordinates=u,u.__name__=\"NodeCoordinates\";class i extends c{constructor(e){super(e)}_v_compute(e){const[o,t]=this.layout.get_edge_coordinates(e);return{x:o,y:t}}}t.EdgeCoordinates=i,i.__name__=\"EdgeCoordinates\"},\n", + " function _(t,a,l,e,n){var o;e();const r=t(303);class u extends r.LayoutProvider{constructor(t){super(t)}get_node_coordinates(t){var a;const l=null!==(a=t.data.index)&&void 0!==a?a:[],e=l.length,n=new Float64Array(e),o=new Float64Array(e);for(let t=0;t({graph_layout:[l(a(t,t)),{}]})))},\n", + " function _(i,d,n,r,G){r(),G(\"Grid\",i(306).Grid)},\n", + " function _(i,e,n,s,t){s();const r=i(1);var o;const d=i(127),_=i(129),a=i(130),l=(0,r.__importStar)(i(48)),h=i(8);class c extends _.GuideRendererView{_render(){const i=this.layer.ctx;i.save(),this._draw_regions(i),this._draw_minor_grids(i),this._draw_grids(i),i.restore()}connect_signals(){super.connect_signals(),this.connect(this.model.change,(()=>this.request_render()))}_draw_regions(i){if(!this.visuals.band_fill.doit&&!this.visuals.band_hatch.doit)return;const[e,n]=this.grid_coords(\"major\",!1);for(let s=0;sn[1]&&(t=n[1]);else{[s,t]=n;for(const i of this.plot_view.axis_views)i.dimension==this.model.dimension&&i.model.x_range_name==this.model.x_range_name&&i.model.y_range_name==this.model.y_range_name&&([s,t]=i.computed_bounds)}return[s,t]}grid_coords(i,e=!0){const n=this.model.dimension,s=(n+1)%2,[t,r]=this.ranges();let[o,d]=this.computed_bounds();[o,d]=[Math.min(o,d),Math.max(o,d)];const _=[[],[]],a=this.model.get_ticker();if(null==a)return _;const l=a.get_ticks(o,d,t,r.min)[i],h=t.min,c=t.max,u=r.min,m=r.max;e||(l[0]!=h&&l.splice(0,0,h),l[l.length-1]!=c&&l.push(c));for(let i=0;i({bounds:[r(t(i,i),e),\"auto\"],dimension:[n(0,1),0],axis:[o(s(d.Axis)),null],ticker:[o(s(a.Ticker)),null]}))),o.override({level:\"underlay\",band_fill_color:null,band_fill_alpha:0,grid_line_color:\"#e5e5e5\",minor_grid_line_color:null})},\n", + " function _(o,a,x,B,e){B(),e(\"Box\",o(308).Box),e(\"Column\",o(310).Column),e(\"GridBox\",o(311).GridBox),e(\"HTMLBox\",o(312).HTMLBox),e(\"LayoutDOM\",o(309).LayoutDOM),e(\"Panel\",o(313).Panel),e(\"Row\",o(314).Row),e(\"Spacer\",o(315).Spacer),e(\"Tabs\",o(316).Tabs),e(\"WidgetBox\",o(319).WidgetBox)},\n", + " function _(e,n,s,t,c){var i;t();const o=e(309);class r extends o.LayoutDOMView{connect_signals(){super.connect_signals(),this.connect(this.model.properties.children.change,(()=>this.rebuild()))}get child_models(){return this.model.children}}s.BoxView=r,r.__name__=\"BoxView\";class a extends o.LayoutDOM{constructor(e){super(e)}}s.Box=a,i=a,a.__name__=\"Box\",i.define((({Number:e,Array:n,Ref:s})=>({children:[n(s(o.LayoutDOM)),[]],spacing:[e,0]})))},\n", + " function _(t,i,e,s,o){var l;s();const n=t(53),h=t(20),a=t(43),r=t(19),_=t(8),c=t(22),u=t(121),d=t(113),p=t(226),m=t(207),g=t(44),w=t(235);class f extends p.DOMView{constructor(){super(...arguments),this._offset_parent=null,this._viewport={}}get is_layout_root(){return this.is_root||!(this.parent instanceof f)}get base_font_size(){const t=getComputedStyle(this.el).fontSize,i=(0,u.parse_css_font_size)(t);if(null!=i){const{value:t,unit:e}=i;if(\"px\"==e)return t}return null}initialize(){super.initialize(),this.el.style.position=this.is_layout_root?\"relative\":\"absolute\",this._child_views=new Map}async lazy_initialize(){await super.lazy_initialize(),await this.build_child_views()}remove(){for(const t of this.child_views)t.remove();this._child_views.clear(),super.remove()}connect_signals(){super.connect_signals(),this.is_layout_root&&(this._on_resize=()=>this.resize_layout(),window.addEventListener(\"resize\",this._on_resize),this._parent_observer=setInterval((()=>{const t=this.el.offsetParent;this._offset_parent!=t&&(this._offset_parent=t,null!=t&&(this.compute_viewport(),this.invalidate_layout()))}),250));const t=this.model.properties;this.on_change([t.width,t.height,t.min_width,t.min_height,t.max_width,t.max_height,t.margin,t.width_policy,t.height_policy,t.sizing_mode,t.aspect_ratio,t.visible],(()=>this.invalidate_layout())),this.on_change([t.background,t.css_classes],(()=>this.invalidate_render()))}disconnect_signals(){null!=this._parent_observer&&clearTimeout(this._parent_observer),null!=this._on_resize&&window.removeEventListener(\"resize\",this._on_resize),super.disconnect_signals()}css_classes(){return super.css_classes().concat(this.model.css_classes)}get child_views(){return this.child_models.map((t=>this._child_views.get(t)))}async build_child_views(){await(0,d.build_views)(this._child_views,this.child_models,{parent:this})}render(){super.render(),(0,a.empty)(this.el);const{background:t}=this.model;this.el.style.backgroundColor=null!=t?(0,c.color2css)(t):\"\",(0,a.classes)(this.el).clear().add(...this.css_classes());for(const t of this.child_views)this.el.appendChild(t.el),t.render()}update_layout(){for(const t of this.child_views)t.update_layout();this._update_layout()}update_position(){this.el.style.display=this.model.visible?\"block\":\"none\";const t=this.is_layout_root?this.layout.sizing.margin:void 0;(0,a.position)(this.el,this.layout.bbox,t);for(const t of this.child_views)t.update_position()}after_layout(){for(const t of this.child_views)t.after_layout();this._has_finished=!0}compute_viewport(){this._viewport=this._viewport_size()}renderTo(t){t.appendChild(this.el),this._offset_parent=this.el.offsetParent,this.compute_viewport(),this.build(),this.notify_finished()}build(){if(!this.is_layout_root)throw new Error(`${this.toString()} is not a root layout`);return this.render(),this.update_layout(),this.compute_layout(),this}async rebuild(){await this.build_child_views(),this.invalidate_render()}compute_layout(){const t=Date.now();this.layout.compute(this._viewport),this.update_position(),this.after_layout(),r.logger.debug(`layout computed in ${Date.now()-t} ms`)}resize_layout(){this.root.compute_viewport(),this.root.compute_layout()}invalidate_layout(){this.root.update_layout(),this.root.compute_layout()}invalidate_render(){this.render(),this.invalidate_layout()}has_finished(){if(!super.has_finished())return!1;for(const t of this.child_views)if(!t.has_finished())return!1;return!0}_width_policy(){return null!=this.model.width?\"fixed\":\"fit\"}_height_policy(){return null!=this.model.height?\"fixed\":\"fit\"}box_sizing(){let{width_policy:t,height_policy:i,aspect_ratio:e}=this.model;\"auto\"==t&&(t=this._width_policy()),\"auto\"==i&&(i=this._height_policy());const{sizing_mode:s}=this.model;if(null!=s)if(\"fixed\"==s)t=i=\"fixed\";else if(\"stretch_both\"==s)t=i=\"max\";else if(\"stretch_width\"==s)t=\"max\";else if(\"stretch_height\"==s)i=\"max\";else switch(null==e&&(e=\"auto\"),s){case\"scale_width\":t=\"max\",i=\"min\";break;case\"scale_height\":t=\"min\",i=\"max\";break;case\"scale_both\":t=\"max\",i=\"max\"}const o={width_policy:t,height_policy:i},{min_width:l,min_height:n}=this.model;null!=l&&(o.min_width=l),null!=n&&(o.min_height=n);const{width:h,height:a}=this.model;null!=h&&(o.width=h),null!=a&&(o.height=a);const{max_width:r,max_height:c}=this.model;null!=r&&(o.max_width=r),null!=c&&(o.max_height=c),\"auto\"==e&&null!=h&&null!=a?o.aspect=h/a:(0,_.isNumber)(e)&&(o.aspect=e);const{margin:u}=this.model;if(null!=u)if((0,_.isNumber)(u))o.margin={top:u,right:u,bottom:u,left:u};else if(2==u.length){const[t,i]=u;o.margin={top:t,right:i,bottom:t,left:i}}else{const[t,i,e,s]=u;o.margin={top:t,right:i,bottom:e,left:s}}o.visible=this.model.visible;const{align:d}=this.model;return(0,_.isArray)(d)?[o.halign,o.valign]=d:o.halign=o.valign=d,o}_viewport_size(){return(0,a.undisplayed)(this.el,(()=>{let t=this.el;for(;t=t.parentElement;){if(t.classList.contains(g.root))continue;if(t==document.body){const{margin:{left:t,right:i,top:e,bottom:s}}=(0,a.extents)(document.body);return{width:Math.ceil(document.documentElement.clientWidth-t-i),height:Math.ceil(document.documentElement.clientHeight-e-s)}}const{padding:{left:i,right:e,top:s,bottom:o}}=(0,a.extents)(t),{width:l,height:n}=t.getBoundingClientRect(),h=Math.ceil(l-i-e),r=Math.ceil(n-s-o);if(h>0||r>0)return{width:h>0?h:void 0,height:r>0?r:void 0}}return{}}))}export(t,i=!0){const e=\"png\"==t?\"canvas\":\"svg\",s=new w.CanvasLayer(e,i),{width:o,height:l}=this.layout.bbox;s.resize(o,l);for(const e of this.child_views){const o=e.export(t,i),{x:l,y:n}=e.layout.bbox;s.ctx.drawImage(o.canvas,l,n)}return s}serializable_state(){return Object.assign(Object.assign({},super.serializable_state()),{bbox:this.layout.bbox.box,children:this.child_views.map((t=>t.serializable_state()))})}}e.LayoutDOMView=f,f.__name__=\"LayoutDOMView\";class y extends n.Model{constructor(t){super(t)}}e.LayoutDOM=y,l=y,y.__name__=\"LayoutDOM\",l.define((t=>{const{Boolean:i,Number:e,String:s,Auto:o,Color:l,Array:n,Tuple:a,Or:r,Null:_,Nullable:c}=t,u=a(e,e),d=a(e,e,e,e);return{width:[c(e),null],height:[c(e),null],min_width:[c(e),null],min_height:[c(e),null],max_width:[c(e),null],max_height:[c(e),null],margin:[c(r(e,u,d)),[0,0,0,0]],width_policy:[r(m.SizingPolicy,o),\"auto\"],height_policy:[r(m.SizingPolicy,o),\"auto\"],aspect_ratio:[r(e,o,_),null],sizing_mode:[c(h.SizingMode),null],visible:[i,!0],disabled:[i,!1],align:[r(h.Align,a(h.Align,h.Align)),\"start\"],background:[c(l),null],css_classes:[n(s),[]]}}))},\n", + " function _(o,s,t,i,e){var n;i();const a=o(308),l=o(209);class u extends a.BoxView{_update_layout(){const o=this.child_views.map((o=>o.layout));this.layout=new l.Column(o),this.layout.rows=this.model.rows,this.layout.spacing=[this.model.spacing,0],this.layout.set_sizing(this.box_sizing())}}t.ColumnView=u,u.__name__=\"ColumnView\";class _ extends a.Box{constructor(o){super(o)}}t.Column=_,n=_,_.__name__=\"Column\",n.prototype.default_view=u,n.define((({Any:o})=>({rows:[o,\"auto\"]})))},\n", + " function _(s,o,t,i,e){var n;i();const l=s(309),a=s(209);class r extends l.LayoutDOMView{connect_signals(){super.connect_signals();const{children:s,rows:o,cols:t,spacing:i}=this.model.properties;this.on_change([s,o,t,i],(()=>this.rebuild()))}get child_models(){return this.model.children.map((([s])=>s))}_update_layout(){this.layout=new a.Grid,this.layout.rows=this.model.rows,this.layout.cols=this.model.cols,this.layout.spacing=this.model.spacing;for(const[s,o,t,i,e]of this.model.children){const n=this._child_views.get(s);this.layout.items.push({layout:n.layout,row:o,col:t,row_span:i,col_span:e})}this.layout.set_sizing(this.box_sizing())}}t.GridBoxView=r,r.__name__=\"GridBoxView\";class c extends l.LayoutDOM{constructor(s){super(s)}}t.GridBox=c,n=c,c.__name__=\"GridBox\",n.prototype.default_view=r,n.define((({Any:s,Int:o,Number:t,Tuple:i,Array:e,Ref:n,Or:a,Opt:r})=>({children:[e(i(n(l.LayoutDOM),o,o,r(o),r(o))),[]],rows:[s,\"auto\"],cols:[s,\"auto\"],spacing:[a(t,i(t,t)),0]})))},\n", + " function _(t,e,o,s,n){s();const _=t(309),i=t(207);class a extends _.LayoutDOMView{get child_models(){return[]}_update_layout(){this.layout=new i.ContentBox(this.el),this.layout.set_sizing(this.box_sizing())}}o.HTMLBoxView=a,a.__name__=\"HTMLBoxView\";class u extends _.LayoutDOM{constructor(t){super(t)}}o.HTMLBox=u,u.__name__=\"HTMLBox\"},\n", + " function _(e,n,l,a,o){var t;a();const s=e(53),c=e(309);class d extends s.Model{constructor(e){super(e)}}l.Panel=d,t=d,d.__name__=\"Panel\",t.define((({Boolean:e,String:n,Ref:l})=>({title:[n,\"\"],child:[l(c.LayoutDOM)],closable:[e,!1],disabled:[e,!1]})))},\n", + " function _(o,s,t,i,e){var a;i();const n=o(308),l=o(209);class _ extends n.BoxView{_update_layout(){const o=this.child_views.map((o=>o.layout));this.layout=new l.Row(o),this.layout.cols=this.model.cols,this.layout.spacing=[0,this.model.spacing],this.layout.set_sizing(this.box_sizing())}}t.RowView=_,_.__name__=\"RowView\";class c extends n.Box{constructor(o){super(o)}}t.Row=c,a=c,c.__name__=\"Row\",a.prototype.default_view=_,a.define((({Any:o})=>({cols:[o,\"auto\"]})))},\n", + " function _(e,t,a,s,_){var o;s();const i=e(309),n=e(207);class u extends i.LayoutDOMView{get child_models(){return[]}_update_layout(){this.layout=new n.LayoutItem,this.layout.set_sizing(this.box_sizing())}}a.SpacerView=u,u.__name__=\"SpacerView\";class c extends i.LayoutDOM{constructor(e){super(e)}}a.Spacer=c,o=c,c.__name__=\"Spacer\",o.prototype.default_view=u},\n", + " function _(e,t,s,i,l){i();const h=e(1);var a;const o=e(207),d=e(43),r=e(9),c=e(10),n=e(20),_=e(309),p=e(313),b=(0,h.__importStar)(e(317)),m=b,u=(0,h.__importStar)(e(318)),g=u,v=(0,h.__importStar)(e(229)),w=v;class f extends _.LayoutDOMView{constructor(){super(...arguments),this._scroll_index=0}connect_signals(){super.connect_signals(),this.connect(this.model.properties.tabs.change,(()=>this.rebuild())),this.connect(this.model.properties.active.change,(()=>this.on_active_change()))}styles(){return[...super.styles(),u.default,v.default,b.default]}get child_models(){return this.model.tabs.map((e=>e.child))}_update_layout(){const e=this.model.tabs_location,t=\"above\"==e||\"below\"==e,{scroll_el:s,headers_el:i}=this;this.header=new class extends o.ContentBox{_measure(e){const l=(0,d.size)(s),h=(0,d.children)(i).slice(0,3).map((e=>(0,d.size)(e))),{width:a,height:o}=super._measure(e);if(t){const t=l.width+(0,r.sum)(h.map((e=>e.width)));return{width:e.width!=1/0?e.width:t,height:o}}{const t=l.height+(0,r.sum)(h.map((e=>e.height)));return{width:a,height:e.height!=1/0?e.height:t}}}}(this.header_el),t?this.header.set_sizing({width_policy:\"fit\",height_policy:\"fixed\"}):this.header.set_sizing({width_policy:\"fixed\",height_policy:\"fit\"});let l=1,h=1;switch(e){case\"above\":l-=1;break;case\"below\":l+=1;break;case\"left\":h-=1;break;case\"right\":h+=1}const a={layout:this.header,row:l,col:h},c=this.child_views.map((e=>({layout:e.layout,row:1,col:1})));this.layout=new o.Grid([a,...c]),this.layout.set_sizing(this.box_sizing())}update_position(){super.update_position(),this.header_el.style.position=\"absolute\",(0,d.position)(this.header_el,this.header.bbox);const e=this.model.tabs_location,t=\"above\"==e||\"below\"==e,s=(0,d.size)(this.scroll_el),i=(0,d.scroll_size)(this.headers_el);if(t){const{width:e}=this.header.bbox;i.width>e?(this.wrapper_el.style.maxWidth=e-s.width+\"px\",(0,d.display)(this.scroll_el),this.do_scroll(this.model.active)):(this.wrapper_el.style.maxWidth=\"\",(0,d.undisplay)(this.scroll_el))}else{const{height:e}=this.header.bbox;i.height>e?(this.wrapper_el.style.maxHeight=e-s.height+\"px\",(0,d.display)(this.scroll_el),this.do_scroll(this.model.active)):(this.wrapper_el.style.maxHeight=\"\",(0,d.undisplay)(this.scroll_el))}const{child_views:l}=this;for(const e of l)(0,d.hide)(e.el);const h=l[this.model.active];null!=h&&(0,d.show)(h.el)}render(){super.render();const{active:e}=this.model,t=this.model.tabs.map(((t,s)=>{const i=(0,d.div)({class:[m.tab,s==e?m.active:null]},t.title);if(i.addEventListener(\"click\",(e=>{this.model.disabled||e.target==e.currentTarget&&this.change_active(s)})),t.closable){const e=(0,d.div)({class:m.close});e.addEventListener(\"click\",(e=>{if(e.target==e.currentTarget){this.model.tabs=(0,r.remove_at)(this.model.tabs,s);const e=this.model.tabs.length;this.model.active>e-1&&(this.model.active=e-1)}})),i.appendChild(e)}return(this.model.disabled||t.disabled)&&i.classList.add(m.disabled),i}));this.headers_el=(0,d.div)({class:[m.headers]},t),this.wrapper_el=(0,d.div)({class:m.headers_wrapper},this.headers_el),this.left_el=(0,d.div)({class:[g.btn,g.btn_default],disabled:\"\"},(0,d.div)({class:[w.caret,m.left]})),this.right_el=(0,d.div)({class:[g.btn,g.btn_default]},(0,d.div)({class:[w.caret,m.right]})),this.left_el.addEventListener(\"click\",(()=>this.do_scroll(\"left\"))),this.right_el.addEventListener(\"click\",(()=>this.do_scroll(\"right\"))),this.scroll_el=(0,d.div)({class:g.btn_group},this.left_el,this.right_el);const s=this.model.tabs_location;this.header_el=(0,d.div)({class:[m.tabs_header,m[s]]},this.scroll_el,this.wrapper_el),this.el.appendChild(this.header_el)}do_scroll(e){const t=this.model.tabs.length;\"left\"==e?this._scroll_index-=1:\"right\"==e?this._scroll_index+=1:this._scroll_index=e,this._scroll_index=(0,c.clamp)(this._scroll_index,0,t-1),0==this._scroll_index?this.left_el.setAttribute(\"disabled\",\"\"):this.left_el.removeAttribute(\"disabled\"),this._scroll_index==t-1?this.right_el.setAttribute(\"disabled\",\"\"):this.right_el.removeAttribute(\"disabled\");const s=(0,d.children)(this.headers_el).slice(0,this._scroll_index).map((e=>e.getBoundingClientRect())),i=this.model.tabs_location;if(\"above\"==i||\"below\"==i){const e=-(0,r.sum)(s.map((e=>e.width)));this.headers_el.style.left=`${e}px`}else{const e=-(0,r.sum)(s.map((e=>e.height)));this.headers_el.style.top=`${e}px`}}change_active(e){e!=this.model.active&&(this.model.active=e)}on_active_change(){const e=this.model.active,t=(0,d.children)(this.headers_el);for(const e of t)e.classList.remove(m.active);t[e].classList.add(m.active);const{child_views:s}=this;for(const e of s)(0,d.hide)(e.el);(0,d.show)(s[e].el)}}s.TabsView=f,f.__name__=\"TabsView\";class x extends _.LayoutDOM{constructor(e){super(e)}}s.Tabs=x,a=x,x.__name__=\"Tabs\",a.prototype.default_view=f,a.define((({Int:e,Array:t,Ref:s})=>({tabs:[t(s(p.Panel)),[]],tabs_location:[n.Location,\"above\"],active:[e,0]})))},\n", + " function _(e,r,b,o,t){o(),b.root=\"bk-root\",b.tabs_header=\"bk-tabs-header\",b.btn_group=\"bk-btn-group\",b.btn=\"bk-btn\",b.headers_wrapper=\"bk-headers-wrapper\",b.above=\"bk-above\",b.right=\"bk-right\",b.below=\"bk-below\",b.left=\"bk-left\",b.headers=\"bk-headers\",b.tab=\"bk-tab\",b.active=\"bk-active\",b.close=\"bk-close\",b.disabled=\"bk-disabled\",b.default='.bk-root .bk-tabs-header{display:flex;flex-wrap:nowrap;align-items:center;overflow:hidden;user-select:none;-ms-user-select:none;-moz-user-select:none;-webkit-user-select:none;}.bk-root .bk-tabs-header .bk-btn-group{height:auto;margin-right:5px;}.bk-root .bk-tabs-header .bk-btn-group > .bk-btn{flex-grow:0;height:auto;padding:4px 4px;}.bk-root .bk-tabs-header .bk-headers-wrapper{flex-grow:1;overflow:hidden;color:#666666;}.bk-root .bk-tabs-header.bk-above .bk-headers-wrapper{border-bottom:1px solid #e6e6e6;}.bk-root .bk-tabs-header.bk-right .bk-headers-wrapper{border-left:1px solid #e6e6e6;}.bk-root .bk-tabs-header.bk-below .bk-headers-wrapper{border-top:1px solid #e6e6e6;}.bk-root .bk-tabs-header.bk-left .bk-headers-wrapper{border-right:1px solid #e6e6e6;}.bk-root .bk-tabs-header.bk-above,.bk-root .bk-tabs-header.bk-below{flex-direction:row;}.bk-root .bk-tabs-header.bk-above .bk-headers,.bk-root .bk-tabs-header.bk-below .bk-headers{flex-direction:row;}.bk-root .bk-tabs-header.bk-left,.bk-root .bk-tabs-header.bk-right{flex-direction:column;}.bk-root .bk-tabs-header.bk-left .bk-headers,.bk-root .bk-tabs-header.bk-right .bk-headers{flex-direction:column;}.bk-root .bk-tabs-header .bk-headers{position:relative;display:flex;flex-wrap:nowrap;align-items:center;}.bk-root .bk-tabs-header .bk-tab{padding:4px 8px;border:solid transparent;white-space:nowrap;cursor:pointer;}.bk-root .bk-tabs-header .bk-tab:hover{background-color:#f2f2f2;}.bk-root .bk-tabs-header .bk-tab.bk-active{color:#4d4d4d;background-color:white;border-color:#e6e6e6;}.bk-root .bk-tabs-header .bk-tab .bk-close{margin-left:10px;}.bk-root .bk-tabs-header .bk-tab.bk-disabled{cursor:not-allowed;pointer-events:none;opacity:0.65;}.bk-root .bk-tabs-header.bk-above .bk-tab{border-width:3px 1px 0px 1px;border-radius:4px 4px 0 0;}.bk-root .bk-tabs-header.bk-right .bk-tab{border-width:1px 3px 1px 0px;border-radius:0 4px 4px 0;}.bk-root .bk-tabs-header.bk-below .bk-tab{border-width:0px 1px 3px 1px;border-radius:0 0 4px 4px;}.bk-root .bk-tabs-header.bk-left .bk-tab{border-width:1px 0px 1px 3px;border-radius:4px 0 0 4px;}.bk-root .bk-close{display:inline-block;width:10px;height:10px;vertical-align:middle;background-image:url(\\'data:image/svg+xml;utf8, \\');}.bk-root .bk-close:hover{background-image:url(\\'data:image/svg+xml;utf8, \\');}'},\n", + " function _(o,b,r,t,e){t(),r.root=\"bk-root\",r.btn=\"bk-btn\",r.active=\"bk-active\",r.btn_default=\"bk-btn-default\",r.btn_primary=\"bk-btn-primary\",r.btn_success=\"bk-btn-success\",r.btn_warning=\"bk-btn-warning\",r.btn_danger=\"bk-btn-danger\",r.btn_light=\"bk-btn-light\",r.btn_group=\"bk-btn-group\",r.vertical=\"bk-vertical\",r.horizontal=\"bk-horizontal\",r.dropdown_toggle=\"bk-dropdown-toggle\",r.default=\".bk-root .bk-btn{height:100%;display:inline-block;text-align:center;vertical-align:middle;white-space:nowrap;cursor:pointer;padding:6px 12px;font-size:12px;border:1px solid transparent;border-radius:4px;outline:0;user-select:none;-ms-user-select:none;-moz-user-select:none;-webkit-user-select:none;}.bk-root .bk-btn:hover,.bk-root .bk-btn:focus{text-decoration:none;}.bk-root .bk-btn:active,.bk-root .bk-btn.bk-active{background-image:none;box-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);}.bk-root .bk-btn[disabled]{cursor:not-allowed;pointer-events:none;opacity:0.65;box-shadow:none;}.bk-root .bk-btn-default{color:#333;background-color:#fff;border-color:#ccc;}.bk-root .bk-btn-default:hover{background-color:#f5f5f5;border-color:#b8b8b8;}.bk-root .bk-btn-default.bk-active{background-color:#ebebeb;border-color:#adadad;}.bk-root .bk-btn-default[disabled],.bk-root .bk-btn-default[disabled]:hover,.bk-root .bk-btn-default[disabled]:focus,.bk-root .bk-btn-default[disabled]:active,.bk-root .bk-btn-default[disabled].bk-active{background-color:#e6e6e6;border-color:#ccc;}.bk-root .bk-btn-primary{color:#fff;background-color:#428bca;border-color:#357ebd;}.bk-root .bk-btn-primary:hover{background-color:#3681c1;border-color:#2c699e;}.bk-root .bk-btn-primary.bk-active{background-color:#3276b1;border-color:#285e8e;}.bk-root .bk-btn-primary[disabled],.bk-root .bk-btn-primary[disabled]:hover,.bk-root .bk-btn-primary[disabled]:focus,.bk-root .bk-btn-primary[disabled]:active,.bk-root .bk-btn-primary[disabled].bk-active{background-color:#506f89;border-color:#357ebd;}.bk-root .bk-btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c;}.bk-root .bk-btn-success:hover{background-color:#4eb24e;border-color:#409240;}.bk-root .bk-btn-success.bk-active{background-color:#47a447;border-color:#398439;}.bk-root .bk-btn-success[disabled],.bk-root .bk-btn-success[disabled]:hover,.bk-root .bk-btn-success[disabled]:focus,.bk-root .bk-btn-success[disabled]:active,.bk-root .bk-btn-success[disabled].bk-active{background-color:#667b66;border-color:#4cae4c;}.bk-root .bk-btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236;}.bk-root .bk-btn-warning:hover{background-color:#eea43b;border-color:#e89014;}.bk-root .bk-btn-warning.bk-active{background-color:#ed9c28;border-color:#d58512;}.bk-root .bk-btn-warning[disabled],.bk-root .bk-btn-warning[disabled]:hover,.bk-root .bk-btn-warning[disabled]:focus,.bk-root .bk-btn-warning[disabled]:active,.bk-root .bk-btn-warning[disabled].bk-active{background-color:#c89143;border-color:#eea236;}.bk-root .bk-btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a;}.bk-root .bk-btn-danger:hover{background-color:#d5433e;border-color:#bd2d29;}.bk-root .bk-btn-danger.bk-active{background-color:#d2322d;border-color:#ac2925;}.bk-root .bk-btn-danger[disabled],.bk-root .bk-btn-danger[disabled]:hover,.bk-root .bk-btn-danger[disabled]:focus,.bk-root .bk-btn-danger[disabled]:active,.bk-root .bk-btn-danger[disabled].bk-active{background-color:#a55350;border-color:#d43f3a;}.bk-root .bk-btn-light{color:#333;background-color:#fff;border-color:#ccc;border-color:transparent;}.bk-root .bk-btn-light:hover{background-color:#f5f5f5;border-color:#b8b8b8;}.bk-root .bk-btn-light.bk-active{background-color:#ebebeb;border-color:#adadad;}.bk-root .bk-btn-light[disabled],.bk-root .bk-btn-light[disabled]:hover,.bk-root .bk-btn-light[disabled]:focus,.bk-root .bk-btn-light[disabled]:active,.bk-root .bk-btn-light[disabled].bk-active{background-color:#e6e6e6;border-color:#ccc;}.bk-root .bk-btn-group{height:100%;display:flex;flex-wrap:nowrap;align-items:center;}.bk-root .bk-btn-group:not(.bk-vertical),.bk-root .bk-btn-group.bk-horizontal{flex-direction:row;}.bk-root .bk-btn-group.bk-vertical{flex-direction:column;}.bk-root .bk-btn-group > .bk-btn{flex-grow:1;}.bk-root .bk-btn-group:not(.bk-vertical) > .bk-btn + .bk-btn{margin-left:-1px;}.bk-root .bk-btn-group.bk-vertical > .bk-btn + .bk-btn{margin-top:-1px;}.bk-root .bk-btn-group:not(.bk-vertical) > .bk-btn:first-child:not(:last-child){border-bottom-right-radius:0;border-top-right-radius:0;}.bk-root .bk-btn-group.bk-vertical > .bk-btn:first-child:not(:last-child){border-bottom-left-radius:0;border-bottom-right-radius:0;}.bk-root .bk-btn-group:not(.bk-vertical) > .bk-btn:not(:first-child):last-child{border-bottom-left-radius:0;border-top-left-radius:0;}.bk-root .bk-btn-group.bk-vertical > .bk-btn:not(:first-child):last-child{border-top-left-radius:0;border-top-right-radius:0;}.bk-root .bk-btn-group > .bk-btn:not(:first-child):not(:last-child){border-radius:0;}.bk-root .bk-btn-group.bk-vertical > .bk-btn{width:100%;}.bk-root .bk-btn-group .bk-dropdown-toggle{flex:0 0 0;padding:6px 6px;}\"},\n", + " function _(e,t,o,n,_){var i;n();const s=e(310);class d extends s.ColumnView{}o.WidgetBoxView=d,d.__name__=\"WidgetBoxView\";class a extends s.Column{constructor(e){super(e)}}o.WidgetBox=a,i=a,a.__name__=\"WidgetBox\",i.prototype.default_view=d},\n", + " function _(t,a,i,e,M){e();var T=t(135);M(\"MathText\",T.MathText),M(\"Ascii\",T.Ascii),M(\"MathML\",T.MathML),M(\"TeX\",T.TeX),M(\"PlainText\",t(139).PlainText)},\n", + " function _(r,o,t,e,n){e(),n(\"CustomJSTransform\",r(322).CustomJSTransform),n(\"Dodge\",r(323).Dodge),n(\"Interpolator\",r(325).Interpolator),n(\"Jitter\",r(326).Jitter),n(\"LinearInterpolator\",r(327).LinearInterpolator),n(\"StepInterpolator\",r(328).StepInterpolator),n(\"Transform\",r(56).Transform)},\n", + " function _(r,t,s,n,e){var a;n();const u=r(56),o=r(13),m=r(34);class _ extends u.Transform{constructor(r){super(r)}get names(){return(0,o.keys)(this.args)}get values(){return(0,o.values)(this.args)}_make_transform(r,t){return new Function(...this.names,r,(0,m.use_strict)(t))}get scalar_transform(){return this._make_transform(\"x\",this.func)}get vector_transform(){return this._make_transform(\"xs\",this.v_func)}compute(r){return this.scalar_transform(...this.values,r)}v_compute(r){return this.vector_transform(...this.values,r)}}s.CustomJSTransform=_,a=_,_.__name__=\"CustomJSTransform\",a.define((({Unknown:r,String:t,Dict:s})=>({args:[s(r),{}],func:[t,\"\"],v_func:[t,\"\"]})))},\n", + " function _(e,n,r,o,s){var t;o();const u=e(324);class a extends u.RangeTransform{constructor(e){super(e)}_compute(e){return e+this.value}}r.Dodge=a,t=a,a.__name__=\"Dodge\",t.define((({Number:e})=>({value:[e,0]})))},\n", + " function _(e,n,t,r,a){var s;r();const c=e(56),o=e(57),i=e(67),u=e(24),h=e(8),l=e(11);class g extends c.Transform{constructor(e){super(e)}v_compute(e){let n;this.range instanceof i.FactorRange?n=this.range.v_synthetic(e):(0,h.isArrayableOf)(e,h.isNumber)?n=e:(0,l.unreachable)();const t=new((0,u.infer_type)(n))(n.length);for(let e=0;e({range:[n(e(o.Range)),null]})))},\n", + " function _(t,e,r,n,s){var o;n();const i=t(56),a=t(70),h=t(24),l=t(9),d=t(8);class c extends i.Transform{constructor(t){super(t),this._sorted_dirty=!0}connect_signals(){super.connect_signals(),this.connect(this.change,(()=>this._sorted_dirty=!0))}v_compute(t){const e=new((0,h.infer_type)(t))(t.length);for(let r=0;ro*(e[t]-e[r]))),this._x_sorted=new((0,h.infer_type)(e))(n),this._y_sorted=new((0,h.infer_type)(r))(n);for(let t=0;t({x:[o(r,s(e))],y:[o(r,s(e))],data:[i(n(a.ColumnarDataSource)),null],clip:[t,!0]})))},\n", + " function _(t,s,e,i,r){i();const n=t(1);var o;const a=t(324),u=t(67),h=t(20),c=t(8),m=t(12),f=(0,n.__importStar)(t(10)),_=t(11);class p extends a.RangeTransform{constructor(t){super(t)}v_compute(t){var s;let e;this.range instanceof u.FactorRange?e=this.range.v_synthetic(t):(0,c.isArrayableOf)(t,c.isNumber)?e=t:(0,_.unreachable)();const i=e.length;(null===(s=this.previous_offsets)||void 0===s?void 0:s.length)!=i&&(this.previous_offsets=new Array(i),this.previous_offsets=(0,m.map)(this.previous_offsets,(()=>this._compute())));const r=this.previous_offsets;return(0,m.map)(e,((t,s)=>r[s]+t))}_compute(){switch(this.distribution){case\"uniform\":return this.mean+(f.random()-.5)*this.width;case\"normal\":return f.rnorm(this.mean,this.width)}}}e.Jitter=p,o=p,p.__name__=\"Jitter\",o.define((({Number:t})=>({mean:[t,0],width:[t,1],distribution:[h.Distribution,\"uniform\"]})))},\n", + " function _(t,s,_,r,e){r();const i=t(9),o=t(325);class n extends o.Interpolator{constructor(t){super(t)}compute(t){if(this.sort(!1),this.clip){if(tthis._x_sorted[this._x_sorted.length-1])return NaN}else{if(tthis._x_sorted[this._x_sorted.length-1])return this._y_sorted[this._y_sorted.length-1]}if(t==this._x_sorted[0])return this._y_sorted[0];const s=(0,i.find_last_index)(this._x_sorted,(s=>sthis._x_sorted[this._x_sorted.length-1])return NaN}else{if(tthis._x_sorted[this._x_sorted.length-1])return this._y_sorted[this._y_sorted.length-1]}let e;switch(this.mode){case\"after\":e=(0,d.find_last_index)(this._x_sorted,(e=>t>=e));break;case\"before\":e=(0,d.find_index)(this._x_sorted,(e=>t<=e));break;case\"center\":{const s=(0,d.map)(this._x_sorted,(e=>Math.abs(e-t))),r=(0,d.min)(s);e=(0,d.find_index)(s,(t=>r===t));break}default:throw new Error(`unknown mode: ${this.mode}`)}return-1!=e?this._y_sorted[e]:NaN}}s.StepInterpolator=h,_=h,h.__name__=\"StepInterpolator\",_.define((()=>({mode:[n.StepMode,\"after\"]})))},\n", + " function _(p,o,t,a,n){a(),n(\"MapOptions\",p(330).MapOptions),n(\"GMapOptions\",p(330).GMapOptions),n(\"GMapPlot\",p(330).GMapPlot),n(\"Plot\",p(331).Plot)},\n", + " function _(e,t,n,o,a){var s,p,_;o();const i=e(331),r=e(53),l=e(58),c=e(336);a(\"GMapPlotView\",c.GMapPlotView);class d extends r.Model{constructor(e){super(e)}}n.MapOptions=d,s=d,d.__name__=\"MapOptions\",s.define((({Int:e,Number:t})=>({lat:[t],lng:[t],zoom:[e,12]})));class u extends d{constructor(e){super(e)}}n.GMapOptions=u,p=u,u.__name__=\"GMapOptions\",p.define((({Boolean:e,Int:t,String:n})=>({map_type:[n,\"roadmap\"],scale_control:[e,!1],styles:[n],tilt:[t,45]})));class M extends i.Plot{constructor(e){super(e),this.use_map=!0}}n.GMapPlot=M,_=M,M.__name__=\"GMapPlot\",_.prototype.default_view=c.GMapPlotView,_.define((({String:e,Ref:t})=>({map_options:[t(u)],api_key:[e],api_version:[e,\"weekly\"]}))),_.override({x_range:()=>new l.Range1d,y_range:()=>new l.Range1d})},\n", + " function _(e,t,r,n,i){n();const o=e(1);var a;const s=(0,o.__importStar)(e(48)),l=(0,o.__importStar)(e(18)),_=e(15),c=e(20),h=e(9),d=e(13),u=e(8),g=e(309),p=e(128),f=e(306),b=e(40),w=e(118),y=e(59),m=e(221),x=e(57),v=e(55),A=e(75),S=e(41),R=e(176),D=e(175),L=e(63),P=e(332);i(\"PlotView\",P.PlotView);class k extends g.LayoutDOM{constructor(e){super(e),this.use_map=!1}_doc_attached(){super._doc_attached(),this._push_changes([[this.properties.inner_height,null,this.inner_height],[this.properties.inner_width,null,this.inner_width]])}initialize(){super.initialize(),this.reset=new _.Signal0(this,\"reset\");for(const e of(0,d.values)(this.extra_x_ranges).concat(this.x_range)){let t=e.plots;(0,u.isArray)(t)&&(t=t.concat(this),e.setv({plots:t},{silent:!0}))}for(const e of(0,d.values)(this.extra_y_ranges).concat(this.y_range)){let t=e.plots;(0,u.isArray)(t)&&(t=t.concat(this),e.setv({plots:t},{silent:!0}))}}add_layout(e,t=\"center\"){const r=this.properties[t].get_value();this.setv({[t]:[...r,e]})}remove_layout(e){const t=t=>{(0,h.remove_by)(t,(t=>t==e))};t(this.left),t(this.right),t(this.above),t(this.below),t(this.center)}get data_renderers(){return this.renderers.filter((e=>e instanceof R.DataRenderer))}add_renderers(...e){this.renderers=this.renderers.concat(e)}add_glyph(e,t=new A.ColumnDataSource,r={}){const n=new D.GlyphRenderer(Object.assign(Object.assign({},r),{data_source:t,glyph:e}));return this.add_renderers(n),n}add_tools(...e){this.toolbar.tools=this.toolbar.tools.concat(e)}get panels(){return[...this.side_panels,...this.center]}get side_panels(){const{above:e,below:t,left:r,right:n}=this;return(0,h.concat)([e,t,r,n])}}r.Plot=k,a=k,k.__name__=\"Plot\",a.prototype.default_view=P.PlotView,a.mixins([[\"outline_\",s.Line],[\"background_\",s.Fill],[\"border_\",s.Fill]]),a.define((({Boolean:e,Number:t,String:r,Array:n,Dict:i,Or:o,Ref:a,Null:s,Nullable:_})=>({toolbar:[a(m.Toolbar),()=>new m.Toolbar],toolbar_location:[_(c.Location),\"right\"],toolbar_sticky:[e,!0],plot_width:[l.Alias(\"width\")],plot_height:[l.Alias(\"height\")],frame_width:[_(t),null],frame_height:[_(t),null],title:[o(a(w.Title),r,s),\"\",{convert:e=>(0,u.isString)(e)?new w.Title({text:e}):e}],title_location:[_(c.Location),\"above\"],above:[n(o(a(b.Annotation),a(p.Axis))),[]],below:[n(o(a(b.Annotation),a(p.Axis))),[]],left:[n(o(a(b.Annotation),a(p.Axis))),[]],right:[n(o(a(b.Annotation),a(p.Axis))),[]],center:[n(o(a(b.Annotation),a(f.Grid))),[]],renderers:[n(a(S.Renderer)),[]],x_range:[a(x.Range),()=>new L.DataRange1d],y_range:[a(x.Range),()=>new L.DataRange1d],x_scale:[a(v.Scale),()=>new y.LinearScale],y_scale:[a(v.Scale),()=>new y.LinearScale],extra_x_ranges:[i(a(x.Range)),{}],extra_y_ranges:[i(a(x.Range)),{}],extra_x_scales:[i(a(v.Scale)),{}],extra_y_scales:[i(a(v.Scale)),{}],lod_factor:[t,10],lod_interval:[t,300],lod_threshold:[_(t),2e3],lod_timeout:[t,500],hidpi:[e,!0],output_backend:[c.OutputBackend,\"canvas\"],min_border:[_(t),5],min_border_top:[_(t),null],min_border_left:[_(t),null],min_border_bottom:[_(t),null],min_border_right:[_(t),null],inner_width:[t,0],inner_height:[t,0],outer_width:[t,0],outer_height:[t,0],match_aspect:[e,!1],aspect_scale:[t,1],reset_policy:[c.ResetPolicy,\"standard\"]}))),a.override({width:600,height:600,outline_line_color:\"#e5e5e5\",border_fill_color:\"#ffffff\",background_fill_color:\"#ffffff\"})},\n", + " function _(e,t,i,s,a){s();const n=e(1),o=e(126),l=e(249),r=e(309),_=e(40),h=e(118),d=e(128),u=e(220),c=e(251),p=e(113),v=e(45),g=e(19),b=e(251),m=e(333),y=e(8),w=e(9),f=e(235),x=e(208),z=e(211),k=e(209),q=e(123),M=e(65),R=e(334),V=e(335),S=e(28);class O extends r.LayoutDOMView{constructor(){super(...arguments),this._outer_bbox=new M.BBox,this._inner_bbox=new M.BBox,this._needs_paint=!0,this._needs_layout=!1,this._invalidated_painters=new Set,this._invalidate_all=!0,this._needs_notify=!1}get canvas(){return this.canvas_view}get state(){return this._state_manager}set invalidate_dataranges(e){this._range_manager.invalidate_dataranges=e}renderer_view(e){const t=this.renderer_views.get(e);if(null==t)for(const[,t]of this.renderer_views){const i=t.renderer_view(e);if(null!=i)return i}return t}get is_paused(){return null!=this._is_paused&&0!==this._is_paused}get child_models(){return[]}pause(){null==this._is_paused?this._is_paused=1:this._is_paused+=1}unpause(e=!1){if(null==this._is_paused)throw new Error(\"wasn't paused\");this._is_paused-=1,0!=this._is_paused||e||this.request_paint(\"everything\")}notify_finished_after_paint(){this._needs_notify=!0}request_render(){this.request_paint(\"everything\")}request_paint(e){this.invalidate_painters(e),this.schedule_paint()}invalidate_painters(e){if(\"everything\"==e)this._invalidate_all=!0;else if((0,y.isArray)(e))for(const t of e)this._invalidated_painters.add(t);else this._invalidated_painters.add(e)}schedule_paint(){if(!this.is_paused){const e=this.throttled_paint();this._ready=this._ready.then((()=>e))}}request_layout(){this._needs_layout=!0,this.request_paint(\"everything\")}reset(){\"standard\"==this.model.reset_policy&&(this.state.clear(),this.reset_range(),this.reset_selection()),this.model.trigger_event(new c.Reset)}remove(){(0,p.remove_views)(this.renderer_views),(0,p.remove_views)(this.tool_views),this.canvas_view.remove(),super.remove()}render(){super.render(),this.el.appendChild(this.canvas_view.el),this.canvas_view.render()}initialize(){this.pause(),super.initialize(),this.lod_started=!1,this.visuals=new v.Visuals(this),this._initial_state={selection:new Map,dimensions:{width:0,height:0}},this.visibility_callbacks=[],this.renderer_views=new Map,this.tool_views=new Map,this.frame=new o.CartesianFrame(this.model.x_scale,this.model.y_scale,this.model.x_range,this.model.y_range,this.model.extra_x_ranges,this.model.extra_y_ranges,this.model.extra_x_scales,this.model.extra_y_scales),this._range_manager=new R.RangeManager(this),this._state_manager=new V.StateManager(this,this._initial_state),this.throttled_paint=(0,m.throttle)((()=>this.repaint()),1e3/60);const{title_location:e,title:t}=this.model;null!=e&&null!=t&&(this._title=t instanceof h.Title?t:new h.Title({text:t}));const{toolbar_location:i,toolbar:s}=this.model;null!=i&&null!=s&&(this._toolbar=new u.ToolbarPanel({toolbar:s}),s.toolbar_location=i)}async lazy_initialize(){await super.lazy_initialize();const{hidpi:e,output_backend:t}=this.model,i=new l.Canvas({hidpi:e,output_backend:t});this.canvas_view=await(0,p.build_view)(i,{parent:this}),this.canvas_view.plot_views=[this],await this.build_renderer_views(),await this.build_tool_views(),this._range_manager.update_dataranges(),this.unpause(!0),g.logger.debug(\"PlotView initialized\")}_width_policy(){return null==this.model.frame_width?super._width_policy():\"min\"}_height_policy(){return null==this.model.frame_height?super._height_policy():\"min\"}_update_layout(){var e,t,i,s,a;this.layout=new z.BorderLayout,this.layout.set_sizing(this.box_sizing());const n=(0,w.copy)(this.model.above),o=(0,w.copy)(this.model.below),l=(0,w.copy)(this.model.left),r=(0,w.copy)(this.model.right),d=e=>{switch(e){case\"above\":return n;case\"below\":return o;case\"left\":return l;case\"right\":return r}},{title_location:c,title:p}=this.model;null!=c&&null!=p&&d(c).push(this._title);const{toolbar_location:v,toolbar:g}=this.model;if(null!=v&&null!=g){const e=d(v);let t=!0;if(this.model.toolbar_sticky)for(let i=0;i{var i;const s=this.renderer_view(t);return s.panel=new q.Panel(e),null===(i=s.update_layout)||void 0===i||i.call(s),s.layout},m=(e,t)=>{const i=\"above\"==e||\"below\"==e,s=[];for(const a of t)if((0,y.isArray)(a)){const t=a.map((t=>{const s=b(e,t);if(t instanceof u.ToolbarPanel){const e=i?\"width_policy\":\"height_policy\";s.set_sizing(Object.assign(Object.assign({},s.sizing),{[e]:\"min\"}))}return s}));let n;i?(n=new k.Row(t),n.set_sizing({width_policy:\"max\",height_policy:\"min\"})):(n=new k.Column(t),n.set_sizing({width_policy:\"min\",height_policy:\"max\"})),n.absolute=!0,s.push(n)}else s.push(b(e,a));return s},f=null!==(e=this.model.min_border)&&void 0!==e?e:0;this.layout.min_border={left:null!==(t=this.model.min_border_left)&&void 0!==t?t:f,top:null!==(i=this.model.min_border_top)&&void 0!==i?i:f,right:null!==(s=this.model.min_border_right)&&void 0!==s?s:f,bottom:null!==(a=this.model.min_border_bottom)&&void 0!==a?a:f};const M=new x.NodeLayout,R=new x.VStack,V=new x.VStack,S=new x.HStack,O=new x.HStack;M.absolute=!0,R.absolute=!0,V.absolute=!0,S.absolute=!0,O.absolute=!0,M.children=this.model.center.filter((e=>e instanceof _.Annotation)).map((e=>{var t;const i=this.renderer_view(e);return null===(t=i.update_layout)||void 0===t||t.call(i),i.layout})).filter((e=>null!=e));const{frame_width:P,frame_height:j}=this.model;M.set_sizing(Object.assign(Object.assign({},null!=P?{width_policy:\"fixed\",width:P}:{width_policy:\"fit\"}),null!=j?{height_policy:\"fixed\",height:j}:{height_policy:\"fit\"})),M.on_resize((e=>this.frame.set_geometry(e))),R.children=(0,w.reversed)(m(\"above\",n)),V.children=m(\"below\",o),S.children=(0,w.reversed)(m(\"left\",l)),O.children=m(\"right\",r),R.set_sizing({width_policy:\"fit\",height_policy:\"min\"}),V.set_sizing({width_policy:\"fit\",height_policy:\"min\"}),S.set_sizing({width_policy:\"min\",height_policy:\"fit\"}),O.set_sizing({width_policy:\"min\",height_policy:\"fit\"}),this.layout.center_panel=M,this.layout.top_panel=R,this.layout.bottom_panel=V,this.layout.left_panel=S,this.layout.right_panel=O}get axis_views(){const e=[];for(const[,t]of this.renderer_views)t instanceof d.AxisView&&e.push(t);return e}set_toolbar_visibility(e){for(const t of this.visibility_callbacks)t(e)}update_range(e,t){this.pause(),this._range_manager.update(e,t),this.unpause()}reset_range(){this.update_range(null),this.trigger_ranges_update_event()}trigger_ranges_update_event(){const{x_range:e,y_range:t}=this.model;this.model.trigger_event(new b.RangesUpdate(e.start,e.end,t.start,t.end))}get_selection(){const e=new Map;for(const t of this.model.data_renderers){const{selected:i}=t.selection_manager.source;e.set(t,i)}return e}update_selection(e){for(const t of this.model.data_renderers){const i=t.selection_manager.source;if(null!=e){const s=e.get(t);null!=s&&i.selected.update(s,!0)}else i.selection_manager.clear()}}reset_selection(){this.update_selection(null)}_invalidate_layout(){(()=>{var e;for(const t of this.model.side_panels){const i=this.renderer_views.get(t);if(null===(e=i.layout)||void 0===e?void 0:e.has_size_changed())return this.invalidate_painters(i),!0}return!1})()&&this.root.compute_layout()}get_renderer_views(){return this.computed_renderers.map((e=>this.renderer_views.get(e)))}*_compute_renderers(){const{above:e,below:t,left:i,right:s,center:a,renderers:n}=this.model;yield*n,yield*e,yield*t,yield*i,yield*s,yield*a,null!=this._title&&(yield this._title),null!=this._toolbar&&(yield this._toolbar);for(const e of this.model.toolbar.tools)null!=e.overlay&&(yield e.overlay),yield*e.synthetic_renderers}async build_renderer_views(){this.computed_renderers=[...this._compute_renderers()],await(0,p.build_views)(this.renderer_views,this.computed_renderers,{parent:this})}async build_tool_views(){const e=this.model.toolbar.tools;(await(0,p.build_views)(this.tool_views,e,{parent:this})).map((e=>this.canvas_view.ui_event_bus.register_tool(e)))}connect_signals(){super.connect_signals();const{x_ranges:e,y_ranges:t}=this.frame;for(const[,t]of e)this.connect(t.change,(()=>{this._needs_layout=!0,this.request_paint(\"everything\")}));for(const[,e]of t)this.connect(e.change,(()=>{this._needs_layout=!0,this.request_paint(\"everything\")}));const{above:i,below:s,left:a,right:n,center:o,renderers:l}=this.model.properties;this.on_change([i,s,a,n,o,l],(async()=>await this.build_renderer_views())),this.connect(this.model.toolbar.properties.tools.change,(async()=>{await this.build_renderer_views(),await this.build_tool_views()})),this.connect(this.model.change,(()=>this.request_paint(\"everything\"))),this.connect(this.model.reset,(()=>this.reset()))}has_finished(){if(!super.has_finished())return!1;if(this.model.visible)for(const[,e]of this.renderer_views)if(!e.has_finished())return!1;return!0}after_layout(){var e;super.after_layout();for(const[,t]of this.renderer_views)t instanceof _.AnnotationView&&(null===(e=t.after_layout)||void 0===e||e.call(t));if(this._needs_layout=!1,this.model.setv({inner_width:Math.round(this.frame.bbox.width),inner_height:Math.round(this.frame.bbox.height),outer_width:Math.round(this.layout.bbox.width),outer_height:Math.round(this.layout.bbox.height)},{no_change:!0}),!1!==this.model.match_aspect&&(this.pause(),this._range_manager.update_dataranges(),this.unpause(!0)),!this._outer_bbox.equals(this.layout.bbox)){const{width:e,height:t}=this.layout.bbox;this.canvas_view.resize(e,t),this._outer_bbox=this.layout.bbox,this._invalidate_all=!0,this._needs_paint=!0}const{inner_bbox:t}=this.layout;this._inner_bbox.equals(t)||(this._inner_bbox=t,this._needs_paint=!0),this._needs_paint&&this.paint()}repaint(){this._needs_layout&&this._invalidate_layout(),this.paint()}paint(){this.is_paused||(this.model.visible&&(g.logger.trace(`${this.toString()}.paint()`),this._actual_paint()),this._needs_notify&&(this._needs_notify=!1,this.notify_finished()))}_actual_paint(){var e;const{document:t}=this.model;if(null!=t){const e=t.interactive_duration();e>=0&&e{t.interactive_duration()>this.model.lod_timeout&&t.interactive_stop(),this.request_paint(\"everything\")}),this.model.lod_timeout):t.interactive_stop()}this._range_manager.invalidate_dataranges&&(this._range_manager.update_dataranges(),this._invalidate_layout());let i=!1,s=!1;if(this._invalidate_all)i=!0,s=!0;else for(const e of this._invalidated_painters){const{level:t}=e.model;if(\"overlay\"!=t?i=!0:s=!0,i&&s)break}this._invalidated_painters.clear(),this._invalidate_all=!1;const a=[this.frame.bbox.left,this.frame.bbox.top,this.frame.bbox.width,this.frame.bbox.height],{primary:n,overlays:o}=this.canvas_view;i&&(n.prepare(),this.canvas_view.prepare_webgl(a),this._map_hook(n.ctx,a),this._paint_empty(n.ctx,a),this._paint_outline(n.ctx,a),this._paint_levels(n.ctx,\"image\",a,!0),this._paint_levels(n.ctx,\"underlay\",a,!0),this._paint_levels(n.ctx,\"glyph\",a,!0),this._paint_levels(n.ctx,\"guide\",a,!1),this._paint_levels(n.ctx,\"annotation\",a,!1),n.finish()),(s||S.settings.wireframe)&&(o.prepare(),this._paint_levels(o.ctx,\"overlay\",a,!1),S.settings.wireframe&&this._paint_layout(o.ctx,this.layout),o.finish()),null==this._initial_state.range&&(this._initial_state.range=null!==(e=this._range_manager.compute_initial())&&void 0!==e?e:void 0),this._needs_paint=!1}_paint_levels(e,t,i,s){for(const a of this.computed_renderers){if(a.level!=t)continue;const n=this.renderer_views.get(a);e.save(),(s||n.needs_clip)&&(e.beginPath(),e.rect(...i),e.clip()),n.render(),e.restore(),n.has_webgl&&n.needs_webgl_blit&&this.canvas_view.blit_webgl(e)}}_paint_layout(e,t){const{x:i,y:s,width:a,height:n}=t.bbox;e.strokeStyle=\"blue\",e.strokeRect(i,s,a,n);for(const a of t)e.save(),t.absolute||e.translate(i,s),this._paint_layout(e,a),e.restore()}_map_hook(e,t){}_paint_empty(e,t){const[i,s,a,n]=[0,0,this.layout.bbox.width,this.layout.bbox.height],[o,l,r,_]=t;this.visuals.border_fill.doit&&(this.visuals.border_fill.set_value(e),e.fillRect(i,s,a,n),e.clearRect(o,l,r,_)),this.visuals.background_fill.doit&&(this.visuals.background_fill.set_value(e),e.fillRect(o,l,r,_))}_paint_outline(e,t){if(this.visuals.outline_line.doit){e.save(),this.visuals.outline_line.set_value(e);let[i,s,a,n]=t;i+a==this.layout.bbox.width&&(a-=1),s+n==this.layout.bbox.height&&(n-=1),e.strokeRect(i,s,a,n),e.restore()}}to_blob(){return this.canvas_view.to_blob()}export(e,t=!0){const i=\"png\"==e?\"canvas\":\"svg\",s=new f.CanvasLayer(i,t),{width:a,height:n}=this.layout.bbox;s.resize(a,n);const{canvas:o}=this.canvas_view.compose();return s.ctx.drawImage(o,0,0),s}serializable_state(){const e=super.serializable_state(),{children:t}=e,i=(0,n.__rest)(e,[\"children\"]),s=this.get_renderer_views().map((e=>e.serializable_state())).filter((e=>null!=e.bbox));return Object.assign(Object.assign({},i),{children:[...null!=t?t:[],...s]})}}i.PlotView=O,O.__name__=\"PlotView\"},\n", + " function _(t,n,e,o,u){o(),e.throttle=function(t,n){let e=null,o=0,u=!1;return function(){return new Promise(((r,i)=>{const l=function(){o=Date.now(),e=null,u=!1;try{t(),r()}catch(t){i(t)}},a=Date.now(),c=n-(a-o);c<=0&&!u?(null!=e&&clearTimeout(e),u=!0,requestAnimationFrame(l)):e||u?r():e=setTimeout((()=>requestAnimationFrame(l)),c)}))}}},\n", + " function _(t,n,e,a,s){a();const o=t(63),r=t(19);class l{constructor(t){this.parent=t,this.invalidate_dataranges=!0}get frame(){return this.parent.frame}update(t,n){const{x_ranges:e,y_ranges:a}=this.frame;if(null==t){for(const[,t]of e)t.reset();for(const[,t]of a)t.reset();this.update_dataranges()}else{const s=[];for(const[n,a]of e)s.push([a,t.xrs.get(n)]);for(const[n,e]of a)s.push([e,t.yrs.get(n)]);(null==n?void 0:n.scrolling)&&this._update_ranges_together(s),this._update_ranges_individually(s,n)}}reset(){this.update(null)}_update_dataranges(t){const n=new Map,e=new Map;let a=!1;for(const[,n]of t.x_ranges)n instanceof o.DataRange1d&&\"log\"==n.scale_hint&&(a=!0);for(const[,n]of t.y_ranges)n instanceof o.DataRange1d&&\"log\"==n.scale_hint&&(a=!0);for(const t of this.parent.model.data_renderers){const s=this.parent.renderer_view(t);if(null==s)continue;const o=s.glyph_view.bounds();if(null!=o&&n.set(t,o),a){const n=s.glyph_view.log_bounds();null!=n&&e.set(t,n)}}let s=!1,l=!1;const i=t.x_target.span,d=t.y_target.span;let u;!1!==this.parent.model.match_aspect&&0!=i&&0!=d&&(u=1/this.parent.model.aspect_scale*(i/d));for(const[,a]of t.x_ranges){if(a instanceof o.DataRange1d){const t=\"log\"==a.scale_hint?e:n;a.update(t,0,this.parent.model,u),a.follow&&(s=!0)}null!=a.bounds&&(l=!0)}for(const[,a]of t.y_ranges){if(a instanceof o.DataRange1d){const t=\"log\"==a.scale_hint?e:n;a.update(t,1,this.parent.model,u),a.follow&&(s=!0)}null!=a.bounds&&(l=!0)}if(s&&l){r.logger.warn(\"Follow enabled so bounds are unset.\");for(const[,n]of t.x_ranges)n.bounds=null;for(const[,n]of t.y_ranges)n.bounds=null}}update_dataranges(){this._update_dataranges(this.frame);for(const t of this.parent.model.renderers){const{coordinates:n}=t;null!=n&&this._update_dataranges(n)}null!=this.compute_initial()&&(this.invalidate_dataranges=!1)}compute_initial(){let t=!0;const{x_ranges:n,y_ranges:e}=this.frame,a=new Map,s=new Map;for(const[e,s]of n){const{start:n,end:o}=s;if(null==n||null==o||isNaN(n+o)){t=!1;break}a.set(e,{start:n,end:o})}if(t)for(const[n,a]of e){const{start:e,end:o}=a;if(null==e||null==o||isNaN(e+o)){t=!1;break}s.set(n,{start:e,end:o})}return t?{xrs:a,yrs:s}:(r.logger.warn(\"could not set initial ranges\"),null)}_update_ranges_together(t){let n=1;for(const[e,a]of t)n=Math.min(n,this._get_weight_to_constrain_interval(e,a));if(n<1)for(const[e,a]of t)a.start=n*a.start+(1-n)*e.start,a.end=n*a.end+(1-n)*e.end}_update_ranges_individually(t,n){const e=!!(null==n?void 0:n.panning),a=!!(null==n?void 0:n.scrolling);let s=!1;for(const[n,o]of t){if(!a){const t=this._get_weight_to_constrain_interval(n,o);t<1&&(o.start=t*o.start+(1-t)*n.start,o.end=t*o.end+(1-t)*n.end)}if(null!=n.bounds&&\"auto\"!=n.bounds){const[t,r]=n.bounds,l=Math.abs(o.end-o.start);n.is_reversed?(null!=t&&t>o.end&&(s=!0,o.end=t,(e||a)&&(o.start=t+l)),null!=r&&ro.start&&(s=!0,o.start=t,(e||a)&&(o.end=t+l)),null!=r&&r0&&r0&&r>a&&(s=(a-o)/(r-o)),s=Math.max(0,Math.min(1,s))}return s}}e.RangeManager=l,l.__name__=\"RangeManager\"},\n", + " function _(t,i,s,e,n){e();const h=t(15);class a{constructor(t,i){this.parent=t,this.initial_state=i,this.changed=new h.Signal0(this.parent,\"state_changed\"),this.history=[],this.index=-1}_do_state_change(t){const i=null!=this.history[t]?this.history[t].state:this.initial_state;return null!=i.range&&this.parent.update_range(i.range),null!=i.selection&&this.parent.update_selection(i.selection),i}push(t,i){const{history:s,index:e}=this,n=null!=s[e]?s[e].state:{},h=Object.assign(Object.assign(Object.assign({},this.initial_state),n),i);this.history=this.history.slice(0,this.index+1),this.history.push({type:t,state:h}),this.index=this.history.length-1,this.changed.emit()}clear(){this.history=[],this.index=-1,this.changed.emit()}undo(){if(this.can_undo){this.index-=1;const t=this._do_state_change(this.index);return this.changed.emit(),t}return null}redo(){if(this.can_redo){this.index+=1;const t=this._do_state_change(this.index);return this.changed.emit(),t}return null}get can_undo(){return this.index>=0}get can_redo(){return this.indexm.emit();const s=encodeURIComponent,o=document.createElement(\"script\");o.type=\"text/javascript\",o.src=`https://maps.googleapis.com/maps/api/js?v=${s(e)}&key=${s(t)}&callback=_bokeh_gmaps_callback`,document.body.appendChild(o)}(t,e)}m.connect((()=>this.request_paint(\"everything\")))}this.unpause()}remove(){(0,p.remove)(this.map_el),super.remove()}update_range(t,e){var s,o;if(null==t)this.map.setCenter({lat:this.initial_lat,lng:this.initial_lng}),this.map.setOptions({zoom:this.initial_zoom}),super.update_range(null,e);else if(null!=t.sdx||null!=t.sdy)this.map.panBy(null!==(s=t.sdx)&&void 0!==s?s:0,null!==(o=t.sdy)&&void 0!==o?o:0),super.update_range(t,e);else if(null!=t.factor){if(10!==this.zoom_count)return void(this.zoom_count+=1);this.zoom_count=0,this.pause(),super.update_range(t,e);const s=t.factor<0?-1:1,o=this.map.getZoom();if(null!=o){const t=o+s;if(t>=2){this.map.setZoom(t);const[e,s]=this._get_projected_bounds();s-e<0&&this.map.setZoom(o)}}this.unpause()}this._set_bokeh_ranges()}_build_map(){const{maps:t}=google;this.map_types={satellite:t.MapTypeId.SATELLITE,terrain:t.MapTypeId.TERRAIN,roadmap:t.MapTypeId.ROADMAP,hybrid:t.MapTypeId.HYBRID};const e=this.model.map_options,s={center:new t.LatLng(e.lat,e.lng),zoom:e.zoom,disableDefaultUI:!0,mapTypeId:this.map_types[e.map_type],scaleControl:e.scale_control,tilt:e.tilt};null!=e.styles&&(s.styles=JSON.parse(e.styles)),this.map_el=(0,p.div)({style:{position:\"absolute\"}}),this.canvas_view.add_underlay(this.map_el),this.map=new t.Map(this.map_el,s),t.event.addListener(this.map,\"idle\",(()=>this._set_bokeh_ranges())),t.event.addListener(this.map,\"bounds_changed\",(()=>this._set_bokeh_ranges())),t.event.addListenerOnce(this.map,\"tilesloaded\",(()=>this._render_finished())),this.connect(this.model.properties.map_options.change,(()=>this._update_options())),this.connect(this.model.map_options.properties.styles.change,(()=>this._update_styles())),this.connect(this.model.map_options.properties.lat.change,(()=>this._update_center(\"lat\"))),this.connect(this.model.map_options.properties.lng.change,(()=>this._update_center(\"lng\"))),this.connect(this.model.map_options.properties.zoom.change,(()=>this._update_zoom())),this.connect(this.model.map_options.properties.map_type.change,(()=>this._update_map_type())),this.connect(this.model.map_options.properties.scale_control.change,(()=>this._update_scale_control())),this.connect(this.model.map_options.properties.tilt.change,(()=>this._update_tilt()))}_render_finished(){this._tiles_loaded=!0,this.notify_finished()}has_finished(){return super.has_finished()&&!0===this._tiles_loaded}_get_latlon_bounds(){const t=this.map.getBounds(),e=t.getNorthEast(),s=t.getSouthWest();return[s.lng(),e.lng(),s.lat(),e.lat()]}_get_projected_bounds(){const[t,e,s,o]=this._get_latlon_bounds(),[i,a]=l.wgs84_mercator.compute(t,s),[n,p]=l.wgs84_mercator.compute(e,o);return[i,n,a,p]}_set_bokeh_ranges(){const[t,e,s,o]=this._get_projected_bounds();this.frame.x_range.setv({start:t,end:e}),this.frame.y_range.setv({start:s,end:o})}_update_center(t){var e;const s=null===(e=this.map.getCenter())||void 0===e?void 0:e.toJSON();null!=s&&(s[t]=this.model.map_options[t],this.map.setCenter(s),this._set_bokeh_ranges())}_update_map_type(){this.map.setOptions({mapTypeId:this.map_types[this.model.map_options.map_type]})}_update_scale_control(){this.map.setOptions({scaleControl:this.model.map_options.scale_control})}_update_tilt(){this.map.setOptions({tilt:this.model.map_options.tilt})}_update_options(){this._update_styles(),this._update_center(\"lat\"),this._update_center(\"lng\"),this._update_zoom(),this._update_map_type()}_update_styles(){this.map.setOptions({styles:JSON.parse(this.model.map_options.styles)})}_update_zoom(){this.map.setOptions({zoom:this.model.map_options.zoom}),this._set_bokeh_ranges()}_map_hook(t,e){if(null==this.map&&\"undefined\"!=typeof google&&null!=google.maps&&this._build_map(),null!=this.map_el){const[t,s,o,i]=e;this.map_el.style.top=`${s}px`,this.map_el.style.left=`${t}px`,this.map_el.style.width=`${o}px`,this.map_el.style.height=`${i}px`}}_paint_empty(t,e){const s=this.layout.bbox.width,o=this.layout.bbox.height,[i,a,n,p]=e;t.clearRect(0,0,s,o),t.beginPath(),t.moveTo(0,0),t.lineTo(0,o),t.lineTo(s,o),t.lineTo(s,0),t.lineTo(0,0),t.moveTo(i,a),t.lineTo(i+n,a),t.lineTo(i+n,a+p),t.lineTo(i,a+p),t.lineTo(i,a),t.closePath(),null!=this.model.border_fill_color&&(t.fillStyle=(0,_.color2css)(this.model.border_fill_color),t.fill())}}s.GMapPlotView=d,d.__name__=\"GMapPlotView\"},\n", + " function _(t,_,n,o,r){o();(0,t(1).__exportStar)(t(132),n)},\n", + " function _(e,r,d,n,R){n(),R(\"GlyphRenderer\",e(175).GlyphRenderer),R(\"GraphRenderer\",e(339).GraphRenderer),R(\"GuideRenderer\",e(129).GuideRenderer);var G=e(41);R(\"Renderer\",G.Renderer),R(\"RendererGroup\",G.RendererGroup)},\n", + " function _(e,r,i,n,t){var o;n();const s=e(176),d=e(175),a=e(303),p=e(302),l=e(113),_=e(178),h=e(283),y=e(286);class c extends s.DataRendererView{get glyph_view(){return this.node_view.glyph}async lazy_initialize(){await super.lazy_initialize(),this.apply_coordinates();const{parent:e}=this,{edge_renderer:r,node_renderer:i}=this.model;this.edge_view=await(0,l.build_view)(r,{parent:e}),this.node_view=await(0,l.build_view)(i,{parent:e})}connect_signals(){super.connect_signals(),this.connect(this.model.layout_provider.change,(()=>{this.apply_coordinates(),this.edge_view.set_data(),this.node_view.set_data(),this.request_render()}))}apply_coordinates(){const{edge_renderer:e,node_renderer:r}=this.model;if(!(e.glyph instanceof h.MultiLine||e.glyph instanceof y.Patches))throw new Error(`${this}.edge_renderer.glyph must be a MultiLine glyph`);if(!(r.glyph instanceof _.XYGlyph))throw new Error(`${this}.node_renderer.glyph must be a XYGlyph glyph`);const i=this.model.layout_provider.edge_coordinates,n=this.model.layout_provider.node_coordinates;e.glyph.properties.xs.internal=!0,e.glyph.properties.ys.internal=!0,r.glyph.properties.x.internal=!0,r.glyph.properties.y.internal=!0,e.glyph.xs={expr:i.x},e.glyph.ys={expr:i.y},r.glyph.x={expr:n.x},r.glyph.y={expr:n.y}}remove(){this.edge_view.remove(),this.node_view.remove(),super.remove()}_render(){this.edge_view.render(),this.node_view.render()}renderer_view(e){if(e instanceof d.GlyphRenderer){if(e==this.edge_view.model)return this.edge_view;if(e==this.node_view.model)return this.node_view}return super.renderer_view(e)}}i.GraphRendererView=c,c.__name__=\"GraphRendererView\";class g extends s.DataRenderer{constructor(e){super(e)}get_selection_manager(){return this.node_renderer.data_source.selection_manager}}i.GraphRenderer=g,o=g,g.__name__=\"GraphRenderer\",o.prototype.default_view=c,o.define((({Ref:e})=>({layout_provider:[e(a.LayoutProvider)],node_renderer:[e(d.GlyphRenderer)],edge_renderer:[e(d.GlyphRenderer)],selection_policy:[e(p.GraphHitTestPolicy),()=>new p.NodesOnly],inspection_policy:[e(p.GraphHitTestPolicy),()=>new p.NodesOnly]})))},\n", + " function _(e,t,n,o,c){o();(0,e(1).__exportStar)(e(74),n),c(\"Selection\",e(72).Selection)},\n", + " function _(a,e,S,o,r){o(),r(\"ServerSentDataSource\",a(342).ServerSentDataSource),r(\"AjaxDataSource\",a(344).AjaxDataSource),r(\"ColumnDataSource\",a(75).ColumnDataSource),r(\"ColumnarDataSource\",a(70).ColumnarDataSource),r(\"CDSView\",a(190).CDSView),r(\"DataSource\",a(71).DataSource),r(\"GeoJSONDataSource\",a(345).GeoJSONDataSource),r(\"WebDataSource\",a(343).WebDataSource)},\n", + " function _(e,t,i,a,s){a();const n=e(343);class r extends n.WebDataSource{constructor(e){super(e),this.initialized=!1}setup(){if(!this.initialized){this.initialized=!0;new EventSource(this.data_url).onmessage=e=>{var t;this.load_data(JSON.parse(e.data),this.mode,null!==(t=this.max_size)&&void 0!==t?t:void 0)}}}}i.ServerSentDataSource=r,r.__name__=\"ServerSentDataSource\"},\n", + " function _(e,t,a,n,r){var s;n();const l=e(75),o=e(20);class c extends l.ColumnDataSource{constructor(e){super(e)}get_column(e){const t=this.data[e];return null!=t?t:[]}get_length(){var e;return null!==(e=super.get_length())&&void 0!==e?e:0}initialize(){super.initialize(),this.setup()}load_data(e,t,a){const{adapter:n}=this;let r;switch(r=null!=n?n.execute(this,{response:e}):e,t){case\"replace\":this.data=r;break;case\"append\":{const e=this.data;for(const t of this.columns()){const n=Array.from(e[t]),s=Array.from(r[t]),l=n.concat(s);r[t]=null!=a?l.slice(-a):l}this.data=r;break}}}}a.WebDataSource=c,s=c,c.__name__=\"WebDataSource\",s.define((({Any:e,Int:t,String:a,Nullable:n})=>({max_size:[n(t),null],mode:[o.UpdateMode,\"replace\"],adapter:[n(e),null],data_url:[a]})))},\n", + " function _(t,e,i,s,a){var n;s();const r=t(343),o=t(20),l=t(19),d=t(13);class h extends r.WebDataSource{constructor(t){super(t),this.interval=null,this.initialized=!1}destroy(){null!=this.interval&&clearInterval(this.interval),super.destroy()}setup(){if(!this.initialized&&(this.initialized=!0,this.get_data(this.mode),null!=this.polling_interval)){const t=()=>this.get_data(this.mode,this.max_size,this.if_modified);this.interval=setInterval(t,this.polling_interval)}}get_data(t,e=null,i=!1){const s=this.prepare_request();s.addEventListener(\"load\",(()=>this.do_load(s,t,null!=e?e:void 0))),s.addEventListener(\"error\",(()=>this.do_error(s))),s.send()}prepare_request(){const t=new XMLHttpRequest;t.open(this.method,this.data_url,!0),t.withCredentials=!1,t.setRequestHeader(\"Content-Type\",this.content_type);const e=this.http_headers;for(const[i,s]of(0,d.entries)(e))t.setRequestHeader(i,s);return t}do_load(t,e,i){if(200===t.status){const s=JSON.parse(t.responseText);this.load_data(s,e,i)}}do_error(t){l.logger.error(`Failed to fetch JSON from ${this.data_url} with code ${t.status}`)}}i.AjaxDataSource=h,n=h,h.__name__=\"AjaxDataSource\",n.define((({Boolean:t,Int:e,String:i,Dict:s,Nullable:a})=>({polling_interval:[a(e),null],content_type:[i,\"application/json\"],http_headers:[s(i),{}],method:[o.HTTPMethod,\"POST\"],if_modified:[t,!1]})))},\n", + " function _(e,t,o,r,n){var s;r();const a=e(70),i=e(19),l=e(9),c=e(13);function _(e){return null!=e?e:NaN}const{hasOwnProperty:g}=Object.prototype;class u extends a.ColumnarDataSource{constructor(e){super(e)}initialize(){super.initialize(),this._update_data()}connect_signals(){super.connect_signals(),this.connect(this.properties.geojson.change,(()=>this._update_data()))}_update_data(){this.data=this.geojson_to_column_data()}_get_new_list_array(e){return(0,l.range)(0,e).map((e=>[]))}_get_new_nan_array(e){return(0,l.range)(0,e).map((e=>NaN))}_add_properties(e,t,o,r){var n;const s=null!==(n=e.properties)&&void 0!==n?n:{};for(const[e,n]of(0,c.entries)(s))g.call(t,e)||(t[e]=this._get_new_nan_array(r)),t[e][o]=_(n)}_add_geometry(e,t,o){function r(e,t){return e.concat([[NaN,NaN,NaN]]).concat(t)}switch(e.type){case\"Point\":{const[r,n,s]=e.coordinates;t.x[o]=r,t.y[o]=n,t.z[o]=_(s);break}case\"LineString\":{const{coordinates:r}=e;for(let e=0;e1&&i.logger.warn(\"Bokeh does not support Polygons with holes in, only exterior ring used.\");const r=e.coordinates[0];for(let e=0;e1&&i.logger.warn(\"Bokeh does not support Polygons with holes in, only exterior ring used.\"),n.push(t[0]);const s=n.reduce(r);for(let e=0;e({geojson:[e]}))),s.internal((({Dict:e,Arrayable:t})=>({data:[e(t),{}]})))},\n", + " function _(e,r,T,o,S){o(),S(\"BBoxTileSource\",e(347).BBoxTileSource),S(\"MercatorTileSource\",e(348).MercatorTileSource),S(\"QUADKEYTileSource\",e(351).QUADKEYTileSource),S(\"TileRenderer\",e(352).TileRenderer),S(\"TileSource\",e(349).TileSource),S(\"TMSTileSource\",e(355).TMSTileSource),S(\"WMTSTileSource\",e(353).WMTSTileSource)},\n", + " function _(e,t,r,o,l){var i;o();const n=e(348);class s extends n.MercatorTileSource{constructor(e){super(e)}get_image_url(e,t,r){const o=this.string_lookup_replace(this.url,this.extra_url_vars);let l,i,n,s;return this.use_latlon?[i,s,l,n]=this.get_tile_geographic_bounds(e,t,r):[i,s,l,n]=this.get_tile_meter_bounds(e,t,r),o.replace(\"{XMIN}\",i.toString()).replace(\"{YMIN}\",s.toString()).replace(\"{XMAX}\",l.toString()).replace(\"{YMAX}\",n.toString())}}r.BBoxTileSource=s,i=s,s.__name__=\"BBoxTileSource\",i.define((({Boolean:e})=>({use_latlon:[e,!1]})))},\n", + " function _(t,e,i,_,s){var r;_();const o=t(349),n=t(9),l=t(350);class u extends o.TileSource{constructor(t){super(t)}initialize(){super.initialize(),this._resolutions=(0,n.range)(this.min_zoom,this.max_zoom+1).map((t=>this.get_resolution(t)))}_computed_initial_resolution(){return null!=this.initial_resolution?this.initial_resolution:2*Math.PI*6378137/this.tile_size}is_valid_tile(t,e,i){return!(!this.wrap_around&&(t<0||t>=2**i))&&!(e<0||e>=2**i)}parent_by_tile_xyz(t,e,i){const _=this.tile_xyz_to_quadkey(t,e,i),s=_.substring(0,_.length-1);return this.quadkey_to_tile_xyz(s)}get_resolution(t){return this._computed_initial_resolution()/2**t}get_resolution_by_extent(t,e,i){return[(t[2]-t[0])/i,(t[3]-t[1])/e]}get_level_by_extent(t,e,i){const _=(t[2]-t[0])/i,s=(t[3]-t[1])/e,r=Math.max(_,s);let o=0;for(const t of this._resolutions){if(r>t){if(0==o)return 0;if(o>0)return o-1}o+=1}return o-1}get_closest_level_by_extent(t,e,i){const _=(t[2]-t[0])/i,s=(t[3]-t[1])/e,r=Math.max(_,s),o=this._resolutions.reduce((function(t,e){return Math.abs(e-r)e?(u=o-s,a*=t):(u*=e,a=n-r)}const h=(u-(o-s))/2,c=(a-(n-r))/2;return[s-h,r-c,o+h,n+c]}tms_to_wmts(t,e,i){return[t,2**i-1-e,i]}wmts_to_tms(t,e,i){return[t,2**i-1-e,i]}pixels_to_meters(t,e,i){const _=this.get_resolution(i);return[t*_-this.x_origin_offset,e*_-this.y_origin_offset]}meters_to_pixels(t,e,i){const _=this.get_resolution(i);return[(t+this.x_origin_offset)/_,(e+this.y_origin_offset)/_]}pixels_to_tile(t,e){let i=Math.ceil(t/this.tile_size);i=0===i?i:i-1;return[i,Math.max(Math.ceil(e/this.tile_size)-1,0)]}pixels_to_raster(t,e,i){return[t,(this.tile_size<=l;t--)for(let i=n;i<=u;i++)this.is_valid_tile(i,t,e)&&h.push([i,t,e,this.get_tile_meter_bounds(i,t,e)]);return this.sort_tiles_from_center(h,[n,l,u,a]),h}quadkey_to_tile_xyz(t){let e=0,i=0;const _=t.length;for(let s=_;s>0;s--){const r=1<0;s--){const i=1<0;)if(s=s.substring(0,s.length-1),[t,e,i]=this.quadkey_to_tile_xyz(s),[t,e,i]=this.denormalize_xyz(t,e,i,_),this.tiles.has(this.tile_xyz_to_key(t,e,i)))return[t,e,i];return[0,0,0]}normalize_xyz(t,e,i){if(this.wrap_around){const _=2**i;return[(t%_+_)%_,e,i]}return[t,e,i]}denormalize_xyz(t,e,i,_){return[t+_*2**i,e,i]}denormalize_meters(t,e,i,_){return[t+2*_*Math.PI*6378137,e]}calculate_world_x_by_tile_xyz(t,e,i){return Math.floor(t/2**i)}}i.MercatorTileSource=u,r=u,u.__name__=\"MercatorTileSource\",r.define((({Boolean:t})=>({snap_to_zoom:[t,!1],wrap_around:[t,!0]}))),r.override({x_origin_offset:20037508.34,y_origin_offset:20037508.34,initial_resolution:156543.03392804097})},\n", + " function _(e,t,r,i,n){var l;i();const a=e(53),s=e(13);class c extends a.Model{constructor(e){super(e)}initialize(){super.initialize(),this.tiles=new Map,this._normalize_case()}connect_signals(){super.connect_signals(),this.connect(this.change,(()=>this._clear_cache()))}string_lookup_replace(e,t){let r=e;for(const[e,i]of(0,s.entries)(t))r=r.replace(`{${e}}`,i);return r}_normalize_case(){const e=this.url.replace(\"{x}\",\"{X}\").replace(\"{y}\",\"{Y}\").replace(\"{z}\",\"{Z}\").replace(\"{q}\",\"{Q}\").replace(\"{xmin}\",\"{XMIN}\").replace(\"{ymin}\",\"{YMIN}\").replace(\"{xmax}\",\"{XMAX}\").replace(\"{ymax}\",\"{YMAX}\");this.url=e}_clear_cache(){this.tiles=new Map}tile_xyz_to_key(e,t,r){return`${e}:${t}:${r}`}key_to_tile_xyz(e){const[t,r,i]=e.split(\":\").map((e=>parseInt(e)));return[t,r,i]}sort_tiles_from_center(e,t){const[r,i,n,l]=t,a=(n-r)/2+r,s=(l-i)/2+i;e.sort((function(e,t){return Math.sqrt((a-e[0])**2+(s-e[1])**2)-Math.sqrt((a-t[0])**2+(s-t[1])**2)}))}get_image_url(e,t,r){return this.string_lookup_replace(this.url,this.extra_url_vars).replace(\"{X}\",e.toString()).replace(\"{Y}\",t.toString()).replace(\"{Z}\",r.toString())}}r.TileSource=c,l=c,c.__name__=\"TileSource\",l.define((({Number:e,String:t,Dict:r,Nullable:i})=>({url:[t,\"\"],tile_size:[e,256],max_zoom:[e,30],min_zoom:[e,0],extra_url_vars:[r(t),{}],attribution:[t,\"\"],x_origin_offset:[e],y_origin_offset:[e],initial_resolution:[i(e),null]})))},\n", + " function _(t,e,r,n,o){n();const c=t(78);function _(t,e){return c.wgs84_mercator.compute(t,e)}function g(t,e){return c.wgs84_mercator.invert(t,e)}r.geographic_to_meters=_,r.meters_to_geographic=g,r.geographic_extent_to_meters=function(t){const[e,r,n,o]=t,[c,g]=_(e,r),[i,u]=_(n,o);return[c,g,i,u]},r.meters_extent_to_geographic=function(t){const[e,r,n,o]=t,[c,_]=g(e,r),[i,u]=g(n,o);return[c,_,i,u]}},\n", + " function _(e,t,r,s,_){s();const o=e(348);class c extends o.MercatorTileSource{constructor(e){super(e)}get_image_url(e,t,r){const s=this.string_lookup_replace(this.url,this.extra_url_vars),[_,o,c]=this.tms_to_wmts(e,t,r),i=this.tile_xyz_to_quadkey(_,o,c);return s.replace(\"{Q}\",i)}}r.QUADKEYTileSource=c,c.__name__=\"QUADKEYTileSource\"},\n", + " function _(t,e,i,s,_){s();const n=t(1);var a;const o=t(349),r=t(353),h=t(41),l=t(58),d=t(43),m=t(136),c=t(9),u=t(8),p=(0,n.__importStar)(t(354));class g extends h.RendererView{initialize(){this._tiles=[],super.initialize()}connect_signals(){super.connect_signals(),this.connect(this.model.change,(()=>this.request_render())),this.connect(this.model.tile_source.change,(()=>this.request_render()))}remove(){null!=this.attribution_el&&(0,d.removeElement)(this.attribution_el),super.remove()}styles(){return[...super.styles(),p.default]}get_extent(){return[this.x_range.start,this.y_range.start,this.x_range.end,this.y_range.end]}get map_plot(){return this.plot_model}get map_canvas(){return this.layer.ctx}get map_frame(){return this.plot_view.frame}get x_range(){return this.map_plot.x_range}get y_range(){return this.map_plot.y_range}_set_data(){this.extent=this.get_extent(),this._last_height=void 0,this._last_width=void 0}_update_attribution(){null!=this.attribution_el&&(0,d.removeElement)(this.attribution_el);const{attribution:t}=this.model.tile_source;if((0,u.isString)(t)&&t.length>0){const{layout:e,frame:i}=this.plot_view,s=e.bbox.width-i.bbox.right,_=e.bbox.height-i.bbox.bottom,n=i.bbox.width;this.attribution_el=(0,d.div)({class:p.tile_attribution,style:{position:\"absolute\",right:`${s}px`,bottom:`${_}px`,\"max-width\":n-4+\"px\",padding:\"2px\",\"background-color\":\"rgba(255,255,255,0.5)\",\"font-size\":\"9px\",\"line-height\":\"1.05\",\"white-space\":\"nowrap\",overflow:\"hidden\",\"text-overflow\":\"ellipsis\"}}),this.plot_view.canvas_view.add_event(this.attribution_el),this.attribution_el.innerHTML=t,this.attribution_el.title=this.attribution_el.textContent.replace(/\\s*\\n\\s*/g,\" \")}}_map_data(){this.initial_extent=this.get_extent();const t=this.model.tile_source.get_level_by_extent(this.initial_extent,this.map_frame.bbox.height,this.map_frame.bbox.width),e=this.model.tile_source.snap_to_zoom_level(this.initial_extent,this.map_frame.bbox.height,this.map_frame.bbox.width,t);this.x_range.start=e[0],this.y_range.start=e[1],this.x_range.end=e[2],this.y_range.end=e[3],this.x_range instanceof l.Range1d&&(this.x_range.reset_start=e[0],this.x_range.reset_end=e[2]),this.y_range instanceof l.Range1d&&(this.y_range.reset_start=e[1],this.y_range.reset_end=e[3]),this._update_attribution()}_create_tile(t,e,i,s,_=!1){const n=this.model.tile_source.tile_xyz_to_quadkey(t,e,i),a=this.model.tile_source.tile_xyz_to_key(t,e,i);if(this.model.tile_source.tiles.has(a))return;const[o,r,h]=this.model.tile_source.normalize_xyz(t,e,i),l=this.model.tile_source.get_image_url(o,r,h),d={img:void 0,tile_coords:[t,e,i],normalized_coords:[o,r,h],quadkey:n,cache_key:a,bounds:s,loaded:!1,finished:!1,x_coord:s[0],y_coord:s[3]};this.model.tile_source.tiles.set(a,d),this._tiles.push(d),new m.ImageLoader(l,{loaded:t=>{Object.assign(d,{img:t,loaded:!0}),_?(d.finished=!0,this.notify_finished()):this.request_render()},failed(){d.finished=!0}})}_enforce_aspect_ratio(){if(this._last_height!==this.map_frame.bbox.height||this._last_width!==this.map_frame.bbox.width){const t=this.get_extent(),e=this.model.tile_source.get_level_by_extent(t,this.map_frame.bbox.height,this.map_frame.bbox.width),i=this.model.tile_source.snap_to_zoom_level(t,this.map_frame.bbox.height,this.map_frame.bbox.width,e);this.x_range.setv({start:i[0],end:i[2]}),this.y_range.setv({start:i[1],end:i[3]}),this.extent=i,this._last_height=this.map_frame.bbox.height,this._last_width=this.map_frame.bbox.width}}has_finished(){if(!super.has_finished())return!1;if(0==this._tiles.length)return!1;for(const t of this._tiles)if(!t.finished)return!1;return!0}_render(){null==this.map_initialized&&(this._set_data(),this._map_data(),this.map_initialized=!0),this._enforce_aspect_ratio(),this._update(),null!=this.prefetch_timer&&clearTimeout(this.prefetch_timer),this.prefetch_timer=setTimeout(this._prefetch_tiles.bind(this),500),this.has_finished()&&this.notify_finished()}_draw_tile(t){const e=this.model.tile_source.tiles.get(t);if(null!=e&&e.loaded){const[[t],[i]]=this.coordinates.map_to_screen([e.bounds[0]],[e.bounds[3]]),[[s],[_]]=this.coordinates.map_to_screen([e.bounds[2]],[e.bounds[1]]),n=s-t,a=_-i,o=t,r=i,h=this.map_canvas.getImageSmoothingEnabled();this.map_canvas.setImageSmoothingEnabled(this.model.smoothing),this.map_canvas.drawImage(e.img,o,r,n,a),this.map_canvas.setImageSmoothingEnabled(h),e.finished=!0}}_set_rect(){const t=this.plot_model.outline_line_width,e=this.map_frame.bbox.left+t/2,i=this.map_frame.bbox.top+t/2,s=this.map_frame.bbox.width-t,_=this.map_frame.bbox.height-t;this.map_canvas.rect(e,i,s,_),this.map_canvas.clip()}_render_tiles(t){this.map_canvas.save(),this._set_rect(),this.map_canvas.globalAlpha=this.model.alpha;for(const e of t)this._draw_tile(e);this.map_canvas.restore()}_prefetch_tiles(){const{tile_source:t}=this.model,e=this.get_extent(),i=this.map_frame.bbox.height,s=this.map_frame.bbox.width,_=this.model.tile_source.get_level_by_extent(e,i,s),n=this.model.tile_source.get_tiles_by_extent(e,_);for(let e=0,i=Math.min(10,n.length);ei&&(s=this.extent,o=i,r=!0),r&&(this.x_range.setv({start:s[0],end:s[2]}),this.y_range.setv({start:s[1],end:s[3]})),this.extent=s;const h=t.get_tiles_by_extent(s,o),l=[],d=[],m=[],u=[];for(const e of h){const[i,s,n]=e,a=t.tile_xyz_to_key(i,s,n),o=t.tiles.get(a);if(null!=o&&o.loaded)d.push(a);else if(this.model.render_parents){const[e,a,o]=t.get_closest_parent_by_tile_xyz(i,s,n),r=t.tile_xyz_to_key(e,a,o),h=t.tiles.get(r);if(null!=h&&h.loaded&&!(0,c.includes)(m,r)&&m.push(r),_){const e=t.children_by_tile_xyz(i,s,n);for(const[i,s,_]of e){const e=t.tile_xyz_to_key(i,s,_);t.tiles.has(e)&&u.push(e)}}}null==o&&l.push(e)}this._render_tiles(m),this._render_tiles(u),this._render_tiles(d),null!=this.render_timer&&clearTimeout(this.render_timer),this.render_timer=setTimeout((()=>this._fetch_tiles(l)),65)}}i.TileRendererView=g,g.__name__=\"TileRendererView\";class b extends h.Renderer{constructor(t){super(t)}}i.TileRenderer=b,a=b,b.__name__=\"TileRenderer\",a.prototype.default_view=g,a.define((({Boolean:t,Number:e,Ref:i})=>({alpha:[e,1],smoothing:[t,!0],tile_source:[i(o.TileSource),()=>new r.WMTSTileSource],render_parents:[t,!0]}))),a.override({level:\"image\"})},\n", + " function _(t,e,r,o,s){o();const c=t(348);class i extends c.MercatorTileSource{constructor(t){super(t)}get_image_url(t,e,r){const o=this.string_lookup_replace(this.url,this.extra_url_vars),[s,c,i]=this.tms_to_wmts(t,e,r);return o.replace(\"{X}\",s.toString()).replace(\"{Y}\",c.toString()).replace(\"{Z}\",i.toString())}}r.WMTSTileSource=i,i.__name__=\"WMTSTileSource\"},\n", + " function _(t,o,i,b,r){b(),i.root=\"bk-root\",i.tile_attribution=\"bk-tile-attribution\",i.default=\".bk-root .bk-tile-attribution a{color:black;}\"},\n", + " function _(e,r,t,c,o){c();const i=e(348);class l extends i.MercatorTileSource{constructor(e){super(e)}get_image_url(e,r,t){return this.string_lookup_replace(this.url,this.extra_url_vars).replace(\"{X}\",e.toString()).replace(\"{Y}\",r.toString()).replace(\"{Z}\",t.toString())}}t.TMSTileSource=l,l.__name__=\"TMSTileSource\"},\n", + " function _(e,t,u,a,r){a(),r(\"CanvasTexture\",e(357).CanvasTexture),r(\"ImageURLTexture\",e(359).ImageURLTexture),r(\"Texture\",e(358).Texture)},\n", + " function _(t,e,n,c,s){var r;c();const o=t(358),a=t(34);class u extends o.Texture{constructor(t){super(t)}get func(){const t=(0,a.use_strict)(this.code);return new Function(\"ctx\",\"color\",\"scale\",\"weight\",t)}get_pattern(t,e,n){const c=document.createElement(\"canvas\");c.width=e,c.height=e;const s=c.getContext(\"2d\");return this.func.call(this,s,t,e,n),c}}n.CanvasTexture=u,r=u,u.__name__=\"CanvasTexture\",r.define((({String:t})=>({code:[t]})))},\n", + " function _(e,t,n,r,o){var i;r();const s=e(53),u=e(20);class c extends s.Model{constructor(e){super(e)}}n.Texture=c,i=c,c.__name__=\"Texture\",i.define((()=>({repetition:[u.TextureRepetition,\"repeat\"]})))},\n", + " function _(e,t,i,r,n){var a;r();const s=e(358),o=e(136);class u extends s.Texture{constructor(e){super(e)}initialize(){super.initialize(),this._loader=new o.ImageLoader(this.url)}get_pattern(e,t,i){const{_loader:r}=this;return this._loader.finished?r.image:r.promise}}i.ImageURLTexture=u,a=u,u.__name__=\"ImageURLTexture\",a.define((({String:e})=>({url:[e]})))},\n", + " function _(o,l,T,e,t){e(),t(\"ActionTool\",o(238).ActionTool),t(\"CustomAction\",o(361).CustomAction),t(\"HelpTool\",o(239).HelpTool),t(\"RedoTool\",o(362).RedoTool),t(\"ResetTool\",o(363).ResetTool),t(\"SaveTool\",o(364).SaveTool),t(\"UndoTool\",o(365).UndoTool),t(\"ZoomInTool\",o(366).ZoomInTool),t(\"ZoomOutTool\",o(369).ZoomOutTool),t(\"ButtonTool\",o(224).ButtonTool),t(\"EditTool\",o(370).EditTool),t(\"BoxEditTool\",o(371).BoxEditTool),t(\"FreehandDrawTool\",o(372).FreehandDrawTool),t(\"PointDrawTool\",o(373).PointDrawTool),t(\"PolyDrawTool\",o(374).PolyDrawTool),t(\"PolyTool\",o(375).PolyTool),t(\"PolyEditTool\",o(376).PolyEditTool),t(\"BoxSelectTool\",o(377).BoxSelectTool),t(\"BoxZoomTool\",o(379).BoxZoomTool),t(\"GestureTool\",o(223).GestureTool),t(\"LassoSelectTool\",o(380).LassoSelectTool),t(\"LineEditTool\",o(382).LineEditTool),t(\"PanTool\",o(384).PanTool),t(\"PolySelectTool\",o(381).PolySelectTool),t(\"RangeTool\",o(385).RangeTool),t(\"SelectTool\",o(378).SelectTool),t(\"TapTool\",o(386).TapTool),t(\"WheelPanTool\",o(387).WheelPanTool),t(\"WheelZoomTool\",o(388).WheelZoomTool),t(\"CrosshairTool\",o(389).CrosshairTool),t(\"CustomJSHover\",o(390).CustomJSHover),t(\"HoverTool\",o(391).HoverTool),t(\"InspectTool\",o(232).InspectTool),t(\"Tool\",o(222).Tool),t(\"ToolProxy\",o(394).ToolProxy),t(\"Toolbar\",o(221).Toolbar),t(\"ToolbarBase\",o(233).ToolbarBase),t(\"ProxyToolbar\",o(395).ProxyToolbar),t(\"ToolbarBox\",o(395).ToolbarBox)},\n", + " function _(t,o,e,s,n){var c;s();const i=t(238);class u extends i.ActionToolButtonView{css_classes(){return super.css_classes().concat(\"bk-toolbar-button-custom-action\")}}e.CustomActionButtonView=u,u.__name__=\"CustomActionButtonView\";class l extends i.ActionToolView{doit(){var t;null===(t=this.model.callback)||void 0===t||t.execute(this.model)}}e.CustomActionView=l,l.__name__=\"CustomActionView\";class a extends i.ActionTool{constructor(t){super(t),this.tool_name=\"Custom Action\",this.button_view=u}}e.CustomAction=a,c=a,a.__name__=\"CustomAction\",c.prototype.default_view=l,c.define((({Any:t,String:o,Nullable:e})=>({callback:[e(t)],icon:[o]}))),c.override({description:\"Perform a Custom Action\"})},\n", + " function _(e,o,t,i,s){var n;i();const l=e(238),_=e(228);class d extends l.ActionToolView{connect_signals(){super.connect_signals(),this.connect(this.plot_view.state.changed,(()=>this.model.disabled=!this.plot_view.state.can_redo))}doit(){const e=this.plot_view.state.redo();null!=(null==e?void 0:e.range)&&this.plot_view.trigger_ranges_update_event()}}t.RedoToolView=d,d.__name__=\"RedoToolView\";class a extends l.ActionTool{constructor(e){super(e),this.tool_name=\"Redo\",this.icon=_.tool_icon_redo}}t.RedoTool=a,n=a,a.__name__=\"RedoTool\",n.prototype.default_view=d,n.override({disabled:!0}),n.register_alias(\"redo\",(()=>new a))},\n", + " function _(e,o,t,s,i){var _;s();const n=e(238),l=e(228);class c extends n.ActionToolView{doit(){this.plot_view.reset()}}t.ResetToolView=c,c.__name__=\"ResetToolView\";class r extends n.ActionTool{constructor(e){super(e),this.tool_name=\"Reset\",this.icon=l.tool_icon_reset}}t.ResetTool=r,_=r,r.__name__=\"ResetTool\",_.prototype.default_view=c,_.register_alias(\"reset\",(()=>new r))},\n", + " function _(e,o,t,a,i){var s;a();const c=e(238),n=e(228);class l extends c.ActionToolView{async copy(){const e=await this.plot_view.to_blob(),o=new ClipboardItem({[e.type]:Promise.resolve(e)});await navigator.clipboard.write([o])}async save(e){const o=await this.plot_view.to_blob(),t=document.createElement(\"a\");t.href=URL.createObjectURL(o),t.download=e,t.target=\"_blank\",t.dispatchEvent(new MouseEvent(\"click\"))}doit(e=\"save\"){switch(e){case\"save\":this.save(\"bokeh_plot\");break;case\"copy\":this.copy()}}}t.SaveToolView=l,l.__name__=\"SaveToolView\";class r extends c.ActionTool{constructor(e){super(e),this.tool_name=\"Save\",this.icon=n.tool_icon_save}get menu(){return[{icon:\"bk-tool-icon-copy-to-clipboard\",tooltip:\"Copy image to clipboard\",if:()=>\"undefined\"!=typeof ClipboardItem,handler:()=>{this.do.emit(\"copy\")}}]}}t.SaveTool=r,s=r,r.__name__=\"SaveTool\",s.prototype.default_view=l,s.register_alias(\"save\",(()=>new r))},\n", + " function _(o,e,t,n,i){var s;n();const l=o(238),_=o(228);class d extends l.ActionToolView{connect_signals(){super.connect_signals(),this.connect(this.plot_view.state.changed,(()=>this.model.disabled=!this.plot_view.state.can_undo))}doit(){const o=this.plot_view.state.undo();null!=(null==o?void 0:o.range)&&this.plot_view.trigger_ranges_update_event()}}t.UndoToolView=d,d.__name__=\"UndoToolView\";class a extends l.ActionTool{constructor(o){super(o),this.tool_name=\"Undo\",this.icon=_.tool_icon_undo}}t.UndoTool=a,s=a,a.__name__=\"UndoTool\",s.prototype.default_view=d,s.override({disabled:!0}),s.register_alias(\"undo\",(()=>new a))},\n", + " function _(o,n,e,i,s){var t;i();const _=o(367),m=o(228);class a extends _.ZoomBaseToolView{}e.ZoomInToolView=a,a.__name__=\"ZoomInToolView\";class l extends _.ZoomBaseTool{constructor(o){super(o),this.sign=1,this.tool_name=\"Zoom In\",this.icon=m.tool_icon_zoom_in}}e.ZoomInTool=l,t=l,l.__name__=\"ZoomInTool\",t.prototype.default_view=a,t.register_alias(\"zoom_in\",(()=>new l({dimensions:\"both\"}))),t.register_alias(\"xzoom_in\",(()=>new l({dimensions:\"width\"}))),t.register_alias(\"yzoom_in\",(()=>new l({dimensions:\"height\"})))},\n", + " function _(o,t,e,i,s){var n;i();const a=o(238),_=o(20),l=o(368);class m extends a.ActionToolView{doit(){var o;const t=this.plot_view.frame,e=this.model.dimensions,i=\"width\"==e||\"both\"==e,s=\"height\"==e||\"both\"==e,n=(0,l.scale_range)(t,this.model.sign*this.model.factor,i,s);this.plot_view.state.push(\"zoom_out\",{range:n}),this.plot_view.update_range(n,{scrolling:!0,maintain_focus:this.model.maintain_focus}),null===(o=this.model.document)||void 0===o||o.interactive_start(this.plot_model),this.plot_view.trigger_ranges_update_event()}}e.ZoomBaseToolView=m,m.__name__=\"ZoomBaseToolView\";class h extends a.ActionTool{constructor(o){super(o),this.maintain_focus=!0}get tooltip(){return this._get_dim_tooltip(this.dimensions)}}e.ZoomBaseTool=h,n=h,h.__name__=\"ZoomBaseTool\",n.define((({Percent:o})=>({factor:[o,.1],dimensions:[_.Dimensions,\"both\"]})))},\n", + " function _(n,t,o,r,s){r();const c=n(10);function e(n,t,o){const[r,s]=[n.start,n.end],c=null!=o?o:(s+r)/2;return[r-(r-c)*t,s-(s-c)*t]}function a(n,[t,o]){const r=new Map;for(const[s,c]of n){const[n,e]=c.r_invert(t,o);r.set(s,{start:n,end:e})}return r}o.scale_highlow=e,o.get_info=a,o.scale_range=function(n,t,o=!0,r=!0,s){t=(0,c.clamp)(t,-.9,.9);const l=o?t:0,[u,i]=e(n.bbox.h_range,l,null!=s?s.x:void 0),_=a(n.x_scales,[u,i]),f=r?t:0,[g,x]=e(n.bbox.v_range,f,null!=s?s.y:void 0);return{xrs:_,yrs:a(n.y_scales,[g,x]),factor:t}}},\n", + " function _(o,e,t,i,s){var n;i();const _=o(367),a=o(228);class m extends _.ZoomBaseToolView{}t.ZoomOutToolView=m,m.__name__=\"ZoomOutToolView\";class l extends _.ZoomBaseTool{constructor(o){super(o),this.sign=-1,this.tool_name=\"Zoom Out\",this.icon=a.tool_icon_zoom_out}}t.ZoomOutTool=l,n=l,l.__name__=\"ZoomOutTool\",n.prototype.default_view=m,n.define((({Boolean:o})=>({maintain_focus:[o,!0]}))),n.register_alias(\"zoom_out\",(()=>new l({dimensions:\"both\"}))),n.register_alias(\"xzoom_out\",(()=>new l({dimensions:\"width\"}))),n.register_alias(\"yzoom_out\",(()=>new l({dimensions:\"height\"})))},\n", + " function _(e,t,s,o,n){var r;o();const i=e(9),c=e(8),a=e(11),_=e(175),l=e(223);class d extends l.GestureToolView{constructor(){super(...arguments),this._mouse_in_frame=!0}_select_mode(e){const{shiftKey:t,ctrlKey:s}=e;return t||s?t&&!s?\"append\":!t&&s?\"intersect\":t&&s?\"subtract\":void(0,a.unreachable)():\"replace\"}_move_enter(e){this._mouse_in_frame=!0}_move_exit(e){this._mouse_in_frame=!1}_map_drag(e,t,s){if(!this.plot_view.frame.bbox.contains(e,t))return null;const o=this.plot_view.renderer_view(s);if(null==o)return null;return[o.coordinates.x_scale.invert(e),o.coordinates.y_scale.invert(t)]}_delete_selected(e){const t=e.data_source,s=t.selected.indices;s.sort();for(const e of t.columns()){const o=t.get_array(e);for(let e=0;e({custom_icon:[n(t),null],empty_value:[e],renderers:[s(o(_.GlyphRenderer)),[]]})))},\n", + " function _(e,t,s,i,_){var o;i();const n=e(43),a=e(20),d=e(370),l=e(228);class r extends d.EditToolView{_tap(e){null==this._draw_basepoint&&null==this._basepoint&&this._select_event(e,this._select_mode(e),this.model.renderers)}_keyup(e){if(this.model.active&&this._mouse_in_frame)for(const t of this.model.renderers)if(e.keyCode===n.Keys.Backspace)this._delete_selected(t);else if(e.keyCode==n.Keys.Esc){t.data_source.selection_manager.clear()}}_set_extent([e,t],[s,i],_,o=!1){const n=this.model.renderers[0],a=this.plot_view.renderer_view(n);if(null==a)return;const d=n.glyph,l=n.data_source,[r,h]=a.coordinates.x_scale.r_invert(e,t),[p,u]=a.coordinates.y_scale.r_invert(s,i),[c,m]=[(r+h)/2,(p+u)/2],[f,b]=[h-r,u-p],[y,x]=[d.x.field,d.y.field],[w,v]=[d.width.field,d.height.field];if(_)this._pop_glyphs(l,this.model.num_objects),y&&l.get_array(y).push(c),x&&l.get_array(x).push(m),w&&l.get_array(w).push(f),v&&l.get_array(v).push(b),this._pad_empty_columns(l,[y,x,w,v]);else{const e=l.data[y].length-1;y&&(l.data[y][e]=c),x&&(l.data[x][e]=m),w&&(l.data[w][e]=f),v&&(l.data[v][e]=b)}this._emit_cds_changes(l,!0,!1,o)}_update_box(e,t=!1,s=!1){if(null==this._draw_basepoint)return;const i=[e.sx,e.sy],_=this.plot_view.frame,o=this.model.dimensions,n=this.model._get_dim_limits(this._draw_basepoint,i,_,o);if(null!=n){const[e,i]=n;this._set_extent(e,i,t,s)}}_doubletap(e){this.model.active&&(null!=this._draw_basepoint?(this._update_box(e,!1,!0),this._draw_basepoint=null):(this._draw_basepoint=[e.sx,e.sy],this._select_event(e,\"append\",this.model.renderers),this._update_box(e,!0,!1)))}_move(e){this._update_box(e,!1,!1)}_pan_start(e){if(e.shiftKey){if(null!=this._draw_basepoint)return;this._draw_basepoint=[e.sx,e.sy],this._update_box(e,!0,!1)}else{if(null!=this._basepoint)return;this._select_event(e,\"append\",this.model.renderers),this._basepoint=[e.sx,e.sy]}}_pan(e,t=!1,s=!1){if(e.shiftKey){if(null==this._draw_basepoint)return;this._update_box(e,t,s)}else{if(null==this._basepoint)return;this._drag_points(e,this.model.renderers)}}_pan_end(e){if(this._pan(e,!1,!0),e.shiftKey)this._draw_basepoint=null;else{this._basepoint=null;for(const e of this.model.renderers)this._emit_cds_changes(e.data_source,!1,!0,!0)}}}s.BoxEditToolView=r,r.__name__=\"BoxEditToolView\";class h extends d.EditTool{constructor(e){super(e),this.tool_name=\"Box Edit Tool\",this.icon=l.tool_icon_box_edit,this.event_type=[\"tap\",\"pan\",\"move\"],this.default_order=1}}s.BoxEditTool=h,o=h,h.__name__=\"BoxEditTool\",o.prototype.default_view=r,o.define((({Int:e})=>({dimensions:[a.Dimensions,\"both\"],num_objects:[e,0]})))},\n", + " function _(e,t,a,s,r){var _;s();const d=e(43),o=e(8),n=e(370),i=e(228);class l extends n.EditToolView{_draw(e,t,a=!1){if(!this.model.active)return;const s=this.model.renderers[0],r=this._map_drag(e.sx,e.sy,s);if(null==r)return;const[_,d]=r,n=s.data_source,i=s.glyph,[l,h]=[i.xs.field,i.ys.field];if(\"new\"==t)this._pop_glyphs(n,this.model.num_objects),l&&n.get_array(l).push([_]),h&&n.get_array(h).push([d]),this._pad_empty_columns(n,[l,h]);else if(\"add\"==t){if(l){const e=n.data[l].length-1;let t=n.get_array(l)[e];(0,o.isArray)(t)||(t=Array.from(t),n.data[l][e]=t),t.push(_)}if(h){const e=n.data[h].length-1;let t=n.get_array(h)[e];(0,o.isArray)(t)||(t=Array.from(t),n.data[h][e]=t),t.push(d)}}this._emit_cds_changes(n,!0,!0,a)}_pan_start(e){this._draw(e,\"new\")}_pan(e){this._draw(e,\"add\")}_pan_end(e){this._draw(e,\"add\",!0)}_tap(e){this._select_event(e,this._select_mode(e),this.model.renderers)}_keyup(e){if(this.model.active&&this._mouse_in_frame)for(const t of this.model.renderers)e.keyCode===d.Keys.Esc?t.data_source.selection_manager.clear():e.keyCode===d.Keys.Backspace&&this._delete_selected(t)}}a.FreehandDrawToolView=l,l.__name__=\"FreehandDrawToolView\";class h extends n.EditTool{constructor(e){super(e),this.tool_name=\"Freehand Draw Tool\",this.icon=i.tool_icon_freehand_draw,this.event_type=[\"pan\",\"tap\"],this.default_order=3}}a.FreehandDrawTool=h,_=h,h.__name__=\"FreehandDrawTool\",_.prototype.default_view=l,_.define((({Int:e})=>({num_objects:[e,0]}))),_.register_alias(\"freehand_draw\",(()=>new h))},\n", + " function _(e,t,s,o,a){var i;o();const n=e(43),_=e(370),r=e(228);class d extends _.EditToolView{_tap(e){if(this._select_event(e,this._select_mode(e),this.model.renderers).length||!this.model.add)return;const t=this.model.renderers[0],s=this._map_drag(e.sx,e.sy,t);if(null==s)return;const o=t.glyph,a=t.data_source,[i,n]=[o.x.field,o.y.field],[_,r]=s;this._pop_glyphs(a,this.model.num_objects),i&&a.get_array(i).push(_),n&&a.get_array(n).push(r),this._pad_empty_columns(a,[i,n]),a.change.emit(),a.data=a.data,a.properties.data.change.emit()}_keyup(e){if(this.model.active&&this._mouse_in_frame)for(const t of this.model.renderers)e.keyCode===n.Keys.Backspace?this._delete_selected(t):e.keyCode==n.Keys.Esc&&t.data_source.selection_manager.clear()}_pan_start(e){this.model.drag&&(this._select_event(e,\"append\",this.model.renderers),this._basepoint=[e.sx,e.sy])}_pan(e){this.model.drag&&null!=this._basepoint&&this._drag_points(e,this.model.renderers)}_pan_end(e){if(this.model.drag){this._pan(e);for(const e of this.model.renderers)this._emit_cds_changes(e.data_source,!1,!0,!0);this._basepoint=null}}}s.PointDrawToolView=d,d.__name__=\"PointDrawToolView\";class l extends _.EditTool{constructor(e){super(e),this.tool_name=\"Point Draw Tool\",this.icon=r.tool_icon_point_draw,this.event_type=[\"tap\",\"pan\",\"move\"],this.default_order=2}}s.PointDrawTool=l,i=l,l.__name__=\"PointDrawTool\",i.prototype.default_view=d,i.define((({Boolean:e,Int:t})=>({add:[e,!0],drag:[e,!0],num_objects:[t,0]})))},\n", + " function _(e,t,s,i,a){var r;i();const o=e(43),n=e(8),d=e(375),_=e(228);class h extends d.PolyToolView{constructor(){super(...arguments),this._drawing=!1,this._initialized=!1}_tap(e){this._drawing?this._draw(e,\"add\",!0):this._select_event(e,this._select_mode(e),this.model.renderers)}_draw(e,t,s=!1){const i=this.model.renderers[0],a=this._map_drag(e.sx,e.sy,i);if(this._initialized||this.activate(),null==a)return;const[r,o]=this._snap_to_vertex(e,...a),d=i.data_source,_=i.glyph,[h,l]=[_.xs.field,_.ys.field];if(\"new\"==t)this._pop_glyphs(d,this.model.num_objects),h&&d.get_array(h).push([r,r]),l&&d.get_array(l).push([o,o]),this._pad_empty_columns(d,[h,l]);else if(\"edit\"==t){if(h){const e=d.data[h][d.data[h].length-1];e[e.length-1]=r}if(l){const e=d.data[l][d.data[l].length-1];e[e.length-1]=o}}else if(\"add\"==t){if(h){const e=d.data[h].length-1;let t=d.get_array(h)[e];const s=t[t.length-1];t[t.length-1]=r,(0,n.isArray)(t)||(t=Array.from(t),d.data[h][e]=t),t.push(s)}if(l){const e=d.data[l].length-1;let t=d.get_array(l)[e];const s=t[t.length-1];t[t.length-1]=o,(0,n.isArray)(t)||(t=Array.from(t),d.data[l][e]=t),t.push(s)}}this._emit_cds_changes(d,!0,!1,s)}_show_vertices(){if(!this.model.active)return;const e=[],t=[];for(let s=0;sthis._show_vertices()))}this._initialized=!0}}deactivate(){this._drawing&&(this._remove(),this._drawing=!1),this.model.vertex_renderer&&this._hide_vertices()}}s.PolyDrawToolView=h,h.__name__=\"PolyDrawToolView\";class l extends d.PolyTool{constructor(e){super(e),this.tool_name=\"Polygon Draw Tool\",this.icon=_.tool_icon_poly_draw,this.event_type=[\"pan\",\"tap\",\"move\"],this.default_order=3}}s.PolyDrawTool=l,r=l,l.__name__=\"PolyDrawTool\",r.prototype.default_view=h,r.define((({Boolean:e,Int:t})=>({drag:[e,!0],num_objects:[t,0]})))},\n", + " function _(e,r,t,s,o){var _;s();const d=e(8),i=e(370);class l extends i.EditToolView{_set_vertices(e,r){const t=this.model.vertex_renderer.glyph,s=this.model.vertex_renderer.data_source,[o,_]=[t.x.field,t.y.field];o&&((0,d.isArray)(e)?s.data[o]=e:t.x={value:e}),_&&((0,d.isArray)(r)?s.data[_]=r:t.y={value:r}),this._emit_cds_changes(s,!0,!0,!1)}_hide_vertices(){this._set_vertices([],[])}_snap_to_vertex(e,r,t){if(this.model.vertex_renderer){const s=this._select_event(e,\"replace\",[this.model.vertex_renderer]),o=this.model.vertex_renderer.data_source,_=this.model.vertex_renderer.glyph,[d,i]=[_.x.field,_.y.field];if(s.length){const e=o.selected.indices[0];d&&(r=o.data[d][e]),i&&(t=o.data[i][e]),o.selection_manager.clear()}}return[r,t]}}t.PolyToolView=l,l.__name__=\"PolyToolView\";class n extends i.EditTool{constructor(e){super(e)}}t.PolyTool=n,_=n,n.__name__=\"PolyTool\",_.define((({AnyRef:e})=>({vertex_renderer:[e()]})))},\n", + " function _(e,t,s,r,i){var _;r();const d=e(43),n=e(8),l=e(375),a=e(228);class c extends l.PolyToolView{constructor(){super(...arguments),this._drawing=!1,this._cur_index=null}_doubletap(e){if(!this.model.active)return;const t=this._map_drag(e.sx,e.sy,this.model.vertex_renderer);if(null==t)return;const[s,r]=t,i=this._select_event(e,\"replace\",[this.model.vertex_renderer]),_=this.model.vertex_renderer.data_source,d=this.model.vertex_renderer.glyph,[n,l]=[d.x.field,d.y.field];if(i.length&&null!=this._selected_renderer){const e=_.selected.indices[0];this._drawing?(this._drawing=!1,_.selection_manager.clear()):(_.selected.indices=[e+1],n&&_.get_array(n).splice(e+1,0,s),l&&_.get_array(l).splice(e+1,0,r),this._drawing=!0),_.change.emit(),this._emit_cds_changes(this._selected_renderer.data_source)}else this._show_vertices(e)}_show_vertices(e){if(!this.model.active)return;const t=this.model.renderers[0],s=()=>this._update_vertices(t),r=null==t?void 0:t.data_source,i=this._select_event(e,\"replace\",this.model.renderers);if(!i.length)return this._set_vertices([],[]),this._selected_renderer=null,this._drawing=!1,this._cur_index=null,void(null!=r&&r.disconnect(r.properties.data.change,s));null!=r&&r.connect(r.properties.data.change,s),this._cur_index=i[0].data_source.selected.indices[0],this._update_vertices(i[0])}_update_vertices(e){const t=e.glyph,s=e.data_source,r=this._cur_index,[i,_]=[t.xs.field,t.ys.field];if(this._drawing)return;if(null==r&&(i||_))return;let d,l;i&&null!=r?(d=s.data[i][r],(0,n.isArray)(d)||(s.data[i][r]=d=Array.from(d))):d=t.xs.value,_&&null!=r?(l=s.data[_][r],(0,n.isArray)(l)||(s.data[_][r]=l=Array.from(l))):l=t.ys.value,this._selected_renderer=e,this._set_vertices(d,l)}_move(e){if(this._drawing&&null!=this._selected_renderer){const t=this.model.vertex_renderer,s=t.data_source,r=t.glyph,i=this._map_drag(e.sx,e.sy,t);if(null==i)return;let[_,d]=i;const n=s.selected.indices;[_,d]=this._snap_to_vertex(e,_,d),s.selected.indices=n;const[l,a]=[r.x.field,r.y.field],c=n[0];l&&(s.data[l][c]=_),a&&(s.data[a][c]=d),s.change.emit(),this._selected_renderer.data_source.change.emit()}}_tap(e){const t=this.model.vertex_renderer,s=this._map_drag(e.sx,e.sy,t);if(null==s)return;if(this._drawing&&this._selected_renderer){let[r,i]=s;const _=t.data_source,d=t.glyph,[n,l]=[d.x.field,d.y.field],a=_.selected.indices;[r,i]=this._snap_to_vertex(e,r,i);const c=a[0];if(_.selected.indices=[c+1],n){const e=_.get_array(n),t=e[c];e[c]=r,e.splice(c+1,0,t)}if(l){const e=_.get_array(l),t=e[c];e[c]=i,e.splice(c+1,0,t)}return _.change.emit(),void this._emit_cds_changes(this._selected_renderer.data_source,!0,!1,!0)}const r=this._select_mode(e);this._select_event(e,r,[t]),this._select_event(e,r,this.model.renderers)}_remove_vertex(){if(!this._drawing||!this._selected_renderer)return;const e=this.model.vertex_renderer,t=e.data_source,s=e.glyph,r=t.selected.indices[0],[i,_]=[s.x.field,s.y.field];i&&t.get_array(i).splice(r,1),_&&t.get_array(_).splice(r,1),t.change.emit(),this._emit_cds_changes(this._selected_renderer.data_source)}_pan_start(e){this._select_event(e,\"append\",[this.model.vertex_renderer]),this._basepoint=[e.sx,e.sy]}_pan(e){null!=this._basepoint&&(this._drag_points(e,[this.model.vertex_renderer]),this._selected_renderer&&this._selected_renderer.data_source.change.emit())}_pan_end(e){null!=this._basepoint&&(this._drag_points(e,[this.model.vertex_renderer]),this._emit_cds_changes(this.model.vertex_renderer.data_source,!1,!0,!0),this._selected_renderer&&this._emit_cds_changes(this._selected_renderer.data_source),this._basepoint=null)}_keyup(e){if(!this.model.active||!this._mouse_in_frame)return;let t;t=this._selected_renderer?[this.model.vertex_renderer]:this.model.renderers;for(const s of t)e.keyCode===d.Keys.Backspace?(this._delete_selected(s),this._selected_renderer&&this._emit_cds_changes(this._selected_renderer.data_source)):e.keyCode==d.Keys.Esc&&(this._drawing?(this._remove_vertex(),this._drawing=!1):this._selected_renderer&&this._hide_vertices(),s.data_source.selection_manager.clear())}deactivate(){this._selected_renderer&&(this._drawing&&(this._remove_vertex(),this._drawing=!1),this._hide_vertices())}}s.PolyEditToolView=c,c.__name__=\"PolyEditToolView\";class o extends l.PolyTool{constructor(e){super(e),this.tool_name=\"Poly Edit Tool\",this.icon=a.tool_icon_poly_edit,this.event_type=[\"tap\",\"pan\",\"move\"],this.default_order=4}}s.PolyEditTool=o,_=o,o.__name__=\"PolyEditTool\",_.prototype.default_view=c},\n", + " function _(e,t,o,s,i){var l;s();const n=e(378),_=e(116),c=e(20),r=e(228);class a extends n.SelectToolView{_compute_limits(e){const t=this.plot_view.frame,o=this.model.dimensions;let s=this._base_point;if(\"center\"==this.model.origin){const[t,o]=s,[i,l]=e;s=[t-(i-t),o-(l-o)]}return this.model._get_dim_limits(s,e,t,o)}_pan_start(e){const{sx:t,sy:o}=e;this._base_point=[t,o]}_pan(e){const{sx:t,sy:o}=e,s=[t,o],[i,l]=this._compute_limits(s);this.model.overlay.update({left:i[0],right:i[1],top:l[0],bottom:l[1]}),this.model.select_every_mousemove&&this._do_select(i,l,!1,this._select_mode(e))}_pan_end(e){const{sx:t,sy:o}=e,s=[t,o],[i,l]=this._compute_limits(s);this._do_select(i,l,!0,this._select_mode(e)),this.model.overlay.update({left:null,right:null,top:null,bottom:null}),this._base_point=null,this.plot_view.state.push(\"box_select\",{selection:this.plot_view.get_selection()})}_do_select([e,t],[o,s],i,l=\"replace\"){const n={type:\"rect\",sx0:e,sx1:t,sy0:o,sy1:s};this._select(n,i,l)}}o.BoxSelectToolView=a,a.__name__=\"BoxSelectToolView\";const h=()=>new _.BoxAnnotation({level:\"overlay\",top_units:\"screen\",left_units:\"screen\",bottom_units:\"screen\",right_units:\"screen\",fill_color:\"lightgrey\",fill_alpha:.5,line_color:\"black\",line_alpha:1,line_width:2,line_dash:[4,4]});class m extends n.SelectTool{constructor(e){super(e),this.tool_name=\"Box Select\",this.icon=r.tool_icon_box_select,this.event_type=\"pan\",this.default_order=30}get tooltip(){return this._get_dim_tooltip(this.dimensions)}}o.BoxSelectTool=m,l=m,m.__name__=\"BoxSelectTool\",l.prototype.default_view=a,l.define((({Boolean:e,Ref:t})=>({dimensions:[c.Dimensions,\"both\"],select_every_mousemove:[e,!1],overlay:[t(_.BoxAnnotation),h],origin:[c.BoxOrigin,\"corner\"]}))),l.register_alias(\"box_select\",(()=>new m)),l.register_alias(\"xbox_select\",(()=>new m({dimensions:\"width\"}))),l.register_alias(\"ybox_select\",(()=>new m({dimensions:\"height\"})))},\n", + " function _(e,t,s,n,r){var o;n();const c=e(223),i=e(175),a=e(339),l=e(176),d=e(66),_=e(20),h=e(43),p=e(251),u=e(15),m=e(11);class v extends c.GestureToolView{connect_signals(){super.connect_signals(),this.model.clear.connect((()=>this._clear()))}get computed_renderers(){const{renderers:e,names:t}=this.model,s=this.plot_model.data_renderers;return(0,d.compute_renderers)(e,s,t)}_computed_renderers_by_data_source(){var e;const t=new Map;for(const s of this.computed_renderers){let n;if(s instanceof i.GlyphRenderer)n=s.data_source;else{if(!(s instanceof a.GraphRenderer))continue;n=s.node_renderer.data_source}const r=null!==(e=t.get(n))&&void 0!==e?e:[];t.set(n,[...r,s])}return t}_select_mode(e){const{shiftKey:t,ctrlKey:s}=e;return t||s?t&&!s?\"append\":!t&&s?\"intersect\":t&&s?\"subtract\":void(0,m.unreachable)():this.model.mode}_keyup(e){e.keyCode==h.Keys.Esc&&this._clear()}_clear(){for(const e of this.computed_renderers)e.get_selection_manager().clear();const e=this.computed_renderers.map((e=>this.plot_view.renderer_view(e)));this.plot_view.request_paint(e)}_select(e,t,s){const n=this._computed_renderers_by_data_source();for(const[,r]of n){const n=r[0].get_selection_manager(),o=[];for(const e of r){const t=this.plot_view.renderer_view(e);null!=t&&o.push(t)}n.select(o,e,t,s)}null!=this.model.callback&&this._emit_callback(e),this._emit_selection_event(e,t)}_emit_selection_event(e,t=!0){const{x_scale:s,y_scale:n}=this.plot_view.frame;let r;switch(e.type){case\"point\":{const{sx:t,sy:o}=e,c=s.invert(t),i=n.invert(o);r=Object.assign(Object.assign({},e),{x:c,y:i});break}case\"span\":{const{sx:t,sy:o}=e,c=s.invert(t),i=n.invert(o);r=Object.assign(Object.assign({},e),{x:c,y:i});break}case\"rect\":{const{sx0:t,sx1:o,sy0:c,sy1:i}=e,[a,l]=s.r_invert(t,o),[d,_]=n.r_invert(c,i);r=Object.assign(Object.assign({},e),{x0:a,y0:d,x1:l,y1:_});break}case\"poly\":{const{sx:t,sy:o}=e,c=s.v_invert(t),i=n.v_invert(o);r=Object.assign(Object.assign({},e),{x:c,y:i});break}}this.plot_model.trigger_event(new p.SelectionGeometry(r,t))}}s.SelectToolView=v,v.__name__=\"SelectToolView\";class b extends c.GestureTool{constructor(e){super(e)}initialize(){super.initialize(),this.clear=new u.Signal0(this,\"clear\")}get menu(){return[{icon:\"bk-tool-icon-replace-mode\",tooltip:\"Replace the current selection\",active:()=>\"replace\"==this.mode,handler:()=>{this.mode=\"replace\",this.active=!0}},{icon:\"bk-tool-icon-append-mode\",tooltip:\"Append to the current selection (Shift)\",active:()=>\"append\"==this.mode,handler:()=>{this.mode=\"append\",this.active=!0}},{icon:\"bk-tool-icon-intersect-mode\",tooltip:\"Intersect with the current selection (Ctrl)\",active:()=>\"intersect\"==this.mode,handler:()=>{this.mode=\"intersect\",this.active=!0}},{icon:\"bk-tool-icon-subtract-mode\",tooltip:\"Subtract from the current selection (Shift+Ctrl)\",active:()=>\"subtract\"==this.mode,handler:()=>{this.mode=\"subtract\",this.active=!0}},null,{icon:\"bk-tool-icon-clear-selection\",tooltip:\"Clear the current selection (Esc)\",handler:()=>{this.clear.emit()}}]}}s.SelectTool=b,o=b,b.__name__=\"SelectTool\",o.define((({String:e,Array:t,Ref:s,Or:n,Auto:r})=>({renderers:[n(t(s(l.DataRenderer)),r),\"auto\"],names:[t(e),[]],mode:[_.SelectionMode,\"replace\"]})))},\n", + " function _(t,o,e,s,i){var n;s();const _=t(223),a=t(116),l=t(20),r=t(228);class h extends _.GestureToolView{_match_aspect(t,o,e){const s=e.bbox.aspect,i=e.bbox.h_range.end,n=e.bbox.h_range.start,_=e.bbox.v_range.end,a=e.bbox.v_range.start;let l=Math.abs(t[0]-o[0]),r=Math.abs(t[1]-o[1]);const h=0==r?0:l/r,[c]=h>=s?[1,h/s]:[s/h,1];let m,p,d,b;return t[0]<=o[0]?(m=t[0],p=t[0]+l*c,p>i&&(p=i)):(p=t[0],m=t[0]-l*c,m_&&(d=_)):(d=t[1],b=t[1]-l/s,bnew a.BoxAnnotation({level:\"overlay\",top_units:\"screen\",left_units:\"screen\",bottom_units:\"screen\",right_units:\"screen\",fill_color:\"lightgrey\",fill_alpha:.5,line_color:\"black\",line_alpha:1,line_width:2,line_dash:[4,4]});class m extends _.GestureTool{constructor(t){super(t),this.tool_name=\"Box Zoom\",this.icon=r.tool_icon_box_zoom,this.event_type=\"pan\",this.default_order=20}get tooltip(){return this._get_dim_tooltip(this.dimensions)}}e.BoxZoomTool=m,n=m,m.__name__=\"BoxZoomTool\",n.prototype.default_view=h,n.define((({Boolean:t,Ref:o})=>({dimensions:[l.Dimensions,\"both\"],overlay:[o(a.BoxAnnotation),c],match_aspect:[t,!1],origin:[l.BoxOrigin,\"corner\"]}))),n.register_alias(\"box_zoom\",(()=>new m({dimensions:\"both\"}))),n.register_alias(\"xbox_zoom\",(()=>new m({dimensions:\"width\"}))),n.register_alias(\"ybox_zoom\",(()=>new m({dimensions:\"height\"})))},\n", + " function _(s,e,t,o,_){var l;o();const i=s(378),a=s(217),c=s(381),n=s(43),h=s(228);class r extends i.SelectToolView{constructor(){super(...arguments),this.sxs=[],this.sys=[]}connect_signals(){super.connect_signals(),this.connect(this.model.properties.active.change,(()=>this._active_change()))}_active_change(){this.model.active||this._clear_overlay()}_keyup(s){s.keyCode==n.Keys.Enter&&this._clear_overlay()}_pan_start(s){this.sxs=[],this.sys=[];const{sx:e,sy:t}=s;this._append_overlay(e,t)}_pan(s){const[e,t]=this.plot_view.frame.bbox.clip(s.sx,s.sy);this._append_overlay(e,t),this.model.select_every_mousemove&&this._do_select(this.sxs,this.sys,!1,this._select_mode(s))}_pan_end(s){const{sxs:e,sys:t}=this;this._clear_overlay(),this._do_select(e,t,!0,this._select_mode(s)),this.plot_view.state.push(\"lasso_select\",{selection:this.plot_view.get_selection()})}_append_overlay(s,e){const{sxs:t,sys:o}=this;t.push(s),o.push(e),this.model.overlay.update({xs:t,ys:o})}_clear_overlay(){this.sxs=[],this.sys=[],this.model.overlay.update({xs:this.sxs,ys:this.sys})}_do_select(s,e,t,o){const _={type:\"poly\",sx:s,sy:e};this._select(_,t,o)}}t.LassoSelectToolView=r,r.__name__=\"LassoSelectToolView\";class y extends i.SelectTool{constructor(s){super(s),this.tool_name=\"Lasso Select\",this.icon=h.tool_icon_lasso_select,this.event_type=\"pan\",this.default_order=12}}t.LassoSelectTool=y,l=y,y.__name__=\"LassoSelectTool\",l.prototype.default_view=r,l.define((({Boolean:s,Ref:e})=>({select_every_mousemove:[s,!0],overlay:[e(a.PolyAnnotation),c.DEFAULT_POLY_OVERLAY]}))),l.register_alias(\"lasso_select\",(()=>new y))},\n", + " function _(e,t,s,l,o){var i;l();const a=e(378),_=e(217),c=e(43),n=e(9),h=e(228);class y extends a.SelectToolView{initialize(){super.initialize(),this.data={sx:[],sy:[]}}connect_signals(){super.connect_signals(),this.connect(this.model.properties.active.change,(()=>this._active_change()))}_active_change(){this.model.active||this._clear_data()}_keyup(e){e.keyCode==c.Keys.Enter&&this._clear_data()}_doubletap(e){this._do_select(this.data.sx,this.data.sy,!0,this._select_mode(e)),this.plot_view.state.push(\"poly_select\",{selection:this.plot_view.get_selection()}),this._clear_data()}_clear_data(){this.data={sx:[],sy:[]},this.model.overlay.update({xs:[],ys:[]})}_tap(e){const{sx:t,sy:s}=e;this.plot_view.frame.bbox.contains(t,s)&&(this.data.sx.push(t),this.data.sy.push(s),this.model.overlay.update({xs:(0,n.copy)(this.data.sx),ys:(0,n.copy)(this.data.sy)}))}_do_select(e,t,s,l){const o={type:\"poly\",sx:e,sy:t};this._select(o,s,l)}}s.PolySelectToolView=y,y.__name__=\"PolySelectToolView\";s.DEFAULT_POLY_OVERLAY=()=>new _.PolyAnnotation({level:\"overlay\",xs_units:\"screen\",ys_units:\"screen\",fill_color:\"lightgrey\",fill_alpha:.5,line_color:\"black\",line_alpha:1,line_width:2,line_dash:[4,4]});class d extends a.SelectTool{constructor(e){super(e),this.tool_name=\"Poly Select\",this.icon=h.tool_icon_polygon_select,this.event_type=\"tap\",this.default_order=11}}s.PolySelectTool=d,i=d,d.__name__=\"PolySelectTool\",i.prototype.default_view=y,i.define((({Ref:e})=>({overlay:[e(_.PolyAnnotation),s.DEFAULT_POLY_OVERLAY]}))),i.register_alias(\"poly_select\",(()=>new d))},\n", + " function _(e,t,s,i,r){var n;i();const _=e(20),d=e(383),o=e(228);class l extends d.LineToolView{constructor(){super(...arguments),this._drawing=!1}_doubletap(e){if(!this.model.active)return;const t=this.model.renderers;for(const s of t){1==this._select_event(e,\"replace\",[s]).length&&(this._selected_renderer=s)}this._show_intersections(),this._update_line_cds()}_show_intersections(){if(!this.model.active)return;if(null==this._selected_renderer)return;if(!this.model.renderers.length)return this._set_intersection([],[]),this._selected_renderer=null,void(this._drawing=!1);const e=this._selected_renderer.data_source,t=this._selected_renderer.glyph,[s,i]=[t.x.field,t.y.field],r=e.get_array(s),n=e.get_array(i);this._set_intersection(r,n)}_tap(e){const t=this.model.intersection_renderer;if(null==this._map_drag(e.sx,e.sy,t))return;if(this._drawing&&this._selected_renderer){const s=this._select_mode(e);if(0==this._select_event(e,s,[t]).length)return}const s=this._select_mode(e);this._select_event(e,s,[t]),this._select_event(e,s,this.model.renderers)}_update_line_cds(){if(null==this._selected_renderer)return;const e=this.model.intersection_renderer.glyph,t=this.model.intersection_renderer.data_source,[s,i]=[e.x.field,e.y.field];if(s&&i){const e=t.data[s],r=t.data[i];this._selected_renderer.data_source.data[s]=e,this._selected_renderer.data_source.data[i]=r}this._emit_cds_changes(this._selected_renderer.data_source,!0,!0,!1)}_pan_start(e){this._select_event(e,\"append\",[this.model.intersection_renderer]),this._basepoint=[e.sx,e.sy]}_pan(e){null!=this._basepoint&&(this._drag_points(e,[this.model.intersection_renderer],this.model.dimensions),this._selected_renderer&&this._selected_renderer.data_source.change.emit())}_pan_end(e){null!=this._basepoint&&(this._drag_points(e,[this.model.intersection_renderer]),this._emit_cds_changes(this.model.intersection_renderer.data_source,!1,!0,!0),this._selected_renderer&&this._emit_cds_changes(this._selected_renderer.data_source),this._basepoint=null)}activate(){this._drawing=!0}deactivate(){this._selected_renderer&&(this._drawing&&(this._drawing=!1),this._hide_intersections())}}s.LineEditToolView=l,l.__name__=\"LineEditToolView\";class h extends d.LineTool{constructor(e){super(e),this.tool_name=\"Line Edit Tool\",this.icon=o.tool_icon_line_edit,this.event_type=[\"tap\",\"pan\",\"move\"],this.default_order=4}get tooltip(){return this._get_dim_tooltip(this.dimensions)}}s.LineEditTool=h,n=h,h.__name__=\"LineEditTool\",n.prototype.default_view=l,n.define((()=>({dimensions:[_.Dimensions,\"both\"]})))},\n", + " function _(e,i,n,t,s){var o;t();const r=e(8),_=e(370);class d extends _.EditToolView{_set_intersection(e,i){const n=this.model.intersection_renderer.glyph,t=this.model.intersection_renderer.data_source,[s,o]=[n.x.field,n.y.field];s&&((0,r.isArray)(e)?t.data[s]=e:n.x={value:e}),o&&((0,r.isArray)(i)?t.data[o]=i:n.y={value:i}),this._emit_cds_changes(t,!0,!0,!1)}_hide_intersections(){this._set_intersection([],[])}}n.LineToolView=d,d.__name__=\"LineToolView\";class a extends _.EditTool{constructor(e){super(e)}}n.LineTool=a,o=a,a.__name__=\"LineTool\",o.define((({AnyRef:e})=>({intersection_renderer:[e()]})))},\n", + " function _(t,s,n,e,i){e();const o=t(1);var a;const _=t(223),l=t(20),r=(0,o.__importStar)(t(228));function h(t,s,n){const e=new Map;for(const[i,o]of t){const[t,a]=o.r_invert(s,n);e.set(i,{start:t,end:a})}return e}n.update_ranges=h;class d extends _.GestureToolView{_pan_start(t){var s;this.last_dx=0,this.last_dy=0;const{sx:n,sy:e}=t,i=this.plot_view.frame.bbox;if(!i.contains(n,e)){const t=i.h_range,s=i.v_range;(nt.end)&&(this.v_axis_only=!0),(es.end)&&(this.h_axis_only=!0)}null===(s=this.model.document)||void 0===s||s.interactive_start(this.plot_model)}_pan(t){var s;this._update(t.deltaX,t.deltaY),null===(s=this.model.document)||void 0===s||s.interactive_start(this.plot_model)}_pan_end(t){this.h_axis_only=!1,this.v_axis_only=!1,null!=this.pan_info&&this.plot_view.state.push(\"pan\",{range:this.pan_info}),this.plot_view.trigger_ranges_update_event()}_update(t,s){const n=this.plot_view.frame,e=t-this.last_dx,i=s-this.last_dy,o=n.bbox.h_range,a=o.start-e,_=o.end-e,l=n.bbox.v_range,r=l.start-i,d=l.end-i,p=this.model.dimensions;let c,u,m,v,x,g;\"width\"!=p&&\"both\"!=p||this.v_axis_only?(c=o.start,u=o.end,m=0):(c=a,u=_,m=-e),\"height\"!=p&&\"both\"!=p||this.h_axis_only?(v=l.start,x=l.end,g=0):(v=r,x=d,g=-i),this.last_dx=t,this.last_dy=s;const{x_scales:w,y_scales:y}=n,f=h(w,c,u),b=h(y,v,x);this.pan_info={xrs:f,yrs:b,sdx:m,sdy:g},this.plot_view.update_range(this.pan_info,{panning:!0})}}n.PanToolView=d,d.__name__=\"PanToolView\";class p extends _.GestureTool{constructor(t){super(t),this.tool_name=\"Pan\",this.event_type=\"pan\",this.default_order=10}get tooltip(){return this._get_dim_tooltip(this.dimensions)}}n.PanTool=p,a=p,p.__name__=\"PanTool\",a.prototype.default_view=d,a.define((()=>({dimensions:[l.Dimensions,\"both\",{on_update(t,s){switch(t){case\"both\":s.icon=r.tool_icon_pan;break;case\"width\":s.icon=r.tool_icon_xpan;break;case\"height\":s.icon=r.tool_icon_ypan}}}]}))),a.register_alias(\"pan\",(()=>new p({dimensions:\"both\"}))),a.register_alias(\"xpan\",(()=>new p({dimensions:\"width\"}))),a.register_alias(\"ypan\",(()=>new p({dimensions:\"height\"})))},\n", + " function _(e,t,i,s,n){var l;s();const a=e(116),r=e(58),o=e(19),_=e(223),h=e(228);function d(e){switch(e){case 1:return 2;case 2:return 1;case 4:return 5;case 5:return 4;default:return e}}function u(e,t,i,s){if(null==t)return!1;const n=i.compute(t);return Math.abs(e-n)n.right)&&(l=!1)}if(null!=n.bottom&&null!=n.top){const e=s.invert(t);(en.top)&&(l=!1)}return l}function g(e,t,i){let s=0;return e>=i.start&&e<=i.end&&(s+=1),t>=i.start&&t<=i.end&&(s+=1),s}function y(e,t,i,s){const n=t.compute(e),l=t.invert(n+i);return l>=s.start&&l<=s.end?l:e}function f(e,t,i){return e>t.start?(t.end=e,i):(t.end=t.start,t.start=e,d(i))}function v(e,t,i){return e=o&&(e.start=a,e.end=r)}i.flip_side=d,i.is_near=u,i.is_inside=c,i.sides_inside=g,i.compute_value=y,i.update_range_end_side=f,i.update_range_start_side=v,i.update_range=m;class p extends _.GestureToolView{initialize(){super.initialize(),this.side=0,this.model.update_overlay_from_ranges()}connect_signals(){super.connect_signals(),null!=this.model.x_range&&this.connect(this.model.x_range.change,(()=>this.model.update_overlay_from_ranges())),null!=this.model.y_range&&this.connect(this.model.y_range.change,(()=>this.model.update_overlay_from_ranges()))}_pan_start(e){this.last_dx=0,this.last_dy=0;const t=this.model.x_range,i=this.model.y_range,{frame:s}=this.plot_view,n=s.x_scale,l=s.y_scale,r=this.model.overlay,{left:o,right:_,top:h,bottom:d}=r,g=this.model.overlay.line_width+a.EDGE_TOLERANCE;null!=t&&this.model.x_interaction&&(u(e.sx,o,n,g)?this.side=1:u(e.sx,_,n,g)?this.side=2:c(e.sx,e.sy,n,l,r)&&(this.side=3)),null!=i&&this.model.y_interaction&&(0==this.side&&u(e.sy,d,l,g)&&(this.side=4),0==this.side&&u(e.sy,h,l,g)?this.side=5:c(e.sx,e.sy,n,l,this.model.overlay)&&(3==this.side?this.side=7:this.side=6))}_pan(e){const t=this.plot_view.frame,i=e.deltaX-this.last_dx,s=e.deltaY-this.last_dy,n=this.model.x_range,l=this.model.y_range,a=t.x_scale,r=t.y_scale;if(null!=n)if(3==this.side||7==this.side)m(n,a,i,t.x_range);else if(1==this.side){const e=y(n.start,a,i,t.x_range);this.side=v(e,n,this.side)}else if(2==this.side){const e=y(n.end,a,i,t.x_range);this.side=f(e,n,this.side)}if(null!=l)if(6==this.side||7==this.side)m(l,r,s,t.y_range);else if(4==this.side){const e=y(l.start,r,s,t.y_range);this.side=v(e,l,this.side)}else if(5==this.side){const e=y(l.end,r,s,t.y_range);this.side=f(e,l,this.side)}this.last_dx=e.deltaX,this.last_dy=e.deltaY}_pan_end(e){this.side=0,this.plot_view.trigger_ranges_update_event()}}i.RangeToolView=p,p.__name__=\"RangeToolView\";const x=()=>new a.BoxAnnotation({level:\"overlay\",fill_color:\"lightgrey\",fill_alpha:.5,line_color:\"black\",line_alpha:1,line_width:.5,line_dash:[2,2]});class w extends _.GestureTool{constructor(e){super(e),this.tool_name=\"Range Tool\",this.icon=h.tool_icon_range,this.event_type=\"pan\",this.default_order=1}initialize(){super.initialize(),this.overlay.in_cursor=\"grab\",this.overlay.ew_cursor=null!=this.x_range&&this.x_interaction?\"ew-resize\":null,this.overlay.ns_cursor=null!=this.y_range&&this.y_interaction?\"ns-resize\":null}update_overlay_from_ranges(){null==this.x_range&&null==this.y_range&&(this.overlay.left=null,this.overlay.right=null,this.overlay.bottom=null,this.overlay.top=null,o.logger.warn(\"RangeTool not configured with any Ranges.\")),null==this.x_range?(this.overlay.left=null,this.overlay.right=null):(this.overlay.left=this.x_range.start,this.overlay.right=this.x_range.end),null==this.y_range?(this.overlay.bottom=null,this.overlay.top=null):(this.overlay.bottom=this.y_range.start,this.overlay.top=this.y_range.end)}}i.RangeTool=w,l=w,w.__name__=\"RangeTool\",l.prototype.default_view=p,l.define((({Boolean:e,Ref:t,Nullable:i})=>({x_range:[i(t(r.Range1d)),null],x_interaction:[e,!0],y_range:[i(t(r.Range1d)),null],y_interaction:[e,!0],overlay:[t(a.BoxAnnotation),x]})))},\n", + " function _(e,t,s,o,i){var l;o();const a=e(378),n=e(20),c=e(228);class _ extends a.SelectToolView{_tap(e){\"tap\"==this.model.gesture&&this._handle_tap(e)}_doubletap(e){\"doubletap\"==this.model.gesture&&this._handle_tap(e)}_handle_tap(e){const{sx:t,sy:s}=e,o={type:\"point\",sx:t,sy:s};this._select(o,!0,this._select_mode(e))}_select(e,t,s){const{callback:o}=this.model;if(\"select\"==this.model.behavior){const i=this._computed_renderers_by_data_source();for(const[,l]of i){const i=l[0].get_selection_manager(),a=l.map((e=>this.plot_view.renderer_view(e))).filter((e=>null!=e));if(i.select(a,e,t,s)&&null!=o){const t=a[0].coordinates.x_scale.invert(e.sx),s=a[0].coordinates.y_scale.invert(e.sy),l={geometries:Object.assign(Object.assign({},e),{x:t,y:s}),source:i.source};o.execute(this.model,l)}}this._emit_selection_event(e),this.plot_view.state.push(\"tap\",{selection:this.plot_view.get_selection()})}else for(const t of this.computed_renderers){const s=this.plot_view.renderer_view(t);if(null==s)continue;const i=t.get_selection_manager();if(i.inspect(s,e)&&null!=o){const t=s.coordinates.x_scale.invert(e.sx),l=s.coordinates.y_scale.invert(e.sy),a={geometries:Object.assign(Object.assign({},e),{x:t,y:l}),source:i.source};o.execute(this.model,a)}}}}s.TapToolView=_,_.__name__=\"TapToolView\";class r extends a.SelectTool{constructor(e){super(e),this.tool_name=\"Tap\",this.icon=c.tool_icon_tap_select,this.event_type=\"tap\",this.default_order=10}}s.TapTool=r,l=r,r.__name__=\"TapTool\",l.prototype.default_view=_,l.define((({Any:e,Enum:t,Nullable:s})=>({behavior:[n.TapBehavior,\"select\"],gesture:[t(\"tap\",\"doubletap\"),\"tap\"],callback:[s(e)]}))),l.register_alias(\"click\",(()=>new r({behavior:\"inspect\"}))),l.register_alias(\"tap\",(()=>new r)),l.register_alias(\"doubletap\",(()=>new r({gesture:\"doubletap\"})))},\n", + " function _(e,t,s,n,i){var a;n();const o=e(223),l=e(20),_=e(228),r=e(384);class h extends o.GestureToolView{_scroll(e){let t=this.model.speed*e.delta;t>.9?t=.9:t<-.9&&(t=-.9),this._update_ranges(t)}_update_ranges(e){var t;const{frame:s}=this.plot_view,n=s.bbox.h_range,i=s.bbox.v_range,[a,o]=[n.start,n.end],[l,_]=[i.start,i.end];let h,d,p,c;switch(this.model.dimension){case\"height\":{const t=Math.abs(_-l);h=a,d=o,p=l-t*e,c=_-t*e;break}case\"width\":{const t=Math.abs(o-a);h=a-t*e,d=o-t*e,p=l,c=_;break}}const{x_scales:g,y_scales:u}=s,w={xrs:(0,r.update_ranges)(g,h,d),yrs:(0,r.update_ranges)(u,p,c),factor:e};this.plot_view.state.push(\"wheel_pan\",{range:w}),this.plot_view.update_range(w,{scrolling:!0}),null===(t=this.model.document)||void 0===t||t.interactive_start(this.plot_model,(()=>this.plot_view.trigger_ranges_update_event()))}}s.WheelPanToolView=h,h.__name__=\"WheelPanToolView\";class d extends o.GestureTool{constructor(e){super(e),this.tool_name=\"Wheel Pan\",this.icon=_.tool_icon_wheel_pan,this.event_type=\"scroll\",this.default_order=12}get tooltip(){return this._get_dim_tooltip(this.dimension)}}s.WheelPanTool=d,a=d,d.__name__=\"WheelPanTool\",a.prototype.default_view=h,a.define((()=>({dimension:[l.Dimension,\"width\"]}))),a.internal((({Number:e})=>({speed:[e,.001]}))),a.register_alias(\"xwheel_pan\",(()=>new d({dimension:\"width\"}))),a.register_alias(\"ywheel_pan\",(()=>new d({dimension:\"height\"})))},\n", + " function _(e,o,t,s,i){var n;s();const l=e(223),_=e(368),h=e(20),a=e(27),r=e(228);class m extends l.GestureToolView{_pinch(e){const{sx:o,sy:t,scale:s,ctrlKey:i,shiftKey:n}=e;let l;l=s>=1?20*(s-1):-20/s,this._scroll({type:\"wheel\",sx:o,sy:t,delta:l,ctrlKey:i,shiftKey:n})}_scroll(e){var o;const{frame:t}=this.plot_view,s=t.bbox.h_range,i=t.bbox.v_range,{sx:n,sy:l}=e,h=this.model.dimensions,a=(\"width\"==h||\"both\"==h)&&s.startthis.plot_view.trigger_ranges_update_event()))}}t.WheelZoomToolView=m,m.__name__=\"WheelZoomToolView\";class d extends l.GestureTool{constructor(e){super(e),this.tool_name=\"Wheel Zoom\",this.icon=r.tool_icon_wheel_zoom,this.event_type=a.is_mobile?\"pinch\":\"scroll\",this.default_order=10}get tooltip(){return this._get_dim_tooltip(this.dimensions)}}t.WheelZoomTool=d,n=d,d.__name__=\"WheelZoomTool\",n.prototype.default_view=m,n.define((({Boolean:e,Number:o})=>({dimensions:[h.Dimensions,\"both\"],maintain_focus:[e,!0],zoom_on_axis:[e,!0],speed:[o,1/600]}))),n.register_alias(\"wheel_zoom\",(()=>new d({dimensions:\"both\"}))),n.register_alias(\"xwheel_zoom\",(()=>new d({dimensions:\"width\"}))),n.register_alias(\"ywheel_zoom\",(()=>new d({dimensions:\"height\"})))},\n", + " function _(i,e,s,t,o){var n;t();const l=i(232),a=i(219),h=i(20),r=i(13),_=i(228);class c extends l.InspectToolView{_move(i){if(!this.model.active)return;const{sx:e,sy:s}=i;this.plot_view.frame.bbox.contains(e,s)?this._update_spans(e,s):this._update_spans(null,null)}_move_exit(i){this._update_spans(null,null)}_update_spans(i,e){const s=this.model.dimensions;\"width\"!=s&&\"both\"!=s||(this.model.spans.width.location=e),\"height\"!=s&&\"both\"!=s||(this.model.spans.height.location=i)}}s.CrosshairToolView=c,c.__name__=\"CrosshairToolView\";class p extends l.InspectTool{constructor(i){super(i),this.tool_name=\"Crosshair\",this.icon=_.tool_icon_crosshair}get tooltip(){return this._get_dim_tooltip(this.dimensions)}get synthetic_renderers(){return(0,r.values)(this.spans)}}s.CrosshairTool=p,n=p,p.__name__=\"CrosshairTool\",(()=>{function i(i,e){return new a.Span({for_hover:!0,dimension:e,location_units:\"screen\",level:\"overlay\",line_color:i.line_color,line_width:i.line_width,line_alpha:i.line_alpha})}n.prototype.default_view=c,n.define((({Alpha:i,Number:e,Color:s})=>({dimensions:[h.Dimensions,\"both\"],line_color:[s,\"black\"],line_width:[e,1],line_alpha:[i,1]}))),n.internal((({Struct:e,Ref:s})=>({spans:[e({width:s(a.Span),height:s(a.Span)}),e=>({width:i(e,\"width\"),height:i(e,\"height\")})]}))),n.register_alias(\"crosshair\",(()=>new p))})()},\n", + " function _(e,s,t,r,n){var o;r();const a=e(53),u=e(13),c=e(34);class i extends a.Model{constructor(e){super(e)}get values(){return(0,u.values)(this.args)}_make_code(e,s,t,r){return new Function(...(0,u.keys)(this.args),e,s,t,(0,c.use_strict)(r))}format(e,s,t){return this._make_code(\"value\",\"format\",\"special_vars\",this.code)(...this.values,e,s,t)}}t.CustomJSHover=i,o=i,i.__name__=\"CustomJSHover\",o.define((({Unknown:e,String:s,Dict:t})=>({args:[t(e),{}],code:[s,\"\"]})))},\n", + " function _(e,t,n,s,i){s();const o=e(1);var r;const l=e(232),a=e(390),c=e(241),_=e(175),d=e(339),p=e(176),h=e(177),u=e(283),m=e(186),y=e(187),f=e(189),x=(0,o.__importStar)(e(185)),v=e(152),w=e(43),g=e(22),b=e(13),k=e(234),C=e(8),S=e(113),T=e(20),$=e(228),R=e(15),A=e(66),M=(0,o.__importStar)(e(242)),V=e(392);function G(e,t,n,s,i,o){const r={x:i[e],y:o[e]},l={x:i[e+1],y:o[e+1]};let a,c;if(\"span\"==t.type)\"h\"==t.direction?(a=Math.abs(r.x-n),c=Math.abs(l.x-n)):(a=Math.abs(r.y-s),c=Math.abs(l.y-s));else{const e={x:n,y:s};a=x.dist_2_pts(r,e),c=x.dist_2_pts(l,e)}return adelete this._template_el)),this.on_change([e,t,n],(async()=>await this._update_ttmodels()))}async _update_ttmodels(){const{_ttmodels:e,computed_renderers:t}=this;e.clear();const{tooltips:n}=this.model;if(null!=n)for(const t of this.computed_renderers){const s=new c.Tooltip({custom:(0,C.isString)(n)||(0,C.isFunction)(n),attachment:this.model.attachment,show_arrow:this.model.show_arrow});t instanceof _.GlyphRenderer?e.set(t,s):t instanceof d.GraphRenderer&&(e.set(t.node_renderer,s),e.set(t.edge_renderer,s))}const s=await(0,S.build_views)(this._ttviews,[...e.values()],{parent:this.plot_view});for(const e of s)e.render();const i=[...function*(){for(const e of t)e instanceof _.GlyphRenderer?yield e:e instanceof d.GraphRenderer&&(yield e.node_renderer,yield e.edge_renderer)}()],o=this._slots.get(this._update);if(null!=o){const e=new Set(i.map((e=>e.data_source)));R.Signal.disconnect_receiver(this,o,e)}for(const e of i)this.connect(e.data_source.inspect,this._update)}get computed_renderers(){const{renderers:e,names:t}=this.model,n=this.plot_model.data_renderers;return(0,A.compute_renderers)(e,n,t)}get ttmodels(){return this._ttmodels}_clear(){this._inspect(1/0,1/0);for(const[,e]of this.ttmodels)e.clear()}_move(e){if(!this.model.active)return;const{sx:t,sy:n}=e;this.plot_view.frame.bbox.contains(t,n)?this._inspect(t,n):this._clear()}_move_exit(){this._clear()}_inspect(e,t){let n;if(\"mouse\"==this.model.mode)n={type:\"point\",sx:e,sy:t};else{n={type:\"span\",direction:\"vline\"==this.model.mode?\"h\":\"v\",sx:e,sy:t}}for(const e of this.computed_renderers){const t=e.get_selection_manager(),s=this.plot_view.renderer_view(e);null!=s&&t.inspect(s,n)}this._emit_callback(n)}_update([e,{geometry:t}]){var n,s;if(!this.model.active)return;if(\"point\"!=t.type&&\"span\"!=t.type)return;if(!(e instanceof _.GlyphRenderer))return;if(\"ignore\"==this.model.muted_policy&&e.muted)return;const i=this.ttmodels.get(e);if(null==i)return;const o=e.get_selection_manager(),r=o.inspectors.get(e),l=e.view.convert_selection_to_subset(r);if(r.is_empty()&&null==r.view)return void i.clear();const a=o.source,c=this.plot_view.renderer_view(e);if(null==c)return;const{sx:d,sy:p}=t,x=c.coordinates.x_scale,v=c.coordinates.y_scale,g=x.invert(d),k=v.invert(p),{glyph:C}=c,S=[];if(C instanceof m.PatchView){const[t,n]=[d,p],s={x:g,y:k,sx:d,sy:p,rx:t,ry:n,name:e.name};S.push([t,n,this._render_tooltips(a,-1,s)])}if(C instanceof y.HAreaView)for(const t of l.line_indices){const n=C._x1,s=C._x2,i=C._y,[o,r]=[d,p],c={index:t,x:g,y:k,sx:d,sy:p,data_x1:n,data_x2:s,data_y:i,rx:o,ry:r,indices:l.line_indices,name:e.name};S.push([o,r,this._render_tooltips(a,t,c)])}if(C instanceof f.VAreaView)for(const t of l.line_indices){const n=C._x,s=C._y1,i=C._y2,[o,r]=[d,p],c={index:t,x:g,y:k,sx:d,sy:p,data_x:n,data_y1:s,data_y2:i,rx:o,ry:r,indices:l.line_indices,name:e.name};S.push([o,r,this._render_tooltips(a,t,c)])}if(C instanceof h.LineView)for(const n of l.line_indices){let s,i,o=C._x[n+1],r=C._y[n+1],c=n;switch(this.model.line_policy){case\"interp\":[o,r]=C.get_interpolation_hit(n,t),s=x.compute(o),i=v.compute(r);break;case\"prev\":[[s,i],c]=H(C.sx,C.sy,n);break;case\"next\":[[s,i],c]=H(C.sx,C.sy,n+1);break;case\"nearest\":[[s,i],c]=G(n,t,d,p,C.sx,C.sy),o=C._x[c],r=C._y[c];break;default:[s,i]=[d,p]}const _={index:c,x:g,y:k,sx:d,sy:p,data_x:o,data_y:r,rx:s,ry:i,indices:l.line_indices,name:e.name};S.push([s,i,this._render_tooltips(a,c,_)])}for(const t of r.image_indices){const n={index:t.index,x:g,y:k,sx:d,sy:p,name:e.name},s=this._render_tooltips(a,t,n);S.push([d,p,s])}for(const i of l.indices)if(C instanceof u.MultiLineView&&!(0,b.isEmpty)(l.multiline_indices))for(const n of l.multiline_indices[i.toString()]){let s,o,r,c=C._xs.get(i)[n],h=C._ys.get(i)[n],u=n;switch(this.model.line_policy){case\"interp\":[c,h]=C.get_interpolation_hit(i,n,t),s=x.compute(c),o=v.compute(h);break;case\"prev\":[[s,o],u]=H(C.sxs.get(i),C.sys.get(i),n);break;case\"next\":[[s,o],u]=H(C.sxs.get(i),C.sys.get(i),n+1);break;case\"nearest\":[[s,o],u]=G(n,t,d,p,C.sxs.get(i),C.sys.get(i)),c=C._xs.get(i)[u],h=C._ys.get(i)[u];break;default:throw new Error(\"shouldn't have happened\")}r=e instanceof _.GlyphRenderer?e.view.convert_indices_from_subset([i])[0]:i;const m={index:r,x:g,y:k,sx:d,sy:p,data_x:c,data_y:h,segment_index:u,indices:l.multiline_indices,name:e.name};S.push([s,o,this._render_tooltips(a,r,m)])}else{const t=null===(n=C._x)||void 0===n?void 0:n[i],o=null===(s=C._y)||void 0===s?void 0:s[i];let r,c,h;if(\"snap_to_data\"==this.model.point_policy){let e=C.get_anchor_point(this.model.anchor,i,[d,p]);if(null==e&&(e=C.get_anchor_point(\"center\",i,[d,p]),null==e))continue;r=e.x,c=e.y}else[r,c]=[d,p];h=e instanceof _.GlyphRenderer?e.view.convert_indices_from_subset([i])[0]:i;const u={index:h,x:g,y:k,sx:d,sy:p,data_x:t,data_y:o,indices:l.indices,name:e.name};S.push([r,c,this._render_tooltips(a,h,u)])}if(0==S.length)i.clear();else{const{content:e}=i;(0,w.empty)(i.content);for(const[,,t]of S)null!=t&&e.appendChild(t);const[t,n]=S[S.length-1];i.setv({position:[t,n]},{check_eq:!1})}}_emit_callback(e){const{callback:t}=this.model;if(null!=t)for(const n of this.computed_renderers){if(!(n instanceof _.GlyphRenderer))continue;const s=this.plot_view.renderer_view(n);if(null==s)continue;const{x_scale:i,y_scale:o}=s.coordinates,r=i.invert(e.sx),l=o.invert(e.sy),a=n.data_source.inspected;t.execute(this.model,{geometry:Object.assign({x:r,y:l},e),renderer:n,index:a})}}_create_template(e){const t=(0,w.div)({style:{display:\"table\",borderSpacing:\"2px\"}});for(const[n]of e){const e=(0,w.div)({style:{display:\"table-row\"}});t.appendChild(e);const s=(0,w.div)({style:{display:\"table-cell\"},class:M.tooltip_row_label},0!=n.length?`${n}: `:\"\");e.appendChild(s);const i=(0,w.span)();i.dataset.value=\"\";const o=(0,w.span)({class:M.tooltip_color_block},\" \");o.dataset.swatch=\"\",(0,w.undisplay)(o);const r=(0,w.div)({style:{display:\"table-cell\"},class:M.tooltip_row_value},i,o);e.appendChild(r)}return t}_render_template(e,t,n,s,i){const o=e.cloneNode(!0),r=o.querySelectorAll(\"[data-value]\"),l=o.querySelectorAll(\"[data-swatch]\"),a=/\\$color(\\[.*\\])?:(\\w*)/,c=/\\$swatch:(\\w*)/;for(const[[,e],o]of(0,k.enumerate)(t)){const t=e.match(c),_=e.match(a);if(null!=t||null!=_){if(null!=t){const[,e]=t,i=n.get_column(e);if(null==i)r[o].textContent=`${e} unknown`;else{const e=(0,C.isNumber)(s)?i[s]:null;null!=e&&(l[o].style.backgroundColor=(0,g.color2css)(e),(0,w.display)(l[o]))}}if(null!=_){const[,e=\"\",t]=_,i=n.get_column(t);if(null==i){r[o].textContent=`${t} unknown`;continue}const a=e.indexOf(\"hex\")>=0,c=e.indexOf(\"swatch\")>=0,d=(0,C.isNumber)(s)?i[s]:null;if(null==d){r[o].textContent=\"(null)\";continue}r[o].textContent=a?(0,g.color2hex)(d):(0,g.color2css)(d),c&&(l[o].style.backgroundColor=(0,g.color2css)(d),(0,w.display)(l[o]))}}else{const t=(0,v.replace_placeholders)(e.replace(\"$~\",\"$data_\"),n,s,this.model.formatters,i);if((0,C.isString)(t))r[o].textContent=t;else for(const e of t)r[o].appendChild(e)}}return o}_render_tooltips(e,t,n){var s;const{tooltips:i}=this.model;if((0,C.isString)(i)){const s=(0,v.replace_placeholders)({html:i},e,t,this.model.formatters,n);return(0,w.div)(s)}if((0,C.isFunction)(i))return i(e,n);if(i instanceof V.Template)return this._template_view.update(e,t,n),this._template_view.el;if(null!=i){const o=null!==(s=this._template_el)&&void 0!==s?s:this._template_el=this._create_template(i);return this._render_template(o,i,e,t,n)}return null}}n.HoverToolView=z,z.__name__=\"HoverToolView\";class P extends l.InspectTool{constructor(e){super(e),this.tool_name=\"Hover\",this.icon=$.tool_icon_hover}}n.HoverTool=P,r=P,P.__name__=\"HoverTool\",r.prototype.default_view=z,r.define((({Any:e,Boolean:t,String:n,Array:s,Tuple:i,Dict:o,Or:r,Ref:l,Function:c,Auto:_,Nullable:d})=>({tooltips:[d(r(l(V.Template),n,s(i(n,n)),c())),[[\"index\",\"$index\"],[\"data (x, y)\",\"($x, $y)\"],[\"screen (x, y)\",\"($sx, $sy)\"]]],formatters:[o(r(l(a.CustomJSHover),v.FormatterType)),{}],renderers:[r(s(l(p.DataRenderer)),_),\"auto\"],names:[s(n),[]],mode:[T.HoverMode,\"mouse\"],muted_policy:[T.MutedPolicy,\"show\"],point_policy:[T.PointPolicy,\"snap_to_data\"],line_policy:[T.LinePolicy,\"nearest\"],show_arrow:[t,!0],anchor:[T.Anchor,\"center\"],attachment:[T.TooltipAttachment,\"horizontal\"],callback:[d(e)]}))),r.register_alias(\"hover\",(()=>new P))},\n", + " function _(e,t,s,n,a){n();const l=e(1);var i,_,o,r,c,d,p,u,m,w,f,h,x;const v=e(53),y=e(309),V=e(393);a(\"Styles\",V.Styles);const g=e(43),T=e(42),b=e(226),R=e(113),D=e(8),M=e(13),S=(0,l.__importStar)(e(242)),O=e(152);class C extends b.DOMView{}s.DOMNodeView=C,C.__name__=\"DOMNodeView\";class z extends v.Model{constructor(e){super(e)}}s.DOMNode=z,z.__name__=\"DOMNode\",z.__module__=\"bokeh.models.dom\";class P extends C{render(){super.render(),this.el.textContent=this.model.content}_createElement(){return document.createTextNode(\"\")}}s.TextView=P,P.__name__=\"TextView\";class A extends z{constructor(e){super(e)}}s.Text=A,i=A,A.__name__=\"Text\",i.prototype.default_view=P,i.define((({String:e})=>({content:[e,\"\"]})));class N extends C{}s.PlaceholderView=N,N.__name__=\"PlaceholderView\",N.tag_name=\"span\";class E extends z{constructor(e){super(e)}}s.Placeholder=E,_=E,E.__name__=\"Placeholder\",_.define((({})=>({})));class G extends N{update(e,t,s){this.el.textContent=t.toString()}}s.IndexView=G,G.__name__=\"IndexView\";class I extends E{constructor(e){super(e)}}s.Index=I,o=I,I.__name__=\"Index\",o.prototype.default_view=G,o.define((({})=>({})));class k extends N{update(e,t,s){const n=(0,O._get_column_value)(this.model.field,e,t),a=null==n?\"???\":`${n}`;this.el.textContent=a}}s.ValueRefView=k,k.__name__=\"ValueRefView\";class $ extends E{constructor(e){super(e)}}s.ValueRef=$,r=$,$.__name__=\"ValueRef\",r.prototype.default_view=k,r.define((({String:e})=>({field:[e]})));class B extends k{render(){super.render(),this.value_el=(0,g.span)(),this.swatch_el=(0,g.span)({class:S.tooltip_color_block},\" \"),this.el.appendChild(this.value_el),this.el.appendChild(this.swatch_el)}update(e,t,s){const n=(0,O._get_column_value)(this.model.field,e,t),a=null==n?\"???\":`${n}`;this.el.textContent=a}}s.ColorRefView=B,B.__name__=\"ColorRefView\";class L extends ${constructor(e){super(e)}}s.ColorRef=L,c=L,L.__name__=\"ColorRef\",c.prototype.default_view=B,c.define((({Boolean:e})=>({hex:[e,!0],swatch:[e,!0]})));class j extends C{constructor(){super(...arguments),this.child_views=new Map}async lazy_initialize(){await super.lazy_initialize();const e=this.model.children.filter((e=>e instanceof v.Model));await(0,R.build_views)(this.child_views,e,{parent:this})}render(){super.render();const{style:e}=this.model;if(null!=e)if(e instanceof V.Styles)for(const t of e){const e=t.get_value();if((0,D.isString)(e)){const s=t.attr.replace(/_/g,\"-\");this.el.style.hasOwnProperty(s)&&this.el.style.setProperty(s,e)}}else for(const[t,s]of(0,M.entries)(e)){const e=t.replace(/_/g,\"-\");this.el.style.hasOwnProperty(e)&&this.el.style.setProperty(e,s)}for(const e of this.model.children)if((0,D.isString)(e)){const t=document.createTextNode(e);this.el.appendChild(t)}else{this.child_views.get(e).renderTo(this.el)}}}s.DOMElementView=j,j.__name__=\"DOMElementView\";class q extends z{constructor(e){super(e)}}s.DOMElement=q,d=q,q.__name__=\"DOMElement\",d.define((({String:e,Array:t,Dict:s,Or:n,Nullable:a,Ref:l})=>({style:[a(n(l(V.Styles),s(e))),null],children:[t(n(e,l(z),l(y.LayoutDOM))),[]]})));class F extends T.View{}s.ActionView=F,F.__name__=\"ActionView\";class H extends v.Model{constructor(e){super(e)}}s.Action=H,p=H,H.__name__=\"Action\",H.__module__=\"bokeh.models.dom\",p.define((({})=>({})));class J extends j{constructor(){super(...arguments),this.action_views=new Map}async lazy_initialize(){await super.lazy_initialize(),await(0,R.build_views)(this.action_views,this.model.actions,{parent:this})}remove(){(0,R.remove_views)(this.action_views),super.remove()}update(e,t,s={}){!function n(a){for(const l of a.child_views.values())l instanceof N?l.update(e,t,s):l instanceof j&&n(l)}(this);for(const n of this.action_views.values())n.update(e,t,s)}}s.TemplateView=J,J.__name__=\"TemplateView\",J.tag_name=\"div\";class K extends q{}s.Template=K,u=K,K.__name__=\"Template\",u.prototype.default_view=J,u.define((({Array:e,Ref:t})=>({actions:[e(t(H)),[]]})));class Q extends j{}s.SpanView=Q,Q.__name__=\"SpanView\",Q.tag_name=\"span\";class U extends q{}s.Span=U,m=U,U.__name__=\"Span\",m.prototype.default_view=Q;class W extends j{}s.DivView=W,W.__name__=\"DivView\",W.tag_name=\"div\";class X extends q{}s.Div=X,w=X,X.__name__=\"Div\",w.prototype.default_view=W;class Y extends j{}s.TableView=Y,Y.__name__=\"TableView\",Y.tag_name=\"table\";class Z extends q{}s.Table=Z,f=Z,Z.__name__=\"Table\",f.prototype.default_view=Y;class ee extends j{}s.TableRowView=ee,ee.__name__=\"TableRowView\",ee.tag_name=\"tr\";class te extends q{}s.TableRow=te,h=te,te.__name__=\"TableRow\",h.prototype.default_view=ee;const se=e(41),ne=e(234);class ae extends F{update(e,t,s){for(const[e,s]of(0,ne.enumerate)(this.model.groups))e.visible=t==s}}s.ToggleGroupView=ae,ae.__name__=\"ToggleGroupView\";class le extends H{constructor(e){super(e)}}s.ToggleGroup=le,x=le,le.__name__=\"ToggleGroup\",x.prototype.default_view=ae,x.define((({Array:e,Ref:t})=>({groups:[e(t(se.RendererGroup)),[]]})))},\n", + " function _(l,n,u,_,e){var t;_();const o=l(53);class r extends o.Model{constructor(l){super(l)}}u.Styles=r,t=r,r.__name__=\"Styles\",r.__module__=\"bokeh.models.css\",t.define((({String:l,Nullable:n})=>({align_content:[n(l),null],align_items:[n(l),null],align_self:[n(l),null],alignment_baseline:[n(l),null],all:[n(l),null],animation:[n(l),null],animation_delay:[n(l),null],animation_direction:[n(l),null],animation_duration:[n(l),null],animation_fill_mode:[n(l),null],animation_iteration_count:[n(l),null],animation_name:[n(l),null],animation_play_state:[n(l),null],animation_timing_function:[n(l),null],backface_visibility:[n(l),null],background:[n(l),null],background_attachment:[n(l),null],background_clip:[n(l),null],background_color:[n(l),null],background_image:[n(l),null],background_origin:[n(l),null],background_position:[n(l),null],background_position_x:[n(l),null],background_position_y:[n(l),null],background_repeat:[n(l),null],background_size:[n(l),null],baseline_shift:[n(l),null],block_size:[n(l),null],border:[n(l),null],border_block_end:[n(l),null],border_block_end_color:[n(l),null],border_block_end_style:[n(l),null],border_block_end_width:[n(l),null],border_block_start:[n(l),null],border_block_start_color:[n(l),null],border_block_start_style:[n(l),null],border_block_start_width:[n(l),null],border_bottom:[n(l),null],border_bottom_color:[n(l),null],border_bottom_left_radius:[n(l),null],border_bottom_right_radius:[n(l),null],border_bottom_style:[n(l),null],border_bottom_width:[n(l),null],border_collapse:[n(l),null],border_color:[n(l),null],border_image:[n(l),null],border_image_outset:[n(l),null],border_image_repeat:[n(l),null],border_image_slice:[n(l),null],border_image_source:[n(l),null],border_image_width:[n(l),null],border_inline_end:[n(l),null],border_inline_end_color:[n(l),null],border_inline_end_style:[n(l),null],border_inline_end_width:[n(l),null],border_inline_start:[n(l),null],border_inline_start_color:[n(l),null],border_inline_start_style:[n(l),null],border_inline_start_width:[n(l),null],border_left:[n(l),null],border_left_color:[n(l),null],border_left_style:[n(l),null],border_left_width:[n(l),null],border_radius:[n(l),null],border_right:[n(l),null],border_right_color:[n(l),null],border_right_style:[n(l),null],border_right_width:[n(l),null],border_spacing:[n(l),null],border_style:[n(l),null],border_top:[n(l),null],border_top_color:[n(l),null],border_top_left_radius:[n(l),null],border_top_right_radius:[n(l),null],border_top_style:[n(l),null],border_top_width:[n(l),null],border_width:[n(l),null],bottom:[n(l),null],box_shadow:[n(l),null],box_sizing:[n(l),null],break_after:[n(l),null],break_before:[n(l),null],break_inside:[n(l),null],caption_side:[n(l),null],caret_color:[n(l),null],clear:[n(l),null],clip:[n(l),null],clip_path:[n(l),null],clip_rule:[n(l),null],color:[n(l),null],color_interpolation:[n(l),null],color_interpolation_filters:[n(l),null],column_count:[n(l),null],column_fill:[n(l),null],column_gap:[n(l),null],column_rule:[n(l),null],column_rule_color:[n(l),null],column_rule_style:[n(l),null],column_rule_width:[n(l),null],column_span:[n(l),null],column_width:[n(l),null],columns:[n(l),null],content:[n(l),null],counter_increment:[n(l),null],counter_reset:[n(l),null],css_float:[n(l),null],css_text:[n(l),null],cursor:[n(l),null],direction:[n(l),null],display:[n(l),null],dominant_baseline:[n(l),null],empty_cells:[n(l),null],fill:[n(l),null],fill_opacity:[n(l),null],fill_rule:[n(l),null],filter:[n(l),null],flex:[n(l),null],flex_basis:[n(l),null],flex_direction:[n(l),null],flex_flow:[n(l),null],flex_grow:[n(l),null],flex_shrink:[n(l),null],flex_wrap:[n(l),null],float:[n(l),null],flood_color:[n(l),null],flood_opacity:[n(l),null],font:[n(l),null],font_family:[n(l),null],font_feature_settings:[n(l),null],font_kerning:[n(l),null],font_size:[n(l),null],font_size_adjust:[n(l),null],font_stretch:[n(l),null],font_style:[n(l),null],font_synthesis:[n(l),null],font_variant:[n(l),null],font_variant_caps:[n(l),null],font_variant_east_asian:[n(l),null],font_variant_ligatures:[n(l),null],font_variant_numeric:[n(l),null],font_variant_position:[n(l),null],font_weight:[n(l),null],gap:[n(l),null],glyph_orientation_vertical:[n(l),null],grid:[n(l),null],grid_area:[n(l),null],grid_auto_columns:[n(l),null],grid_auto_flow:[n(l),null],grid_auto_rows:[n(l),null],grid_column:[n(l),null],grid_column_end:[n(l),null],grid_column_gap:[n(l),null],grid_column_start:[n(l),null],grid_gap:[n(l),null],grid_row:[n(l),null],grid_row_end:[n(l),null],grid_row_gap:[n(l),null],grid_row_start:[n(l),null],grid_template:[n(l),null],grid_template_areas:[n(l),null],grid_template_columns:[n(l),null],grid_template_rows:[n(l),null],height:[n(l),null],hyphens:[n(l),null],image_orientation:[n(l),null],image_rendering:[n(l),null],inline_size:[n(l),null],justify_content:[n(l),null],justify_items:[n(l),null],justify_self:[n(l),null],left:[n(l),null],letter_spacing:[n(l),null],lighting_color:[n(l),null],line_break:[n(l),null],line_height:[n(l),null],list_style:[n(l),null],list_style_image:[n(l),null],list_style_position:[n(l),null],list_style_type:[n(l),null],margin:[n(l),null],margin_block_end:[n(l),null],margin_block_start:[n(l),null],margin_bottom:[n(l),null],margin_inline_end:[n(l),null],margin_inline_start:[n(l),null],margin_left:[n(l),null],margin_right:[n(l),null],margin_top:[n(l),null],marker:[n(l),null],marker_end:[n(l),null],marker_mid:[n(l),null],marker_start:[n(l),null],mask:[n(l),null],mask_composite:[n(l),null],mask_image:[n(l),null],mask_position:[n(l),null],mask_repeat:[n(l),null],mask_size:[n(l),null],mask_type:[n(l),null],max_block_size:[n(l),null],max_height:[n(l),null],max_inline_size:[n(l),null],max_width:[n(l),null],min_block_size:[n(l),null],min_height:[n(l),null],min_inline_size:[n(l),null],min_width:[n(l),null],object_fit:[n(l),null],object_position:[n(l),null],opacity:[n(l),null],order:[n(l),null],orphans:[n(l),null],outline:[n(l),null],outline_color:[n(l),null],outline_offset:[n(l),null],outline_style:[n(l),null],outline_width:[n(l),null],overflow:[n(l),null],overflow_anchor:[n(l),null],overflow_wrap:[n(l),null],overflow_x:[n(l),null],overflow_y:[n(l),null],overscroll_behavior:[n(l),null],overscroll_behavior_block:[n(l),null],overscroll_behavior_inline:[n(l),null],overscroll_behavior_x:[n(l),null],overscroll_behavior_y:[n(l),null],padding:[n(l),null],padding_block_end:[n(l),null],padding_block_start:[n(l),null],padding_bottom:[n(l),null],padding_inline_end:[n(l),null],padding_inline_start:[n(l),null],padding_left:[n(l),null],padding_right:[n(l),null],padding_top:[n(l),null],page_break_after:[n(l),null],page_break_before:[n(l),null],page_break_inside:[n(l),null],paint_order:[n(l),null],perspective:[n(l),null],perspective_origin:[n(l),null],place_content:[n(l),null],place_items:[n(l),null],place_self:[n(l),null],pointer_events:[n(l),null],position:[n(l),null],quotes:[n(l),null],resize:[n(l),null],right:[n(l),null],rotate:[n(l),null],row_gap:[n(l),null],ruby_align:[n(l),null],ruby_position:[n(l),null],scale:[n(l),null],scroll_behavior:[n(l),null],shape_rendering:[n(l),null],stop_color:[n(l),null],stop_opacity:[n(l),null],stroke:[n(l),null],stroke_dasharray:[n(l),null],stroke_dashoffset:[n(l),null],stroke_linecap:[n(l),null],stroke_linejoin:[n(l),null],stroke_miterlimit:[n(l),null],stroke_opacity:[n(l),null],stroke_width:[n(l),null],tab_size:[n(l),null],table_layout:[n(l),null],text_align:[n(l),null],text_align_last:[n(l),null],text_anchor:[n(l),null],text_combine_upright:[n(l),null],text_decoration:[n(l),null],text_decoration_color:[n(l),null],text_decoration_line:[n(l),null],text_decoration_style:[n(l),null],text_emphasis:[n(l),null],text_emphasis_color:[n(l),null],text_emphasis_position:[n(l),null],text_emphasis_style:[n(l),null],text_indent:[n(l),null],text_justify:[n(l),null],text_orientation:[n(l),null],text_overflow:[n(l),null],text_rendering:[n(l),null],text_shadow:[n(l),null],text_transform:[n(l),null],text_underline_position:[n(l),null],top:[n(l),null],touch_action:[n(l),null],transform:[n(l),null],transform_box:[n(l),null],transform_origin:[n(l),null],transform_style:[n(l),null],transition:[n(l),null],transition_delay:[n(l),null],transition_duration:[n(l),null],transition_property:[n(l),null],transition_timing_function:[n(l),null],translate:[n(l),null],unicode_bidi:[n(l),null],user_select:[n(l),null],vertical_align:[n(l),null],visibility:[n(l),null],white_space:[n(l),null],widows:[n(l),null],width:[n(l),null],will_change:[n(l),null],word_break:[n(l),null],word_spacing:[n(l),null],word_wrap:[n(l),null],writing_mode:[n(l),null],z_index:[n(l),null]})))},\n", + " function _(t,o,e,n,s){var i;n();const l=t(15),c=t(53),r=t(224),a=t(232),u=t(234);class h extends c.Model{constructor(t){super(t)}get button_view(){return this.tools[0].button_view}get event_type(){return this.tools[0].event_type}get tooltip(){return this.tools[0].tooltip}get tool_name(){return this.tools[0].tool_name}get icon(){return this.tools[0].computed_icon}get computed_icon(){return this.icon}get toggleable(){const t=this.tools[0];return t instanceof a.InspectTool&&t.toggleable}initialize(){super.initialize(),this.do=new l.Signal0(this,\"do\")}connect_signals(){super.connect_signals(),this.connect(this.do,(()=>this.doit())),this.connect(this.properties.active.change,(()=>this.set_active()));for(const t of this.tools)this.connect(t.properties.active.change,(()=>{this.active=t.active}))}doit(){for(const t of this.tools)t.do.emit()}set_active(){for(const t of this.tools)t.active=this.active}get menu(){const{menu:t}=this.tools[0];if(null==t)return null;const o=[];for(const[e,n]of(0,u.enumerate)(t))if(null==e)o.push(null);else{const t=()=>{var t,o,e;for(const s of this.tools)null===(e=null===(o=null===(t=s.menu)||void 0===t?void 0:t[n])||void 0===o?void 0:o.handler)||void 0===e||e.call(o)};o.push(Object.assign(Object.assign({},e),{handler:t}))}return o}}e.ToolProxy=h,i=h,h.__name__=\"ToolProxy\",i.define((({Boolean:t,Array:o,Ref:e})=>({tools:[o(e(r.ButtonTool)),[]],active:[t,!1],disabled:[t,!1]})))},\n", + " function _(o,t,s,e,i){var n,r;e();const l=o(20),c=o(9),h=o(13),a=o(233),_=o(221),p=o(394),u=o(309),f=o(207);class y extends a.ToolbarBase{constructor(o){super(o)}initialize(){super.initialize(),this._merge_tools()}_merge_tools(){this._proxied_tools=[];const o={},t={},s={},e=[],i=[];for(const o of this.help)(0,c.includes)(i,o.redirect)||(e.push(o),i.push(o.redirect));this._proxied_tools.push(...e),this.help=e;for(const[o,t]of(0,h.entries)(this.gestures)){o in s||(s[o]={});for(const e of t.tools)e.type in s[o]||(s[o][e.type]=[]),s[o][e.type].push(e)}for(const t of this.inspectors)t.type in o||(o[t.type]=[]),o[t.type].push(t);for(const o of this.actions)o.type in t||(t[o.type]=[]),t[o.type].push(o);const n=(o,t=!1)=>{const s=new p.ToolProxy({tools:o,active:t});return this._proxied_tools.push(s),s};for(const o of(0,h.keys)(s)){const t=this.gestures[o];t.tools=[];for(const e of(0,h.keys)(s[o])){const i=s[o][e];if(i.length>0)if(\"multi\"==o)for(const o of i){const s=n([o]);t.tools.push(s),this.connect(s.properties.active.change,(()=>this._active_change(s)))}else{const o=n(i);t.tools.push(o),this.connect(o.properties.active.change,(()=>this._active_change(o)))}}}this.actions=[];for(const[o,s]of(0,h.entries)(t))if(\"CustomAction\"==o)for(const o of s)this.actions.push(n([o]));else s.length>0&&this.actions.push(n(s));this.inspectors=[];for(const t of(0,h.values)(o))t.length>0&&this.inspectors.push(n(t,!0));for(const[o,t]of(0,h.entries)(this.gestures))0!=t.tools.length&&(t.tools=(0,c.sort_by)(t.tools,(o=>o.default_order)),\"pinch\"!=o&&\"scroll\"!=o&&\"multi\"!=o&&(t.tools[0].active=!0))}}s.ProxyToolbar=y,n=y,y.__name__=\"ProxyToolbar\",n.define((({Array:o,Ref:t})=>({toolbars:[o(t(_.Toolbar)),[]]})));class d extends u.LayoutDOMView{initialize(){this.model.toolbar.toolbar_location=this.model.toolbar_location,super.initialize()}get child_models(){return[this.model.toolbar]}_update_layout(){this.layout=new f.ContentBox(this.child_views[0].el);const{toolbar:o}=this.model;o.horizontal?this.layout.set_sizing({width_policy:\"fit\",min_width:100,height_policy:\"fixed\"}):this.layout.set_sizing({width_policy:\"fixed\",height_policy:\"fit\",min_height:100})}after_layout(){super.after_layout();const o=this.child_views[0];o.layout.bbox=this.layout.bbox,o.render()}}s.ToolbarBoxView=d,d.__name__=\"ToolbarBoxView\";class b extends u.LayoutDOM{constructor(o){super(o)}}s.ToolbarBox=b,r=b,b.__name__=\"ToolbarBox\",r.prototype.default_view=d,r.define((({Ref:o})=>({toolbar:[o(a.ToolbarBase)],toolbar_location:[l.Location,\"right\"]})))},\n", + " function _(e,n,r,t,o){t();const s=e(1),u=e(53),c=(0,s.__importStar)(e(21)),a=e(8),l=e(13);r.resolve_defs=function(e,n){var r,t,o,s;function i(e){return null!=e.module?`${e.module}.${e.name}`:e.name}function f(e){if((0,a.isString)(e))switch(e){case\"Any\":return c.Any;case\"Unknown\":return c.Unknown;case\"Boolean\":return c.Boolean;case\"Number\":return c.Number;case\"Int\":return c.Int;case\"String\":return c.String;case\"Null\":return c.Null}else switch(e[0]){case\"Nullable\":{const[,n]=e;return c.Nullable(f(n))}case\"Or\":{const[,...n]=e;return c.Or(...n.map(f))}case\"Tuple\":{const[,n,...r]=e;return c.Tuple(f(n),...r.map(f))}case\"Array\":{const[,n]=e;return c.Array(f(n))}case\"Struct\":{const[,...n]=e,r=n.map((([e,n])=>[e,f(n)]));return c.Struct((0,l.to_object)(r))}case\"Dict\":{const[,n]=e;return c.Dict(f(n))}case\"Map\":{const[,n,r]=e;return c.Map(f(n),f(r))}case\"Enum\":{const[,...n]=e;return c.Enum(...n)}case\"Ref\":{const[,r]=e,t=n.get(i(r));if(null!=t)return c.Ref(t);throw new Error(`${i(r)} wasn't defined before referencing it`)}case\"AnyRef\":return c.AnyRef()}}for(const c of e){const e=(()=>{if(null==c.extends)return u.Model;{const e=n.get(i(c.extends));if(null!=e)return e;throw new Error(`base model ${i(c.extends)} of ${i(c)} is not defined`)}})(),a=((s=class extends e{}).__name__=c.name,s.__module__=c.module,s);for(const e of null!==(r=c.properties)&&void 0!==r?r:[]){const n=f(null!==(t=e.kind)&&void 0!==t?t:\"Unknown\");a.define({[e.name]:[n,e.default]})}for(const e of null!==(o=c.overrides)&&void 0!==o?o:[])a.override({[e.name]:e.default});n.register(a)}}},\n", + " function _(n,e,t,o,i){o();const d=n(5),c=n(226),s=n(113),a=n(43),l=n(398);t.index={},t.add_document_standalone=async function(n,e,o=[],i=!1){const u=new Map;async function f(i){let d;const f=n.roots().indexOf(i),r=o[f];null!=r?d=r:e.classList.contains(l.BOKEH_ROOT)?d=e:(d=(0,a.div)({class:l.BOKEH_ROOT}),e.appendChild(d));const w=await(0,s.build_view)(i,{parent:null});return w instanceof c.DOMView&&w.renderTo(d),u.set(i,w),t.index[i.id]=w,w}for(const e of n.roots())await f(e);return i&&(window.document.title=n.title()),n.on_change((n=>{n instanceof d.RootAddedEvent?f(n.model):n instanceof d.RootRemovedEvent?function(n){const e=u.get(n);null!=e&&(e.remove(),u.delete(n),delete t.index[n.id])}(n.model):i&&n instanceof d.TitleChangedEvent&&(window.document.title=n.title)})),[...u.values()]}},\n", + " function _(o,e,n,t,r){t();const l=o(43),d=o(44);function u(o){let e=document.getElementById(o);if(null==e)throw new Error(`Error rendering Bokeh model: could not find #${o} HTML tag`);if(!document.body.contains(e))throw new Error(`Error rendering Bokeh model: element #${o} must be under `);if(\"SCRIPT\"==e.tagName){const o=(0,l.div)({class:n.BOKEH_ROOT});(0,l.replaceWith)(e,o),e=o}return e}n.BOKEH_ROOT=d.root,n._resolve_element=function(o){const{elementid:e}=o;return null!=e?u(e):document.body},n._resolve_root_elements=function(o){const e=[];if(null!=o.root_ids&&null!=o.roots)for(const n of o.root_ids)e.push(u(o.roots[n]));return e}},\n", + " function _(n,o,t,s,e){s();const c=n(400),r=n(19),a=n(397);t._get_ws_url=function(n,o){let t,s=\"ws:\";return\"https:\"==window.location.protocol&&(s=\"wss:\"),null!=o?(t=document.createElement(\"a\"),t.href=o):t=window.location,null!=n?\"/\"==n&&(n=\"\"):n=t.pathname.replace(/\\/+$/,\"\"),`${s}//${t.host}${n}/ws`};const i={};t.add_document_from_session=async function(n,o,t,s=[],e=!1){const l=window.location.search.substr(1);let d;try{d=await function(n,o,t){const s=(0,c.parse_token)(o).session_id;n in i||(i[n]={});const e=i[n];return s in e||(e[s]=(0,c.pull_session)(n,o,t)),e[s]}(n,o,l)}catch(n){const t=(0,c.parse_token)(o).session_id;throw r.logger.error(`Failed to load Bokeh session ${t}: ${n}`),n}return(0,a.add_document_standalone)(d.document,t,s,e)}},\n", + " function _(e,s,n,t,o){t();const r=e(19),i=e(5),c=e(401),l=e(402),_=e(403);n.DEFAULT_SERVER_WEBSOCKET_URL=\"ws://localhost:5006/ws\",n.DEFAULT_TOKEN=\"eyJzZXNzaW9uX2lkIjogImRlZmF1bHQifQ\";let h=0;function a(e){let s=e.split(\".\")[0];const n=s.length%4;return 0!=n&&(s+=\"=\".repeat(4-n)),JSON.parse(atob(s.replace(/_/g,\"/\").replace(/-/g,\"+\")))}n.parse_token=a;class d{constructor(e=n.DEFAULT_SERVER_WEBSOCKET_URL,s=n.DEFAULT_TOKEN,t=null){this.url=e,this.token=s,this.args_string=t,this._number=h++,this.socket=null,this.session=null,this.closed_permanently=!1,this._current_handler=null,this._pending_replies=new Map,this._pending_messages=[],this._receiver=new l.Receiver,this.id=a(s).session_id.split(\".\")[0],r.logger.debug(`Creating websocket ${this._number} to '${this.url}' session '${this.id}'`)}async connect(){if(this.closed_permanently)throw new Error(\"Cannot connect() a closed ClientConnection\");if(null!=this.socket)throw new Error(\"Already connected\");this._current_handler=null,this._pending_replies.clear(),this._pending_messages=[];try{let e=`${this.url}`;return null!=this.args_string&&this.args_string.length>0&&(e+=`?${this.args_string}`),this.socket=new WebSocket(e,[\"bokeh\",this.token]),new Promise(((e,s)=>{this.socket.binaryType=\"arraybuffer\",this.socket.onopen=()=>this._on_open(e,s),this.socket.onmessage=e=>this._on_message(e),this.socket.onclose=e=>this._on_close(e,s),this.socket.onerror=()=>this._on_error(s)}))}catch(e){throw r.logger.error(`websocket creation failed to url: ${this.url}`),r.logger.error(` - ${e}`),e}}close(){this.closed_permanently||(r.logger.debug(`Permanently closing websocket connection ${this._number}`),this.closed_permanently=!0,null!=this.socket&&this.socket.close(1e3,`close method called on ClientConnection ${this._number}`),this.session._connection_closed())}_schedule_reconnect(e){setTimeout((()=>{this.closed_permanently||r.logger.info(`Websocket connection ${this._number} disconnected, will not attempt to reconnect`)}),e)}send(e){if(null==this.socket)throw new Error(`not connected so cannot send ${e}`);e.send(this.socket)}async send_with_reply(e){const s=await new Promise(((s,n)=>{this._pending_replies.set(e.msgid(),{resolve:s,reject:n}),this.send(e)}));if(\"ERROR\"===s.msgtype())throw new Error(`Error reply ${s.content.text}`);return s}async _pull_doc_json(){const e=c.Message.create(\"PULL-DOC-REQ\",{}),s=await this.send_with_reply(e);if(!(\"doc\"in s.content))throw new Error(\"No 'doc' field in PULL-DOC-REPLY\");return s.content.doc}async _repull_session_doc(e,s){var n;r.logger.debug(this.session?\"Repulling session\":\"Pulling session for first time\");try{const n=await this._pull_doc_json();if(null==this.session)if(this.closed_permanently)r.logger.debug(\"Got new document after connection was already closed\"),s(new Error(\"The connection has been closed\"));else{const s=i.Document.from_json(n),t=i.Document._compute_patch_since_json(n,s);if(t.events.length>0){r.logger.debug(`Sending ${t.events.length} changes from model construction back to server`);const e=c.Message.create(\"PATCH-DOC\",{},t);this.send(e)}this.session=new _.ClientSession(this,s,this.id);for(const e of this._pending_messages)this.session.handle(e);this._pending_messages=[],r.logger.debug(\"Created a new session from new pulled doc\"),e(this.session)}else this.session.document.replace_with_json(n),r.logger.debug(\"Updated existing session with new pulled doc\")}catch(e){null===(n=console.trace)||void 0===n||n.call(console,e),r.logger.error(`Failed to repull session ${e}`),s(e instanceof Error?e:`${e}`)}}_on_open(e,s){r.logger.info(`Websocket connection ${this._number} is now open`),this._current_handler=n=>{this._awaiting_ack_handler(n,e,s)}}_on_message(e){null==this._current_handler&&r.logger.error(\"Got a message with no current handler set\");try{this._receiver.consume(e.data)}catch(e){this._close_bad_protocol(`${e}`)}const s=this._receiver.message;if(null!=s){const e=s.problem();null!=e&&this._close_bad_protocol(e),this._current_handler(s)}}_on_close(e,s){r.logger.info(`Lost websocket ${this._number} connection, ${e.code} (${e.reason})`),this.socket=null,this._pending_replies.forEach((e=>e.reject(\"Disconnected\"))),this._pending_replies.clear(),this.closed_permanently||this._schedule_reconnect(2e3),s(new Error(`Lost websocket connection, ${e.code} (${e.reason})`))}_on_error(e){r.logger.debug(`Websocket error on socket ${this._number}`);const s=\"Could not open websocket\";r.logger.error(`Failed to connect to Bokeh server: ${s}`),e(new Error(s))}_close_bad_protocol(e){r.logger.error(`Closing connection: ${e}`),null!=this.socket&&this.socket.close(1002,e)}_awaiting_ack_handler(e,s,n){\"ACK\"===e.msgtype()?(this._current_handler=e=>this._steady_state_handler(e),this._repull_session_doc(s,n)):this._close_bad_protocol(\"First message was not an ACK\")}_steady_state_handler(e){const s=e.reqid(),n=this._pending_replies.get(s);n?(this._pending_replies.delete(s),n.resolve(e)):this.session?this.session.handle(e):\"PATCH-DOC\"!=e.msgtype()&&this._pending_messages.push(e)}}n.ClientConnection=d,d.__name__=\"ClientConnection\",n.pull_session=function(e,s,n){return new d(e,s,n).connect()}},\n", + " function _(e,s,t,r,n){r();const i=e(34);class a{constructor(e,s,t){this.header=e,this.metadata=s,this.content=t,this.buffers=new Map}static assemble(e,s,t){const r=JSON.parse(e),n=JSON.parse(s),i=JSON.parse(t);return new a(r,n,i)}assemble_buffer(e,s){const t=null!=this.header.num_buffers?this.header.num_buffers:0;if(t<=this.buffers.size)throw new Error(`too many buffers received, expecting ${t}`);const{id:r}=JSON.parse(e);this.buffers.set(r,s)}static create(e,s,t={}){const r=a.create_header(e);return new a(r,s,t)}static create_header(e){return{msgid:(0,i.uniqueId)(),msgtype:e}}complete(){return null!=this.header&&null!=this.metadata&&null!=this.content&&(null==this.header.num_buffers||this.buffers.size==this.header.num_buffers)}send(e){if((null!=this.header.num_buffers?this.header.num_buffers:0)>0)throw new Error(\"BokehJS only supports receiving buffers, not sending\");const s=JSON.stringify(this.header),t=JSON.stringify(this.metadata),r=JSON.stringify(this.content);e.send(s),e.send(t),e.send(r)}msgid(){return this.header.msgid}msgtype(){return this.header.msgtype}reqid(){return this.header.reqid}problem(){return\"msgid\"in this.header?\"msgtype\"in this.header?null:\"No msgtype in header\":\"No msgid in header\"}}t.Message=a,a.__name__=\"Message\"},\n", + " function _(e,t,s,_,r){_();const i=e(401),h=e(8);class a{constructor(){this.message=null,this._partial=null,this._fragments=[],this._buf_header=null,this._current_consumer=this._HEADER}consume(e){this._current_consumer(e)}_HEADER(e){this._assume_text(e),this.message=null,this._partial=null,this._fragments=[e],this._buf_header=null,this._current_consumer=this._METADATA}_METADATA(e){this._assume_text(e),this._fragments.push(e),this._current_consumer=this._CONTENT}_CONTENT(e){this._assume_text(e),this._fragments.push(e);const[t,s,_]=this._fragments.slice(0,3);this._partial=i.Message.assemble(t,s,_),this._check_complete()}_BUFFER_HEADER(e){this._assume_text(e),this._buf_header=e,this._current_consumer=this._BUFFER_PAYLOAD}_BUFFER_PAYLOAD(e){this._assume_binary(e),this._partial.assemble_buffer(this._buf_header,e),this._check_complete()}_assume_text(e){if(!(0,h.isString)(e))throw new Error(\"Expected text fragment but received binary fragment\")}_assume_binary(e){if(!(e instanceof ArrayBuffer))throw new Error(\"Expected binary fragment but received text fragment\")}_check_complete(){this._partial.complete()?(this.message=this._partial,this._current_consumer=this._HEADER):this._current_consumer=this._BUFFER_HEADER}}s.Receiver=a,a.__name__=\"Receiver\"},\n", + " function _(e,t,n,s,o){s();const c=e(5),i=e(401),_=e(19);class r{constructor(e,t,n){this._connection=e,this.document=t,this.id=n,this._document_listener=e=>{this._document_changed(e)},this.document.on_change(this._document_listener,!0)}handle(e){const t=e.msgtype();\"PATCH-DOC\"===t?this._handle_patch(e):\"OK\"===t?this._handle_ok(e):\"ERROR\"===t?this._handle_error(e):_.logger.debug(`Doing nothing with message ${e.msgtype()}`)}close(){this._connection.close()}_connection_closed(){this.document.remove_on_change(this._document_listener)}async request_server_info(){const e=i.Message.create(\"SERVER-INFO-REQ\",{});return(await this._connection.send_with_reply(e)).content}async force_roundtrip(){await this.request_server_info()}_document_changed(e){if(e.setter_id===this.id)return;const t=e instanceof c.DocumentEventBatch?e.events:[e],n=this.document.create_json_patch(t),s=i.Message.create(\"PATCH-DOC\",{},n);this._connection.send(s)}_handle_patch(e){this.document.apply_json_patch(e.content,e.buffers,this.id)}_handle_ok(e){_.logger.trace(`Unhandled OK reply to ${e.reqid()}`)}_handle_error(e){_.logger.error(`Unhandled ERROR reply to ${e.reqid()}: ${e.content.text}`)}}n.ClientSession=r,r.__name__=\"ClientSession\"},\n", + " function _(e,o,t,n,r){n();const s=e(1),l=e(5),i=e(402),a=e(19),c=e(43),g=e(13),f=e(397),u=e(398),m=(0,s.__importDefault)(e(44)),p=(0,s.__importDefault)(e(240)),d=(0,s.__importDefault)(e(405));function _(e,o){o.buffers.length>0?e.consume(o.buffers[0].buffer):e.consume(o.content.data);const t=e.message;null!=t&&this.apply_json_patch(t.content,t.buffers)}function b(e,o){if(\"undefined\"!=typeof Jupyter&&null!=Jupyter.notebook.kernel){a.logger.info(`Registering Jupyter comms for target ${e}`);const t=Jupyter.notebook.kernel.comm_manager;try{t.register_target(e,(t=>{a.logger.info(`Registering Jupyter comms for target ${e}`);const n=new i.Receiver;t.on_msg(_.bind(o,n))}))}catch(e){a.logger.warn(`Jupyter comms failed to register. push_notebook() will not function. (exception reported: ${e})`)}}else if(o.roots()[0].id in t.kernels){a.logger.info(`Registering JupyterLab comms for target ${e}`);const n=t.kernels[o.roots()[0].id];try{n.registerCommTarget(e,(t=>{a.logger.info(`Registering JupyterLab comms for target ${e}`);const n=new i.Receiver;t.onMsg=_.bind(o,n)}))}catch(e){a.logger.warn(`Jupyter comms failed to register. push_notebook() will not function. (exception reported: ${e})`)}}else if(\"undefined\"!=typeof google&&null!=google.colab.kernel){a.logger.info(`Registering Google Colab comms for target ${e}`);const t=google.colab.kernel.comms;try{t.registerTarget(e,(async t=>{var n,r,l;a.logger.info(`Registering Google Colab comms for target ${e}`);const c=new i.Receiver;try{for(var g,f=(0,s.__asyncValues)(t.messages);!(g=await f.next()).done;){const e=g.value,t={data:e.data},n=[];for(const o of null!==(l=e.buffers)&&void 0!==l?l:[])n.push(new DataView(o));const r={content:t,buffers:n};_.bind(o)(c,r)}}catch(e){n={error:e}}finally{try{g&&!g.done&&(r=f.return)&&await r.call(f)}finally{if(n)throw n.error}}}))}catch(e){a.logger.warn(`Google Colab comms failed to register. push_notebook() will not function. (exception reported: ${e})`)}}else console.warn(\"Jupyter notebooks comms not available. push_notebook() will not function. If running JupyterLab ensure the latest @bokeh/jupyter_bokeh extension is installed. In an exported notebook this warning is expected.\")}c.stylesheet.append(m.default),c.stylesheet.append(p.default),c.stylesheet.append(d.default),t.kernels={},t.embed_items_notebook=function(e,o){if(1!=(0,g.size)(e))throw new Error(\"embed_items_notebook expects exactly one document in docs_json\");const t=l.Document.from_json((0,g.values)(e)[0]);for(const e of o){null!=e.notebook_comms_target&&b(e.notebook_comms_target,t);const o=(0,u._resolve_element)(e),n=(0,u._resolve_root_elements)(e);(0,f.add_document_standalone)(t,o,n)}}},\n", + " function _(t,o,r,e,d){e(),r.root=\"bk-root\",r.tooltip=\"bk-tooltip\",r.default=\".rendered_html .bk-root .bk-tooltip table,.rendered_html .bk-root .bk-tooltip tr,.rendered_html .bk-root .bk-tooltip th,.rendered_html .bk-root .bk-tooltip td{border:none;padding:1px;}\"},\n", + " function _(t,_,o,r,n){r();const a=t(1);(0,a.__exportStar)(t(401),o),(0,a.__exportStar)(t(402),o)},\n", + " function _(e,t,n,s,o){function l(){const e=document.getElementsByTagName(\"body\")[0],t=document.getElementsByClassName(\"bokeh-test-div\");1==t.length&&(e.removeChild(t[0]),delete t[0]);const n=document.createElement(\"div\");n.classList.add(\"bokeh-test-div\"),n.style.display=\"none\",e.insertBefore(n,e.firstChild)}s(),n.results={},n.init=function(){l()},n.record0=function(e,t){n.results[e]=t},n.record=function(e,t){n.results[e]=t,l()},n.count=function(e){null==n.results[e]&&(n.results[e]=0),n.results[e]+=1,l()}},\n", + " function _(e,t,o,n,l){n(),o.safely=function(e,t=!1){try{return e()}catch(e){if(function(e){const t=document.createElement(\"div\");t.style.backgroundColor=\"#f2dede\",t.style.border=\"1px solid #a94442\",t.style.borderRadius=\"4px\",t.style.display=\"inline-block\",t.style.fontFamily=\"sans-serif\",t.style.marginTop=\"5px\",t.style.minWidth=\"200px\",t.style.padding=\"5px 5px 5px 10px\",t.classList.add(\"bokeh-error-box-into-flames\");const o=document.createElement(\"span\");o.style.backgroundColor=\"#a94442\",o.style.borderRadius=\"0px 4px 0px 0px\",o.style.color=\"white\",o.style.cursor=\"pointer\",o.style.cssFloat=\"right\",o.style.fontSize=\"0.8em\",o.style.margin=\"-6px -6px 0px 0px\",o.style.padding=\"2px 5px 4px 5px\",o.title=\"close\",o.setAttribute(\"aria-label\",\"close\"),o.appendChild(document.createTextNode(\"x\")),o.addEventListener(\"click\",(()=>s.removeChild(t)));const n=document.createElement(\"h3\");n.style.color=\"#a94442\",n.style.margin=\"8px 0px 0px 0px\",n.style.padding=\"0px\",n.appendChild(document.createTextNode(\"Bokeh Error\"));const l=document.createElement(\"pre\");l.style.whiteSpace=\"unset\",l.style.overflowX=\"auto\",l.appendChild(document.createTextNode(e)),t.appendChild(o),t.appendChild(n),t.appendChild(l);const s=document.getElementsByTagName(\"body\")[0];s.insertBefore(t,s.firstChild)}(e instanceof Error&&e.stack?e.stack:`${e}`),t)return;throw e}}},\n", + " ], 0, {\"main\":0,\"tslib\":1,\"index\":2,\"version\":3,\"embed/index\":4,\"document/index\":5,\"document/document\":6,\"base\":7,\"core/util/types\":8,\"core/util/array\":9,\"core/util/math\":10,\"core/util/assert\":11,\"core/util/arrayable\":12,\"core/util/object\":13,\"core/has_props\":14,\"core/signaling\":15,\"core/util/defer\":16,\"core/util/refs\":17,\"core/properties\":18,\"core/logging\":19,\"core/enums\":20,\"core/kinds\":21,\"core/util/color\":22,\"core/util/svg_colors\":23,\"core/types\":24,\"core/util/bitset\":25,\"core/util/eq\":26,\"core/util/platform\":27,\"core/settings\":28,\"core/util/ndarray\":29,\"core/serializer\":30,\"core/util/serialization\":31,\"core/util/buffer\":32,\"core/uniforms\":33,\"core/util/string\":34,\"document/events\":35,\"core/util/pretty\":36,\"core/util/cloneable\":37,\"models/index\":38,\"models/annotations/index\":39,\"models/annotations/annotation\":40,\"models/renderers/renderer\":41,\"core/view\":42,\"core/dom\":43,\"styles/root.css\":44,\"core/visuals/index\":45,\"core/visuals/line\":46,\"core/visuals/visual\":47,\"core/property_mixins\":48,\"core/visuals/fill\":49,\"core/visuals/text\":50,\"core/visuals/hatch\":51,\"core/visuals/patterns\":52,\"model\":53,\"models/canvas/coordinates\":54,\"models/scales/scale\":55,\"models/transforms/transform\":56,\"models/ranges/range\":57,\"models/ranges/range1d\":58,\"models/scales/linear_scale\":59,\"models/scales/continuous_scale\":60,\"models/scales/log_scale\":61,\"models/scales/categorical_scale\":62,\"models/ranges/data_range1d\":63,\"models/ranges/data_range\":64,\"core/util/bbox\":65,\"models/util\":66,\"models/ranges/factor_range\":67,\"models/annotations/arrow\":68,\"models/annotations/data_annotation\":69,\"models/sources/columnar_data_source\":70,\"models/sources/data_source\":71,\"models/selections/selection\":72,\"core/selection_manager\":73,\"models/selections/interaction_policy\":74,\"models/sources/column_data_source\":75,\"core/util/typed_array\":76,\"core/util/set\":77,\"core/util/projections\":78,\"models/annotations/arrow_head\":112,\"core/build_views\":113,\"models/annotations/band\":114,\"models/annotations/upper_lower\":115,\"models/annotations/box_annotation\":116,\"models/annotations/color_bar\":117,\"models/annotations/title\":118,\"models/annotations/text_annotation\":119,\"core/graphics\":120,\"core/util/text\":121,\"core/util/affine\":122,\"core/layout/side_panel\":123,\"core/layout/types\":124,\"core/layout/layoutable\":125,\"models/canvas/cartesian_frame\":126,\"models/axes/index\":127,\"models/axes/axis\":128,\"models/renderers/guide_renderer\":129,\"models/tickers/ticker\":130,\"models/formatters/tick_formatter\":131,\"models/policies/labeling\":132,\"models/text/base_text\":133,\"models/text/utils\":134,\"models/text/math_text\":135,\"core/util/image\":136,\"models/text/providers\":137,\"core/util/modules\":138,\"models/text/plain_text\":139,\"models/axes/categorical_axis\":140,\"models/tickers/categorical_ticker\":141,\"models/formatters/categorical_tick_formatter\":142,\"models/axes/continuous_axis\":143,\"models/axes/datetime_axis\":144,\"models/axes/linear_axis\":145,\"models/formatters/basic_tick_formatter\":146,\"models/tickers/basic_ticker\":147,\"models/tickers/adaptive_ticker\":148,\"models/tickers/continuous_ticker\":149,\"models/formatters/datetime_tick_formatter\":150,\"core/util/templating\":152,\"models/tickers/datetime_ticker\":155,\"models/tickers/composite_ticker\":156,\"models/tickers/days_ticker\":157,\"models/tickers/single_interval_ticker\":158,\"models/tickers/util\":159,\"models/tickers/months_ticker\":160,\"models/tickers/years_ticker\":161,\"models/axes/log_axis\":162,\"models/formatters/log_tick_formatter\":163,\"models/tickers/log_ticker\":164,\"models/axes/mercator_axis\":165,\"models/formatters/mercator_tick_formatter\":166,\"models/tickers/mercator_ticker\":167,\"models/tickers/index\":168,\"models/tickers/fixed_ticker\":169,\"models/tickers/binned_ticker\":170,\"models/mappers/scanning_color_mapper\":171,\"models/mappers/continuous_color_mapper\":172,\"models/mappers/color_mapper\":173,\"models/mappers/mapper\":174,\"models/renderers/glyph_renderer\":175,\"models/renderers/data_renderer\":176,\"models/glyphs/line\":177,\"models/glyphs/xy_glyph\":178,\"models/glyphs/glyph\":179,\"core/util/ragged_array\":180,\"core/util/spatial\":181,\"models/glyphs/utils\":184,\"core/hittest\":185,\"models/glyphs/patch\":186,\"models/glyphs/harea\":187,\"models/glyphs/area\":188,\"models/glyphs/varea\":189,\"models/sources/cds_view\":190,\"models/filters/filter\":191,\"models/formatters/index\":192,\"models/formatters/func_tick_formatter\":193,\"models/formatters/numeral_tick_formatter\":194,\"models/formatters/printf_tick_formatter\":195,\"models/mappers/index\":196,\"models/mappers/categorical_color_mapper\":197,\"models/mappers/categorical_mapper\":198,\"models/mappers/categorical_marker_mapper\":199,\"models/mappers/categorical_pattern_mapper\":200,\"models/mappers/linear_color_mapper\":201,\"models/mappers/log_color_mapper\":202,\"models/mappers/eqhist_color_mapper\":203,\"models/scales/index\":204,\"models/scales/linear_interpolation_scale\":205,\"models/ranges/index\":206,\"core/layout/index\":207,\"core/layout/alignments\":208,\"core/layout/grid\":209,\"core/layout/html\":210,\"core/layout/border\":211,\"models/annotations/label\":212,\"models/annotations/label_set\":213,\"models/annotations/legend\":214,\"models/annotations/legend_item\":215,\"core/vectorization\":216,\"models/annotations/poly_annotation\":217,\"models/annotations/slope\":218,\"models/annotations/span\":219,\"models/annotations/toolbar_panel\":220,\"models/tools/toolbar\":221,\"models/tools/tool\":222,\"models/tools/gestures/gesture_tool\":223,\"models/tools/button_tool\":224,\"core/dom_view\":226,\"styles/toolbar.css\":227,\"styles/icons.css\":228,\"styles/menus.css\":229,\"core/util/menus\":230,\"models/tools/on_off_button\":231,\"models/tools/inspectors/inspect_tool\":232,\"models/tools/toolbar_base\":233,\"core/util/iterator\":234,\"core/util/canvas\":235,\"core/util/svg\":236,\"core/util/random\":237,\"models/tools/actions/action_tool\":238,\"models/tools/actions/help_tool\":239,\"styles/logo.css\":240,\"models/annotations/tooltip\":241,\"styles/tooltips.css\":242,\"models/annotations/whisker\":243,\"models/callbacks/index\":244,\"models/callbacks/customjs\":245,\"models/callbacks/callback\":246,\"models/callbacks/open_url\":247,\"models/canvas/index\":248,\"models/canvas/canvas\":249,\"core/ui_events\":250,\"core/bokeh_events\":251,\"core/util/wheel\":252,\"models/expressions/index\":253,\"models/expressions/expression\":254,\"models/expressions/customjs_expr\":255,\"models/expressions/stack\":256,\"models/expressions/cumsum\":257,\"models/expressions/minimum\":258,\"models/expressions/maximum\":259,\"models/expressions/coordinate_transform\":260,\"models/expressions/polar\":261,\"models/filters/index\":262,\"models/filters/boolean_filter\":263,\"models/filters/customjs_filter\":264,\"models/filters/group_filter\":265,\"models/filters/index_filter\":266,\"models/glyphs/index\":267,\"models/glyphs/annular_wedge\":268,\"models/glyphs/annulus\":269,\"models/glyphs/arc\":270,\"models/glyphs/bezier\":271,\"models/glyphs/circle\":272,\"models/glyphs/ellipse\":273,\"models/glyphs/ellipse_oval\":274,\"models/glyphs/center_rotatable\":275,\"models/glyphs/hbar\":276,\"models/glyphs/box\":277,\"models/glyphs/hex_tile\":278,\"models/glyphs/image\":279,\"models/glyphs/image_base\":280,\"models/glyphs/image_rgba\":281,\"models/glyphs/image_url\":282,\"models/glyphs/multi_line\":283,\"models/glyphs/multi_polygons\":284,\"models/glyphs/oval\":285,\"models/glyphs/patches\":286,\"models/glyphs/quad\":287,\"models/glyphs/quadratic\":288,\"models/glyphs/ray\":289,\"models/glyphs/rect\":290,\"models/glyphs/scatter\":291,\"models/glyphs/marker\":292,\"models/glyphs/defs\":293,\"models/glyphs/segment\":294,\"models/glyphs/spline\":295,\"core/util/interpolation\":296,\"models/glyphs/step\":297,\"models/glyphs/text\":298,\"models/glyphs/vbar\":299,\"models/glyphs/wedge\":300,\"models/graphs/index\":301,\"models/graphs/graph_hit_test_policy\":302,\"models/graphs/layout_provider\":303,\"models/graphs/static_layout_provider\":304,\"models/grids/index\":305,\"models/grids/grid\":306,\"models/layouts/index\":307,\"models/layouts/box\":308,\"models/layouts/layout_dom\":309,\"models/layouts/column\":310,\"models/layouts/grid_box\":311,\"models/layouts/html_box\":312,\"models/layouts/panel\":313,\"models/layouts/row\":314,\"models/layouts/spacer\":315,\"models/layouts/tabs\":316,\"styles/tabs.css\":317,\"styles/buttons.css\":318,\"models/layouts/widget_box\":319,\"models/text/index\":320,\"models/transforms/index\":321,\"models/transforms/customjs_transform\":322,\"models/transforms/dodge\":323,\"models/transforms/range_transform\":324,\"models/transforms/interpolator\":325,\"models/transforms/jitter\":326,\"models/transforms/linear_interpolator\":327,\"models/transforms/step_interpolator\":328,\"models/plots/index\":329,\"models/plots/gmap_plot\":330,\"models/plots/plot\":331,\"models/plots/plot_canvas\":332,\"core/util/throttle\":333,\"models/plots/range_manager\":334,\"models/plots/state_manager\":335,\"models/plots/gmap_plot_canvas\":336,\"models/policies/index\":337,\"models/renderers/index\":338,\"models/renderers/graph_renderer\":339,\"models/selections/index\":340,\"models/sources/index\":341,\"models/sources/server_sent_data_source\":342,\"models/sources/web_data_source\":343,\"models/sources/ajax_data_source\":344,\"models/sources/geojson_data_source\":345,\"models/tiles/index\":346,\"models/tiles/bbox_tile_source\":347,\"models/tiles/mercator_tile_source\":348,\"models/tiles/tile_source\":349,\"models/tiles/tile_utils\":350,\"models/tiles/quadkey_tile_source\":351,\"models/tiles/tile_renderer\":352,\"models/tiles/wmts_tile_source\":353,\"styles/tiles.css\":354,\"models/tiles/tms_tile_source\":355,\"models/textures/index\":356,\"models/textures/canvas_texture\":357,\"models/textures/texture\":358,\"models/textures/image_url_texture\":359,\"models/tools/index\":360,\"models/tools/actions/custom_action\":361,\"models/tools/actions/redo_tool\":362,\"models/tools/actions/reset_tool\":363,\"models/tools/actions/save_tool\":364,\"models/tools/actions/undo_tool\":365,\"models/tools/actions/zoom_in_tool\":366,\"models/tools/actions/zoom_base_tool\":367,\"core/util/zoom\":368,\"models/tools/actions/zoom_out_tool\":369,\"models/tools/edit/edit_tool\":370,\"models/tools/edit/box_edit_tool\":371,\"models/tools/edit/freehand_draw_tool\":372,\"models/tools/edit/point_draw_tool\":373,\"models/tools/edit/poly_draw_tool\":374,\"models/tools/edit/poly_tool\":375,\"models/tools/edit/poly_edit_tool\":376,\"models/tools/gestures/box_select_tool\":377,\"models/tools/gestures/select_tool\":378,\"models/tools/gestures/box_zoom_tool\":379,\"models/tools/gestures/lasso_select_tool\":380,\"models/tools/gestures/poly_select_tool\":381,\"models/tools/edit/line_edit_tool\":382,\"models/tools/edit/line_tool\":383,\"models/tools/gestures/pan_tool\":384,\"models/tools/gestures/range_tool\":385,\"models/tools/gestures/tap_tool\":386,\"models/tools/gestures/wheel_pan_tool\":387,\"models/tools/gestures/wheel_zoom_tool\":388,\"models/tools/inspectors/crosshair_tool\":389,\"models/tools/inspectors/customjs_hover\":390,\"models/tools/inspectors/hover_tool\":391,\"models/dom/index\":392,\"models/dom/styles\":393,\"models/tools/tool_proxy\":394,\"models/tools/toolbar_box\":395,\"document/defs\":396,\"embed/standalone\":397,\"embed/dom\":398,\"embed/server\":399,\"client/connection\":400,\"protocol/message\":401,\"protocol/receiver\":402,\"client/session\":403,\"embed/notebook\":404,\"styles/notebook.css\":405,\"protocol/index\":406,\"testing\":407,\"safely\":408}, {});});\n", + "\n", + " /* END bokeh.min.js */\n", + " },\n", + " function(Bokeh) {\n", + " /* BEGIN bokeh-gl.min.js */\n", + " /*!\n", + " * Copyright (c) 2012 - 2022, Anaconda, Inc., and Bokeh Contributors\n", + " * All rights reserved.\n", + " * \n", + " * Redistribution and use in source and binary forms, with or without modification,\n", + " * are permitted provided that the following conditions are met:\n", + " * \n", + " * Redistributions of source code must retain the above copyright notice,\n", + " * this list of conditions and the following disclaimer.\n", + " * \n", + " * Redistributions in binary form must reproduce the above copyright notice,\n", + " * this list of conditions and the following disclaimer in the documentation\n", + " * and/or other materials provided with the distribution.\n", + " * \n", + " * Neither the name of Anaconda nor the names of any contributors\n", + " * may be used to endorse or promote products derived from this software\n", + " * without specific prior written permission.\n", + " * \n", + " * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\n", + " * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n", + " * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n", + " * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE\n", + " * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n", + " * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n", + " * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n", + " * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\n", + " * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n", + " * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF\n", + " * THE POSSIBILITY OF SUCH DAMAGE.\n", + " */\n", + " (function(root, factory) {\n", + " factory(root[\"Bokeh\"], \"2.4.3\");\n", + " })(this, function(Bokeh, version) {\n", + " let define;\n", + " return (function(modules, entry, aliases, externals) {\n", + " const bokeh = typeof Bokeh !== \"undefined\" && (version != null ? Bokeh[version] : Bokeh);\n", + " if (bokeh != null) {\n", + " return bokeh.register_plugin(modules, entry, aliases);\n", + " } else {\n", + " throw new Error(\"Cannot find Bokeh \" + version + \". You have to load it prior to loading plugins.\");\n", + " }\n", + " })\n", + " ({\n", + " 409: function _(n,c,f,i,o){i(),n(410)},\n", + " 410: function _(t,_,r,e,o){e();const a=t(1);o(\"get_regl\",t(411).get_regl),(0,a.__exportStar)(t(419),r),(0,a.__exportStar)(t(423),r),(0,a.__exportStar)(t(425),r),(0,a.__exportStar)(t(426),r),(0,a.__exportStar)(t(427),r),(0,a.__exportStar)(t(428),r),(0,a.__exportStar)(t(429),r),(0,a.__exportStar)(t(424),r)},\n", + " 411: function _(t,i,e,_,a){_();const r=t(1),o=(0,r.__importDefault)(t(412)),n=t(413),s=(0,r.__importDefault)(t(415)),l=(0,r.__importDefault)(t(416)),p=(0,r.__importDefault)(t(417)),h=(0,r.__importDefault)(t(418));let c;e.get_regl=function(t){return null==c&&(c=new u(t)),c};class u{constructor(t){try{this._regl=(0,o.default)({gl:t,extensions:[\"ANGLE_instanced_arrays\",\"EXT_blend_minmax\"]}),this._regl_available=!0,this._line_geometry=this._regl.buffer({usage:\"static\",type:\"float\",data:[[-2,0],[-1,-1],[1,-1],[2,0],[1,1],[-1,1]]}),this._line_triangles=this._regl.elements({usage:\"static\",primitive:\"triangles\",data:[[0,1,5],[1,2,5],[5,2,4],[2,3,4]]})}catch(t){this._regl_available=!1}}buffer(t){return this._regl.buffer(t)}clear(t,i){this._viewport={x:0,y:0,width:t,height:i},this._regl.clear({color:[0,0,0,0]})}get has_webgl(){return this._regl_available}get scissor(){return this._scissor}set_scissor(t,i,e,_){this._scissor={x:t,y:i,width:e,height:_}}get viewport(){return this._viewport}dashed_line(){return null==this._dashed_line&&(this._dashed_line=function(t,i,e){const _={vert:`#define DASHED\\n\\n${s.default}`,frag:`#define DASHED\\n\\n${l.default}`,attributes:{a_position:{buffer:i,divisor:0},a_point_prev:(t,i)=>i.points.to_attribute_config(),a_point_start:(t,i)=>i.points.to_attribute_config(2*Float32Array.BYTES_PER_ELEMENT),a_point_end:(t,i)=>i.points.to_attribute_config(4*Float32Array.BYTES_PER_ELEMENT),a_point_next:(t,i)=>i.points.to_attribute_config(6*Float32Array.BYTES_PER_ELEMENT),a_show_prev:(t,i)=>i.show.to_attribute_config(),a_show_curr:(t,i)=>i.show.to_attribute_config(Uint8Array.BYTES_PER_ELEMENT),a_show_next:(t,i)=>i.show.to_attribute_config(2*Uint8Array.BYTES_PER_ELEMENT),a_length_so_far:(t,i)=>i.length_so_far.to_attribute_config()},uniforms:{u_canvas_size:t.prop(\"canvas_size\"),u_pixel_ratio:t.prop(\"pixel_ratio\"),u_antialias:t.prop(\"antialias\"),u_line_color:t.prop(\"line_color\"),u_linewidth:t.prop(\"linewidth\"),u_miter_limit:t.prop(\"miter_limit\"),u_line_join:t.prop(\"line_join\"),u_line_cap:t.prop(\"line_cap\"),u_dash_tex:t.prop(\"dash_tex\"),u_dash_tex_info:t.prop(\"dash_tex_info\"),u_dash_scale:t.prop(\"dash_scale\"),u_dash_offset:t.prop(\"dash_offset\")},elements:e,instances:t.prop(\"nsegments\"),blend:{enable:!0,equation:\"max\",func:{srcRGB:1,srcAlpha:1,dstRGB:1,dstAlpha:1}},depth:{enable:!1},scissor:{enable:!0,box:t.prop(\"scissor\")},viewport:t.prop(\"viewport\")};return t(_)}(this._regl,this._line_geometry,this._line_triangles)),this._dashed_line}get_dash(t){return null==this._dash_cache&&(this._dash_cache=new n.DashCache(this._regl)),this._dash_cache.get(t)}marker_no_hatch(t){null==this._marker_no_hatch_map&&(this._marker_no_hatch_map=new Map);let i=this._marker_no_hatch_map.get(t);return null==i&&(i=function(t,i){const e={vert:p.default,frag:`#define USE_${i.toUpperCase()}\\n${h.default}`,attributes:{a_position:{buffer:t.buffer([[-.5,-.5],[-.5,.5],[.5,.5],[.5,-.5]]),divisor:0},a_center:(t,i)=>i.center.to_attribute_config(),a_width:(t,i)=>i.width.to_attribute_config(),a_height:(t,i)=>i.height.to_attribute_config(),a_angle:(t,i)=>i.angle.to_attribute_config(),a_linewidth:(t,i)=>i.linewidth.to_attribute_config(),a_line_color:(t,i)=>i.line_color.to_attribute_config(),a_fill_color:(t,i)=>i.fill_color.to_attribute_config(),a_line_cap:(t,i)=>i.line_cap.to_attribute_config(),a_line_join:(t,i)=>i.line_join.to_attribute_config(),a_show:(t,i)=>i.show.to_attribute_config()},uniforms:{u_canvas_size:t.prop(\"canvas_size\"),u_pixel_ratio:t.prop(\"pixel_ratio\"),u_antialias:t.prop(\"antialias\"),u_size_hint:t.prop(\"size_hint\")},count:4,primitive:\"triangle fan\",instances:t.prop(\"nmarkers\"),blend:{enable:!0,func:{srcRGB:\"one\",srcAlpha:\"one\",dstRGB:\"one minus src alpha\",dstAlpha:\"one minus src alpha\"}},depth:{enable:!1},scissor:{enable:!0,box:t.prop(\"scissor\")},viewport:t.prop(\"viewport\")};return t(e)}(this._regl,t),this._marker_no_hatch_map.set(t,i)),i}marker_hatch(t){null==this._marker_hatch_map&&(this._marker_hatch_map=new Map);let i=this._marker_hatch_map.get(t);return null==i&&(i=function(t,i){const e={vert:`#define HATCH\\n${p.default}`,frag:`#define USE_${i.toUpperCase()}\\n#define HATCH\\n${h.default}`,attributes:{a_position:{buffer:t.buffer([[-.5,-.5],[-.5,.5],[.5,.5],[.5,-.5]]),divisor:0},a_center:(t,i)=>i.center.to_attribute_config(),a_width:(t,i)=>i.width.to_attribute_config(),a_height:(t,i)=>i.height.to_attribute_config(),a_angle:(t,i)=>i.angle.to_attribute_config(),a_linewidth:(t,i)=>i.linewidth.to_attribute_config(),a_line_color:(t,i)=>i.line_color.to_attribute_config(),a_fill_color:(t,i)=>i.fill_color.to_attribute_config(),a_line_cap:(t,i)=>i.line_cap.to_attribute_config(),a_line_join:(t,i)=>i.line_join.to_attribute_config(),a_show:(t,i)=>i.show.to_attribute_config(),a_hatch_pattern:(t,i)=>i.hatch_pattern.to_attribute_config(),a_hatch_scale:(t,i)=>i.hatch_scale.to_attribute_config(),a_hatch_weight:(t,i)=>i.hatch_weight.to_attribute_config(),a_hatch_color:(t,i)=>i.hatch_color.to_attribute_config()},uniforms:{u_canvas_size:t.prop(\"canvas_size\"),u_pixel_ratio:t.prop(\"pixel_ratio\"),u_antialias:t.prop(\"antialias\"),u_size_hint:t.prop(\"size_hint\")},count:4,primitive:\"triangle fan\",instances:t.prop(\"nmarkers\"),blend:{enable:!0,func:{srcRGB:\"one\",srcAlpha:\"one\",dstRGB:\"one minus src alpha\",dstAlpha:\"one minus src alpha\"}},depth:{enable:!1},scissor:{enable:!0,box:t.prop(\"scissor\")},viewport:t.prop(\"viewport\")};return t(e)}(this._regl,t),this._marker_hatch_map.set(t,i)),i}solid_line(){return null==this._solid_line&&(this._solid_line=function(t,i,e){const _={vert:s.default,frag:l.default,attributes:{a_position:{buffer:i,divisor:0},a_point_prev:(t,i)=>i.points.to_attribute_config(),a_point_start:(t,i)=>i.points.to_attribute_config(2*Float32Array.BYTES_PER_ELEMENT),a_point_end:(t,i)=>i.points.to_attribute_config(4*Float32Array.BYTES_PER_ELEMENT),a_point_next:(t,i)=>i.points.to_attribute_config(6*Float32Array.BYTES_PER_ELEMENT),a_show_prev:(t,i)=>i.show.to_attribute_config(),a_show_curr:(t,i)=>i.show.to_attribute_config(Uint8Array.BYTES_PER_ELEMENT),a_show_next:(t,i)=>i.show.to_attribute_config(2*Uint8Array.BYTES_PER_ELEMENT)},uniforms:{u_canvas_size:t.prop(\"canvas_size\"),u_pixel_ratio:t.prop(\"pixel_ratio\"),u_antialias:t.prop(\"antialias\"),u_line_color:t.prop(\"line_color\"),u_linewidth:t.prop(\"linewidth\"),u_miter_limit:t.prop(\"miter_limit\"),u_line_join:t.prop(\"line_join\"),u_line_cap:t.prop(\"line_cap\")},elements:e,instances:t.prop(\"nsegments\"),blend:{enable:!0,equation:\"max\",func:{srcRGB:1,srcAlpha:1,dstRGB:1,dstAlpha:1}},depth:{enable:!1},scissor:{enable:!0,box:t.prop(\"scissor\")},viewport:t.prop(\"viewport\")};return t(_)}(this._regl,this._line_geometry,this._line_triangles)),this._solid_line}}e.ReglWrapper=u,u.__name__=\"ReglWrapper\"},\n", + " 412: function _(e,t,r,n,a){var i,o;i=this,o=function(){\"use strict\";var e=function(e){return e instanceof Uint8Array||e instanceof Uint16Array||e instanceof Uint32Array||e instanceof Int8Array||e instanceof Int16Array||e instanceof Int32Array||e instanceof Float32Array||e instanceof Float64Array||e instanceof Uint8ClampedArray},t=function(e,t){for(var r=Object.keys(t),n=0;n=0&&(0|e)===e||n(\"invalid parameter type, (\"+e+\")\"+i(t)+\". must be a nonnegative integer\")},oneOf:f,shaderError:function(e,t,n,i,o){if(!e.getShaderParameter(t,e.COMPILE_STATUS)){var f=e.getShaderInfoLog(t),u=i===e.FRAGMENT_SHADER?\"fragment\":\"vertex\";g(n,\"string\",u+\" shader source must be a string\",o);var c=h(n,o),l=function(e){var t=[];return e.split(\"\\n\").forEach((function(e){if(!(e.length<5)){var r=/^ERROR:\\s+(\\d+):(\\d+):\\s*(.*)$/.exec(e);r?t.push(new d(0|r[1],0|r[2],r[3].trim())):e.length>0&&t.push(new d(\"unknown\",0,e))}})),t}(f);!function(e,t){t.forEach((function(t){var r=e[t.file];if(r){var n=r.index[t.line];if(n)return n.errors.push(t),void(r.hasErrors=!0)}e.unknown.hasErrors=!0,e.unknown.lines[0].errors.push(t)}))}(c,l),Object.keys(c).forEach((function(e){var t=c[e];if(t.hasErrors){var n=[\"\"],a=[\"\"];i(\"file number \"+e+\": \"+t.name+\"\\n\",\"color:red;text-decoration:underline;font-weight:bold\"),t.lines.forEach((function(e){if(e.errors.length>0){i(s(e.number,4)+\"| \",\"background-color:yellow; font-weight:bold\"),i(e.line+r,\"color:red; background-color:yellow; font-weight:bold\");var t=0;e.errors.forEach((function(n){var a=n.message,o=/^\\s*'(.*)'\\s*:\\s*(.*)$/.exec(a);if(o){var f=o[1];a=o[2],\"assign\"===f&&(f=\"=\"),t=Math.max(e.line.indexOf(f,t),0)}else t=0;i(s(\"| \",6)),i(s(\"^^^\",t+3)+r,\"font-weight:bold\"),i(s(\"| \",6)),i(a+r,\"font-weight:bold\")})),i(s(\"| \",6)+r)}else i(s(e.number,4)+\"| \"),i(e.line+r,\"color:red\")})),\"undefined\"==typeof document||window.chrome?console.log(n.join(\"\")):(a[0]=n.join(\"%c\"),console.log.apply(console,a))}function i(e,t){n.push(e),a.push(t||\"\")}})),a.raise(\"Error compiling \"+u+\" shader, \"+c[0].name)}},linkError:function(e,t,n,i,o){if(!e.getProgramParameter(t,e.LINK_STATUS)){var f=e.getProgramInfoLog(t),u=h(n,o),s='Error linking program with vertex shader, \"'+h(i,o)[0].name+'\", and fragment shader \"'+u[0].name+'\"';\"undefined\"!=typeof document?console.log(\"%c\"+s+\"\\n%c\"+f,\"color:red;text-decoration:underline;font-weight:bold\",\"color:red\"):console.log(s+r+f),a.raise(s)}},callSite:p,saveCommandRef:b,saveDrawInfo:function(e,t,r,n){function a(e){return e?n.id(e):0}function i(e,t){Object.keys(t).forEach((function(t){e[n.id(t)]=!0}))}b(e),e._fragId=a(e.static.frag),e._vertId=a(e.static.vert);var o=e._uniformSet={};i(o,t.static),i(o,t.dynamic);var f=e._attributeSet={};i(f,r.static),i(f,r.dynamic),e._hasCount=\"count\"in e.static||\"count\"in e.dynamic||\"elements\"in e.static||\"elements\"in e.dynamic},framebufferFormat:function(e,t,r){e.texture?f(e.texture._texture.internalformat,t,\"unsupported texture format for attachment\"):f(e.renderbuffer._renderbuffer.format,r,\"unsupported renderbuffer format for attachment\")},guessCommand:m,texture2D:function(e,t,r){var n,i=t.width,o=t.height,f=t.channels;a(i>0&&i<=r.maxTextureSize&&o>0&&o<=r.maxTextureSize,\"invalid texture shape\"),e.wrapS===y&&e.wrapT===y||a(A(i)&&A(o),\"incompatible wrap mode for texture, both width and height must be power of 2\"),1===t.mipmask?1!==i&&1!==o&&a(9984!==e.minFilter&&9986!==e.minFilter&&9985!==e.minFilter&&9987!==e.minFilter,\"min filter requires mipmap\"):(a(A(i)&&A(o),\"texture must be a square power of 2 to support mipmapping\"),a(t.mipmask===(i<<1)-1,\"missing or incomplete mipmap data\")),5126===t.type&&(r.extensions.indexOf(\"oes_texture_float_linear\")<0&&a(9728===e.minFilter&&9728===e.magFilter,\"filter not supported, must enable oes_texture_float_linear\"),a(!e.genMipmaps,\"mipmap generation not supported with float textures\"));var u=t.images;for(n=0;n<16;++n)if(u[n]){var s=i>>n,c=o>>n;a(t.mipmask&1<0&&i<=n.maxTextureSize&&o>0&&o<=n.maxTextureSize,\"invalid texture shape\"),a(i===o,\"cube map must be square\"),a(t.wrapS===y&&t.wrapT===y,\"wrap mode not supported by cube map\");for(var u=0;u>l,p=o>>l;a(s.mipmask&1<1&&t===r&&('\"'===t||\"'\"===t))return['\"'+O(e.substr(1,e.length-2))+'\"'];var n=/\\[(false|true|null|\\d+|'[^']*'|\"[^\"]*\")\\]/.exec(e);if(n)return E(e.substr(0,n.index)).concat(E(n[1])).concat(E(e.substr(n.index+n[0].length)));var a=e.split(\".\");if(1===a.length)return['\"'+O(e)+'\"'];for(var i=[],o=0;o0,\"invalid pixel ratio\"))):_.raise(\"invalid arguments to regl\"),r&&(\"canvas\"===r.nodeName.toLowerCase()?a=r:n=r),!i){if(!a){_(\"undefined\"!=typeof document,\"must manually specify webgl context outside of DOM environments\");var h=function(e,r,n){var a,i=document.createElement(\"canvas\");function o(){var t=window.innerWidth,r=window.innerHeight;if(e!==document.body){var a=i.getBoundingClientRect();t=a.right-a.left,r=a.bottom-a.top}i.width=n*t,i.height=n*r}return t(i.style,{border:0,margin:0,padding:0,top:0,left:0,width:\"100%\",height:\"100%\"}),e.appendChild(i),e===document.body&&(i.style.position=\"absolute\",t(e.style,{margin:0,padding:0})),e!==document.body&&\"function\"==typeof ResizeObserver?(a=new ResizeObserver((function(){setTimeout(o)}))).observe(e):window.addEventListener(\"resize\",o,!1),o(),{canvas:i,onDestroy:function(){a?a.disconnect():window.removeEventListener(\"resize\",o),e.removeChild(i)}}}(n||document.body,0,l);if(!h)return null;a=h.canvas,p=h.onDestroy}void 0===u.premultipliedAlpha&&(u.premultipliedAlpha=!0),i=function(e,t){function r(r){try{return e.getContext(r,t)}catch(e){return null}}return r(\"webgl\")||r(\"experimental-webgl\")||r(\"webgl-experimental\")}(a,u)}return i?{gl:i,canvas:a,container:n,extensions:s,optionalExtensions:c,pixelRatio:l,profile:d,onDone:m,onDestroy:p}:(p(),m(\"webgl not supported, try upgrading your browser or graphics drivers http://get.webgl.org\"),null)}function V(e,t){for(var r=Array(e),n=0;n65535)<<4,t|=r=((e>>>=t)>255)<<3,t|=r=((e>>>=r)>15)<<2,(t|=r=((e>>>=r)>3)<<1)|(e>>>=r)>>1}function P(){var e=V(8,(function(){return[]}));function t(t){var r=function(e){for(var t=16;t<=1<<28;t*=16)if(e<=t)return t;return 0}(t),n=e[I(r)>>2];return n.length>0?n.pop():new ArrayBuffer(r)}function r(t){e[I(t.byteLength)>>2].push(t)}return{alloc:t,free:r,allocType:function(e,r){var n=null;switch(e){case 5120:n=new Int8Array(t(r),0,r);break;case 5121:n=new Uint8Array(t(r),0,r);break;case 5122:n=new Int16Array(t(2*r),0,r);break;case 5123:n=new Uint16Array(t(2*r),0,r);break;case 5124:n=new Int32Array(t(4*r),0,r);break;case 5125:n=new Uint32Array(t(4*r),0,r);break;case 5126:n=new Float32Array(t(4*r),0,r);break;default:return null}return n.length!==r?n.subarray(0,r):n},freeType:function(e){r(e.buffer)}}}var L=P();L.zero=P();var R=3553,M=6408,W=5126,U=36160;function G(t){return!!t&&\"object\"==typeof t&&Array.isArray(t.shape)&&Array.isArray(t.stride)&&\"number\"==typeof t.offset&&t.shape.length===t.stride.length&&(Array.isArray(t.data)||e(t.data))}var H=function(e){return Object.keys(e).map((function(t){return e[t]}))},N={shape:function(e){for(var t=[],r=e;r.length;r=r[0])t.push(r.length);return t},flatten:function(e,t,r,n){var a=1;if(t.length)for(var i=0;i>>31<<15,i=(n<<1>>>24)-127,o=n>>13&1023;if(i<-24)t[r]=a;else if(i<-14){var f=-14-i;t[r]=a+(o+1024>>f)}else t[r]=i>15?a+31744:a+(i+15<<10)+o}return t}function me(t){return Array.isArray(t)||e(t)}var pe=function(e){return!(e&e-1||!e)},he=3553,be=34067,ve=34069,ge=6408,ye=6406,xe=6407,we=6409,Ae=6410,_e=32855,ke=6402,Se=34041,Oe=35904,Ee=35906,Te=36193,De=33776,je=33777,Ce=33778,ze=33779,Fe=5121,Be=5123,Ve=5125,Ie=5126,Pe=33071,Le=9728,Re=9984,Me=9987,We=4352,Ue=33984,Ge=[Re,9986,9985,Me],He=[0,we,Ae,xe,ge],Ne={};function qe(e){return\"[object \"+e+\"]\"}Ne[6409]=Ne[6406]=Ne[6402]=1,Ne[34041]=Ne[6410]=2,Ne[6407]=Ne[35904]=3,Ne[6408]=Ne[35906]=4;var Qe=qe(\"HTMLCanvasElement\"),Ye=qe(\"OffscreenCanvas\"),Xe=qe(\"CanvasRenderingContext2D\"),$e=qe(\"ImageBitmap\"),Ke=qe(\"HTMLImageElement\"),Je=qe(\"HTMLVideoElement\"),Ze=Object.keys(Y).concat([Qe,Ye,Xe,$e,Ke,Je]),et=[];et[5121]=1,et[5126]=4,et[36193]=2,et[5123]=2,et[5125]=4;var tt=[];function rt(e){return Array.isArray(e)&&(0===e.length||\"number\"==typeof e[0])}function nt(e){return!!Array.isArray(e)&&!(0===e.length||!me(e[0]))}function at(e){return Object.prototype.toString.call(e)}function it(e){return at(e)===Qe}function ot(e){return at(e)===Ye}function ft(e){if(!e)return!1;var t=at(e);return Ze.indexOf(t)>=0||rt(e)||nt(e)||G(e)}function ut(e){return 0|Y[Object.prototype.toString.call(e)]}function st(e,t){return L.allocType(e.type===Te?Ie:e.type,t)}function ct(e,t){e.type===Te?(e.data=de(t),L.freeType(t)):e.data=t}function lt(e,t,r,n,a,i){var o;if(o=void 0!==tt[e]?tt[e]:Ne[e]*et[t],i&&(o*=6),a){for(var f=0,u=r;u>=1;)f+=o*u*u,u/=2;return f}return o*r*n}function dt(r,n,a,i,o,f,u){var s={\"don't care\":We,\"dont care\":We,nice:4354,fast:4353},c={repeat:10497,clamp:Pe,mirror:33648},l={nearest:Le,linear:9729},d=t({mipmap:Me,\"nearest mipmap nearest\":Re,\"linear mipmap nearest\":9985,\"nearest mipmap linear\":9986,\"linear mipmap linear\":Me},l),m={none:0,browser:37444},p={uint8:Fe,rgba4:32819,rgb565:33635,\"rgb5 a1\":32820},h={alpha:ye,luminance:we,\"luminance alpha\":Ae,rgb:xe,rgba:ge,rgba4:32854,\"rgb5 a1\":_e,rgb565:36194},b={};n.ext_srgb&&(h.srgb=Oe,h.srgba=Ee),n.oes_texture_float&&(p.float32=p.float=Ie),n.oes_texture_half_float&&(p.float16=p[\"half float\"]=Te),n.webgl_depth_texture&&(t(h,{depth:ke,\"depth stencil\":Se}),t(p,{uint16:Be,uint32:Ve,\"depth stencil\":34042})),n.webgl_compressed_texture_s3tc&&t(b,{\"rgb s3tc dxt1\":De,\"rgba s3tc dxt1\":je,\"rgba s3tc dxt3\":Ce,\"rgba s3tc dxt5\":ze}),n.webgl_compressed_texture_atc&&t(b,{\"rgb atc\":35986,\"rgba atc explicit alpha\":35987,\"rgba atc interpolated alpha\":34798}),n.webgl_compressed_texture_pvrtc&&t(b,{\"rgb pvrtc 4bppv1\":35840,\"rgb pvrtc 2bppv1\":35841,\"rgba pvrtc 4bppv1\":35842,\"rgba pvrtc 2bppv1\":35843}),n.webgl_compressed_texture_etc1&&(b[\"rgb etc1\"]=36196);var v=Array.prototype.slice.call(r.getParameter(34467));Object.keys(b).forEach((function(e){var t=b[e];v.indexOf(t)>=0&&(h[e]=t)}));var g=Object.keys(h);a.textureFormats=g;var y=[];Object.keys(h).forEach((function(e){var t=h[e];y[t]=e}));var x=[];Object.keys(p).forEach((function(e){var t=p[e];x[t]=e}));var w=[];Object.keys(l).forEach((function(e){w[l[e]]=e}));var A=[];Object.keys(d).forEach((function(e){var t=d[e];A[t]=e}));var k=[];Object.keys(c).forEach((function(e){k[c[e]]=e}));var S=g.reduce((function(e,t){var r=h[t];return r===we||r===ye||r===we||r===Ae||r===ke||r===Se||n.ext_srgb&&(r===Oe||r===Ee)?e[r]=r:r===_e||t.indexOf(\"rgba\")>=0?e[r]=ge:e[r]=xe,e}),{});function O(){this.internalformat=ge,this.format=ge,this.type=Fe,this.compressed=!1,this.premultiplyAlpha=!1,this.flipY=!1,this.unpackAlignment=1,this.colorSpace=37444,this.width=0,this.height=0,this.channels=0}function E(e,t){e.internalformat=t.internalformat,e.format=t.format,e.type=t.type,e.compressed=t.compressed,e.premultiplyAlpha=t.premultiplyAlpha,e.flipY=t.flipY,e.unpackAlignment=t.unpackAlignment,e.colorSpace=t.colorSpace,e.width=t.width,e.height=t.height,e.channels=t.channels}function T(e,t){if(\"object\"==typeof t&&t){if(\"premultiplyAlpha\"in t&&(_.type(t.premultiplyAlpha,\"boolean\",\"invalid premultiplyAlpha\"),e.premultiplyAlpha=t.premultiplyAlpha),\"flipY\"in t&&(_.type(t.flipY,\"boolean\",\"invalid texture flip\"),e.flipY=t.flipY),\"alignment\"in t&&(_.oneOf(t.alignment,[1,2,4,8],\"invalid texture unpack alignment\"),e.unpackAlignment=t.alignment),\"colorSpace\"in t&&(_.parameter(t.colorSpace,m,\"invalid colorSpace\"),e.colorSpace=m[t.colorSpace]),\"type\"in t){var r=t.type;_(n.oes_texture_float||!(\"float\"===r||\"float32\"===r),\"you must enable the OES_texture_float extension in order to use floating point textures.\"),_(n.oes_texture_half_float||!(\"half float\"===r||\"float16\"===r),\"you must enable the OES_texture_half_float extension in order to use 16-bit floating point textures.\"),_(n.webgl_depth_texture||!(\"uint16\"===r||\"uint32\"===r||\"depth stencil\"===r),\"you must enable the WEBGL_depth_texture extension in order to use depth/stencil textures.\"),_.parameter(r,p,\"invalid texture type\"),e.type=p[r]}var i=e.width,o=e.height,f=e.channels,u=!1;\"shape\"in t?(_(Array.isArray(t.shape)&&t.shape.length>=2,\"shape must be an array\"),i=t.shape[0],o=t.shape[1],3===t.shape.length&&(f=t.shape[2],_(f>0&&f<=4,\"invalid number of channels\"),u=!0),_(i>=0&&i<=a.maxTextureSize,\"invalid width\"),_(o>=0&&o<=a.maxTextureSize,\"invalid height\")):(\"radius\"in t&&(i=o=t.radius,_(i>=0&&i<=a.maxTextureSize,\"invalid radius\")),\"width\"in t&&(i=t.width,_(i>=0&&i<=a.maxTextureSize,\"invalid width\")),\"height\"in t&&(o=t.height,_(o>=0&&o<=a.maxTextureSize,\"invalid height\")),\"channels\"in t&&(f=t.channels,_(f>0&&f<=4,\"invalid number of channels\"),u=!0)),e.width=0|i,e.height=0|o,e.channels=0|f;var s=!1;if(\"format\"in t){var c=t.format;_(n.webgl_depth_texture||!(\"depth\"===c||\"depth stencil\"===c),\"you must enable the WEBGL_depth_texture extension in order to use depth/stencil textures.\"),_.parameter(c,h,\"invalid texture format\");var l=e.internalformat=h[c];e.format=S[l],c in p&&(\"type\"in t||(e.type=p[c])),c in b&&(e.compressed=!0),s=!0}!u&&s?e.channels=Ne[e.format]:u&&!s?e.channels!==He[e.format]&&(e.format=e.internalformat=He[e.channels]):s&&u&&_(e.channels===Ne[e.format],\"number of channels inconsistent with specified format\")}}function D(e){r.pixelStorei(37440,e.flipY),r.pixelStorei(37441,e.premultiplyAlpha),r.pixelStorei(37443,e.colorSpace),r.pixelStorei(3317,e.unpackAlignment)}function j(){O.call(this),this.xOffset=0,this.yOffset=0,this.data=null,this.needsFree=!1,this.element=null,this.needsCopy=!1}function C(t,r){var n=null;if(ft(r)?n=r:r&&(_.type(r,\"object\",\"invalid pixel data type\"),T(t,r),\"x\"in r&&(t.xOffset=0|r.x),\"y\"in r&&(t.yOffset=0|r.y),ft(r.data)&&(n=r.data)),_(!t.compressed||n instanceof Uint8Array,\"compressed texture data must be stored in a uint8array\"),r.copy){_(!n,\"can not specify copy and data field for the same texture\");var i=o.viewportWidth,f=o.viewportHeight;t.width=t.width||i-t.xOffset,t.height=t.height||f-t.yOffset,t.needsCopy=!0,_(t.xOffset>=0&&t.xOffset=0&&t.yOffset0&&t.width<=i&&t.height>0&&t.height<=f,\"copy texture read out of bounds\")}else if(n){if(e(n))t.channels=t.channels||4,t.data=n,\"type\"in r||t.type!==Fe||(t.type=ut(n));else if(rt(n))t.channels=t.channels||4,function(e,t){var r=t.length;switch(e.type){case Fe:case Be:case Ve:case Ie:var n=L.allocType(e.type,r);n.set(t),e.data=n;break;case Te:e.data=de(t);break;default:_.raise(\"unsupported texture type, must specify a typed array\")}}(t,n),t.alignment=1,t.needsFree=!0;else if(G(n)){var u=n.data;Array.isArray(u)||t.type!==Fe||(t.type=ut(u));var s,c,l,d,m,p,h=n.shape,b=n.stride;3===h.length?(l=h[2],p=b[2]):(_(2===h.length,\"invalid ndarray pixel data, must be 2 or 3D\"),l=1,p=1),s=h[0],c=h[1],d=b[0],m=b[1],t.alignment=1,t.width=s,t.height=c,t.channels=l,t.format=t.internalformat=He[l],t.needsFree=!0,function(e,t,r,n,a,i){for(var o=e.width,f=e.height,u=e.channels,s=st(e,o*f*u),c=0,l=0;l=0,\"oes_texture_float extension not enabled\"):t.type===Te&&_(a.extensions.indexOf(\"oes_texture_half_float\")>=0,\"oes_texture_half_float extension not enabled\")}function z(e,t,n){var a=e.element,o=e.data,f=e.internalformat,u=e.format,s=e.type,c=e.width,l=e.height;D(e),a?r.texImage2D(t,n,u,u,s,a):e.compressed?r.compressedTexImage2D(t,n,f,c,l,0,o):e.needsCopy?(i(),r.copyTexImage2D(t,n,u,e.xOffset,e.yOffset,c,l,0)):r.texImage2D(t,n,u,c,l,0,u,s,o||null)}function F(e,t,n,a,o){var f=e.element,u=e.data,s=e.internalformat,c=e.format,l=e.type,d=e.width,m=e.height;D(e),f?r.texSubImage2D(t,o,n,a,c,l,f):e.compressed?r.compressedTexSubImage2D(t,o,n,a,s,d,m,u):e.needsCopy?(i(),r.copyTexSubImage2D(t,o,n,a,e.xOffset,e.yOffset,d,m)):r.texSubImage2D(t,o,n,a,d,m,c,l,u)}var B=[];function V(){return B.pop()||new j}function I(e){e.needsFree&&L.freeType(e.data),j.call(e),B.push(e)}function P(){O.call(this),this.genMipmaps=!1,this.mipmapHint=We,this.mipmask=0,this.images=Array(16)}function R(e,t,r){var n=e.images[0]=V();e.mipmask=1,n.width=e.width=t,n.height=e.height=r,n.channels=e.channels=4}function M(e,t){var r=null;if(ft(t))E(r=e.images[0]=V(),e),C(r,t),e.mipmask=1;else if(T(e,t),Array.isArray(t.mipmap))for(var n=t.mipmap,a=0;a>=a,r.height>>=a,C(r,n[a]),e.mipmask|=1<=0&&!(\"faces\"in t)&&(e.genMipmaps=!0)}if(\"mag\"in t){var n=t.mag;_.parameter(n,l),e.magFilter=l[n]}var i=e.wrapS,o=e.wrapT;if(\"wrap\"in t){var f=t.wrap;\"string\"==typeof f?(_.parameter(f,c),i=o=c[f]):Array.isArray(f)&&(_.parameter(f[0],c),_.parameter(f[1],c),i=c[f[0]],o=c[f[1]])}else{if(\"wrapS\"in t){var u=t.wrapS;_.parameter(u,c),i=c[u]}if(\"wrapT\"in t){var m=t.wrapT;_.parameter(m,c),o=c[m]}}if(e.wrapS=i,e.wrapT=o,\"anisotropic\"in t){var p=t.anisotropic;_(\"number\"==typeof p&&p>=1&&p<=a.maxAnisotropic,\"aniso samples must be between 1 and \"),e.anisotropic=t.anisotropic}if(\"mipmap\"in t){var h=!1;switch(typeof t.mipmap){case\"string\":_.parameter(t.mipmap,s,\"invalid mipmap hint\"),e.mipmapHint=s[t.mipmap],e.genMipmaps=!0,h=!0;break;case\"boolean\":h=e.genMipmaps=t.mipmap;break;case\"object\":_(Array.isArray(t.mipmap),\"invalid mipmap type\"),e.genMipmaps=!1,h=!0;break;default:_.raise(\"invalid mipmap type\")}h&&!(\"min\"in t)&&(e.minFilter=Re)}}function $(e,t){r.texParameteri(t,10241,e.minFilter),r.texParameteri(t,10240,e.magFilter),r.texParameteri(t,10242,e.wrapS),r.texParameteri(t,10243,e.wrapT),n.ext_texture_filter_anisotropic&&r.texParameteri(t,34046,e.anisotropic),e.genMipmaps&&(r.hint(33170,e.mipmapHint),r.generateMipmap(t))}var K=0,J={},Z=a.maxTextureUnits,ee=Array(Z).map((function(){return null}));function te(e){O.call(this),this.mipmask=0,this.internalformat=ge,this.id=K++,this.refCount=1,this.target=e,this.texture=r.createTexture(),this.unit=-1,this.bindCount=0,this.texInfo=new Y,u.profile&&(this.stats={size:0})}function re(e){r.activeTexture(Ue),r.bindTexture(e.target,e.texture)}function ne(){var e=ee[0];e?r.bindTexture(e.target,e.texture):r.bindTexture(he,null)}function ae(e){var t=e.texture;_(t,\"must not double destroy texture\");var n=e.unit,a=e.target;n>=0&&(r.activeTexture(Ue+n),r.bindTexture(a,null),ee[n]=null),r.deleteTexture(t),e.texture=null,e.params=null,e.pixels=null,e.refCount=0,delete J[e.id],f.textureCount--}return t(te.prototype,{bind:function(){var e=this;e.bindCount+=1;var t=e.unit;if(t<0){for(var n=0;n0)continue;a.unit=-1}ee[n]=e,t=n;break}t>=Z&&_.raise(\"insufficient number of texture units\"),u.profile&&f.maxTextureUnits>u)-o,s.height=s.height||(n.height>>u)-f,_(n.type===s.type&&n.format===s.format&&n.internalformat===s.internalformat,\"incompatible format for texture.subimage\"),_(o>=0&&f>=0&&o+s.width<=n.width&&f+s.height<=n.height,\"texture.subimage write out of bounds\"),_(n.mipmask&1<>f;++f){var s=a>>f,c=o>>f;if(!s||!c)break;r.texImage2D(he,f,n.format,s,c,0,n.format,n.type,null)}return ne(),u.profile&&(n.stats.size=lt(n.internalformat,n.type,a,o,!1,!1)),i},i._reglType=\"texture2d\",i._texture=n,u.profile&&(i.stats=n.stats),i.destroy=function(){n.decRef()},i},createCube:function(e,t,n,i,o,s){var c=new te(be);J[c.id]=c,f.cubeCount++;var l=new Array(6);function d(e,t,r,n,i,o){var f,s=c.texInfo;for(Y.call(s),f=0;f<6;++f)l[f]=q();if(\"number\"!=typeof e&&e)if(\"object\"==typeof e)if(t)M(l[0],e),M(l[1],t),M(l[2],r),M(l[3],n),M(l[4],i),M(l[5],o);else if(X(s,e),T(c,e),\"faces\"in e){var m=e.faces;for(_(Array.isArray(m)&&6===m.length,\"cube faces must be a length 6 array\"),f=0;f<6;++f)_(\"object\"==typeof m[f]&&!!m[f],\"invalid input for cube map face\"),E(l[f],c),M(l[f],m[f])}else for(f=0;f<6;++f)M(l[f],e);else _.raise(\"invalid arguments to cube map\");else{var p=0|e||1;for(f=0;f<6;++f)R(l[f],p,p)}for(E(c,l[0]),_.optional((function(){a.npotTextureCube||_(pe(c.width)&&pe(c.height),\"your browser does not support non power or two texture dimensions\")})),s.genMipmaps?c.mipmask=(l[0].width<<1)-1:c.mipmask=l[0].mipmask,_.textureCube(c,s,l,a),c.internalformat=l[0].internalformat,d.width=l[0].width,d.height=l[0].height,re(c),f=0;f<6;++f)W(l[f],ve+f);for($(s,be),ne(),u.profile&&(c.stats.size=lt(c.internalformat,c.type,d.width,d.height,s.genMipmaps,!0)),d.format=y[c.internalformat],d.type=x[c.type],d.mag=w[s.magFilter],d.min=A[s.minFilter],d.wrapS=k[s.wrapS],d.wrapT=k[s.wrapT],f=0;f<6;++f)Q(l[f]);return d}return d(e,t,n,i,o,s),d.subimage=function(e,t,r,n,a){_(!!t,\"must specify image data\"),_(\"number\"==typeof e&&e===(0|e)&&e>=0&&e<6,\"invalid face\");var i=0|r,o=0|n,f=0|a,u=V();return E(u,c),u.width=0,u.height=0,C(u,t),u.width=u.width||(c.width>>f)-i,u.height=u.height||(c.height>>f)-o,_(c.type===u.type&&c.format===u.format&&c.internalformat===u.internalformat,\"incompatible format for texture.subimage\"),_(i>=0&&o>=0&&i+u.width<=c.width&&o+u.height<=c.height,\"texture.subimage write out of bounds\"),_(c.mipmask&1<>a;++a)r.texImage2D(ve+n,a,c.format,t>>a,t>>a,0,c.format,c.type,null);return ne(),u.profile&&(c.stats.size=lt(c.internalformat,c.type,d.width,d.height,!1,!0)),d}},d._reglType=\"textureCube\",d._texture=c,u.profile&&(d.stats=c.stats),d.destroy=function(){c.decRef()},d},clear:function(){for(var e=0;e>t,e.height>>t,0,e.internalformat,e.type,null);else for(var n=0;n<6;++n)r.texImage2D(ve+n,t,e.internalformat,e.width>>t,e.height>>t,0,e.internalformat,e.type,null);$(e.texInfo,e.target)}))},refresh:function(){for(var e=0;e=0&&c=0&&l0&&d+c<=a.framebufferWidth,\"invalid width for read pixels\"),_(m>0&&m+l<=a.framebufferHeight,\"invalid height for read pixels\"),n();var h=d*m*4;return p||(s===Dt?p=new Uint8Array(h):s===jt&&(p=p||new Float32Array(h))),_.isTypedArray(p,\"data buffer for regl.read() must be a typedarray\"),_(p.byteLength>=h,\"data buffer for regl.read() too small\"),t.pixelStorei(3333,4),t.readPixels(c,l,d,m,6408,s,p),p}return function(e){return e&&\"framebuffer\"in e?function(e){var t;return r.setFBO({framebuffer:e.framebuffer},(function(){t=u(e)})),t}(e):u(e)}}function zt(e){return Array.prototype.slice.call(e)}function Ft(e){return zt(e).join(\"\")}var Bt=\"xyzw\".split(\"\"),Vt=\"dither\",It=\"blend.enable\",Pt=\"blend.color\",Lt=\"blend.equation\",Rt=\"blend.func\",Mt=\"depth.enable\",Wt=\"depth.func\",Ut=\"depth.range\",Gt=\"depth.mask\",Ht=\"colorMask\",Nt=\"cull.enable\",qt=\"cull.face\",Qt=\"frontFace\",Yt=\"lineWidth\",Xt=\"polygonOffset.enable\",$t=\"polygonOffset.offset\",Kt=\"sample.alpha\",Jt=\"sample.enable\",Zt=\"sample.coverage\",er=\"stencil.enable\",tr=\"stencil.mask\",rr=\"stencil.func\",nr=\"stencil.opFront\",ar=\"stencil.opBack\",ir=\"scissor.enable\",or=\"scissor.box\",fr=\"viewport\",ur=\"profile\",sr=\"framebuffer\",cr=\"vert\",lr=\"frag\",dr=\"elements\",mr=\"primitive\",pr=\"count\",hr=\"offset\",br=\"instances\",vr=\"vao\",gr=\"Width\",yr=\"Height\",xr=sr+gr,wr=sr+yr,Ar=\"drawingBufferWidth\",_r=\"drawingBufferHeight\",kr=[Rt,Lt,rr,nr,ar,Zt,fr,or,$t],Sr=34962,Or=34963,Er=5126,Tr=35664,Dr=35665,jr=35666,Cr=5124,zr=35667,Fr=35668,Br=35669,Vr=35670,Ir=35671,Pr=35672,Lr=35673,Rr=35674,Mr=35675,Wr=35676,Ur=35678,Gr=35680,Hr=1028,Nr=1029,qr=2305,Qr=7680,Yr={0:0,1:1,zero:0,one:1,\"src color\":768,\"one minus src color\":769,\"src alpha\":770,\"one minus src alpha\":771,\"dst color\":774,\"one minus dst color\":775,\"dst alpha\":772,\"one minus dst alpha\":773,\"constant color\":32769,\"one minus constant color\":32770,\"constant alpha\":32771,\"one minus constant alpha\":32772,\"src alpha saturate\":776},Xr=[\"constant color, constant alpha\",\"one minus constant color, constant alpha\",\"constant color, one minus constant alpha\",\"one minus constant color, one minus constant alpha\",\"constant alpha, constant color\",\"constant alpha, one minus constant color\",\"one minus constant alpha, constant color\",\"one minus constant alpha, one minus constant color\"],$r={never:512,less:513,\"<\":513,equal:514,\"=\":514,\"==\":514,\"===\":514,lequal:515,\"<=\":515,greater:516,\">\":516,notequal:517,\"!=\":517,\"!==\":517,gequal:518,\">=\":518,always:519},Kr={0:0,zero:0,keep:7680,replace:7681,increment:7682,decrement:7683,\"increment wrap\":34055,\"decrement wrap\":34056,invert:5386},Jr={frag:35632,vert:35633},Zr={cw:2304,ccw:qr};function en(t){return Array.isArray(t)||e(t)||G(t)}function tn(e){return e.sort((function(e,t){return e===fr?-1:t===fr?1:e=1,n>=2,t)}if(4===r){var a=e.data;return new rn(a.thisDep,a.contextDep,a.propDep,t)}if(5===r)return new rn(!1,!1,!1,t);if(6===r){for(var i=!1,o=!1,f=!1,u=0;u=1&&(o=!0),c>=2&&(f=!0)}else 4===s.type&&(i=i||s.data.thisDep,o=o||s.data.contextDep,f=f||s.data.propDep)}return new rn(i,o,f,t)}return new rn(3===r,2===r,1===r,t)}var fn=new rn(!1,!1,!1,(function(){}));function un(e,r,n,a,i,o,f,u,s,c,l,d,m,p,h){var b=c.Record,v={add:32774,subtract:32778,\"reverse subtract\":32779};n.ext_blend_minmax&&(v.min=32775,v.max=32776);var g=n.angle_instanced_arrays,y=n.webgl_draw_buffers,x=n.oes_vertex_array_object,w={dirty:!0,profile:h.profile},A={},k=[],S={},O={};function E(e){return e.replace(\".\",\"_\")}function T(e,t,r){var n=E(e);k.push(e),A[n]=w[n]=!!r,S[n]=t}function j(e,t,r){var n=E(e);k.push(e),Array.isArray(r)?(w[n]=r.slice(),A[n]=r.slice()):w[n]=A[n]=r,O[n]=t}T(Vt,3024),T(It,3042),j(Pt,\"blendColor\",[0,0,0,0]),j(Lt,\"blendEquationSeparate\",[32774,32774]),j(Rt,\"blendFuncSeparate\",[1,0,1,0]),T(Mt,2929,!0),j(Wt,\"depthFunc\",513),j(Ut,\"depthRange\",[0,1]),j(Gt,\"depthMask\",!0),j(Ht,Ht,[!0,!0,!0,!0]),T(Nt,2884),j(qt,\"cullFace\",Nr),j(Qt,Qt,qr),j(Yt,Yt,1),T(Xt,32823),j($t,\"polygonOffset\",[0,0]),T(Kt,32926),T(Jt,32928),j(Zt,\"sampleCoverage\",[1,!1]),T(er,2960),j(tr,\"stencilMask\",-1),j(rr,\"stencilFunc\",[519,0,-1]),j(nr,\"stencilOpSeparate\",[Hr,Qr,Qr,Qr]),j(ar,\"stencilOpSeparate\",[Nr,Qr,Qr,Qr]),T(ir,3089),j(or,\"scissor\",[0,0,e.drawingBufferWidth,e.drawingBufferHeight]),j(fr,fr,[0,0,e.drawingBufferWidth,e.drawingBufferHeight]);var C={gl:e,context:m,strings:r,next:A,current:w,draw:d,elements:o,buffer:i,shader:l,attributes:c.state,vao:c,uniforms:s,framebuffer:u,extensions:n,timer:p,isBufferArgs:en},z={primTypes:ie,compareFuncs:$r,blendFuncs:Yr,blendEquations:v,stencilOps:Kr,glTypes:X,orientationType:Zr};_.optional((function(){C.isArrayLike=me})),y&&(z.backBuffer=[Nr],z.drawBuffer=V(a.maxDrawbuffers,(function(e){return 0===e?[0]:V(e,(function(e){return 36064+e}))})));var F=0;function B(){var e=function(){var e=0,r=[],n=[];function a(){var r=[],n=[];return t((function(){r.push.apply(r,zt(arguments))}),{def:function(){var t=\"v\"+e++;return n.push(t),arguments.length>0&&(r.push(t,\"=\"),r.push.apply(r,zt(arguments)),r.push(\";\")),t},toString:function(){return Ft([n.length>0?\"var \"+n.join(\",\")+\";\":\"\",Ft(r)])}})}function i(){var e=a(),r=a(),n=e.toString,i=r.toString;function o(t,n){r(t,n,\"=\",e.def(t,n),\";\")}return t((function(){e.apply(e,zt(arguments))}),{def:e.def,entry:e,exit:r,save:o,set:function(t,r,n){o(t,r),e(t,r,\"=\",n,\";\")},toString:function(){return n()+i()}})}var o=a(),f={};return{global:o,link:function(t){for(var a=0;a=0,'unknown parameter \"'+t+'\"',d.commandStr)}))}t(m),t(p)}));var h=function(e,t){var r=e.static;if(\"string\"==typeof r[lr]&&\"string\"==typeof r[cr]){if(Object.keys(t.dynamic).length>0)return null;var n=t.static,a=Object.keys(n);if(a.length>0&&\"number\"==typeof n[a[0]]){for(var i=[],o=0;o=0,\"invalid \"+e,r.commandStr)):u=!1,\"height\"in i?(f=0|i.height,_.command(f>=0,\"invalid \"+e,r.commandStr)):u=!1,new rn(!u&&t&&t.thisDep,!u&&t&&t.contextDep,!u&&t&&t.propDep,(function(e,t){var r=e.shared.context,n=o;\"width\"in i||(n=t.def(r,\".\",xr,\"-\",s));var a=f;return\"height\"in i||(a=t.def(r,\".\",wr,\"-\",c)),[s,c,n,a]}))}if(e in a){var l=a[e],d=on(l,(function(t,r){var n=t.invoke(r,l);_.optional((function(){t.assert(r,n+\"&&typeof \"+n+'===\"object\"',\"invalid \"+e)}));var a=t.shared.context,i=r.def(n,\".x|0\"),o=r.def(n,\".y|0\"),f=r.def('\"width\" in ',n,\"?\",n,\".width|0:\",\"(\",a,\".\",xr,\"-\",i,\")\"),u=r.def('\"height\" in ',n,\"?\",n,\".height|0:\",\"(\",a,\".\",wr,\"-\",o,\")\");return _.optional((function(){t.assert(r,f+\">=0&&\"+u+\">=0\",\"invalid \"+e)})),[i,o,f,u]}));return t&&(d.thisDep=d.thisDep||t.thisDep,d.contextDep=d.contextDep||t.contextDep,d.propDep=d.propDep||t.propDep),d}return t?new rn(t.thisDep,t.contextDep,t.propDep,(function(e,t){var r=e.shared.context;return[0,0,t.def(r,\".\",xr),t.def(r,\".\",wr)]})):null}var o=i(fr);if(o){var f=o;o=new rn(o.thisDep,o.contextDep,o.propDep,(function(e,t){var r=f.append(e,t),n=e.shared.context;return t.set(n,\".viewportWidth\",r[2]),t.set(n,\".viewportHeight\",r[3]),r}))}return{viewport:o,scissor_box:i(or)}}(e,y,d),w=function(e,t){var r=e.static,n=e.dynamic,a={},i=!1,f=function(){if(vr in r){var e=r[vr];return null!==e&&null===c.getVAO(e)&&(e=c.createVAO(e)),i=!0,a.vao=e,an((function(t){var r=c.getVAO(e);return r?t.link(r):\"null\"}))}if(vr in n){i=!0;var t=n[vr];return on(t,(function(e,r){var n=e.invoke(r,t);return r.def(e.shared.vao+\".getVAO(\"+n+\")\")}))}return null}(),u=!1,s=function(){if(dr in r){var e=r[dr];if(a.elements=e,en(e)){var s=a.elements=o.create(e,!0);e=o.getElements(s),u=!0}else e&&(e=o.getElements(e),u=!0,_.command(e,\"invalid elements\",t.commandStr));var c=an((function(t,r){if(e){var n=t.link(e);return t.ELEMENTS=n,n}return t.ELEMENTS=null,null}));return c.value=e,c}if(dr in n){u=!0;var l=n[dr];return on(l,(function(e,t){var r=e.shared,n=r.isBufferArgs,a=r.elements,i=e.invoke(t,l),o=t.def(\"null\"),f=t.def(n,\"(\",i,\")\"),u=e.cond(f).then(o,\"=\",a,\".createStream(\",i,\");\").else(o,\"=\",a,\".getElements(\",i,\");\");return _.optional((function(){e.assert(u.else,\"!\"+i+\"||\"+o,\"invalid elements\")})),t.entry(u),t.exit(e.cond(f).then(a,\".destroyStream(\",o,\");\")),e.ELEMENTS=o,o}))}return i?new rn(f.thisDep,f.contextDep,f.propDep,(function(e,t){return t.def(e.shared.vao+\".currentVAO?\"+e.shared.elements+\".getElements(\"+e.shared.vao+\".currentVAO.elements):null\")})):null}();function l(e,o){if(e in r){var s=0|r[e];return o?a.offset=s:a.instances=s,_.command(!o||s>=0,\"invalid \"+e,t.commandStr),an((function(e,t){return o&&(e.OFFSET=s),s}))}if(e in n){var c=n[e];return on(c,(function(t,r){var n=t.invoke(r,c);return o&&(t.OFFSET=n,_.optional((function(){t.assert(r,n+\">=0\",\"invalid \"+e)}))),n}))}if(o){if(u)return an((function(e,t){return e.OFFSET=0,0}));if(i)return new rn(f.thisDep,f.contextDep,f.propDep,(function(e,t){return t.def(e.shared.vao+\".currentVAO?\"+e.shared.vao+\".currentVAO.offset:0\")}))}else if(i)return new rn(f.thisDep,f.contextDep,f.propDep,(function(e,t){return t.def(e.shared.vao+\".currentVAO?\"+e.shared.vao+\".currentVAO.instances:-1\")}));return null}var d=l(hr,!0),m=function(){if(mr in r){var e=r[mr];return a.primitive=e,_.commandParameter(e,ie,\"invalid primitve\",t.commandStr),an((function(t,r){return ie[e]}))}if(mr in n){var o=n[mr];return on(o,(function(e,t){var r=e.constants.primTypes,n=e.invoke(t,o);return _.optional((function(){e.assert(t,n+\" in \"+r,\"invalid primitive, must be one of \"+Object.keys(ie))})),t.def(r,\"[\",n,\"]\")}))}return u?nn(s)?s.value?an((function(e,t){return t.def(e.ELEMENTS,\".primType\")})):an((function(){return 4})):new rn(s.thisDep,s.contextDep,s.propDep,(function(e,t){var r=e.ELEMENTS;return t.def(r,\"?\",r,\".primType:\",4)})):i?new rn(f.thisDep,f.contextDep,f.propDep,(function(e,t){return t.def(e.shared.vao+\".currentVAO?\"+e.shared.vao+\".currentVAO.primitive:4\")})):null}(),p=function(){if(pr in r){var e=0|r[pr];return a.count=e,_.command(\"number\"==typeof e&&e>=0,\"invalid vertex count\",t.commandStr),an((function(){return e}))}if(pr in n){var o=n[pr];return on(o,(function(e,t){var r=e.invoke(t,o);return _.optional((function(){e.assert(t,\"typeof \"+r+'===\"number\"&&'+r+\">=0&&\"+r+\"===(\"+r+\"|0)\",\"invalid vertex count\")})),r}))}if(u){if(nn(s)){if(s)return d?new rn(d.thisDep,d.contextDep,d.propDep,(function(e,t){var r=t.def(e.ELEMENTS,\".vertCount-\",e.OFFSET);return _.optional((function(){e.assert(t,r+\">=0\",\"invalid vertex offset/element buffer too small\")})),r})):an((function(e,t){return t.def(e.ELEMENTS,\".vertCount\")}));var c=an((function(){return-1}));return _.optional((function(){c.MISSING=!0})),c}var l=new rn(s.thisDep||d.thisDep,s.contextDep||d.contextDep,s.propDep||d.propDep,(function(e,t){var r=e.ELEMENTS;return e.OFFSET?t.def(r,\"?\",r,\".vertCount-\",e.OFFSET,\":-1\"):t.def(r,\"?\",r,\".vertCount:-1\")}));return _.optional((function(){l.DYNAMIC=!0})),l}if(i){var m=new rn(f.thisDep,f.contextDep,f.propDep,(function(e,t){return t.def(e.shared.vao,\".currentVAO?\",e.shared.vao,\".currentVAO.count:-1\")}));return m}return null}(),h=l(br,!1);return{elements:s,primitive:m,count:p,instances:h,offset:d,vao:f,vaoActive:i,elementsActive:u,static:a}}(e,d),A=function(e,t){var r=e.static,n=e.dynamic,i={};return k.forEach((function(e){var o=E(e);function f(t,a){if(e in r){var f=t(r[e]);i[o]=an((function(){return f}))}else if(e in n){var u=n[e];i[o]=on(u,(function(e,t){return a(e,t,e.invoke(t,u))}))}}switch(e){case Nt:case It:case Vt:case er:case Mt:case ir:case Xt:case Kt:case Jt:case Gt:return f((function(r){return _.commandType(r,\"boolean\",e,t.commandStr),r}),(function(t,r,n){return _.optional((function(){t.assert(r,\"typeof \"+n+'===\"boolean\"',\"invalid flag \"+e,t.commandStr)})),n}));case Wt:return f((function(r){return _.commandParameter(r,$r,\"invalid \"+e,t.commandStr),$r[r]}),(function(t,r,n){var a=t.constants.compareFuncs;return _.optional((function(){t.assert(r,n+\" in \"+a,\"invalid \"+e+\", must be one of \"+Object.keys($r))})),r.def(a,\"[\",n,\"]\")}));case Ut:return f((function(e){return _.command(me(e)&&2===e.length&&\"number\"==typeof e[0]&&\"number\"==typeof e[1]&&e[0]<=e[1],\"depth range is 2d array\",t.commandStr),e}),(function(e,t,r){return _.optional((function(){e.assert(t,e.shared.isArrayLike+\"(\"+r+\")&&\"+r+\".length===2&&typeof \"+r+'[0]===\"number\"&&typeof '+r+'[1]===\"number\"&&'+r+\"[0]<=\"+r+\"[1]\",\"depth range must be a 2d array\")})),[t.def(\"+\",r,\"[0]\"),t.def(\"+\",r,\"[1]\")]}));case Rt:return f((function(e){_.commandType(e,\"object\",\"blend.func\",t.commandStr);var r=\"srcRGB\"in e?e.srcRGB:e.src,n=\"srcAlpha\"in e?e.srcAlpha:e.src,a=\"dstRGB\"in e?e.dstRGB:e.dst,i=\"dstAlpha\"in e?e.dstAlpha:e.dst;return _.commandParameter(r,Yr,o+\".srcRGB\",t.commandStr),_.commandParameter(n,Yr,o+\".srcAlpha\",t.commandStr),_.commandParameter(a,Yr,o+\".dstRGB\",t.commandStr),_.commandParameter(i,Yr,o+\".dstAlpha\",t.commandStr),_.command(-1===Xr.indexOf(r+\", \"+a),\"unallowed blending combination (srcRGB, dstRGB) = (\"+r+\", \"+a+\")\",t.commandStr),[Yr[r],Yr[a],Yr[n],Yr[i]]}),(function(t,r,n){var a=t.constants.blendFuncs;function i(i,o){var f=r.def('\"',i,o,'\" in ',n,\"?\",n,\".\",i,o,\":\",n,\".\",i);return _.optional((function(){t.assert(r,f+\" in \"+a,\"invalid \"+e+\".\"+i+o+\", must be one of \"+Object.keys(Yr))})),f}_.optional((function(){t.assert(r,n+\"&&typeof \"+n+'===\"object\"',\"invalid blend func, must be an object\")}));var o=i(\"src\",\"RGB\"),f=i(\"dst\",\"RGB\");_.optional((function(){var e=t.constants.invalidBlendCombinations;t.assert(r,e+\".indexOf(\"+o+'+\", \"+'+f+\") === -1 \",\"unallowed blending combination for (srcRGB, dstRGB)\")}));var u=r.def(a,\"[\",o,\"]\"),s=r.def(a,\"[\",i(\"src\",\"Alpha\"),\"]\");return[u,r.def(a,\"[\",f,\"]\"),s,r.def(a,\"[\",i(\"dst\",\"Alpha\"),\"]\")]}));case Lt:return f((function(r){return\"string\"==typeof r?(_.commandParameter(r,v,\"invalid \"+e,t.commandStr),[v[r],v[r]]):\"object\"==typeof r?(_.commandParameter(r.rgb,v,e+\".rgb\",t.commandStr),_.commandParameter(r.alpha,v,e+\".alpha\",t.commandStr),[v[r.rgb],v[r.alpha]]):void _.commandRaise(\"invalid blend.equation\",t.commandStr)}),(function(t,r,n){var a=t.constants.blendEquations,i=r.def(),o=r.def(),f=t.cond(\"typeof \",n,'===\"string\"');return _.optional((function(){function r(e,r,n){t.assert(e,n+\" in \"+a,\"invalid \"+r+\", must be one of \"+Object.keys(v))}r(f.then,e,n),t.assert(f.else,n+\"&&typeof \"+n+'===\"object\"',\"invalid \"+e),r(f.else,e+\".rgb\",n+\".rgb\"),r(f.else,e+\".alpha\",n+\".alpha\")})),f.then(i,\"=\",o,\"=\",a,\"[\",n,\"];\"),f.else(i,\"=\",a,\"[\",n,\".rgb];\",o,\"=\",a,\"[\",n,\".alpha];\"),r(f),[i,o]}));case Pt:return f((function(e){return _.command(me(e)&&4===e.length,\"blend.color must be a 4d array\",t.commandStr),V(4,(function(t){return+e[t]}))}),(function(e,t,r){return _.optional((function(){e.assert(t,e.shared.isArrayLike+\"(\"+r+\")&&\"+r+\".length===4\",\"blend.color must be a 4d array\")})),V(4,(function(e){return t.def(\"+\",r,\"[\",e,\"]\")}))}));case tr:return f((function(e){return _.commandType(e,\"number\",o,t.commandStr),0|e}),(function(e,t,r){return _.optional((function(){e.assert(t,\"typeof \"+r+'===\"number\"',\"invalid stencil.mask\")})),t.def(r,\"|0\")}));case rr:return f((function(r){_.commandType(r,\"object\",o,t.commandStr);var n=r.cmp||\"keep\",a=r.ref||0,i=\"mask\"in r?r.mask:-1;return _.commandParameter(n,$r,e+\".cmp\",t.commandStr),_.commandType(a,\"number\",e+\".ref\",t.commandStr),_.commandType(i,\"number\",e+\".mask\",t.commandStr),[$r[n],a,i]}),(function(e,t,r){var n=e.constants.compareFuncs;return _.optional((function(){function a(){e.assert(t,Array.prototype.join.call(arguments,\"\"),\"invalid stencil.func\")}a(r+\"&&typeof \",r,'===\"object\"'),a('!(\"cmp\" in ',r,\")||(\",r,\".cmp in \",n,\")\")})),[t.def('\"cmp\" in ',r,\"?\",n,\"[\",r,\".cmp]\",\":\",Qr),t.def(r,\".ref|0\"),t.def('\"mask\" in ',r,\"?\",r,\".mask|0:-1\")]}));case nr:case ar:return f((function(r){_.commandType(r,\"object\",o,t.commandStr);var n=r.fail||\"keep\",a=r.zfail||\"keep\",i=r.zpass||\"keep\";return _.commandParameter(n,Kr,e+\".fail\",t.commandStr),_.commandParameter(a,Kr,e+\".zfail\",t.commandStr),_.commandParameter(i,Kr,e+\".zpass\",t.commandStr),[e===ar?Nr:Hr,Kr[n],Kr[a],Kr[i]]}),(function(t,r,n){var a=t.constants.stencilOps;function i(i){return _.optional((function(){t.assert(r,'!(\"'+i+'\" in '+n+\")||(\"+n+\".\"+i+\" in \"+a+\")\",\"invalid \"+e+\".\"+i+\", must be one of \"+Object.keys(Kr))})),r.def('\"',i,'\" in ',n,\"?\",a,\"[\",n,\".\",i,\"]:\",Qr)}return _.optional((function(){t.assert(r,n+\"&&typeof \"+n+'===\"object\"',\"invalid \"+e)})),[e===ar?Nr:Hr,i(\"fail\"),i(\"zfail\"),i(\"zpass\")]}));case $t:return f((function(e){_.commandType(e,\"object\",o,t.commandStr);var r=0|e.factor,n=0|e.units;return _.commandType(r,\"number\",o+\".factor\",t.commandStr),_.commandType(n,\"number\",o+\".units\",t.commandStr),[r,n]}),(function(t,r,n){return _.optional((function(){t.assert(r,n+\"&&typeof \"+n+'===\"object\"',\"invalid \"+e)})),[r.def(n,\".factor|0\"),r.def(n,\".units|0\")]}));case qt:return f((function(e){var r=0;return\"front\"===e?r=Hr:\"back\"===e&&(r=Nr),_.command(!!r,o,t.commandStr),r}),(function(e,t,r){return _.optional((function(){e.assert(t,r+'===\"front\"||'+r+'===\"back\"',\"invalid cull.face\")})),t.def(r,'===\"front\"?',Hr,\":\",Nr)}));case Yt:return f((function(e){return _.command(\"number\"==typeof e&&e>=a.lineWidthDims[0]&&e<=a.lineWidthDims[1],\"invalid line width, must be a positive number between \"+a.lineWidthDims[0]+\" and \"+a.lineWidthDims[1],t.commandStr),e}),(function(e,t,r){return _.optional((function(){e.assert(t,\"typeof \"+r+'===\"number\"&&'+r+\">=\"+a.lineWidthDims[0]+\"&&\"+r+\"<=\"+a.lineWidthDims[1],\"invalid line width\")})),r}));case Qt:return f((function(e){return _.commandParameter(e,Zr,o,t.commandStr),Zr[e]}),(function(e,t,r){return _.optional((function(){e.assert(t,r+'===\"cw\"||'+r+'===\"ccw\"',\"invalid frontFace, must be one of cw,ccw\")})),t.def(r+'===\"cw\"?2304:'+qr)}));case Ht:return f((function(e){return _.command(me(e)&&4===e.length,\"color.mask must be length 4 array\",t.commandStr),e.map((function(e){return!!e}))}),(function(e,t,r){return _.optional((function(){e.assert(t,e.shared.isArrayLike+\"(\"+r+\")&&\"+r+\".length===4\",\"invalid color.mask\")})),V(4,(function(e){return\"!!\"+r+\"[\"+e+\"]\"}))}));case Zt:return f((function(e){_.command(\"object\"==typeof e&&e,o,t.commandStr);var r=\"value\"in e?e.value:1,n=!!e.invert;return _.command(\"number\"==typeof r&&r>=0&&r<=1,\"sample.coverage.value must be a number between 0 and 1\",t.commandStr),[r,n]}),(function(e,t,r){return _.optional((function(){e.assert(t,r+\"&&typeof \"+r+'===\"object\"',\"invalid sample.coverage\")})),[t.def('\"value\" in ',r,\"?+\",r,\".value:1\"),t.def(\"!!\",r,\".invert\")]}))}})),i}(e,d),S=function(e,t,n){var a=e.static,i=e.dynamic;function o(e){if(e in a){var t=r.id(a[e]);_.optional((function(){l.shader(Jr[e],t,_.guessCommand())}));var n=an((function(){return t}));return n.id=t,n}if(e in i){var o=i[e];return on(o,(function(t,r){var n=t.invoke(r,o),a=r.def(t.shared.strings,\".id(\",n,\")\");return _.optional((function(){r(t.shared.shader,\".shader(\",Jr[e],\",\",a,\",\",t.command,\");\")})),a}))}return null}var f,u=o(lr),s=o(cr),c=null;return nn(u)&&nn(s)?(c=l.program(s.id,u.id,null,n),f=an((function(e,t){return e.link(c)}))):f=new rn(u&&u.thisDep||s&&s.thisDep,u&&u.contextDep||s&&s.contextDep,u&&u.propDep||s&&s.propDep,(function(e,t){var r,n=e.shared.shader;r=u?u.append(e,t):t.def(n,\".\",lr);var a=n+\".program(\"+(s?s.append(e,t):t.def(n,\".\",cr))+\",\"+r;return _.optional((function(){a+=\",\"+e.command})),t.def(a+\")\")})),{frag:u,vert:s,progVar:f,program:c}}(e,0,h);function O(e){var t=x[e];t&&(A[e]=t)}O(fr),O(E(or));var T=Object.keys(A).length>0,D={framebuffer:y,draw:w,shader:S,state:A,dirty:T,scopeVAO:null,drawVAO:null,useVAO:!1,attributes:{}};if(D.profile=function(e){var t,r=e.static,n=e.dynamic;if(ur in r){var a=!!r[ur];(t=an((function(e,t){return a}))).enable=a}else if(ur in n){var i=n[ur];t=on(i,(function(e,t){return e.invoke(t,i)}))}return t}(e),D.uniforms=function(e,t){var r=e.static,n=e.dynamic,a={};return Object.keys(r).forEach((function(e){var n,i=r[e];if(\"number\"==typeof i||\"boolean\"==typeof i)n=an((function(){return i}));else if(\"function\"==typeof i){var o=i._reglType;\"texture2d\"===o||\"textureCube\"===o?n=an((function(e){return e.link(i)})):\"framebuffer\"===o||\"framebufferCube\"===o?(_.command(i.color.length>0,'missing color attachment for framebuffer sent to uniform \"'+e+'\"',t.commandStr),n=an((function(e){return e.link(i.color[0])}))):_.commandRaise('invalid data for uniform \"'+e+'\"',t.commandStr)}else me(i)?n=an((function(t){return t.global.def(\"[\",V(i.length,(function(r){return _.command(\"number\"==typeof i[r]||\"boolean\"==typeof i[r],\"invalid uniform \"+e,t.commandStr),i[r]})),\"]\")})):_.commandRaise('invalid or missing data for uniform \"'+e+'\"',t.commandStr);n.value=i,a[e]=n})),Object.keys(n).forEach((function(e){var t=n[e];a[e]=on(t,(function(e,r){return e.invoke(r,t)}))})),a}(f,d),D.drawVAO=D.scopeVAO=w.vao,!D.drawVAO&&S.program&&!h&&n.angle_instanced_arrays&&w.static.elements){var j=!0,C=S.program.attributes.map((function(e){var r=t.static[e];return j=j&&!!r,r}));if(j&&C.length>0){var z=c.getVAO(c.createVAO({attributes:C,elements:w.static.elements}));D.drawVAO=new rn(null,null,null,(function(e,t){return e.link(z)})),D.useVAO=!0}}return h?D.useVAO=!0:D.attributes=function(e,t){var n=e.static,a=e.dynamic,o={};return Object.keys(n).forEach((function(e){var a=n[e],f=r.id(e),u=new b;if(en(a))u.state=1,u.buffer=i.getBuffer(i.create(a,Sr,!1,!0)),u.type=0;else{var s=i.getBuffer(a);if(s)u.state=1,u.buffer=s,u.type=0;else if(_.command(\"object\"==typeof a&&a,\"invalid data for attribute \"+e,t.commandStr),\"constant\"in a){var c=a.constant;u.buffer=\"null\",u.state=2,\"number\"==typeof c?u.x=c:(_.command(me(c)&&c.length>0&&c.length<=4,\"invalid constant for attribute \"+e,t.commandStr),Bt.forEach((function(e,t){t=0,'invalid offset for attribute \"'+e+'\"',t.commandStr);var d=0|a.stride;_.command(d>=0&&d<256,'invalid stride for attribute \"'+e+'\", must be integer betweeen [0, 255]',t.commandStr);var m=0|a.size;_.command(!(\"size\"in a)||m>0&&m<=4,'invalid size for attribute \"'+e+'\", must be 1,2,3,4',t.commandStr);var p=!!a.normalized,h=0;\"type\"in a&&(_.commandParameter(a.type,X,\"invalid type for attribute \"+e,t.commandStr),h=X[a.type]);var v=0|a.divisor;_.optional((function(){\"divisor\"in a&&(_.command(0===v||g,'cannot specify divisor for attribute \"'+e+'\", instancing not supported',t.commandStr),_.command(v>=0,'invalid divisor for attribute \"'+e+'\"',t.commandStr));var r=t.commandStr,n=[\"buffer\",\"offset\",\"divisor\",\"normalized\",\"type\",\"size\",\"stride\"];Object.keys(a).forEach((function(t){_.command(n.indexOf(t)>=0,'unknown parameter \"'+t+'\" for attribute pointer \"'+e+'\" (valid parameters are '+n+\")\",r)}))})),u.buffer=s,u.state=1,u.size=m,u.normalized=p,u.type=h||s.dtype,u.offset=l,u.stride=d,u.divisor=v}}o[e]=an((function(e,t){var r=e.attribCache;if(f in r)return r[f];var n={isStream:!1};return Object.keys(u).forEach((function(e){n[e]=u[e]})),u.buffer&&(n.buffer=e.link(u.buffer),n.type=n.type||n.buffer+\".dtype\"),r[f]=n,n}))})),Object.keys(a).forEach((function(e){var t=a[e];o[e]=on(t,(function(r,n){var a=r.invoke(n,t),i=r.shared,o=r.constants,f=i.isBufferArgs,u=i.buffer;_.optional((function(){r.assert(n,a+\"&&(typeof \"+a+'===\"object\"||typeof '+a+'===\"function\")&&('+f+\"(\"+a+\")||\"+u+\".getBuffer(\"+a+\")||\"+u+\".getBuffer(\"+a+\".buffer)||\"+f+\"(\"+a+'.buffer)||(\"constant\" in '+a+\"&&(typeof \"+a+'.constant===\"number\"||'+i.isArrayLike+\"(\"+a+\".constant))))\",'invalid dynamic attribute \"'+e+'\"')}));var s={isStream:n.def(!1)},c=new b;c.state=1,Object.keys(c).forEach((function(e){s[e]=n.def(\"\"+c[e])}));var l=s.buffer,d=s.type;function m(e){n(s[e],\"=\",a,\".\",e,\"|0;\")}return n(\"if(\",f,\"(\",a,\")){\",s.isStream,\"=true;\",l,\"=\",u,\".createStream(\",Sr,\",\",a,\");\",d,\"=\",l,\".dtype;\",\"}else{\",l,\"=\",u,\".getBuffer(\",a,\");\",\"if(\",l,\"){\",d,\"=\",l,\".dtype;\",'}else if(\"constant\" in ',a,\"){\",s.state,\"=\",2,\";\",\"if(typeof \"+a+'.constant === \"number\"){',s[Bt[0]],\"=\",a,\".constant;\",Bt.slice(1).map((function(e){return s[e]})).join(\"=\"),\"=0;\",\"}else{\",Bt.map((function(e,t){return s[e]+\"=\"+a+\".constant.length>\"+t+\"?\"+a+\".constant[\"+t+\"]:0;\"})).join(\"\"),\"}}else{\",\"if(\",f,\"(\",a,\".buffer)){\",l,\"=\",u,\".createStream(\",Sr,\",\",a,\".buffer);\",\"}else{\",l,\"=\",u,\".getBuffer(\",a,\".buffer);\",\"}\",d,'=\"type\" in ',a,\"?\",o.glTypes,\"[\",a,\".type]:\",l,\".dtype;\",s.normalized,\"=!!\",a,\".normalized;\"),m(\"size\"),m(\"offset\"),m(\"stride\"),m(\"divisor\"),n(\"}}\"),n.exit(\"if(\",s.isStream,\"){\",u,\".destroyStream(\",l,\");\",\"}\"),s}))})),o}(t,d),D.context=function(e){var t=e.static,r=e.dynamic,n={};return Object.keys(t).forEach((function(e){var r=t[e];n[e]=an((function(e,t){return\"number\"==typeof r||\"boolean\"==typeof r?\"\"+r:e.link(r)}))})),Object.keys(r).forEach((function(e){var t=r[e];n[e]=on(t,(function(e,r){return e.invoke(r,t)}))})),n}(s),D}function P(e,t,r){var n=e.shared.context,a=e.scope();Object.keys(r).forEach((function(i){t.save(n,\".\"+i);var o=r[i].append(e,t);Array.isArray(o)?a(n,\".\",i,\"=[\",o.join(),\"];\"):a(n,\".\",i,\"=\",o,\";\")})),t(a)}function L(e,t,r,n){var a,i=e.shared,o=i.gl,f=i.framebuffer;y&&(a=t.def(i.extensions,\".webgl_draw_buffers\"));var u,s=e.constants,c=s.drawBuffer,l=s.backBuffer;u=r?r.append(e,t):t.def(f,\".next\"),n||t(\"if(\",u,\"!==\",f,\".cur){\"),t(\"if(\",u,\"){\",o,\".bindFramebuffer(\",36160,\",\",u,\".framebuffer);\"),y&&t(a,\".drawBuffersWEBGL(\",c,\"[\",u,\".colorAttachments.length]);\"),t(\"}else{\",o,\".bindFramebuffer(\",36160,\",null);\"),y&&t(a,\".drawBuffersWEBGL(\",l,\");\"),t(\"}\",f,\".cur=\",u,\";\"),n||t(\"}\")}function R(e,t,r){var n=e.shared,a=n.gl,i=e.current,o=e.next,f=n.current,u=n.next,s=e.cond(f,\".dirty\");k.forEach((function(t){var n,c,l=E(t);if(!(l in r.state))if(l in o){n=o[l],c=i[l];var d=V(w[l].length,(function(e){return s.def(n,\"[\",e,\"]\")}));s(e.cond(d.map((function(e,t){return e+\"!==\"+c+\"[\"+t+\"]\"})).join(\"||\")).then(a,\".\",O[l],\"(\",d,\");\",d.map((function(e,t){return c+\"[\"+t+\"]=\"+e})).join(\";\"),\";\"))}else{n=s.def(u,\".\",l);var m=e.cond(n,\"!==\",f,\".\",l);s(m),l in S?m(e.cond(n).then(a,\".enable(\",S[l],\");\").else(a,\".disable(\",S[l],\");\"),f,\".\",l,\"=\",n,\";\"):m(a,\".\",O[l],\"(\",n,\");\",f,\".\",l,\"=\",n,\";\")}})),0===Object.keys(r.state).length&&s(f,\".dirty=false;\"),t(s)}function M(e,t,r,n){var a=e.shared,i=e.current,o=a.current,f=a.gl;tn(Object.keys(r)).forEach((function(a){var u=r[a];if(!n||n(u)){var s=u.append(e,t);if(S[a]){var c=S[a];nn(u)?t(f,s?\".enable(\":\".disable(\",c,\");\"):t(e.cond(s).then(f,\".enable(\",c,\");\").else(f,\".disable(\",c,\");\")),t(o,\".\",a,\"=\",s,\";\")}else if(me(s)){var l=i[a];t(f,\".\",O[a],\"(\",s,\");\",s.map((function(e,t){return l+\"[\"+t+\"]=\"+e})).join(\";\"),\";\")}else t(f,\".\",O[a],\"(\",s,\");\",o,\".\",a,\"=\",s,\";\")}}))}function W(e,t){g&&(e.instancing=t.def(e.shared.extensions,\".angle_instanced_arrays\"))}function U(e,t,r,n,a){var i,o,f,u=e.shared,s=e.stats,c=u.current,l=u.timer,d=r.profile;function m(){return\"undefined\"==typeof performance?\"Date.now()\":\"performance.now()\"}function h(e){e(i=t.def(),\"=\",m(),\";\"),\"string\"==typeof a?e(s,\".count+=\",a,\";\"):e(s,\".count++;\"),p&&(n?e(o=t.def(),\"=\",l,\".getNumPendingQueries();\"):e(l,\".beginQuery(\",s,\");\"))}function b(e){e(s,\".cpuTime+=\",m(),\"-\",i,\";\"),p&&(n?e(l,\".pushScopeStats(\",o,\",\",l,\".getNumPendingQueries(),\",s,\");\"):e(l,\".endQuery();\"))}function v(e){var r=t.def(c,\".profile\");t(c,\".profile=\",e,\";\"),t.exit(c,\".profile=\",r,\";\")}if(d){if(nn(d))return void(d.enable?(h(t),b(t.exit),v(\"true\")):v(\"false\"));v(f=d.append(e,t))}else f=t.def(c,\".profile\");var g=e.block();h(g),t(\"if(\",f,\"){\",g,\"}\");var y=e.block();b(y),t.exit(\"if(\",f,\"){\",y,\"}\")}function G(e,t,r,n,a){var i=e.shared;n.forEach((function(n){var o,f=n.name,u=r.attributes[f];if(u){if(!a(u))return;o=u.append(e,t)}else{if(!a(fn))return;var s=e.scopeAttrib(f);_.optional((function(){e.assert(t,s+\".state\",\"missing attribute \"+f)})),o={},Object.keys(new b).forEach((function(e){o[e]=t.def(s,\".\",e)}))}!function(r,n,a){var o=i.gl,f=t.def(r,\".location\"),u=t.def(i.attributes,\"[\",f,\"]\"),s=a.state,c=a.buffer,l=[a.x,a.y,a.z,a.w],d=[\"buffer\",\"normalized\",\"offset\",\"stride\"];function m(){t(\"if(!\",u,\".buffer){\",o,\".enableVertexAttribArray(\",f,\");}\");var r,i=a.type;if(r=a.size?t.def(a.size,\"||\",n):n,t(\"if(\",u,\".type!==\",i,\"||\",u,\".size!==\",r,\"||\",d.map((function(e){return u+\".\"+e+\"!==\"+a[e]})).join(\"||\"),\"){\",o,\".bindBuffer(\",Sr,\",\",c,\".buffer);\",o,\".vertexAttribPointer(\",[f,r,i,a.normalized,a.stride,a.offset],\");\",u,\".type=\",i,\";\",u,\".size=\",r,\";\",d.map((function(e){return u+\".\"+e+\"=\"+a[e]+\";\"})).join(\"\"),\"}\"),g){var s=a.divisor;t(\"if(\",u,\".divisor!==\",s,\"){\",e.instancing,\".vertexAttribDivisorANGLE(\",[f,s],\");\",u,\".divisor=\",s,\";}\")}}function p(){t(\"if(\",u,\".buffer){\",o,\".disableVertexAttribArray(\",f,\");\",u,\".buffer=null;\",\"}if(\",Bt.map((function(e,t){return u+\".\"+e+\"!==\"+l[t]})).join(\"||\"),\"){\",o,\".vertexAttrib4f(\",f,\",\",l,\");\",Bt.map((function(e,t){return u+\".\"+e+\"=\"+l[t]+\";\"})).join(\"\"),\"}\")}1===s?m():2===s?p():(t(\"if(\",s,\"===\",1,\"){\"),m(),t(\"}else{\"),p(),t(\"}\"))}(e.link(n),function(e){switch(e){case Tr:case zr:case Ir:return 2;case Dr:case Fr:case Pr:return 3;case jr:case Br:case Lr:return 4;default:return 1}}(n.info.type),o)}))}function H(e,t,n,a,i,o){for(var f,u=e.shared,s=u.gl,c={},l=0;l1){if(!b)continue;var v=m.replace(\"[0]\",\"\");if(c[v])continue;c[v]=1}var g,y=e.link(d)+\".location\";if(b){if(!i(b))continue;if(nn(b)){var x=b.value;if(_.command(null!=x,'missing uniform \"'+m+'\"',e.commandStr),p===Ur||p===Gr){_.command(\"function\"==typeof x&&(p===Ur&&(\"texture2d\"===x._reglType||\"framebuffer\"===x._reglType)||p===Gr&&(\"textureCube\"===x._reglType||\"framebufferCube\"===x._reglType)),\"invalid texture for uniform \"+m,e.commandStr);var w=e.link(x._texture||x.color[0]._texture);t(s,\".uniform1i(\",y,\",\",w+\".bind());\"),t.exit(w,\".unbind();\")}else if(p===Rr||p===Mr||p===Wr){_.optional((function(){_.command(me(x),\"invalid matrix for uniform \"+m,e.commandStr),_.command(p===Rr&&4===x.length||p===Mr&&9===x.length||p===Wr&&16===x.length,\"invalid length for matrix uniform \"+m,e.commandStr)}));var A=e.global.def(\"new Float32Array([\"+Array.prototype.slice.call(x)+\"])\"),k=2;p===Mr?k=3:p===Wr&&(k=4),t(s,\".uniformMatrix\",k,\"fv(\",y,\",false,\",A,\");\")}else{switch(p){case Er:1===h?_.commandType(x,\"number\",\"uniform \"+m,e.commandStr):_.command(me(x)&&x.length===h,\"uniform \"+m,e.commandStr),f=\"1f\";break;case Tr:_.command(me(x)&&x.length&&x.length%2==0&&x.length<=2*h,\"uniform \"+m,e.commandStr),f=\"2f\";break;case Dr:_.command(me(x)&&x.length&&x.length%3==0&&x.length<=3*h,\"uniform \"+m,e.commandStr),f=\"3f\";break;case jr:_.command(me(x)&&x.length&&x.length%4==0&&x.length<=4*h,\"uniform \"+m,e.commandStr),f=\"4f\";break;case Vr:1===h?_.commandType(x,\"boolean\",\"uniform \"+m,e.commandStr):_.command(me(x)&&x.length===h,\"uniform \"+m,e.commandStr),f=\"1i\";break;case Cr:1===h?_.commandType(x,\"number\",\"uniform \"+m,e.commandStr):_.command(me(x)&&x.length===h,\"uniform \"+m,e.commandStr),f=\"1i\";break;case Ir:case zr:_.command(me(x)&&x.length&&x.length%2==0&&x.length<=2*h,\"uniform \"+m,e.commandStr),f=\"2i\";break;case Pr:case Fr:_.command(me(x)&&x.length&&x.length%3==0&&x.length<=3*h,\"uniform \"+m,e.commandStr),f=\"3i\";break;case Lr:case Br:_.command(me(x)&&x.length&&x.length%4==0&&x.length<=4*h,\"uniform \"+m,e.commandStr),f=\"4i\"}h>1?(f+=\"v\",x=e.global.def(\"[\"+Array.prototype.slice.call(x)+\"]\")):x=me(x)?Array.prototype.slice.call(x):x,t(s,\".uniform\",f,\"(\",y,\",\",x,\");\")}continue}g=b.append(e,t)}else{if(!i(fn))continue;g=t.def(u.uniforms,\"[\",r.id(m),\"]\")}p===Ur?(_(!Array.isArray(g),\"must specify a scalar prop for textures\"),t(\"if(\",g,\"&&\",g,'._reglType===\"framebuffer\"){',g,\"=\",g,\".color[0];\",\"}\")):p===Gr&&(_(!Array.isArray(g),\"must specify a scalar prop for cube maps\"),t(\"if(\",g,\"&&\",g,'._reglType===\"framebufferCube\"){',g,\"=\",g,\".color[0];\",\"}\")),_.optional((function(){function r(r,n){e.assert(t,r,'bad data or missing for uniform \"'+m+'\". '+n)}function n(e,t){1===t&&_(!Array.isArray(g),\"must not specify an array type for uniform\"),r(\"Array.isArray(\"+g+\") && typeof \"+g+'[0]===\" '+e+'\" || typeof '+g+'===\"'+e+'\"',\"invalid type, expected \"+e)}function a(t,n,a){Array.isArray(g)?_(g.length&&g.length%t==0&&g.length<=t*a,\"must have length of \"+(1===a?\"\":\"n * \")+t):r(u.isArrayLike+\"(\"+g+\")&&\"+g+\".length && \"+g+\".length % \"+t+\" === 0 && \"+g+\".length<=\"+t*a,\"invalid vector, should have length of \"+(1===a?\"\":\"n * \")+t,e.commandStr)}function i(t){_(!Array.isArray(g),\"must not specify a value type\"),r(\"typeof \"+g+'===\"function\"&&'+g+'._reglType===\"texture'+(3553===t?\"2d\":\"Cube\")+'\"',\"invalid texture type\",e.commandStr)}switch(p){case Cr:n(\"number\",h);break;case zr:a(2,0,h);break;case Fr:a(3,0,h);break;case Br:a(4,0,h);break;case Er:n(\"number\",h);break;case Tr:a(2,0,h);break;case Dr:a(3,0,h);break;case jr:a(4,0,h);break;case Vr:n(\"boolean\",h);break;case Ir:a(2,0,h);break;case Pr:a(3,0,h);break;case Lr:case Rr:a(4,0,h);break;case Mr:a(9,0,h);break;case Wr:a(16,0,h);break;case Ur:i(3553);break;case Gr:i(34067)}}));var S=1;switch(p){case Ur:case Gr:var O=t.def(g,\"._texture\");t(s,\".uniform1i(\",y,\",\",O,\".bind());\"),t.exit(O,\".unbind();\");continue;case Cr:case Vr:f=\"1i\";break;case zr:case Ir:f=\"2i\",S=2;break;case Fr:case Pr:f=\"3i\",S=3;break;case Br:case Lr:f=\"4i\",S=4;break;case Er:f=\"1f\";break;case Tr:f=\"2f\",S=2;break;case Dr:f=\"3f\",S=3;break;case jr:f=\"4f\",S=4;break;case Rr:f=\"Matrix2fv\";break;case Mr:f=\"Matrix3fv\";break;case Wr:f=\"Matrix4fv\"}if(-1===f.indexOf(\"Matrix\")&&h>1&&(f+=\"v\",S=1),\"M\"===f.charAt(0)){t(s,\".uniform\",f,\"(\",y,\",\");var E=Math.pow(p-Rr+2,2),T=e.global.def(\"new Float32Array(\",E,\")\");Array.isArray(g)?t(\"false,(\",V(E,(function(e){return T+\"[\"+e+\"]=\"+g[e]})),\",\",T,\")\"):t(\"false,(Array.isArray(\",g,\")||\",g,\" instanceof Float32Array)?\",g,\":(\",V(E,(function(e){return T+\"[\"+e+\"]=\"+g+\"[\"+e+\"]\"})),\",\",T,\")\"),t(\");\")}else if(S>1){for(var D=[],j=[],C=0;C=0\",\"missing vertex count\")}))):(a=u.def(o,\".\",pr),_.optional((function(){e.assert(u,a+\">=0\",\"missing vertex count\")}))),a}();if(\"number\"==typeof p){if(0===p)return}else r(\"if(\",p,\"){\"),r.exit(\"}\");g&&(c=s(br),l=e.instancing);var h=u+\".type\",b=f.elements&&nn(f.elements)&&!f.vaoActive;function v(){function e(){r(l,\".drawElementsInstancedANGLE(\",[d,p,h,m+\"<<((\"+h+\"-5121)>>1)\",c],\");\")}function t(){r(l,\".drawArraysInstancedANGLE(\",[d,m,p,c],\");\")}u&&\"null\"!==u?b?e():(r(\"if(\",u,\"){\"),e(),r(\"}else{\"),t(),r(\"}\")):t()}function y(){function e(){r(i+\".drawElements(\"+[d,p,h,m+\"<<((\"+h+\"-5121)>>1)\"]+\");\")}function t(){r(i+\".drawArrays(\"+[d,m,p]+\");\")}u&&\"null\"!==u?b?e():(r(\"if(\",u,\"){\"),e(),r(\"}else{\"),t(),r(\"}\")):t()}g&&(\"number\"!=typeof c||c>=0)?\"string\"==typeof c?(r(\"if(\",c,\">0){\"),v(),r(\"}else if(\",c,\"<0){\"),y(),r(\"}\")):v():y()}function q(e,t,r,n,a){var i=B(),o=i.proc(\"body\",a);return _.optional((function(){i.commandStr=t.commandStr,i.command=i.link(t.commandStr)})),g&&(i.instancing=o.def(i.shared.extensions,\".angle_instanced_arrays\")),e(i,o,r,n),i.compile().body}function Q(e,t,r,n){W(e,t),r.useVAO?r.drawVAO?t(e.shared.vao,\".setVAO(\",r.drawVAO.append(e,t),\");\"):t(e.shared.vao,\".setVAO(\",e.shared.vao,\".targetVAO);\"):(t(e.shared.vao,\".setVAO(null);\"),G(e,t,r,n.attributes,(function(){return!0}))),H(e,t,r,n.uniforms,(function(){return!0}),!1),N(e,t,t,r)}function Y(e,t,r,n){function a(){return!0}e.batchId=\"a1\",W(e,t),G(e,t,r,n.attributes,a),H(e,t,r,n.uniforms,a,!1),N(e,t,t,r)}function $(e,t,r,n){W(e,t);var a=r.contextDep,i=t.def(),o=t.def();e.shared.props=o,e.batchId=i;var f=e.scope(),u=e.scope();function s(e){return e.contextDep&&a||e.propDep}function c(e){return!s(e)}if(t(f.entry,\"for(\",i,\"=0;\",i,\"<\",\"a1\",\";++\",i,\"){\",o,\"=\",\"a0\",\"[\",i,\"];\",u,\"}\",f.exit),r.needsContext&&P(e,u,r.context),r.needsFramebuffer&&L(e,u,r.framebuffer),M(e,u,r.state,s),r.profile&&s(r.profile)&&U(e,u,r,!1,!0),n)r.useVAO?r.drawVAO?s(r.drawVAO)?u(e.shared.vao,\".setVAO(\",r.drawVAO.append(e,u),\");\"):f(e.shared.vao,\".setVAO(\",r.drawVAO.append(e,f),\");\"):f(e.shared.vao,\".setVAO(\",e.shared.vao,\".targetVAO);\"):(f(e.shared.vao,\".setVAO(null);\"),G(e,f,r,n.attributes,c),G(e,u,r,n.attributes,s)),H(e,f,r,n.uniforms,c,!1),H(e,u,r,n.uniforms,s,!0),N(e,f,u,r);else{var l=e.global.def(\"{}\"),d=r.shader.progVar.append(e,u),m=u.def(d,\".id\"),p=u.def(l,\"[\",m,\"]\");u(e.shared.gl,\".useProgram(\",d,\".program);\",\"if(!\",p,\"){\",p,\"=\",l,\"[\",m,\"]=\",e.link((function(t){return q(Y,e,r,t,2)})),\"(\",d,\");}\",p,\".call(this,a0[\",i,\"],\",i,\");\")}}function K(e,t,r){var n=t.static[r];if(n&&function(e){if(\"object\"==typeof e&&!me(e)){for(var t=Object.keys(e),r=0;r0&&r(e.shared.current,\".dirty=true;\"),e.shared.vao&&r(e.shared.vao,\".setVAO(null);\")}(f,u),function(e,t){var n=e.proc(\"scope\",3);e.batchId=\"a2\";var a=e.shared,i=a.current;function o(r){var i=t.shader[r];i&&n.set(a.shader,\".\"+r,i.append(e,n))}P(e,n,t.context),t.framebuffer&&t.framebuffer.append(e,n),tn(Object.keys(t.state)).forEach((function(r){var i=t.state[r].append(e,n);me(i)?i.forEach((function(t,a){n.set(e.next[r],\"[\"+a+\"]\",t)})):n.set(a.next,\".\"+r,i)})),U(e,n,t,!0,!0),[dr,hr,pr,br,mr].forEach((function(r){var i=t.draw[r];i&&n.set(a.draw,\".\"+r,\"\"+i.append(e,n))})),Object.keys(t.uniforms).forEach((function(i){var o=t.uniforms[i].append(e,n);Array.isArray(o)&&(o=\"[\"+o.join()+\"]\"),n.set(a.uniforms,\"[\"+r.id(i)+\"]\",o)})),Object.keys(t.attributes).forEach((function(r){var a=t.attributes[r].append(e,n),i=e.scopeAttrib(r);Object.keys(new b).forEach((function(e){n.set(i,\".\"+e,a[e])}))})),t.scopeVAO&&n.set(a.vao,\".targetVAO\",t.scopeVAO.append(e,n)),o(cr),o(lr),Object.keys(t.state).length>0&&(n(i,\".dirty=true;\"),n.exit(i,\".dirty=true;\")),n(\"a1(\",e.shared.context,\",a0,\",e.batchId,\");\")}(f,u),function(e,t){var r=e.proc(\"batch\",2);e.batchId=\"0\",W(e,r);var n=!1,a=!0;Object.keys(t.context).forEach((function(e){n=n||t.context[e].propDep})),n||(P(e,r,t.context),a=!1);var i=t.framebuffer,o=!1;function f(e){return e.contextDep&&n||e.propDep}i?(i.propDep?n=o=!0:i.contextDep&&n&&(o=!0),o||L(e,r,i)):L(e,r,null),t.state.viewport&&t.state.viewport.propDep&&(n=!0),R(e,r,t),M(e,r,t.state,(function(e){return!f(e)})),t.profile&&f(t.profile)||U(e,r,t,!1,\"a1\"),t.contextDep=n,t.needsContext=a,t.needsFramebuffer=o;var u=t.shader.progVar;if(u.contextDep&&n||u.propDep)$(e,r,t,null);else{var s=u.append(e,r);if(r(e.shared.gl,\".useProgram(\",s,\".program);\"),t.shader.program)$(e,r,t,t.shader.program);else{r(e.shared.vao,\".setVAO(null);\");var c=e.global.def(\"{}\"),l=r.def(s,\".id\"),d=r.def(c,\"[\",l,\"]\");r(e.cond(d).then(d,\".call(this,a0,a1);\").else(d,\"=\",c,\"[\",l,\"]=\",e.link((function(r){return q($,e,t,r,2)})),\"(\",s,\");\",d,\".call(this,a0,a1);\"))}}Object.keys(t.state).length>0&&r(e.shared.current,\".dirty=true;\"),e.shared.vao&&r(e.shared.vao,\".setVAO(null);\")}(f,u),t(f.compile(),{destroy:function(){u.shader.program.destroy()}})}}}var sn=function(e,t){if(!t.ext_disjoint_timer_query)return null;var r=[];function n(e){r.push(e)}var a=[];function i(){this.startQueryIndex=-1,this.endQueryIndex=-1,this.sum=0,this.stats=null}var o=[];function f(e){o.push(e)}var u=[];function s(e,t,r){var n=o.pop()||new i;n.startQueryIndex=e,n.endQueryIndex=t,n.sum=0,n.stats=r,u.push(n)}var c=[],l=[];return{beginQuery:function(e){var n=r.pop()||t.ext_disjoint_timer_query.createQueryEXT();t.ext_disjoint_timer_query.beginQueryEXT(35007,n),a.push(n),s(a.length-1,a.length,e)},endQuery:function(){t.ext_disjoint_timer_query.endQueryEXT(35007)},pushScopeStats:s,update:function(){var e,r,i=a.length;if(0!==i){l.length=Math.max(l.length,i+1),c.length=Math.max(c.length,i+1),c[0]=0,l[0]=0;var o=0;for(e=0,r=0;r0)if(Array.isArray(r[0])){f=J(r);for(var c=1,l=1;l0)if(\"number\"==typeof t[0]){var i=L.allocType(d.dtype,t.length);ne(i,t),p(i,a),L.freeType(i)}else if(Array.isArray(t[0])||e(t[0])){n=J(t);var o=K(t,n,d.dtype);p(o,a),L.freeType(o)}else _.raise(\"invalid buffer data\")}else if(G(t)){n=t.shape;var f=t.stride,u=0,s=0,c=0,l=0;1===n.length?(u=n[0],s=1,c=f[0],l=0):2===n.length?(u=n[0],s=n[1],c=f[0],l=f[1]):_.raise(\"invalid shape\");var h=Array.isArray(t.data)?d.dtype:re(t.data),b=L.allocType(h,u*s);ae(b,t.data,u,s,c,l,t.offset),p(b,a),L.freeType(b)}else _.raise(\"invalid data for buffer subdata\");return m},n.profile&&(m.stats=d.stats),m.destroy=function(){l(d)},m},createStream:function(e,t){var r=u.pop();return r||(r=new f(e)),r.bind(),c(r,t,35040,0,1,!1),r},destroyStream:function(e){u.push(e)},clear:function(){H(o).forEach(l),u.forEach(l)},getBuffer:function(e){return e&&e._buffer instanceof f?e._buffer:null},restore:function(){H(o).forEach((function(e){e.buffer=t.createBuffer(),t.bindBuffer(e.type,e.buffer),t.bufferData(e.type,e.persistentData||e.byteLength,e.usage)}))},_initBuffer:c}}(a,l,n,(function(e){return A.destroyBuffer(e)})),w=function(t,r,n,a){var i={},o=0,f={uint8:oe,uint16:fe};function u(e){this.id=o++,i[this.id]=this,this.buffer=e,this.primType=4,this.vertCount=0,this.type=0}r.oes_element_index_uint&&(f.uint32=ue),u.prototype.bind=function(){this.buffer.bind()};var s=[];function c(a,i,o,f,u,s,c){var l;if(a.buffer.bind(),i){var d=c;c||e(i)&&(!G(i)||e(i.data))||(d=r.oes_element_index_uint?ue:fe),n._initBuffer(a.buffer,i,o,d,3)}else t.bufferData(se,s,o),a.buffer.dtype=l||oe,a.buffer.usage=o,a.buffer.dimension=3,a.buffer.byteLength=s;if(l=c,!c){switch(a.buffer.dtype){case oe:case 5120:l=oe;break;case fe:case 5122:l=fe;break;case ue:case 5124:l=ue;break;default:_.raise(\"unsupported type for element array\")}a.buffer.dtype=l}a.type=l,_(l!==ue||!!r.oes_element_index_uint,\"32 bit element buffers not supported, enable oes_element_index_uint first\");var m=u;m<0&&(m=a.buffer.byteLength,l===fe?m>>=1:l===ue&&(m>>=2)),a.vertCount=m;var p=f;if(f<0){p=4;var h=a.buffer.dimension;1===h&&(p=0),2===h&&(p=1),3===h&&(p=4)}a.primType=p}function l(e){a.elementsCount--,_(null!==e.buffer,\"must not double destroy elements\"),delete i[e.id],e.buffer.destroy(),e.buffer=null}return{create:function(t,r){var i=n.create(null,se,!0),o=new u(i._buffer);function s(t){if(t)if(\"number\"==typeof t)i(t),o.primType=4,o.vertCount=0|t,o.type=oe;else{var r=null,n=35044,a=-1,u=-1,l=0,d=0;Array.isArray(t)||e(t)||G(t)?r=t:(_.type(t,\"object\",\"invalid arguments for elements\"),\"data\"in t&&(r=t.data,_(Array.isArray(r)||e(r)||G(r),\"invalid data for element buffer\")),\"usage\"in t&&(_.parameter(t.usage,$,\"invalid element buffer usage\"),n=$[t.usage]),\"primitive\"in t&&(_.parameter(t.primitive,ie,\"invalid element buffer primitive\"),a=ie[t.primitive]),\"count\"in t&&(_(\"number\"==typeof t.count&&t.count>=0,\"invalid vertex count for elements\"),u=0|t.count),\"type\"in t&&(_.parameter(t.type,f,\"invalid buffer type\"),d=f[t.type]),\"length\"in t?l=0|t.length:(l=u,d===fe||5122===d?l*=2:d!==ue&&5124!==d||(l*=4))),c(o,r,n,a,u,l,d)}else i(),o.primType=4,o.vertCount=0,o.type=oe;return s}return a.elementsCount++,s(t),s._reglType=\"elements\",s._elements=o,s.subdata=function(e,t){return i.subdata(e,t),s},s.destroy=function(){l(o)},s},createStream:function(e){var t=s.pop();return t||(t=new u(n.create(null,se,!0,!1)._buffer)),c(t,e,35040,-1,-1,0,0),t},destroyStream:function(e){s.push(e)},getElements:function(e){return\"function\"==typeof e&&e._elements instanceof u?e._elements:null},clear:function(){H(i).forEach(l)}}}(a,d,x,l),A=function(t,r,n,a,i,o,f){for(var u=n.maxAttributes,s=new Array(u),c=0;c{for(var e=Object.keys(t),r=0;r=0,'invalid option for vao: \"'+e[r]+'\" valid options are '+Et)})),_(Array.isArray(a),\"attributes must be an array\")}_(a.length0,\"must specify at least one attribute\");var c={},l=n.attributes;l.length=a.length;for(var d=0;d=b.byteLength?m.subdata(b):(m.destroy(),n.buffers[d]=null)),n.buffers[d]||(m=n.buffers[d]=i.create(p,34962,!1,!0)),h.buffer=i.getBuffer(m),h.size=0|h.buffer.dimension,h.normalized=!1,h.type=h.buffer.dtype,h.offset=0,h.stride=0,h.divisor=0,h.state=1,c[d]=1):i.getBuffer(p)?(h.buffer=i.getBuffer(p),h.size=0|h.buffer.dimension,h.normalized=!1,h.type=h.buffer.dtype,h.offset=0,h.stride=0,h.divisor=0,h.state=1):i.getBuffer(p.buffer)?(h.buffer=i.getBuffer(p.buffer),h.size=0|(+p.size||h.buffer.dimension),h.normalized=!!p.normalized||!1,\"type\"in p?(_.parameter(p.type,X,\"invalid buffer type\"),h.type=X[p.type]):h.type=h.buffer.dtype,h.offset=0|(p.offset||0),h.stride=0|(p.stride||0),h.divisor=0|(p.divisor||0),h.state=1,_(h.size>=1&&h.size<=4,\"size must be between 1 and 4\"),_(h.offset>=0,\"invalid offset\"),_(h.stride>=0&&h.stride<=255,\"stride must be between 0 and 255\"),_(h.divisor>=0,\"divisor must be positive\"),_(!h.divisor||!!r.angle_instanced_arrays,\"ANGLE_instanced_arrays must be enabled to use divisor\")):\"x\"in p?(_(d>0,\"first attribute must not be a constant\"),h.x=+p.x||0,h.y=+p.y||0,h.z=+p.z||0,h.w=+p.w||0,h.state=2):_(!1,\"invalid attribute spec for location \"+d)}for(var v=0;v1)for(var v=0;v1&&(y=y.replace(\"[0]\",\"\")),u(b,new f(y,r.id(y),e.getUniformLocation(m,y),c))}var x=e.getProgramParameter(m,35721);a.profile&&(t.stats.attributesCount=x);var w=t.attributes;for(o=0;oe&&(e=t.stats.uniformsCount)})),e},n.getMaxAttributesCount=function(){var e=0;return l.forEach((function(t){t.stats.attributesCount>e&&(e=t.stats.attributesCount)})),e}),{clear:function(){var t=e.deleteShader.bind(e);H(i).forEach(t),i={},H(o).forEach(t),o={},l.forEach((function(t){e.deleteProgram(t.program)})),l.length=0,c={},n.shaderCount=0},program:function(r,a,f,u){_.command(r>=0,\"missing vertex shader\",f),_.command(a>=0,\"missing fragment shader\",f);var s=c[a];s||(s=c[a]={});var d=s[r];if(d&&(d.refCount++,!u))return d;var h=new m(a,r);return n.shaderCount++,p(h,f,u),d||(s[r]=h),l.push(h),t(h,{destroy:function(){if(h.refCount--,h.refCount<=0){e.deleteProgram(h.program);var t=l.indexOf(h);l.splice(t,1),n.shaderCount--}s[h.vertId].refCount<=0&&(e.deleteShader(o[h.vertId]),delete o[h.vertId],delete c[h.fragId][h.vertId]),Object.keys(c[h.fragId]).length||(e.deleteShader(i[h.fragId]),delete i[h.fragId],delete c[h.fragId])}})},restore:function(){i={},o={};for(var e=0;e=2,\"invalid renderbuffer shape\"),f=0|m[0],u=0|m[1]}else\"radius\"in d&&(f=u=0|d.radius),\"width\"in d&&(f=0|d.width),\"height\"in d&&(u=0|d.height);\"format\"in d&&(_.parameter(d.format,i,\"invalid renderbuffer format\"),s=i[d.format])}else\"number\"==typeof t?(f=0|t,u=\"number\"==typeof n?0|n:f):t?_.raise(\"invalid arguments to renderbuffer constructor\"):f=u=1;if(_(f>0&&u>0&&f<=r.maxRenderbufferSize&&u<=r.maxRenderbufferSize,\"invalid renderbuffer size\"),f!==c.width||u!==c.height||s!==c.format)return l.width=c.width=f,l.height=c.height=u,c.format=s,e.bindRenderbuffer(mt,c.renderbuffer),e.renderbufferStorage(mt,s,f,u),_(0===e.getError(),\"invalid render buffer format\"),a.profile&&(c.stats.size=bt(c.format,c.width,c.height)),l.format=o[c.format],l}return u[c.id]=c,n.renderbufferCount++,l(t,f),l.resize=function(t,n){var i=0|t,o=0|n||i;return i===c.width&&o===c.height||(_(i>0&&o>0&&i<=r.maxRenderbufferSize&&o<=r.maxRenderbufferSize,\"invalid renderbuffer size\"),l.width=c.width=i,l.height=c.height=o,e.bindRenderbuffer(mt,c.renderbuffer),e.renderbufferStorage(mt,c.format,i,o),_(0===e.getError(),\"invalid render buffer format\"),a.profile&&(c.stats.size=bt(c.format,c.width,c.height))),l},l._reglType=\"renderbuffer\",l._renderbuffer=c,a.profile&&(l.stats=c.stats),l.destroy=function(){c.decRef()},l},clear:function(){H(u).forEach(c)},restore:function(){H(u).forEach((function(t){t.renderbuffer=e.createRenderbuffer(),e.bindRenderbuffer(mt,t.renderbuffer),e.renderbufferStorage(mt,t.format,t.width,t.height)})),e.bindRenderbuffer(mt,null)}}}(a,d,y,l,n),E=function(e,r,n,a,i,o){var f={cur:null,next:null,dirty:!1,setFBO:null},u=[\"rgba\"],s=[\"rgba4\",\"rgb565\",\"rgb5 a1\"];r.ext_srgb&&s.push(\"srgba\"),r.ext_color_buffer_half_float&&s.push(\"rgba16f\",\"rgb16f\"),r.webgl_color_buffer_float&&s.push(\"rgba32f\");var c=[\"uint8\"];function l(e,t,r){this.target=e,this.texture=t,this.renderbuffer=r;var n=0,a=0;t?(n=t.width,a=t.height):r&&(n=r.width,a=r.height),this.width=n,this.height=a}function d(e){e&&(e.texture&&e.texture._texture.decRef(),e.renderbuffer&&e.renderbuffer._renderbuffer.decRef())}function m(e,t,r){if(e)if(e.texture){var n=e.texture._texture,a=Math.max(1,n.width),i=Math.max(1,n.height);_(a===t&&i===r,\"inconsistent width/height for supplied texture\"),n.refCount+=1}else{var o=e.renderbuffer._renderbuffer;_(o.width===t&&o.height===r,\"inconsistent width/height for renderbuffer\"),o.refCount+=1}}function p(t,r){r&&(r.texture?e.framebufferTexture2D(vt,t,r.target,r.texture._texture.texture,0):e.framebufferRenderbuffer(vt,t,gt,r.renderbuffer._renderbuffer.renderbuffer))}function h(e){var t=yt,r=null,n=null,a=e;\"object\"==typeof e&&(a=e.data,\"target\"in e&&(t=0|e.target)),_.type(a,\"function\",\"invalid attachment data\");var i=a._reglType;return\"texture2d\"===i?(r=a,_(t===yt)):\"textureCube\"===i?(r=a,_(t>=xt&&t<34075,\"invalid cube map target\")):\"renderbuffer\"===i?(n=a,t=gt):_.raise(\"invalid regl object for attachment\"),new l(t,r,n)}function b(e,t,r,n,o){if(r){var f=a.create2D({width:e,height:t,format:n,type:o});return f._texture.refCount=0,new l(yt,f,null)}var u=i.create({width:e,height:t,format:n});return u._renderbuffer.refCount=0,new l(gt,null,u)}function v(e){return e&&(e.texture||e.renderbuffer)}function g(e,t,r){e&&(e.texture?e.texture.resize(t,r):e.renderbuffer&&e.renderbuffer.resize(t,r),e.width=t,e.height=r)}r.oes_texture_half_float&&c.push(\"half float\",\"float16\"),r.oes_texture_float&&c.push(\"float\",\"float32\");var y=0,x={};function w(){this.id=y++,x[this.id]=this,this.framebuffer=e.createFramebuffer(),this.width=0,this.height=0,this.colorAttachments=[],this.depthAttachment=null,this.stencilAttachment=null,this.depthStencilAttachment=null}function A(e){e.colorAttachments.forEach(d),d(e.depthAttachment),d(e.stencilAttachment),d(e.depthStencilAttachment)}function k(t){var r=t.framebuffer;_(r,\"must not double destroy framebuffer\"),e.deleteFramebuffer(r),t.framebuffer=null,o.framebufferCount--,delete x[t.id]}function S(t){var r;e.bindFramebuffer(vt,t.framebuffer);var a=t.colorAttachments;for(r=0;r=2,\"invalid shape for framebuffer\"),o=z[0],d=z[1]}else\"radius\"in C&&(o=d=C.radius),\"width\"in C&&(o=C.width),\"height\"in C&&(d=C.height);(\"color\"in C||\"colors\"in C)&&(y=C.color||C.colors,Array.isArray(y)&&_(1===y.length||r.webgl_draw_buffers,\"multiple render targets not supported\")),y||(\"colorCount\"in C&&(O=0|C.colorCount,_(O>0,\"invalid color buffer count\")),\"colorTexture\"in C&&(x=!!C.colorTexture,w=\"rgba4\"),\"colorType\"in C&&(k=C.colorType,x?(_(r.oes_texture_float||!(\"float\"===k||\"float32\"===k),\"you must enable OES_texture_float in order to use floating point framebuffer objects\"),_(r.oes_texture_half_float||!(\"half float\"===k||\"float16\"===k),\"you must enable OES_texture_half_float in order to use 16-bit floating point framebuffer objects\")):\"half float\"===k||\"float16\"===k?(_(r.ext_color_buffer_half_float,\"you must enable EXT_color_buffer_half_float to use 16-bit render buffers\"),w=\"rgba16f\"):\"float\"!==k&&\"float32\"!==k||(_(r.webgl_color_buffer_float,\"you must enable WEBGL_color_buffer_float in order to use 32-bit floating point renderbuffers\"),w=\"rgba32f\"),_.oneOf(k,c,\"invalid color type\")),\"colorFormat\"in C&&(w=C.colorFormat,u.indexOf(w)>=0?x=!0:s.indexOf(w)>=0?x=!1:_.optional((function(){x?_.oneOf(C.colorFormat,u,\"invalid color format for texture\"):_.oneOf(C.colorFormat,s,\"invalid color format for renderbuffer\")})))),(\"depthTexture\"in C||\"depthStencilTexture\"in C)&&(j=!(!C.depthTexture&&!C.depthStencilTexture),_(!j||r.webgl_depth_texture,\"webgl_depth_texture extension not supported\")),\"depth\"in C&&(\"boolean\"==typeof C.depth?p=C.depth:(E=C.depth,g=!1)),\"stencil\"in C&&(\"boolean\"==typeof C.stencil?g=C.stencil:(T=C.stencil,p=!1)),\"depthStencil\"in C&&(\"boolean\"==typeof C.depthStencil?p=g=C.depthStencil:(D=C.depthStencil,p=!1,g=!1))}else o=d=1;var F=null,B=null,V=null,I=null;if(Array.isArray(y))F=y.map(h);else if(y)F=[h(y)];else for(F=new Array(O),a=0;a=0||F[a].renderbuffer&&kt.indexOf(F[a].renderbuffer._renderbuffer.format)>=0,\"framebuffer color attachment \"+a+\" is invalid\"),F[a]&&F[a].texture){var L=At[F[a].texture._texture.format]*_t[F[a].texture._texture.type];null===P?P=L:_(P===L,\"all color attachments much have the same number of bits per pixel.\")}return m(B,o,d),_(!B||B.texture&&6402===B.texture._texture.format||B.renderbuffer&&33189===B.renderbuffer._renderbuffer.format,\"invalid depth attachment for framebuffer object\"),m(V,o,d),_(!V||V.renderbuffer&&36168===V.renderbuffer._renderbuffer.format,\"invalid stencil attachment for framebuffer object\"),m(I,o,d),_(!I||I.texture&&34041===I.texture._texture.format||I.renderbuffer&&34041===I.renderbuffer._renderbuffer.format,\"invalid depth-stencil attachment for framebuffer object\"),A(i),i.width=o,i.height=d,i.colorAttachments=F,i.depthAttachment=B,i.stencilAttachment=V,i.depthStencilAttachment=I,l.color=F.map(v),l.depth=v(B),l.stencil=v(V),l.depthStencil=v(I),l.width=i.width,l.height=i.height,S(i),l}return o.framebufferCount++,l(e,a),t(l,{resize:function(e,t){_(f.next!==i,\"can not resize a framebuffer which is currently in use\");var r=Math.max(0|e,1),n=Math.max(0|t||r,1);if(r===i.width&&n===i.height)return l;for(var a=i.colorAttachments,o=0;o=2,\"invalid shape for framebuffer\"),_(g[0]===g[1],\"cube framebuffer must be square\"),d=g[0]}else\"radius\"in v&&(d=0|v.radius),\"width\"in v?(d=0|v.width,\"height\"in v&&_(v.height===d,\"must be square\")):\"height\"in v&&(d=0|v.height);(\"color\"in v||\"colors\"in v)&&(m=v.color||v.colors,Array.isArray(m)&&_(1===m.length||r.webgl_draw_buffers,\"multiple render targets not supported\")),m||(\"colorCount\"in v&&(b=0|v.colorCount,_(b>0,\"invalid color buffer count\")),\"colorType\"in v&&(_.oneOf(v.colorType,c,\"invalid color type\"),h=v.colorType),\"colorFormat\"in v&&(p=v.colorFormat,_.oneOf(v.colorFormat,u,\"invalid color format for texture\"))),\"depth\"in v&&(l.depth=v.depth),\"stencil\"in v&&(l.stencil=v.stencil),\"depthStencil\"in v&&(l.depthStencil=v.depthStencil)}else d=1;if(m)if(Array.isArray(m))for(s=[],n=0;n0&&(l.depth=i[0].depth,l.stencil=i[0].stencil,l.depthStencil=i[0].depthStencil),i[n]?i[n](l):i[n]=O(l)}return t(o,{width:d,height:d,color:s})}return o(e),t(o,{faces:i,resize:function(e){var t,r=0|e;if(_(r>0&&r<=n.maxCubeMapSize,\"invalid radius for cube fbo\"),r===o.width)return o;var a=o.color;for(t=0;t=0;--e){var t=I[e];t&&t(v,null,0)}a.flush(),m&&m.update()}function ce(){!Q&&I.length>0&&(Q=j.next(Y))}function le(){Q&&(j.cancel(Y),Q=null)}function de(e){e.preventDefault(),o=!0,le(),P.forEach((function(e){e()}))}function me(e){a.getError(),o=!1,f.restore(),k.restore(),x.restore(),S.restore(),O.restore(),E.restore(),A.restore(),m&&m.restore(),T.procs.refresh(),ce(),N.forEach((function(e){e()}))}function pe(e){function r(e,t){var r={},n={};return Object.keys(e).forEach((function(a){var i=e[a];if(D.isDynamic(i))n[a]=D.unbox(i,a);else{if(t&&Array.isArray(i))for(var o=0;o0)return l.call(this,function(e){for(;m.length=0,\"cannot cancel a frame twice\"),I[t]=function e(){var t=dn(I,e);I[t]=I[I.length-1],I.length-=1,I.length<=0&&le()}}}}function ge(){var e=F.viewport,t=F.scissor_box;e[0]=e[1]=t[0]=t[1]=0,v.viewportWidth=v.framebufferWidth=v.drawingBufferWidth=e[2]=t[2]=a.drawingBufferWidth,v.viewportHeight=v.framebufferHeight=v.drawingBufferHeight=e[3]=t[3]=a.drawingBufferHeight}function ye(){v.tick+=1,v.time=we(),ge(),T.procs.poll()}function xe(){S.refresh(),ge(),T.procs.refresh(),m&&m.update()}function we(){return(C()-p)/1e3}xe();var Ae=t(pe,{clear:function(e){if(_(\"object\"==typeof e&&e,\"regl.clear() takes an object as input\"),\"framebuffer\"in e)if(e.framebuffer&&\"framebufferCube\"===e.framebuffer_reglType)for(var r=0;r<6;++r)he(t({framebuffer:e.framebuffer.faces[r]},e),be);else he(e,be);else be(0,e)},prop:D.define.bind(null,1),context:D.define.bind(null,2),this:D.define.bind(null,3),draw:pe({}),buffer:function(e){return x.create(e,34962,!1,!1)},elements:function(e){return w.create(e,!1)},texture:S.create2D,cube:S.createCube,renderbuffer:O.create,framebuffer:E.create,framebufferCube:E.createCube,vao:A.createVAO,attributes:i,frame:ve,on:function(e,t){var r;switch(_.type(t,\"function\",\"listener callback must be a function\"),e){case\"frame\":return ve(t);case\"lost\":r=P;break;case\"restore\":r=N;break;case\"destroy\":r=q;break;default:_.raise(\"invalid event, must be one of frame,lost,restore,destroy\")}return r.push(t),{cancel:function(){for(var e=0;e=0},read:z,destroy:function(){I.length=0,le(),V&&(V.removeEventListener(cn,de),V.removeEventListener(ln,me)),k.clear(),E.clear(),O.clear(),A.clear(),S.clear(),w.clear(),x.clear(),m&&m.clear(),q.forEach((function(e){e()}))},_gl:a,_refresh:xe,poll:function(){ye(),m&&m.update()},now:we,stats:l});return n.onDone(null,Ae),Ae}},\"object\"==typeof r&&void 0!==t?t.exports=o():\"function\"==typeof define&&define.amd?define(o):i.createREGL=o()},\n", + " 413: function _(t,e,a,s,r){s();const n=t(414),_=t(9),o=t(12);class c{constructor(t){this._regl=t,this._map=new Map}_create_texture(t){const e=t.length;let a=0;const s=[];let r=0,_=0;for(let n=0;nc[f+1]&&f++;const s=t[f],n=c[f]+.5*s;let o=.5*s-Math.abs(a-n);f%2==1&&(o=-o),m[e]=Math.round(255*(o-r)/(_-r))}return[[a,u,r,_],this._regl.texture({shape:[l,1,1],data:m,wrapS:\"repeat\",format:\"alpha\",type:\"uint8\",mag:\"linear\",min:\"linear\"})]}_get_key(t){return t.join(\",\")}_get_or_create(t){const e=this._get_key(t);let a=this._map.get(e);if(null==a){const s=(0,n.gcd)(t);if(s>1){t=(0,o.map)(t,(t=>t/s)),a=this._get_or_create(t);const[r,n,_]=a;a=[r,n,s],this._map.set(e,a)}else{const[r,n]=this._create_texture(t);a=[r,n,s],this._map.set(e,a)}}return a}get(t){return t.length%2==1&&(t=(0,_.concat)([t,t])),this._get_or_create(t)}}a.DashCache=c,c.__name__=\"DashCache\"},\n", + " 414: function _(n,t,e,r,o){function u(n,t){let e,r;n>t?(e=n,r=t):(e=t,r=n);let o=e%r;for(;0!=o;)e=r,r=o,o=e%r;return r}r(),e.gcd=function(n){let t=n[0];for(let e=1;e= 0.0 ? 1.0 : -1.0;\\n}\\n\\nvoid main()\\n{\\n if (a_show_curr < 0.5) {\\n // Line segment has non-finite value at one or both ends, do not render.\\n gl_Position = vec4(-2.0, -2.0, 0.0, 1.0);\\n return;\\n }\\n\\n const float min_miter_factor_round_join_mesh = sqrt(2.0);\\n\\n int join_type = int(u_line_join + 0.5);\\n int cap_type = int(u_line_cap + 0.5);\\n float halfwidth = 0.5*(u_linewidth + u_antialias);\\n vec2 segment_along = normalize(a_point_end - a_point_start); // unit vector.\\n v_segment_length = length(a_point_end - a_point_start);\\n vec2 segment_right = right_vector(segment_along); // unit vector.\\n vec2 xy;\\n\\n bool miter_too_large_start = false;\\n bool miter_too_large_end = false;\\n\\n v_coords.y = a_position.y*halfwidth; // Overwritten later for end points.\\n\\n bool has_start_cap = a_show_prev < 0.5;\\n bool has_end_cap = a_show_next < 0.5;\\n\\n vec2 point_normal_start;\\n float cos_theta_start;\\n float turn_right_start;\\n if (has_start_cap)\\n point_normal_start = segment_right;\\n else {\\n vec2 prev_right = right_vector(normalize(a_point_start - a_point_prev));\\n point_normal_start = normalize(segment_right + prev_right);\\n cos_theta_start = dot(segment_right, point_normal_start); // Always +ve\\n turn_right_start = sign_no_zero(dot(segment_right, a_point_prev - a_point_start));\\n }\\n\\n vec2 point_normal_end;\\n float cos_theta_end;\\n float turn_right_end;\\n if (has_end_cap)\\n point_normal_end = segment_right;\\n else {\\n vec2 next_right = right_vector(normalize(a_point_next - a_point_end));\\n point_normal_end = normalize(segment_right + next_right);\\n cos_theta_end = dot(segment_right, point_normal_end); // Always +ve\\n turn_right_end = sign_no_zero(dot(segment_right, a_point_next - a_point_end));\\n }\\n\\n float miter_factor_start = 1.0 / dot(segment_right, point_normal_start);\\n float miter_factor_end = 1.0 / dot(segment_right, point_normal_end);\\n if (join_type == miter_join) {\\n // If miter too large, use bevel join instead.\\n miter_too_large_start = (miter_factor_start > u_miter_limit);\\n miter_too_large_end = (miter_factor_end > u_miter_limit);\\n }\\n\\n float sign_at_start = -sign(a_position.x); // +ve at segment start, -ve end.\\n vec2 point = sign_at_start > 0.0 ? a_point_start : a_point_end;\\n vec2 adjacent_point =\\n sign_at_start > 0.0 ? (has_start_cap ? a_point_start : a_point_prev)\\n : (has_end_cap ? a_point_end : a_point_next);\\n\\n if ( (has_start_cap && sign_at_start > 0.0) ||\\n (has_end_cap && sign_at_start < 0.0) ) {\\n // Cap.\\n xy = point - segment_right*(halfwidth*a_position.y);\\n if (cap_type == butt_cap)\\n xy -= sign_at_start*0.5*u_antialias*segment_along;\\n else\\n xy -= sign_at_start*halfwidth*segment_along;\\n }\\n else { // Join.\\n // +ve if turning to right, -ve if to left.\\n float turn_sign = sign_at_start > 0.0 ? turn_right_start : turn_right_end;\\n\\n vec2 adjacent_right = sign_at_start*normalize(right_vector(point - adjacent_point));\\n vec2 point_right = normalize(segment_right + adjacent_right);\\n float miter_factor = sign_at_start > 0.0 ? miter_factor_start : miter_factor_end;\\n bool miter_too_large = sign_at_start > 0.0 ? miter_too_large_start : miter_too_large_end;\\n\\n if (abs(a_position.x) > 1.5) {\\n // Outer point, meets prev/next segment.\\n float factor; // multiplied by halfwidth...\\n\\n if (join_type == bevel_join || (join_type == miter_join && miter_too_large))\\n factor = 1.0 / miter_factor; // cos_theta.\\n else if (join_type == round_join &&\\n miter_factor > min_miter_factor_round_join_mesh)\\n factor = 1.0;\\n else // miter, or round (small angle only).\\n factor = miter_factor;\\n\\n xy = point - point_right*(halfwidth*turn_sign*factor);\\n v_coords.y = turn_sign*halfwidth*factor / miter_factor;\\n }\\n else if (turn_sign*a_position.y < 0.0) {\\n // Inner point, meets prev/next segment.\\n float len = halfwidth*miter_factor;\\n float segment_len = v_segment_length;\\n float adjacent_len = distance(point, adjacent_point);\\n\\n if (len <= min(segment_len, adjacent_len))\\n // Normal behaviour.\\n xy = point - point_right*(len*a_position.y);\\n else\\n // For short wide line segments the inner point using the above\\n // calculation can be outside of the line. Here clipping it.\\n xy = point + segment_right*(halfwidth*turn_sign);\\n }\\n else {\\n // Point along outside edge.\\n xy = point - segment_right*(halfwidth*a_position.y);\\n if (join_type == round_join &&\\n miter_factor > min_miter_factor_round_join_mesh) {\\n xy = line_intersection(xy, segment_along,\\n point - turn_sign*point_right*halfwidth,\\n right_vector(point_right));\\n }\\n }\\n }\\n\\n vec2 pos = xy + 0.5; // Bokeh's offset.\\n pos /= u_canvas_size / u_pixel_ratio; // in 0..1\\n gl_Position = vec4(2.0*pos.x - 1.0, 1.0 - 2.0*pos.y, 0.0, 1.0);\\n\\n v_coords.x = dot(xy - a_point_start, segment_along);\\n v_flags = float(int(has_start_cap) +\\n 2*int(has_end_cap) +\\n 4*int(miter_too_large_start) +\\n 8*int(miter_too_large_end));\\n v_cos_theta_turn_right_start = cos_theta_start*turn_right_start;\\n v_cos_theta_turn_right_end = cos_theta_end*turn_right_end;\\n\\n#ifdef DASHED\\n v_length_so_far = a_length_so_far;\\n#endif\\n}\\n\"},\n", + " 416: function _(n,t,a,i,e){i();a.default=\"\\nprecision mediump float;\\n\\nconst int butt_cap = 0;\\nconst int round_cap = 1;\\nconst int square_cap = 2;\\n\\nconst int miter_join = 0;\\nconst int round_join = 1;\\nconst int bevel_join = 2;\\n\\nuniform float u_linewidth;\\nuniform float u_antialias;\\nuniform float u_line_join;\\nuniform float u_line_cap;\\nuniform vec4 u_line_color;\\n#ifdef DASHED\\nuniform sampler2D u_dash_tex;\\nuniform vec4 u_dash_tex_info;\\nuniform float u_dash_scale;\\nuniform float u_dash_offset;\\n#endif\\n\\nvarying float v_segment_length;\\nvarying vec2 v_coords;\\nvarying float v_flags;\\nvarying float v_cos_theta_turn_right_start;\\nvarying float v_cos_theta_turn_right_end;\\n#ifdef DASHED\\nvarying float v_length_so_far;\\n#endif\\n\\nfloat cross_z(in vec2 v0, in vec2 v1)\\n{\\n return v0.x*v1.y - v0.y*v1.x;\\n}\\n\\nfloat point_line_side(in vec2 point, in vec2 start, in vec2 end)\\n{\\n // +ve if point to right of line.\\n // Alternatively could do dot product with right_vector.\\n return cross_z(point - start, end - start);\\n}\\n\\nfloat point_line_distance(in vec2 point, in vec2 start, in vec2 end)\\n{\\n return point_line_side(point, start, end) / distance(start, end);\\n}\\n\\nvec2 right_vector(in vec2 v)\\n{\\n return vec2(v.y, -v.x);\\n}\\n\\nfloat bevel_join_distance(in float sign_start, in float halfwidth)\\n{\\n float cos_theta_turn_right = sign_start > 0.0 ? v_cos_theta_turn_right_start\\n : v_cos_theta_turn_right_end;\\n float cos_theta = abs(cos_theta_turn_right);\\n float turn_right = sign(cos_theta_turn_right);\\n float distance_along = sign_start > 0.0 ? 0.0 : v_segment_length;\\n\\n // In v_coords reference frame (x is along segment, y across).\\n vec2 line_start = vec2(distance_along, halfwidth*turn_right);\\n float sin_alpha = cos_theta;\\n float cos_alpha = sqrt(1.0 - sin_alpha*sin_alpha);\\n vec2 line_along = vec2(-sign_start*turn_right*sin_alpha, -cos_alpha);\\n\\n return halfwidth + sign_start*point_line_distance(\\n v_coords, line_start, line_start+line_along);\\n}\\n\\nfloat cap(in int cap_type, in float x, in float y)\\n{\\n // x is distance along segment in direction away from end of segment,\\n // y is distance across segment.\\n if (cap_type == butt_cap)\\n return max(0.5*u_linewidth - x, abs(y));\\n else if (cap_type == square_cap)\\n return max(-x, abs(y));\\n else // cap_type == round_cap\\n return distance(vec2(min(x, 0.0), y), vec2(0.0, 0.0));\\n}\\n\\nfloat distance_to_alpha(in float dist)\\n{\\n return 1.0 - smoothstep(0.5*(u_linewidth - u_antialias),\\n 0.5*(u_linewidth + u_antialias), dist);\\n}\\n\\n#ifdef DASHED\\nfloat dash_distance(in float x)\\n{\\n // x is in direction of v_coords.x, i.e. along segment.\\n float tex_length = u_dash_tex_info.x;\\n float tex_offset = u_dash_tex_info.y;\\n float tex_dist_min = u_dash_tex_info.z;\\n float tex_dist_max = u_dash_tex_info.w;\\n\\n // Apply offset.\\n x += v_length_so_far - u_dash_scale*tex_offset + u_dash_offset;\\n\\n // Interpolate within texture to obtain distance to dash.\\n float dist = texture2D(u_dash_tex,\\n vec2(x / (tex_length*u_dash_scale), 0.0)).a;\\n\\n // Scale distance within min and max limits.\\n dist = tex_dist_min + dist*(tex_dist_max - tex_dist_min);\\n\\n return u_dash_scale*dist;\\n}\\n\\nfloat clip_dash_distance(in float x, in float offset, in float sign_along)\\n{\\n // Return clipped dash distance, sign_along is +1.0 if looking forward\\n // into next segment and -1.0 if looking backward into previous segment.\\n float half_antialias = 0.5*u_antialias;\\n\\n if (sign_along*x > half_antialias) {\\n // Outside antialias region, use usual dash distance.\\n return dash_distance(offset + x);\\n }\\n else {\\n // Inside antialias region.\\n // Dash distance at edge of antialias region clipped to half_antialias.\\n float edge_dist = min(dash_distance(offset + sign_along*half_antialias), half_antialias);\\n\\n // Physical distance from dash distance at edge of antialias region.\\n return edge_dist + sign_along*x - half_antialias;\\n }\\n}\\n\\nmat2 rotation_matrix(in float sign_start)\\n{\\n // Rotation matrix for v_coords from this segment to prev or next segment.\\n float cos_theta_turn_right = sign_start > 0.0 ? v_cos_theta_turn_right_start\\n : v_cos_theta_turn_right_end;\\n float cos_theta = abs(cos_theta_turn_right);\\n float turn_right = sign(cos_theta_turn_right);\\n\\n float sin_theta = sqrt(1.0 - cos_theta*cos_theta)*sign_start*turn_right;\\n float cos_2theta = 2.0*cos_theta*cos_theta - 1.0;\\n float sin_2theta = 2.0*sin_theta*cos_theta;\\n return mat2(cos_2theta, -sin_2theta, sin_2theta, cos_2theta);\\n}\\n#endif\\n\\nvoid main()\\n{\\n int join_type = int(u_line_join + 0.5);\\n int cap_type = int(u_line_cap + 0.5);\\n float halfwidth = 0.5*(u_linewidth + u_antialias);\\n float half_antialias = 0.5*u_antialias;\\n\\n // Extract flags.\\n int flags = int(v_flags + 0.5);\\n bool miter_too_large_end = (flags / 8 > 0);\\n flags -= 8*int(miter_too_large_end);\\n bool miter_too_large_start = (flags / 4 > 0);\\n flags -= 4*int(miter_too_large_start);\\n bool has_end_cap = (flags / 2 > 0);\\n flags -= 2*int(has_end_cap);\\n bool has_start_cap = flags > 0;\\n\\n float dist = v_coords.y; // For straight segment, and miter join.\\n\\n // Along-segment coords with respect to end of segment, +ve inside segment\\n // so equivalent to v_coords.x at start of segment.\\n float end_coords_x = v_segment_length - v_coords.x;\\n\\n if (v_coords.x <= half_antialias) {\\n // At start of segment, either cap or join.\\n if (has_start_cap)\\n dist = cap(cap_type, v_coords.x, v_coords.y);\\n else if (join_type == round_join)\\n dist = distance(v_coords, vec2(0.0, 0.0));\\n else if (join_type == bevel_join ||\\n (join_type == miter_join && miter_too_large_start))\\n dist = max(abs(dist), bevel_join_distance(1.0, halfwidth));\\n // else a miter join which uses the default dist calculation.\\n }\\n else if (end_coords_x <= half_antialias) {\\n // At end of segment, either cap or join.\\n if (has_end_cap)\\n dist = cap(cap_type, end_coords_x, v_coords.y);\\n else if (join_type == round_join)\\n dist = distance(v_coords, vec2(v_segment_length, 0));\\n else if ((join_type == bevel_join ||\\n (join_type == miter_join && miter_too_large_end)))\\n dist = max(abs(dist), bevel_join_distance(-1.0, halfwidth));\\n // else a miter join which uses the default dist calculation.\\n }\\n\\n float alpha = distance_to_alpha(abs(dist));\\n\\n#ifdef DASHED\\n if (u_dash_tex_info.x >= 0.0) {\\n // Dashes in straight segments (outside of joins) are easily calculated.\\n dist = dash_distance(v_coords.x);\\n\\n if (!has_start_cap && cap_type == butt_cap) {\\n if (v_coords.x < half_antialias) {\\n // Outer of start join rendered solid color or not at all\\n // depending on whether corner point is in dash or gap, with\\n // antialiased ends.\\n if (dash_distance(0.0) > 0.0) {\\n // Corner is solid color.\\n dist = max(dist, min(half_antialias, -v_coords.x));\\n // Avoid visible antialiasing band between corner and dash.\\n dist = max(dist, dash_distance(half_antialias));\\n }\\n else {\\n // Use large negative value so corner not colored.\\n dist = -halfwidth;\\n\\n if (v_coords.x > -half_antialias) {\\n // Consider antialias region of dash after start region.\\n float edge_dist = min(dash_distance(half_antialias), half_antialias);\\n dist = max(dist, edge_dist + v_coords.x - half_antialias);\\n }\\n }\\n }\\n\\n vec2 prev_coords = rotation_matrix(1.0)*v_coords;\\n\\n if (abs(prev_coords.y) < halfwidth && prev_coords.x < half_antialias) {\\n // Extend dashes across from end of previous segment, with antialiased end.\\n float new_dist = clip_dash_distance(prev_coords.x, 0.0, -1.0);\\n new_dist = min(new_dist, 0.5*u_linewidth - abs(prev_coords.y));\\n dist = max(dist, new_dist);\\n }\\n }\\n\\n if (!has_end_cap && cap_type == butt_cap) {\\n if (end_coords_x < half_antialias) {\\n // Similar for end join.\\n if (dash_distance(v_segment_length) > 0.0) {\\n // Corner is solid color.\\n dist = max(dist, min(half_antialias, -end_coords_x));\\n // Avoid visible antialiasing band between corner and dash.\\n dist = max(dist, dash_distance(v_segment_length - half_antialias));\\n }\\n else {\\n // Use large negative value so corner not colored.\\n dist = -halfwidth;\\n\\n if (end_coords_x > -half_antialias) {\\n // Consider antialias region of dash before end region.\\n float edge_dist = min(dash_distance(v_segment_length - half_antialias),\\n half_antialias);\\n dist = max(dist, edge_dist + end_coords_x - half_antialias);\\n }\\n }\\n }\\n\\n vec2 next_coords = rotation_matrix(-1.0)*(v_coords - vec2(v_segment_length, 0.0));\\n\\n if (abs(next_coords.y) < halfwidth && next_coords.x > -half_antialias) {\\n // Extend dashes across from next segment, with antialiased end.\\n float new_dist = clip_dash_distance(next_coords.x, v_segment_length, 1.0);\\n new_dist = min(new_dist, 0.5*u_linewidth - abs(next_coords.y));\\n dist = max(dist, new_dist);\\n }\\n }\\n\\n dist = cap(cap_type, dist, v_coords.y);\\n\\n float dash_alpha = distance_to_alpha(dist);\\n alpha = min(alpha, dash_alpha);\\n }\\n#endif\\n\\n alpha = u_line_color.a*alpha;\\n gl_FragColor = vec4(u_line_color.rgb*alpha, alpha); // Premultiplied alpha.\\n}\\n\"},\n", + " 417: function _(n,i,e,t,a){t();e.default=\"\\nprecision mediump float;\\n\\nattribute vec2 a_position;\\nattribute vec2 a_center;\\nattribute float a_width;\\nattribute float a_height;\\nattribute float a_angle; // In radians\\nattribute float a_linewidth;\\nattribute vec4 a_line_color;\\nattribute vec4 a_fill_color;\\nattribute float a_line_cap;\\nattribute float a_line_join;\\nattribute float a_show;\\n#ifdef HATCH\\nattribute float a_hatch_pattern;\\nattribute float a_hatch_scale;\\nattribute float a_hatch_weight;\\nattribute vec4 a_hatch_color;\\n#endif\\n\\nuniform float u_pixel_ratio;\\nuniform vec2 u_canvas_size;\\nuniform float u_antialias;\\nuniform float u_size_hint;\\n\\nvarying float v_linewidth;\\nvarying vec2 v_size; // 2D size for rects compared to 1D for markers.\\nvarying vec4 v_line_color;\\nvarying vec4 v_fill_color;\\nvarying float v_line_cap;\\nvarying float v_line_join;\\nvarying vec2 v_coords;\\n#ifdef HATCH\\nvarying float v_hatch_pattern;\\nvarying float v_hatch_scale;\\nvarying float v_hatch_weight;\\nvarying vec4 v_hatch_color;\\nvarying vec2 v_hatch_coords;\\n#endif\\n\\nvoid main()\\n{\\n if (a_show < 0.5) {\\n // Do not show this rect.\\n gl_Position = vec4(-2.0, -2.0, 0.0, 1.0);\\n return;\\n }\\n\\n v_size = vec2(a_width, a_height);\\n v_linewidth = a_linewidth;\\n v_line_color = a_line_color;\\n v_fill_color = a_fill_color;\\n v_line_cap = a_line_cap;\\n v_line_join = a_line_join;\\n\\n if (v_linewidth < 1.0) {\\n // Linewidth less than 1 is implemented as 1 but with reduced alpha.\\n v_line_color.a *= v_linewidth;\\n v_linewidth = 1.0;\\n }\\n\\n#ifdef HATCH\\n v_hatch_pattern = a_hatch_pattern;\\n v_hatch_scale = a_hatch_scale;\\n v_hatch_weight = a_hatch_weight;\\n v_hatch_color = a_hatch_color;\\n#endif\\n\\n vec2 enclosing_size;\\n // Need extra size of (v_linewidth+u_antialias) if edge of marker parallel to\\n // edge of bounding box. If symmetric spike towards edge then multiply by\\n // 1/cos(theta) where theta is angle between spike and bbox edges.\\n int size_hint = int(u_size_hint + 0.5);\\n if (size_hint == 1) // Dash\\n enclosing_size = vec2(v_size.x + v_linewidth + u_antialias,\\n v_linewidth + u_antialias);\\n else if (size_hint == 2) // Dot\\n enclosing_size = 0.25*v_size + u_antialias;\\n else if (size_hint == 3) // Diamond\\n enclosing_size = vec2(v_size.x*(2.0/3.0) + (v_linewidth + u_antialias)*1.20185,\\n v_size.y + (v_linewidth + u_antialias)*1.80278);\\n else if (size_hint == 4) // Hex\\n enclosing_size = v_size + (v_linewidth + u_antialias)*vec2(2.0/sqrt(3.0), 1.0);\\n else if (size_hint == 5) // Square pin\\n enclosing_size = v_size + (v_linewidth + u_antialias)*3.1;\\n else if (size_hint == 6) // Triangle\\n enclosing_size = vec2(v_size.x + (v_linewidth + u_antialias)*sqrt(3.0),\\n v_size.y*(2.0/sqrt(3.0)) + (v_linewidth + u_antialias)*2.0);\\n else if (size_hint == 7) // Triangle pin\\n enclosing_size = v_size + (v_linewidth + u_antialias)*vec2(4.8, 6.0);\\n else if (size_hint == 8) // Star\\n enclosing_size = vec2(v_size.x*0.95106 + (v_linewidth + u_antialias)*3.0,\\n v_size.y + (v_linewidth + u_antialias)*3.2);\\n else\\n enclosing_size = v_size + v_linewidth + u_antialias;\\n\\n // Coordinates in rotated frame with respect to center of marker, used for\\n // distance functions in fragment shader.\\n v_coords = a_position*enclosing_size;\\n\\n float c = cos(-a_angle);\\n float s = sin(-a_angle);\\n mat2 rotation = mat2(c, -s, s, c);\\n\\n vec2 pos = a_center + rotation*v_coords;\\n#ifdef HATCH\\n // Coordinates for hatching in unrotated frame of reference.\\n v_hatch_coords = pos - 0.5;\\n#endif\\n pos += 0.5; // Make up for Bokeh's offset.\\n pos /= u_canvas_size / u_pixel_ratio; // 0 to 1.\\n gl_Position = vec4(2.0*pos.x - 1.0, 1.0 - 2.0*pos.y, 0.0, 1.0);\\n}\\n\"},\n", + " 418: function _(n,i,e,t,a){t();e.default=\"\\nprecision mediump float;\\n\\nconst float SQRT2 = sqrt(2.0);\\nconst float SQRT3 = sqrt(3.0);\\nconst float PI = 3.14159265358979323846;\\n\\nconst int butt_cap = 0;\\nconst int round_cap = 1;\\nconst int square_cap = 2;\\n\\nconst int miter_join = 0;\\nconst int round_join = 1;\\nconst int bevel_join = 2;\\n\\n#ifdef HATCH\\nconst int hatch_dot = 1;\\nconst int hatch_ring = 2;\\nconst int hatch_horizontal_line = 3;\\nconst int hatch_vertical_line = 4;\\nconst int hatch_cross = 5;\\nconst int hatch_horizontal_dash = 6;\\nconst int hatch_vertical_dash = 7;\\nconst int hatch_spiral = 8;\\nconst int hatch_right_diagonal_line = 9;\\nconst int hatch_left_diagonal_line = 10;\\nconst int hatch_diagonal_cross = 11;\\nconst int hatch_right_diagonal_dash = 12;\\nconst int hatch_left_diagonal_dash = 13;\\nconst int hatch_horizontal_wave = 14;\\nconst int hatch_vertical_wave = 15;\\nconst int hatch_criss_cross = 16;\\n#endif\\n\\nuniform float u_antialias;\\n\\nvarying float v_linewidth;\\nvarying vec2 v_size;\\nvarying vec4 v_line_color;\\nvarying vec4 v_fill_color;\\nvarying float v_line_cap;\\nvarying float v_line_join;\\nvarying vec2 v_coords;\\n#ifdef HATCH\\nvarying float v_hatch_pattern;\\nvarying float v_hatch_scale;\\nvarying float v_hatch_weight;\\nvarying vec4 v_hatch_color;\\nvarying vec2 v_hatch_coords;\\n#endif\\n\\n// Lines within the marker (dot, cross, x and y) are added at the end as they are\\n// on top of the fill rather than astride it.\\n#if defined(USE_CIRCLE_DOT) || defined(USE_DIAMOND_DOT) || defined(USE_DOT) || defined(USE_HEX_DOT) || defined(USE_SQUARE_DOT) || defined(USE_STAR_DOT) || defined(USE_TRIANGLE_DOT)\\n #define APPEND_DOT\\n#endif\\n\\n#if defined(USE_CIRCLE_CROSS) || defined(USE_SQUARE_CROSS)\\n #define APPEND_CROSS\\n#endif\\n\\n#ifdef USE_DIAMOND_CROSS\\n #define APPEND_CROSS_2\\n#endif\\n\\n#ifdef USE_CIRCLE_X\\n #define APPEND_X\\n #define APPEND_X_LEN (0.5*v_size.x)\\n#endif\\n\\n#ifdef USE_SQUARE_X\\n #define APPEND_X\\n #define APPEND_X_LEN (v_size.x/SQRT2)\\n#endif\\n\\n#ifdef USE_CIRCLE_Y\\n #define APPEND_Y\\n#endif\\n\\n#if defined(USE_ASTERISK) || defined(USE_CROSS) || defined(USE_DASH) || defined(USE_DOT) || defined(USE_X) || defined(USE_Y)\\n // No fill.\\n #define LINE_ONLY\\n#endif\\n\\n#if defined(LINE_ONLY) || defined(APPEND_CROSS) || defined(APPEND_CROSS_2) || defined(APPEND_X) || defined(APPEND_Y)\\nfloat end_cap_distance(in vec2 p, in vec2 end_point, in vec2 unit_direction, in int line_cap)\\n{\\n vec2 offset = p - end_point;\\n if (line_cap == butt_cap)\\n return dot(offset, unit_direction) + 0.5*v_linewidth;\\n else if (line_cap == square_cap)\\n return dot(offset, unit_direction);\\n else if (line_cap == round_cap && dot(offset, unit_direction) > 0.0)\\n return length(offset);\\n else\\n // Default is outside of line and should be -0.5*(v_linewidth+u_antialias) or less,\\n // so here avoid the multiplication.\\n return -v_linewidth-u_antialias;\\n}\\n#endif\\n\\n#if !(defined(LINE_ONLY) || defined(USE_SQUARE_PIN) || defined(USE_TRIANGLE_PIN))\\n// For line join at a vec2 corner where 2 line segments meet, consider bevel points which are the 2\\n// points obtained by moving half a linewidth away from the corner point in the directions normal to\\n// the line segments. The line through these points is the bevel line, characterised by a vec2\\n// unit_normal and offset distance from the corner point. Edge of bevel join straddles this line,\\n// round join occurs outside of this line centred on the corner point. In general\\n// offset = (linewidth/2)*sin(alpha/2)\\n// where alpha is the angle between the 2 line segments at the corner.\\nfloat line_join_distance_no_miter(\\n in vec2 p, in vec2 corner, in vec2 unit_normal, in float offset, in int line_join)\\n{\\n // Simplified version of line_join_distance ignoring miter which most markers do implicitly\\n // as they are composed of straight line segments.\\n float dist_outside = dot((p - corner), unit_normal) - offset;\\n\\n if (line_join == bevel_join && dist_outside > -0.5*u_antialias)\\n return dist_outside + 0.5*v_linewidth;\\n else if (dist_outside > 0.0) // round_join\\n return distance(p, corner);\\n else\\n // Default is outside of line and should be -0.5*(v_linewidth+u_antialias) or less,\\n // so here avoid the multiplication.\\n return -v_linewidth-u_antialias;\\n}\\n#endif\\n\\n#if defined(USE_SQUARE_PIN) || defined(USE_TRIANGLE_PIN)\\n// Line join distance including miter but only one-sided check as assuming use of symmetry in\\n// calling function.\\nfloat line_join_distance_incl_miter(\\n in vec2 p, in vec2 corner, in vec2 unit_normal, in float offset, in int line_join,\\n vec2 miter_unit_normal)\\n{\\n float dist_outside = dot((p - corner), unit_normal) - offset;\\n\\n if (line_join == miter_join && dist_outside > 0.0)\\n return dot((p - corner), miter_unit_normal);\\n else if (line_join == bevel_join && dist_outside > -0.5*u_antialias)\\n return dist_outside + 0.5*v_linewidth;\\n else if (dist_outside > 0.0) // round_join\\n return distance(p, corner);\\n else\\n return -v_linewidth-u_antialias;\\n}\\n#endif\\n\\n#if defined(APPEND_CROSS) || defined(APPEND_X) || defined(USE_ASTERISK) || defined(USE_CROSS) || defined(USE_X)\\nfloat one_cross(in vec2 p, in int line_cap, in float len)\\n{\\n p = abs(p);\\n p = (p.y > p.x) ? p.yx : p.xy;\\n float dist = p.y;\\n float end_dist = end_cap_distance(p, vec2(len, 0.0), vec2(1.0, 0.0), line_cap);\\n return max(dist, end_dist);\\n}\\n#endif\\n\\n#ifdef APPEND_CROSS_2\\nfloat one_cross_2(in vec2 p, in int line_cap, in vec2 lengths)\\n{\\n // Cross with different length in x and y directions.\\n p = abs(p);\\n bool switch_xy = (p.y > p.x);\\n p = switch_xy ? p.yx : p.xy;\\n float len = switch_xy ? lengths.y : lengths.x;\\n float dist = p.y;\\n float end_dist = end_cap_distance(p, vec2(len, 0.0), vec2(1.0, 0.0), line_cap);\\n return max(dist, end_dist);\\n}\\n#endif\\n\\n#if defined(APPEND_Y) || defined(USE_Y)\\nfloat one_y(in vec2 p, in int line_cap, in float len)\\n{\\n p = vec2(abs(p.x), -p.y);\\n\\n // End point of line to right is (1/2, 1/3)*len*SQRT3.\\n // Unit vector along line is (1/2, 1/3)*k where k = 6/SQRT13.\\n const float k = 6.0/sqrt(13.0);\\n vec2 unit_along = vec2(0.5*k, k/3.0);\\n vec2 end_point = vec2(0.5*len*SQRT3, len*SQRT3/3.0);\\n float dist = max(abs(dot(p, vec2(-unit_along.y, unit_along.x))),\\n end_cap_distance(p, end_point, unit_along, line_cap));\\n\\n if (p.y < 0.0) {\\n // Vertical line.\\n float vert_dist = max(p.x,\\n end_cap_distance(p, vec2(0.0, -len), vec2(0.0, -1.0), line_cap));\\n dist = min(dist, vert_dist);\\n }\\n return dist;\\n}\\n#endif\\n\\n// One marker_distance function per marker type.\\n// Distance is zero on edge of marker, +ve outside and -ve inside.\\n\\n#ifdef USE_ASTERISK\\nfloat marker_distance(in vec2 p, in int line_cap, in int line_join)\\n{\\n // Assuming v_size.x == v.size_y\\n vec2 p_diag = vec2((p.x + p.y)/SQRT2, (p.x - p.y)/SQRT2);\\n float len = 0.5*v_size.x;\\n return min(one_cross(p, line_cap, len), // cross\\n one_cross(p_diag, line_cap, len)); // x\\n}\\n#endif\\n\\n#if defined(USE_CIRCLE) || defined(USE_CIRCLE_CROSS) || defined(USE_CIRCLE_DOT) || defined(USE_CIRCLE_X) || defined(USE_CIRCLE_Y)\\nfloat marker_distance(in vec2 p, in int line_cap, in int line_join)\\n{\\n // Assuming v_size.x == v.size_y\\n return length(p) - 0.5*v_size.x;\\n}\\n#endif\\n\\n#ifdef USE_CROSS\\nfloat marker_distance(in vec2 p, in int line_cap, in int line_join)\\n{\\n // Assuming v_size.x == v.size_y\\n return one_cross(p, line_cap, 0.5*v_size.x);\\n}\\n#endif\\n\\n#ifdef USE_DASH\\nfloat marker_distance(in vec2 p, in int line_cap, in int line_join)\\n{\\n p = abs(p);\\n float dist = p.y;\\n float end_dist = end_cap_distance(p, vec2(0.5*v_size.x, 0.0), vec2(1.0, 0.0), line_cap);\\n return max(dist, end_dist);\\n}\\n#endif\\n\\n#if defined(USE_DIAMOND) || defined(USE_DIAMOND_CROSS) || defined(USE_DIAMOND_DOT)\\nfloat marker_distance(in vec2 p, in int line_cap, in int line_join)\\n{\\n // Assuming v_size.x == v.size_y\\n // Only need to consider +ve quadrant, the 2 end points are (2r/3, 0) and (0, r)\\n // where r = radius = v_size.x/2.\\n // Line has outward-facing unit normal vec2(1, 2/3)/k where k = SQRT13/3\\n // hence vec2(3, 2)/SQRT13, and distance from origin of 2r/(3k) = 2r/SQRT13.\\n p = abs(p);\\n float r = 0.5*v_size.x;\\n const float SQRT13 = sqrt(13.0);\\n float dist = dot(p, vec2(3.0, 2.0))/SQRT13 - 2.0*r/SQRT13;\\n\\n if (line_join != miter_join) {\\n dist = max(dist, line_join_distance_no_miter(\\n p, vec2(0.0, r), vec2(0.0, 1.0), v_linewidth/SQRT13, line_join));\\n\\n dist = max(dist, line_join_distance_no_miter(\\n p, vec2(r*2.0/3.0, 0.0), vec2(1.0, 0.0), v_linewidth*(1.5/SQRT13), line_join));\\n }\\n\\n return dist;\\n}\\n#endif\\n\\n#ifdef USE_DOT\\nfloat marker_distance(in vec2 p, in int line_cap, in int line_join)\\n{\\n // Dot is always appended.\\n return v_linewidth+u_antialias;\\n}\\n#endif\\n\\n#if defined(USE_HEX) || defined(USE_HEX_DOT)\\nfloat marker_distance(in vec2 p, in int line_cap, in int line_join)\\n{\\n // A regular hexagon has v_size.x == v.size_y = r where r is the length of\\n // each of the 3 sides of the 6 equilateral triangles that comprise the hex.\\n // Only consider +ve quadrant, the 3 corners are at (0, h), (rx/2, h), (rx, 0)\\n // where rx = 0.5*v_size.x, ry = 0.5*v_size.y and h = ry*SQRT3/2.\\n // Sloping line has outward normal vec2(h, rx/2). Length of this is\\n // len = sqrt(h**2 + rx**2/4) to give unit normal (h, rx/2)/len and distance\\n // from origin of this line is rx*h/len.\\n p = abs(p);\\n float rx = v_size.x/2.0;\\n float h = v_size.y*(SQRT3/4.0);\\n float len_normal = sqrt(h*h + 0.25*rx*rx);\\n vec2 unit_normal = vec2(h, 0.5*rx) / len_normal;\\n float dist = max(dot(p, unit_normal) - rx*h/len_normal, // Distance from sloping line.\\n p.y - h); // Distance from horizontal line.\\n\\n if (line_join != miter_join) {\\n dist = max(dist, line_join_distance_no_miter(\\n p, vec2(rx, 0.0), vec2(1.0, 0.0), 0.5*v_linewidth*unit_normal.x, line_join));\\n\\n unit_normal = normalize(unit_normal + vec2(0.0, 1.0)); // At (rx/2, h) corner.\\n dist = max(dist, line_join_distance_no_miter(\\n p, vec2(0.5*rx, h), unit_normal, 0.5*v_linewidth*unit_normal.y, line_join));\\n }\\n return dist;\\n}\\n#endif\\n\\n#ifdef USE_PLUS\\nfloat marker_distance(in vec2 p, in int line_cap, in int line_join)\\n{\\n // Assuming v_size.x == v.size_y\\n // Only need to consider one octant, the +ve quadrant with x >= y.\\n p = abs(p);\\n p = (p.y > p.x) ? p.yx : p.xy;\\n\\n // 3 corners are (r, 0), (r, 3r/8) and (3r/8, 3r/8).\\n float r = 0.5*v_size.x;\\n p = p - vec2(r, 0.375*r); // Distance with respect to outside corner\\n float dist = max(p.x, p.y);\\n\\n if (line_join != miter_join) {\\n // Outside corner\\n dist = max(dist, line_join_distance_no_miter(\\n p, vec2(0.0, 0.0), vec2(1.0/SQRT2, 1.0/SQRT2), v_linewidth/(2.0*SQRT2), line_join));\\n\\n // Inside corner\\n dist = min(dist, -line_join_distance_no_miter(\\n p, vec2(-5.0*r/8.0, 0.0), vec2(-1.0/SQRT2, -1.0/SQRT2), v_linewidth/(2.0*SQRT2), line_join));\\n }\\n\\n return dist;\\n}\\n#endif\\n\\n#if defined(USE_SQUARE) || defined(USE_SQUARE_CROSS) || defined(USE_SQUARE_DOT) || defined(USE_SQUARE_X)\\nfloat marker_distance(in vec2 p, in int line_cap, in int line_join)\\n{\\n vec2 p2 = abs(p) - v_size/2.0; // Offset from corner\\n float dist = max(p2.x, p2.y);\\n\\n if (line_join != miter_join)\\n dist = max(dist, line_join_distance_no_miter(\\n p2, vec2(0.0, 0.0), vec2(1.0/SQRT2, 1.0/SQRT2), v_linewidth/(2.0*SQRT2), line_join));\\n\\n return dist;\\n}\\n#endif\\n\\n#ifdef USE_SQUARE_PIN\\nfloat marker_distance(in vec2 p, in int line_cap, in int line_join)\\n{\\n // Assuming v_size.x == v.size_y\\n p = abs(p);\\n p = (p.y > p.x) ? p.yx : p.xy;\\n // p is in octant between y=0 and y=x.\\n // Quadratic bezier curve passes through (r, r), (11r/16, 0) and (r, -r).\\n // Circular arc that passes through the same points has center at\\n // x = r + 231r/160 = 2.44275r and y = 0 and hence radius is\\n // x - 11r/16 = 1.75626 precisely.\\n float r = 0.5*v_size.x;\\n float center_x = r*2.44375;\\n float radius = r*1.75626;\\n float dist = radius - distance(p, vec2(center_x, 0.0));\\n\\n // Magic number is 0.5*sin(atan(8/5) - pi/4)\\n dist = max(dist, line_join_distance_incl_miter(\\n p, vec2(r, r), vec2(1.0/SQRT2, 1.0/SQRT2), v_linewidth*0.1124297533493792, line_join,\\n vec2(8.0/sqrt(89.0), -5.0/sqrt(89.0))));\\n\\n return dist;\\n}\\n#endif\\n\\n#if defined(USE_STAR) || defined(USE_STAR_DOT)\\nfloat marker_distance(in vec2 p, in int line_cap, in int line_join)\\n{\\n // Assuming v_size.x == v.size_y\\n const float SQRT5 = sqrt(5.0);\\n const float COS72 = 0.25*(SQRT5 - 1.0);\\n const float SIN72 = sqrt((5.0+SQRT5) / 8.0);\\n\\n float angle = atan(p.x, p.y); // In range -pi to +pi clockwise from +y direction.\\n angle = mod(angle, 0.4*PI) - 0.2*PI; // In range -pi/5 to +pi/5 clockwise from +y direction.\\n p = length(p)*vec2(cos(angle), abs(sin(angle))); // (x,y) in pi/10 (36 degree) sector.\\n\\n // 2 corners are at (r, 0) and (r-a*SIN72, a*COS72) where a = r sqrt(5-2*sqrt(5)).\\n // Line has outward-facing unit normal vec2(COS72, SIN72) and distance from\\n // origin of dot(vec2(r, 0), vec2(COS72, SIN72)) = r*COS72\\n float r = 0.5*v_size.x;\\n float a = r*sqrt(5.0 - 2.0*SQRT5);\\n float dist = dot(p, vec2(COS72, SIN72)) - r*COS72;\\n\\n if (line_join != miter_join) {\\n // Outside corner\\n dist = max(dist, line_join_distance_no_miter(\\n p, vec2(r, 0.0), vec2(1.0, 0.0), v_linewidth*(0.5*COS72), line_join));\\n\\n // Inside corner\\n const float COS36 = sqrt(0.5 + COS72/2.0);\\n const float SIN36 = sqrt(0.5 - COS72/2.0);\\n dist = min(dist, -line_join_distance_no_miter(\\n p, vec2(r-a*SIN72, a*COS72), vec2(-COS36, -SIN36), v_linewidth*(0.5*COS36), line_join));\\n }\\n\\n return dist;\\n}\\n#endif\\n\\n#if defined(USE_TRIANGLE) || defined(USE_TRIANGLE_DOT) || defined(USE_INVERTED_TRIANGLE)\\nfloat marker_distance(in vec2 p, in int line_cap, in int line_join)\\n{\\n // Assuming v_size.x == v.size_y\\n // For normal triangle 3 corners are at (-r, a), (r, a), (0, a-h)=(0, -2h/3)\\n // given r = radius = v_size.x/2, h = SQRT3*r, a = h/3.\\n // Sloping line has outward-facing unit normal vec2(h, -r)/2r = vec2(SQRT3, -1)/2\\n // and distance from origin of a. Horizontal line has outward-facing unit normal\\n // vec2(0, 1) and distance from origin of a.\\n float r = 0.5*v_size.x;\\n float a = r*SQRT3/3.0;\\n\\n // Only need to consider +ve x.\\n#ifdef USE_INVERTED_TRIANGLE\\n p = vec2(abs(p.x), -p.y);\\n#else\\n p = vec2(abs(p.x), p.y);\\n#endif\\n\\n float dist = max(0.5*dot(p, vec2(SQRT3, -1.0)) - a, // Distance from sloping line.\\n p.y - a); // Distance from horizontal line.\\n\\n if (line_join != miter_join) {\\n dist = max(dist, line_join_distance_no_miter(\\n p, vec2(0.0, -(2.0/SQRT3)*r), vec2(0.0, -1.0), v_linewidth*0.25, line_join));\\n\\n dist = max(dist, line_join_distance_no_miter(\\n p, vec2(r, a), vec2(SQRT3/2.0, 0.5), v_linewidth*0.25, line_join));\\n }\\n\\n return dist;\\n}\\n#endif\\n\\n#ifdef USE_TRIANGLE_PIN\\nfloat marker_distance(in vec2 p, in int line_cap, in int line_join)\\n{\\n // Assuming v_size.x == v.size_y\\n float angle = atan(p.x, -p.y); // In range -pi to +pi.\\n angle = mod(angle, PI*2.0/3.0) - PI/3.0; // In range -pi/3 to pi/3.\\n p = length(p)*vec2(cos(angle), abs(sin(angle))); // (x,y) in range 0 to pi/3.\\n // Quadratic bezier curve passes through (a, r), ((a+b)/2, 0) and (a, -r) where\\n // a = r/SQRT3, b = 3a/8 = r SQRT3/8. Circular arc that passes through the same points has\\n // center at (a+x, 0) and radius x+c where c = (a-b)/2 and x = (r**2 - c**2) / (2c).\\n // Ignore r factor until the end so can use const.\\n const float a = 1.0/SQRT3;\\n const float b = SQRT3/8.0;\\n const float c = (a-b)/2.0;\\n const float x = (1.0 - c*c) / (2.0*c);\\n const float center_x = x + a;\\n const float radius = x + c;\\n float r = 0.5*v_size.x;\\n float dist = r*radius - distance(p, vec2(r*center_x, 0.0));\\n\\n // Magic number is 0.5*sin(atan(8*sqrt(3)/5) - pi/3)\\n dist = max(dist, line_join_distance_incl_miter(\\n p, vec2(a*r, r), vec2(0.5, 0.5*SQRT3), v_linewidth*0.0881844526878324, line_join,\\n vec2(8.0*SQRT3, -5.0)/sqrt(217.0)));\\n\\n return dist;\\n}\\n#endif\\n\\n#ifdef USE_X\\nfloat marker_distance(in vec2 p, in int line_cap, in int line_join)\\n{\\n // Assuming v_size.x == v.size_y\\n p = vec2((p.x + p.y)/SQRT2, (p.x - p.y)/SQRT2);\\n return one_cross(p, line_cap, 0.5*v_size.x);\\n}\\n#endif\\n\\n#ifdef USE_Y\\nfloat marker_distance(in vec2 p, in int line_cap, in int line_join)\\n{\\n // Assuming v_size.x == v.size_y\\n return one_y(p, line_cap, 0.5*v_size.x);\\n}\\n#endif\\n\\n// Convert distance from edge of marker to fraction in range 0 to 1, depending\\n// on antialiasing width.\\nfloat distance_to_fraction(in float dist)\\n{\\n return 1.0 - smoothstep(-0.5*u_antialias, 0.5*u_antialias, dist);\\n}\\n\\n// Return fraction from 0 (no fill color) to 1 (full fill color).\\nfloat fill_fraction(in float dist)\\n{\\n return distance_to_fraction(dist);\\n}\\n\\n// Return fraction in range 0 (no line color) to 1 (full line color).\\nfloat line_fraction(in float dist)\\n{\\n return distance_to_fraction(abs(dist) - 0.5*v_linewidth);\\n}\\n\\n// Return fraction (in range 0 to 1) of a color, with premultiplied alpha.\\nvec4 fractional_color(in vec4 color, in float fraction)\\n{\\n color.a *= fraction;\\n color.rgb *= color.a;\\n return color;\\n}\\n\\n// Blend colors that have premultiplied alpha.\\nvec4 blend_colors(in vec4 src, in vec4 dest)\\n{\\n return (1.0 - src.a)*dest + src;\\n}\\n\\n#ifdef APPEND_DOT\\nfloat dot_fraction(in vec2 p)\\n{\\n // Assuming v_size.x == v_size.y\\n float radius = 0.125*v_size.x;\\n float dot_distance = max(length(p) - radius, -0.5*u_antialias);\\n return fill_fraction(dot_distance);\\n}\\n#endif\\n\\n#ifdef HATCH\\n// Wrap coordinate(s) by removing integer part to give distance from center of\\n// repeat, in the range -0.5 to +0.5.\\nfloat wrap(in float x)\\n{\\n return fract(x) - 0.5;\\n}\\n\\nvec2 wrap(in vec2 xy)\\n{\\n return fract(xy) - 0.5;\\n}\\n\\n// Return fraction from 0 (no hatch color) to 1 (full hatch color).\\nfloat hatch_fraction(in vec2 coords, in int hatch_pattern)\\n{\\n float scale = v_hatch_scale; // Hatch repeat distance.\\n\\n // Coordinates and linewidth/halfwidth are scaled to hatch repeat distance.\\n coords = coords / scale;\\n float halfwidth = 0.5*v_hatch_weight / scale; // Half the hatch linewidth.\\n\\n // Default is to return fraction of zero, i.e. no pattern.\\n float dist = u_antialias;\\n\\n if (hatch_pattern == hatch_dot) {\\n const float dot_radius = 0.25;\\n dist = length(wrap(coords)) - dot_radius;\\n }\\n else if (hatch_pattern == hatch_ring) {\\n const float ring_radius = 0.25;\\n dist = abs(length(wrap(coords)) - ring_radius) - halfwidth;\\n }\\n else if (hatch_pattern == hatch_horizontal_line) {\\n dist = abs(wrap(coords.y)) - halfwidth;\\n }\\n else if (hatch_pattern == hatch_vertical_line) {\\n dist = abs(wrap(coords.x)) - halfwidth;\\n }\\n else if (hatch_pattern == hatch_cross) {\\n dist = min(abs(wrap(coords.x)), abs(wrap(coords.y))) - halfwidth;\\n }\\n else if (hatch_pattern == hatch_horizontal_dash) {\\n // Dashes have square caps.\\n const float halflength = 0.25;\\n dist = max(abs(wrap(coords.y)),\\n abs(wrap(coords.x) + 0.25) - halflength) - halfwidth;\\n }\\n else if (hatch_pattern == hatch_vertical_dash) {\\n const float halflength = 0.25;\\n dist = max(abs(wrap(coords.x)),\\n abs(wrap(coords.y) + 0.25) - halflength) - halfwidth;\\n }\\n else if (hatch_pattern == hatch_spiral) {\\n vec2 wrap2 = wrap(coords);\\n float angle = wrap(atan(wrap2.y, wrap2.x) / (2.0*PI));\\n // Canvas spiral radius increases by scale*pi/15 each rotation.\\n const float dr = PI/15.0;\\n float radius = length(wrap2);\\n // At any angle, spiral lines are equally spaced dr apart.\\n // Find distance to nearest of these lines.\\n float frac = fract((radius - dr*angle) / dr); // 0 to 1.\\n dist = dr*(abs(frac - 0.5));\\n dist = min(dist, radius) - halfwidth; // Consider center point also.\\n }\\n else if (hatch_pattern == hatch_right_diagonal_line) {\\n dist = abs(wrap(2.0*coords.x + coords.y))/sqrt(5.0) - halfwidth;\\n }\\n else if (hatch_pattern == hatch_left_diagonal_line) {\\n dist = abs(wrap(2.0*coords.x - coords.y))/sqrt(5.0) - halfwidth;\\n }\\n else if (hatch_pattern == hatch_diagonal_cross) {\\n coords = vec2(coords.x + coords.y + 0.5, coords.x - coords.y + 0.5);\\n dist = min(abs(wrap(coords.x)), abs(wrap(coords.y))) / SQRT2 - halfwidth;\\n }\\n else if (hatch_pattern == hatch_right_diagonal_dash) {\\n float across = coords.x + coords.y + 0.5;\\n dist = abs(wrap(across)) / SQRT2; // Distance to nearest solid line.\\n\\n across = floor(across); // Offset for dash.\\n float along = wrap(0.5*(coords.x - coords.y + across));\\n const float halflength = 0.25;\\n along = abs(along) - halflength; // Distance along line.\\n\\n dist = max(dist, along) - halfwidth;\\n }\\n else if (hatch_pattern == hatch_left_diagonal_dash) {\\n float across = coords.x - coords.y + 0.5;\\n dist = abs(wrap(across)) / SQRT2; // Distance to nearest solid line.\\n\\n across = floor(across); // Offset for dash.\\n float along = wrap(0.5*(coords.x + coords.y + across));\\n const float halflength = 0.25;\\n along = abs(along) - halflength; // Distance along line.\\n\\n dist = max(dist, along) - halfwidth;\\n }\\n else if (hatch_pattern == hatch_horizontal_wave) {\\n float wrapx = wrap(coords.x);\\n float wrapy = wrap(coords.y - 0.25 + abs(wrapx));\\n dist = abs(wrapy) / SQRT2 - halfwidth;\\n }\\n else if (hatch_pattern == hatch_vertical_wave) {\\n float wrapy = wrap(coords.y);\\n float wrapx = wrap(coords.x - 0.25 + abs(wrapy));\\n dist = abs(wrapx) / SQRT2 - halfwidth;\\n }\\n else if (hatch_pattern == hatch_criss_cross) {\\n float plus = min(abs(wrap(coords.x)), abs(wrap(coords.y)));\\n\\n coords = vec2(coords.x + coords.y + 0.5, coords.x - coords.y + 0.5);\\n float X = min(abs(wrap(coords.x)), abs(wrap(coords.y))) / SQRT2;\\n\\n dist = min(plus, X) - halfwidth;\\n }\\n\\n return distance_to_fraction(dist*scale);\\n}\\n#endif\\n\\nvoid main()\\n{\\n int line_cap = int(v_line_cap + 0.5);\\n int line_join = int(v_line_join + 0.5);\\n#ifdef HATCH\\n int hatch_pattern = int(v_hatch_pattern + 0.5);\\n#endif\\n\\n float dist = marker_distance(v_coords, line_cap, line_join);\\n\\n#ifdef LINE_ONLY\\n vec4 color = vec4(0.0, 0.0, 0.0, 0.0);\\n#else\\n float fill_frac = fill_fraction(dist);\\n vec4 color = fractional_color(v_fill_color, fill_frac);\\n#endif\\n\\n#if defined(HATCH) && !defined(LINE_ONLY)\\n if (hatch_pattern > 0 && fill_frac > 0.0) {\\n float hatch_frac = hatch_fraction(v_hatch_coords, hatch_pattern);\\n vec4 hatch_color = fractional_color(v_hatch_color, hatch_frac*fill_frac);\\n color = blend_colors(hatch_color, color);\\n }\\n#endif\\n\\n float line_frac = line_fraction(dist);\\n\\n#ifdef APPEND_DOT\\n line_frac = max(line_frac, dot_fraction(v_coords));\\n#endif\\n#ifdef APPEND_CROSS\\n line_frac = max(line_frac, line_fraction(one_cross(v_coords, line_cap, 0.5*v_size.x)));\\n#endif\\n#ifdef APPEND_CROSS_2\\n vec2 lengths = vec2(v_size.x/3.0, v_size.x/2.0);\\n line_frac = max(line_frac, line_fraction(one_cross_2(v_coords, line_cap, lengths)));\\n#endif\\n#ifdef APPEND_X\\n vec2 p = vec2((v_coords.x + v_coords.y)/SQRT2, (v_coords.x - v_coords.y)/SQRT2);\\n line_frac = max(line_frac, line_fraction(one_cross(p, line_cap, APPEND_X_LEN)));\\n#endif\\n#ifdef APPEND_Y\\n line_frac = max(line_frac, line_fraction(one_y(v_coords, line_cap, 0.5*v_size.x)));\\n#endif\\n\\n if (line_frac > 0.0) {\\n vec4 line_color = fractional_color(v_line_color, line_frac);\\n color = blend_colors(line_color, color);\\n }\\n\\n gl_FragColor = color;\\n}\\n\"},\n", + " 419: function _(t,_,i,h,e){h();const s=t(420),a=t(421),r=t(422);class l extends s.BaseGLGlyph{constructor(t,_){super(t,_),this.glyph=_,this._antialias=1.5,this._show_all=!1}_draw_one_marker_type(t,_,i){const h={scissor:this.regl_wrapper.scissor,viewport:this.regl_wrapper.viewport,canvas_size:[_.width,_.height],pixel_ratio:_.pixel_ratio,center:i._centers,width:i._widths,height:i._heights,angle:i._angles,size_hint:(0,r.marker_type_to_size_hint)(t),nmarkers:i.nvertices,antialias:this._antialias,linewidth:this._linewidths,line_color:this._line_rgba,fill_color:this._fill_rgba,line_cap:this._line_caps,line_join:this._line_joins,show:this._show};if(this._have_hatch){const _=Object.assign(Object.assign({},h),{hatch_pattern:this._hatch_patterns,hatch_scale:this._hatch_scales,hatch_weight:this._hatch_weights,hatch_color:this._hatch_rgba});this.regl_wrapper.marker_hatch(t)(_)}else this.regl_wrapper.marker_no_hatch(t)(h)}_set_visuals(){const t=this._get_visuals(),_=t.fill,i=t.line;if(null==this._linewidths&&(this._linewidths=new a.Float32Buffer(this.regl_wrapper),this._line_caps=new a.Uint8Buffer(this.regl_wrapper),this._line_joins=new a.Uint8Buffer(this.regl_wrapper),this._line_rgba=new a.NormalizedUint8Buffer(this.regl_wrapper),this._fill_rgba=new a.NormalizedUint8Buffer(this.regl_wrapper)),this._linewidths.set_from_prop(i.line_width),this._line_caps.set_from_line_cap(i.line_cap),this._line_joins.set_from_line_join(i.line_join),this._line_rgba.set_from_color(i.line_color,i.line_alpha),this._fill_rgba.set_from_color(_.fill_color,_.fill_alpha),this._have_hatch=t.hatch.doit,this._have_hatch){const _=t.hatch;null==this._hatch_patterns&&(this._hatch_patterns=new a.Uint8Buffer(this.regl_wrapper),this._hatch_scales=new a.Float32Buffer(this.regl_wrapper),this._hatch_weights=new a.Float32Buffer(this.regl_wrapper),this._hatch_rgba=new a.NormalizedUint8Buffer(this.regl_wrapper)),this._hatch_patterns.set_from_hatch_pattern(_.hatch_pattern),this._hatch_scales.set_from_prop(_.hatch_scale),this._hatch_weights.set_from_prop(_.hatch_weight),this._hatch_rgba.set_from_color(_.hatch_color,_.hatch_alpha)}}}i.BaseMarkerGL=l,l.__name__=\"BaseMarkerGL\",l.missing_point=-1e4},\n", + " 420: function _(e,t,s,i,h){i();class a{constructor(e,t){this.glyph=t,this.nvertices=0,this.size_changed=!1,this.data_changed=!1,this.visuals_changed=!1,this.regl_wrapper=e}set_data_changed(){const{data_size:e}=this.glyph;e!=this.nvertices&&(this.nvertices=e,this.size_changed=!0),this.data_changed=!0}set_visuals_changed(){this.visuals_changed=!0}render(e,t,s){if(0==t.length)return!0;const{width:i,height:h}=this.glyph.renderer.plot_view.canvas_view.webgl.canvas,a={pixel_ratio:this.glyph.renderer.plot_view.canvas_view.pixel_ratio,width:i,height:h};return this.draw(t,s,a),!0}}s.BaseGLGlyph=a,a.__name__=\"BaseGLGlyph\"},\n", + " 421: function _(r,t,a,e,s){e();const i=r(422),_=r(22);class n{constructor(r){this.regl_wrapper=r,this.is_scalar=!0}get_sized_array(r){return null!=this.array&&this.array.length==r||(this.array=this.new_array(r)),this.array}is_normalized(){return!1}get length(){return null!=this.array?this.array.length:0}set_from_array(r){const t=r.length,a=this.get_sized_array(t);for(let e=0;e0}_set_data(){const s=this.glyph.sx.length,i=s-1;this._is_closed=s>2&&this.glyph.sx[0]==this.glyph.sx[s-1]&&this.glyph.sy[0]==this.glyph.sy[s-1]&&isFinite(this.glyph.sx[0])&&isFinite(this.glyph.sy[0]),null==this._points&&(this._points=new o.Float32Buffer(this.regl_wrapper));const t=this._points.get_sized_array(2*(s+2));for(let i=1;is/255)),this._linewidth=s.line_width.value,this._linewidth<1&&(this._color[3]*=this._linewidth,this._linewidth=1),this._line_dash=(0,a.resolve_line_dash)(s.line_dash.value),this._is_dashed()&&([this._dash_tex_info,this._dash_tex,this._dash_scale]=this.regl_wrapper.get_dash(this._line_dash),this._dash_offset=s.line_dash_offset.value)}}t.LineGL=r,r.__name__=\"LineGL\"},\n", + " 427: function _(s,t,i,e,r){e();const h=s(421),a=s(424);class n extends a.SingleMarkerGL{constructor(s,t){super(s,t),this.glyph=t}draw(s,t,i){this._draw_impl(s,i,t.glglyph,\"square\")}_get_visuals(){return this.glyph.visuals}_set_data(){const s=this.nvertices;null==this._centers&&(this._centers=new h.Float32Buffer(this.regl_wrapper),this._widths=new h.Float32Buffer(this.regl_wrapper),this._heights=new h.Float32Buffer(this.regl_wrapper),this._angles=new h.Float32Buffer(this.regl_wrapper),this._angles.set_from_scalar(0));const t=this._centers.get_sized_array(2*s),i=this._heights.get_sized_array(s),e=this._widths.get_sized_array(s);for(let r=0;r1||s.length<_){this._show_all=!1,n.fill(0),r=0;for(const e of s)1!=h&&i._marker_types.get(e)!=t||(n[e]=255,r++)}else this._show_all&&a==_||(this._show_all=!0,n.fill(255));this._show.update(),0!=r&&this._draw_one_marker_type(t,e,i)}}_get_visuals(){return this.glyph.visuals}_set_data(){const s=this.nvertices;null==this._centers&&(this._centers=new r.Float32Buffer(this.regl_wrapper),this._widths=new r.Float32Buffer(this.regl_wrapper),this._heights=this._widths,this._angles=new r.Float32Buffer(this.regl_wrapper));const t=this._centers.get_sized_array(2*s);for(let e=0;ethis.render()))}remove(){null!=this.icon_view&&this.icon_view.remove(),super.remove()}styles(){return[...super.styles(),d.default]}_render_button(...t){return(0,c.button)({type:\"button\",disabled:this.model.disabled,class:[h.btn,h[`btn_${this.model.button_type}`]]},...t)}render(){super.render(),this.button_el=this._render_button(this.model.label),this.button_el.addEventListener(\"click\",(()=>this.click())),null!=this.icon_view&&(\"\"!=this.model.label?(0,c.prepend)(this.button_el,this.icon_view.el,(0,c.nbsp)()):(0,c.prepend)(this.button_el,this.icon_view.el),this.icon_view.render()),this.group_el=(0,c.div)({class:h.btn_group},this.button_el),this.el.appendChild(this.group_el)}click(){}}n.AbstractButtonView=b,b.__name__=\"AbstractButtonView\";class p extends _.Control{constructor(t){super(t)}}n.AbstractButton=p,o=p,p.__name__=\"AbstractButton\",o.define((({String:t,Ref:e,Nullable:n})=>({label:[t,\"Button\"],icon:[n(e(a.AbstractIcon)),null],button_type:[r.ButtonType,\"default\"]})))},\n", + " 442: function _(t,e,o,s,n){s();const i=t(512),l=t(43);class c extends i.WidgetView{connect_signals(){super.connect_signals();const t=this.model.properties;this.on_change(t.disabled,(()=>{for(const t of this.controls())(0,l.toggle_attribute)(t,\"disabled\",this.model.disabled)}))}}o.ControlView=c,c.__name__=\"ControlView\";class r extends i.Widget{constructor(t){super(t)}}o.Control=r,r.__name__=\"Control\"},\n", + " 512: function _(i,e,t,n,o){var r;n();const s=i(312);class _ extends s.HTMLBoxView{get orientation(){return\"horizontal\"}get default_size(){return this.model.default_size}_width_policy(){return\"horizontal\"==this.orientation?super._width_policy():\"fixed\"}_height_policy(){return\"horizontal\"==this.orientation?\"fixed\":super._height_policy()}box_sizing(){const i=super.box_sizing();return\"horizontal\"==this.orientation?null==i.width&&(i.width=this.default_size):null==i.height&&(i.height=this.default_size),i}}t.WidgetView=_,_.__name__=\"WidgetView\";class h extends s.HTMLBox{constructor(i){super(i)}}t.Widget=h,r=h,h.__name__=\"Widget\",r.define((({Number:i})=>({default_size:[i,300]}))),r.override({margin:[5,5,5,5]})},\n", + " 444: function _(c,t,s,n,e){n();const o=c(53),_=c(226);class a extends _.DOMView{}s.AbstractIconView=a,a.__name__=\"AbstractIconView\";class r extends o.Model{constructor(c){super(c)}}s.AbstractIcon=r,r.__name__=\"AbstractIcon\"},\n", + " 445: function _(e,t,n,s,i){s();const h=e(1);var o;const _=e(446),u=e(43),r=e(10),c=(0,h.__importStar)(e(229)),a=c;class l extends _.TextInputView{constructor(){super(...arguments),this._open=!1,this._last_value=\"\",this._hover_index=0}styles(){return[...super.styles(),c.default]}render(){super.render(),this.input_el.addEventListener(\"keydown\",(e=>this._keydown(e))),this.input_el.addEventListener(\"keyup\",(e=>this._keyup(e))),this.menu=(0,u.div)({class:[a.menu,a.below]}),this.menu.addEventListener(\"click\",(e=>this._menu_click(e))),this.menu.addEventListener(\"mouseover\",(e=>this._menu_hover(e))),this.el.appendChild(this.menu),(0,u.undisplay)(this.menu)}change_input(){this._open&&this.menu.children.length>0?(this.model.value=this.menu.children[this._hover_index].textContent,this.input_el.focus(),this._hide_menu()):this.model.restrict||super.change_input()}_update_completions(e){(0,u.empty)(this.menu);for(const t of e){const e=(0,u.div)(t);this.menu.appendChild(e)}e.length>0&&this.menu.children[0].classList.add(a.active)}_show_menu(){if(!this._open){this._open=!0,this._hover_index=0,this._last_value=this.model.value,(0,u.display)(this.menu);const e=t=>{const{target:n}=t;n instanceof HTMLElement&&!this.el.contains(n)&&(document.removeEventListener(\"click\",e),this._hide_menu())};document.addEventListener(\"click\",e)}}_hide_menu(){this._open&&(this._open=!1,(0,u.undisplay)(this.menu))}_menu_click(e){e.target!=e.currentTarget&&e.target instanceof Element&&(this.model.value=e.target.textContent,this.input_el.focus(),this._hide_menu())}_menu_hover(e){if(e.target!=e.currentTarget&&e.target instanceof Element){let t=0;for(t=0;t0&&(this.menu.children[this._hover_index].classList.remove(a.active),this._hover_index=(0,r.clamp)(e,0,t-1),this.menu.children[this._hover_index].classList.add(a.active))}_keydown(e){}_keyup(e){switch(e.keyCode){case u.Keys.Enter:this.change_input();break;case u.Keys.Esc:this._hide_menu();break;case u.Keys.Up:this._bump_hover(this._hover_index-1);break;case u.Keys.Down:this._bump_hover(this._hover_index+1);break;default:{const e=this.input_el.value;if(e.lengthe:e=>e.toLowerCase();for(const n of this.model.completions)s(n).startsWith(s(e))&&t.push(n);this._update_completions(t),0==t.length?this._hide_menu():this._show_menu()}}}}n.AutocompleteInputView=l,l.__name__=\"AutocompleteInputView\";class d extends _.TextInput{constructor(e){super(e)}}n.AutocompleteInput=d,o=d,d.__name__=\"AutocompleteInput\",o.prototype.default_view=l,o.define((({Boolean:e,Int:t,String:n,Array:s})=>({completions:[s(n),[]],min_characters:[t,2],case_sensitive:[e,!0],restrict:[e,!0]})))},\n", + " 446: function _(t,e,n,p,_){p();const u=t(1);var i;const s=t(447),r=t(43),x=(0,u.__importStar)(t(449));class a extends s.TextLikeInputView{_render_input(){this.input_el=(0,r.input)({type:\"text\",class:x.input})}}n.TextInputView=a,a.__name__=\"TextInputView\";class c extends s.TextLikeInput{constructor(t){super(t)}}n.TextInput=c,i=c,c.__name__=\"TextInput\",i.prototype.default_view=a},\n", + " 447: function _(e,t,n,i,l){var s;i();const h=e(448);class a extends h.InputWidgetView{connect_signals(){super.connect_signals(),this.connect(this.model.properties.name.change,(()=>{var e;return this.input_el.name=null!==(e=this.model.name)&&void 0!==e?e:\"\"})),this.connect(this.model.properties.value.change,(()=>this.input_el.value=this.model.value)),this.connect(this.model.properties.value_input.change,(()=>this.input_el.value=this.model.value_input)),this.connect(this.model.properties.disabled.change,(()=>this.input_el.disabled=this.model.disabled)),this.connect(this.model.properties.placeholder.change,(()=>this.input_el.placeholder=this.model.placeholder)),this.connect(this.model.properties.max_length.change,(()=>{const{max_length:e}=this.model;null!=e?this.input_el.maxLength=e:this.input_el.removeAttribute(\"maxLength\")}))}render(){var e;super.render(),this._render_input();const{input_el:t}=this;t.name=null!==(e=this.model.name)&&void 0!==e?e:\"\",t.value=this.model.value,t.disabled=this.model.disabled,t.placeholder=this.model.placeholder,null!=this.model.max_length&&(t.maxLength=this.model.max_length),t.addEventListener(\"change\",(()=>this.change_input())),t.addEventListener(\"input\",(()=>this.change_input_value())),this.group_el.appendChild(t)}change_input(){this.model.value=this.input_el.value,super.change_input()}change_input_value(){this.model.value_input=this.input_el.value,super.change_input()}}n.TextLikeInputView=a,a.__name__=\"TextLikeInputView\";class u extends h.InputWidget{constructor(e){super(e)}}n.TextLikeInput=u,s=u,u.__name__=\"TextLikeInput\",s.define((({Int:e,String:t,Nullable:n})=>({value:[t,\"\"],value_input:[t,\"\"],placeholder:[t,\"\"],max_length:[n(e),null]})))},\n", + " 448: function _(e,t,n,s,l){s();const i=e(1);var o;const r=e(442),_=e(43),p=(0,i.__importStar)(e(449)),a=p;class c extends r.ControlView{*controls(){yield this.input_el}connect_signals(){super.connect_signals(),this.connect(this.model.properties.title.change,(()=>{this.label_el.textContent=this.model.title}))}styles(){return[...super.styles(),p.default]}render(){super.render();const{title:e}=this.model;this.label_el=(0,_.label)({style:{display:0==e.length?\"none\":\"\"}},e),this.group_el=(0,_.div)({class:a.input_group},this.label_el),this.el.appendChild(this.group_el)}change_input(){}}n.InputWidgetView=c,c.__name__=\"InputWidgetView\";class d extends r.Control{constructor(e){super(e)}}n.InputWidget=d,o=d,d.__name__=\"InputWidget\",o.define((({String:e})=>({title:[e,\"\"]})))},\n", + " 449: function _(o,p,t,n,i){n(),t.root=\"bk-root\",t.input=\"bk-input\",t.input_group=\"bk-input-group\",t.inline=\"bk-inline\",t.spin_wrapper=\"bk-spin-wrapper\",t.spin_btn=\"bk-spin-btn\",t.spin_btn_up=\"bk-spin-btn-up\",t.spin_btn_down=\"bk-spin-btn-down\",t.default='.bk-root .bk-input{display:inline-block;width:100%;flex-grow:1;min-height:31px;padding:0 12px;background-color:#fff;border:1px solid #ccc;border-radius:4px;}.bk-root .bk-input:focus{border-color:#66afe9;outline:0;box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);}.bk-root .bk-input::placeholder,.bk-root .bk-input:-ms-input-placeholder,.bk-root .bk-input::-moz-placeholder,.bk-root .bk-input::-webkit-input-placeholder{color:#999;opacity:1;}.bk-root .bk-input[disabled]{cursor:not-allowed;background-color:#eee;opacity:1;}.bk-root select:not([multiple]).bk-input,.bk-root select:not([size]).bk-input{height:auto;appearance:none;-webkit-appearance:none;background-image:url(\\'data:image/svg+xml;utf8,\\');background-position:right 0.5em center;background-size:8px 6px;background-repeat:no-repeat;}.bk-root select[multiple].bk-input,.bk-root select[size].bk-input,.bk-root textarea.bk-input{height:auto;}.bk-root .bk-input-group{width:100%;height:100%;display:inline-flex;flex-wrap:nowrap;align-items:start;flex-direction:column;white-space:nowrap;}.bk-root .bk-input-group.bk-inline{flex-direction:row;}.bk-root .bk-input-group.bk-inline > *:not(:first-child){margin-left:5px;}.bk-root .bk-input-group input[type=\"checkbox\"] + span,.bk-root .bk-input-group input[type=\"radio\"] + span{position:relative;top:-2px;margin-left:3px;}.bk-root .bk-input-group > .bk-spin-wrapper{display:inherit;width:inherit;height:inherit;position:relative;overflow:hidden;padding:0;vertical-align:middle;}.bk-root .bk-input-group > .bk-spin-wrapper input{padding-right:20px;}.bk-root .bk-input-group > .bk-spin-wrapper > .bk-spin-btn{position:absolute;display:block;height:50%;min-height:0;min-width:0;width:30px;padding:0;margin:0;right:0;border:none;background:none;cursor:pointer;}.bk-root .bk-input-group > .bk-spin-wrapper > .bk-spin-btn:before{content:\"\";display:inline-block;transform:translateY(-50%);border-left:5px solid transparent;border-right:5px solid transparent;}.bk-root .bk-input-group > .bk-spin-wrapper > .bk-spin-btn.bk-spin-btn-up{top:0;}.bk-root .bk-input-group > .bk-spin-wrapper > .bk-spin-btn.bk-spin-btn-up:before{border-bottom:5px solid black;}.bk-root .bk-input-group > .bk-spin-wrapper > .bk-spin-btn.bk-spin-btn-up:disabled:before{border-bottom-color:grey;}.bk-root .bk-input-group > .bk-spin-wrapper > .bk-spin-btn.bk-spin-btn-down{bottom:0;}.bk-root .bk-input-group > .bk-spin-wrapper > .bk-spin-btn.bk-spin-btn-down:before{border-top:5px solid black;}.bk-root .bk-input-group > .bk-spin-wrapper > .bk-spin-btn.bk-spin-btn-down:disabled:before{border-top-color:grey;}'},\n", + " 450: function _(t,e,n,o,c){var s;o();const u=t(441),r=t(251);class i extends u.AbstractButtonView{click(){this.model.trigger_event(new r.ButtonClick),super.click()}}n.ButtonView=i,i.__name__=\"ButtonView\";class _ extends u.AbstractButton{constructor(t){super(t)}}n.Button=_,s=_,_.__name__=\"Button\",s.prototype.default_view=i,s.override({label:\"Button\"})},\n", + " 451: function _(t,e,o,c,a){c();const s=t(1);var n;const i=t(452),r=t(43),u=(0,s.__importStar)(t(318));class _ extends i.ButtonGroupView{get active(){return new Set(this.model.active)}change_active(t){const{active:e}=this;e.has(t)?e.delete(t):e.add(t),this.model.active=[...e].sort()}_update_active(){const{active:t}=this;this._buttons.forEach(((e,o)=>{(0,r.classes)(e).toggle(u.active,t.has(o))}))}}o.CheckboxButtonGroupView=_,_.__name__=\"CheckboxButtonGroupView\";class h extends i.ButtonGroup{constructor(t){super(t)}}o.CheckboxButtonGroup=h,n=h,h.__name__=\"CheckboxButtonGroup\",n.prototype.default_view=_,n.define((({Int:t,Array:e})=>({active:[e(t),[]]})))},\n", + " 452: function _(t,e,n,s,i){s();const o=t(1);var r;const a=t(453),l=t(20),d=t(43),u=(0,o.__importStar)(t(318)),_=u;class c extends a.OrientedControlView{get default_size(){return\"horizontal\"==this.orientation?this.model.default_size:void 0}*controls(){yield*this._buttons}connect_signals(){super.connect_signals();const t=this.model.properties;this.on_change(t.button_type,(()=>this.render())),this.on_change(t.labels,(()=>this.render())),this.on_change(t.active,(()=>this._update_active()))}styles(){return[...super.styles(),u.default]}render(){super.render(),this._buttons=this.model.labels.map(((t,e)=>{const n=(0,d.div)({class:[_.btn,_[`btn_${this.model.button_type}`]],disabled:this.model.disabled},t);return n.addEventListener(\"click\",(()=>this.change_active(e))),n})),this._update_active();const t=\"horizontal\"==this.model.orientation?_.horizontal:_.vertical,e=(0,d.div)({class:[_.btn_group,t]},this._buttons);this.el.appendChild(e)}}n.ButtonGroupView=c,c.__name__=\"ButtonGroupView\";class h extends a.OrientedControl{constructor(t){super(t)}}n.ButtonGroup=h,r=h,h.__name__=\"ButtonGroup\",r.define((({String:t,Array:e})=>({labels:[e(t),[]],button_type:[l.ButtonType,\"default\"]})))},\n", + " 453: function _(n,t,e,o,r){var i;o();const a=n(442),l=n(20);class s extends a.ControlView{get orientation(){return this.model.orientation}}e.OrientedControlView=s,s.__name__=\"OrientedControlView\";class _ extends a.Control{constructor(n){super(n)}}e.OrientedControl=_,i=_,_.__name__=\"OrientedControl\",i.define((()=>({orientation:[l.Orientation,\"horizontal\"]})))},\n", + " 454: function _(e,t,n,i,s){i();const o=e(1);var a;const c=e(455),l=e(43),d=e(9),p=(0,o.__importStar)(e(449));class r extends c.InputGroupView{render(){super.render();const e=(0,l.div)({class:[p.input_group,this.model.inline?p.inline:null]});this.el.appendChild(e);const{active:t,labels:n}=this.model;this._inputs=[];for(let i=0;ithis.change_active(i))),this._inputs.push(s),this.model.disabled&&(s.disabled=!0),(0,d.includes)(t,i)&&(s.checked=!0);const o=(0,l.label)(s,(0,l.span)(n[i]));e.appendChild(o)}}change_active(e){const t=new Set(this.model.active);t.has(e)?t.delete(e):t.add(e),this.model.active=[...t].sort()}}n.CheckboxGroupView=r,r.__name__=\"CheckboxGroupView\";class h extends c.InputGroup{constructor(e){super(e)}}n.CheckboxGroup=h,a=h,h.__name__=\"CheckboxGroup\",a.prototype.default_view=r,a.define((({Boolean:e,Int:t,String:n,Array:i})=>({active:[i(t),[]],labels:[i(n),[]],inline:[e,!1]})))},\n", + " 455: function _(n,t,e,s,o){s();const r=n(1),u=n(442),c=(0,r.__importDefault)(n(449));class _ extends u.ControlView{*controls(){yield*this._inputs}connect_signals(){super.connect_signals(),this.connect(this.model.change,(()=>this.render()))}styles(){return[...super.styles(),c.default]}}e.InputGroupView=_,_.__name__=\"InputGroupView\";class i extends u.Control{constructor(n){super(n)}}e.InputGroup=i,i.__name__=\"InputGroup\"},\n", + " 456: function _(e,t,i,n,o){n();const s=e(1);var l;const r=e(448),c=e(43),a=e(22),d=(0,s.__importStar)(e(449));class h extends r.InputWidgetView{connect_signals(){super.connect_signals(),this.connect(this.model.properties.name.change,(()=>{var e;return this.input_el.name=null!==(e=this.model.name)&&void 0!==e?e:\"\"})),this.connect(this.model.properties.color.change,(()=>this.input_el.value=(0,a.color2hexrgb)(this.model.color))),this.connect(this.model.properties.disabled.change,(()=>this.input_el.disabled=this.model.disabled))}render(){super.render(),this.input_el=(0,c.input)({type:\"color\",class:d.input,name:this.model.name,value:this.model.color,disabled:this.model.disabled}),this.input_el.addEventListener(\"change\",(()=>this.change_input())),this.group_el.appendChild(this.input_el)}change_input(){this.model.color=this.input_el.value,super.change_input()}}i.ColorPickerView=h,h.__name__=\"ColorPickerView\";class p extends r.InputWidget{constructor(e){super(e)}}i.ColorPicker=p,l=p,p.__name__=\"ColorPicker\",l.prototype.default_view=h,l.define((({Color:e})=>({color:[e,\"#000000\"]})))},\n", + " 457: function _(e,t,i,n,s){n();const a=e(1);var l;const o=(0,a.__importDefault)(e(458)),d=e(448),r=e(43),c=e(20),u=e(8),h=(0,a.__importStar)(e(449)),_=(0,a.__importDefault)(e(459));function p(e){const t=[];for(const i of e)if((0,u.isString)(i))t.push(i);else{const[e,n]=i;t.push({from:e,to:n})}return t}class m extends d.InputWidgetView{connect_signals(){super.connect_signals();const{value:e,min_date:t,max_date:i,disabled_dates:n,enabled_dates:s,position:a,inline:l}=this.model.properties;this.connect(e.change,(()=>{var e;return null===(e=this._picker)||void 0===e?void 0:e.setDate(this.model.value)})),this.connect(t.change,(()=>{var e;return null===(e=this._picker)||void 0===e?void 0:e.set(\"minDate\",this.model.min_date)})),this.connect(i.change,(()=>{var e;return null===(e=this._picker)||void 0===e?void 0:e.set(\"maxDate\",this.model.max_date)})),this.connect(n.change,(()=>{var e;return null===(e=this._picker)||void 0===e?void 0:e.set(\"disable\",this.model.disabled_dates)})),this.connect(s.change,(()=>{var e;return null===(e=this._picker)||void 0===e?void 0:e.set(\"enable\",this.model.enabled_dates)})),this.connect(a.change,(()=>{var e;return null===(e=this._picker)||void 0===e?void 0:e.set(\"position\",this.model.position)})),this.connect(l.change,(()=>{var e;return null===(e=this._picker)||void 0===e?void 0:e.set(\"inline\",this.model.inline)}))}remove(){var e;null===(e=this._picker)||void 0===e||e.destroy(),super.remove()}styles(){return[...super.styles(),_.default]}render(){var e,t;null==this._picker&&(super.render(),this.input_el=(0,r.input)({type:\"text\",class:h.input,disabled:this.model.disabled}),this.group_el.appendChild(this.input_el),this._picker=(0,o.default)(this.input_el,{defaultDate:this.model.value,minDate:null!==(e=this.model.min_date)&&void 0!==e?e:void 0,maxDate:null!==(t=this.model.max_date)&&void 0!==t?t:void 0,inline:this.model.inline,position:this.model.position,disable:p(this.model.disabled_dates),enable:p(this.model.enabled_dates),onChange:(e,t,i)=>this._on_change(e,t,i)}))}_on_change(e,t,i){this.model.value=t,this.change_input()}}i.DatePickerView=m,m.__name__=\"DatePickerView\";class v extends d.InputWidget{constructor(e){super(e)}}i.DatePicker=v,l=v,v.__name__=\"DatePicker\",l.prototype.default_view=m,l.define((({Boolean:e,String:t,Array:i,Tuple:n,Or:s,Nullable:a})=>{const l=i(s(t,n(t,t)));return{value:[t],min_date:[a(t),null],max_date:[a(t),null],disabled_dates:[l,[]],enabled_dates:[l,[]],position:[c.CalendarPosition,\"auto\"],inline:[e,!1]}}))},\n", + " 458: function _(e,n,t,a,i){\n", + " /* flatpickr v4.6.6, @license MIT */var o,r;o=this,r=function(){\"use strict\";\n", + " /*! *****************************************************************************\n", + " Copyright (c) Microsoft Corporation.\n", + " \n", + " Permission to use, copy, modify, and/or distribute this software for any\n", + " purpose with or without fee is hereby granted.\n", + " \n", + " THE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\n", + " REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\n", + " AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\n", + " INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\n", + " LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\n", + " OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\n", + " PERFORMANCE OF THIS SOFTWARE.\n", + " ***************************************************************************** */var e=function(){return e=Object.assign||function(e){for(var n,t=1,a=arguments.length;t\",noCalendar:!1,now:new Date,onChange:[],onClose:[],onDayCreate:[],onDestroy:[],onKeyDown:[],onMonthChange:[],onOpen:[],onParseConfig:[],onReady:[],onValueUpdate:[],onYearChange:[],onPreCalendarPosition:[],plugins:[],position:\"auto\",positionElement:void 0,prevArrow:\"\",shorthandCurrentMonth:!1,showMonths:1,static:!1,time_24hr:!1,weekNumbers:!1,wrap:!1},i={weekdays:{shorthand:[\"Sun\",\"Mon\",\"Tue\",\"Wed\",\"Thu\",\"Fri\",\"Sat\"],longhand:[\"Sunday\",\"Monday\",\"Tuesday\",\"Wednesday\",\"Thursday\",\"Friday\",\"Saturday\"]},months:{shorthand:[\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\"],longhand:[\"January\",\"February\",\"March\",\"April\",\"May\",\"June\",\"July\",\"August\",\"September\",\"October\",\"November\",\"December\"]},daysInMonth:[31,28,31,30,31,30,31,31,30,31,30,31],firstDayOfWeek:0,ordinal:function(e){var n=e%100;if(n>3&&n<21)return\"th\";switch(n%10){case 1:return\"st\";case 2:return\"nd\";case 3:return\"rd\";default:return\"th\"}},rangeSeparator:\" to \",weekAbbreviation:\"Wk\",scrollTitle:\"Scroll to increment\",toggleTitle:\"Click to toggle\",amPM:[\"AM\",\"PM\"],yearAriaLabel:\"Year\",monthAriaLabel:\"Month\",hourAriaLabel:\"Hour\",minuteAriaLabel:\"Minute\",time_24hr:!1},o=function(e,n){return void 0===n&&(n=2),(\"000\"+e).slice(-1*n)},r=function(e){return!0===e?1:0};function l(e,n,t){var a;return void 0===t&&(t=!1),function(){var i=this,o=arguments;null!==a&&clearTimeout(a),a=window.setTimeout((function(){a=null,t||e.apply(i,o)}),n),t&&!a&&e.apply(i,o)}}var c=function(e){return e instanceof Array?e:[e]};function d(e,n,t){if(!0===t)return e.classList.add(n);e.classList.remove(n)}function s(e,n,t){var a=window.document.createElement(e);return n=n||\"\",t=t||\"\",a.className=n,void 0!==t&&(a.textContent=t),a}function u(e){for(;e.firstChild;)e.removeChild(e.firstChild)}function f(e,n){return n(e)?e:e.parentNode?f(e.parentNode,n):void 0}function m(e,n){var t=s(\"div\",\"numInputWrapper\"),a=s(\"input\",\"numInput \"+e),i=s(\"span\",\"arrowUp\"),o=s(\"span\",\"arrowDown\");if(-1===navigator.userAgent.indexOf(\"MSIE 9.0\")?a.type=\"number\":(a.type=\"text\",a.pattern=\"\\\\d*\"),void 0!==n)for(var r in n)a.setAttribute(r,n[r]);return t.appendChild(a),t.appendChild(i),t.appendChild(o),t}function g(e){try{return\"function\"==typeof e.composedPath?e.composedPath()[0]:e.target}catch(n){return e.target}}var p=function(){},h=function(e,n,t){return t.months[n?\"shorthand\":\"longhand\"][e]},v={D:p,F:function(e,n,t){e.setMonth(t.months.longhand.indexOf(n))},G:function(e,n){e.setHours(parseFloat(n))},H:function(e,n){e.setHours(parseFloat(n))},J:function(e,n){e.setDate(parseFloat(n))},K:function(e,n,t){e.setHours(e.getHours()%12+12*r(new RegExp(t.amPM[1],\"i\").test(n)))},M:function(e,n,t){e.setMonth(t.months.shorthand.indexOf(n))},S:function(e,n){e.setSeconds(parseFloat(n))},U:function(e,n){return new Date(1e3*parseFloat(n))},W:function(e,n,t){var a=parseInt(n),i=new Date(e.getFullYear(),0,2+7*(a-1),0,0,0,0);return i.setDate(i.getDate()-i.getDay()+t.firstDayOfWeek),i},Y:function(e,n){e.setFullYear(parseFloat(n))},Z:function(e,n){return new Date(n)},d:function(e,n){e.setDate(parseFloat(n))},h:function(e,n){e.setHours(parseFloat(n))},i:function(e,n){e.setMinutes(parseFloat(n))},j:function(e,n){e.setDate(parseFloat(n))},l:p,m:function(e,n){e.setMonth(parseFloat(n)-1)},n:function(e,n){e.setMonth(parseFloat(n)-1)},s:function(e,n){e.setSeconds(parseFloat(n))},u:function(e,n){return new Date(parseFloat(n))},w:p,y:function(e,n){e.setFullYear(2e3+parseFloat(n))}},D={D:\"(\\\\w+)\",F:\"(\\\\w+)\",G:\"(\\\\d\\\\d|\\\\d)\",H:\"(\\\\d\\\\d|\\\\d)\",J:\"(\\\\d\\\\d|\\\\d)\\\\w+\",K:\"\",M:\"(\\\\w+)\",S:\"(\\\\d\\\\d|\\\\d)\",U:\"(.+)\",W:\"(\\\\d\\\\d|\\\\d)\",Y:\"(\\\\d{4})\",Z:\"(.+)\",d:\"(\\\\d\\\\d|\\\\d)\",h:\"(\\\\d\\\\d|\\\\d)\",i:\"(\\\\d\\\\d|\\\\d)\",j:\"(\\\\d\\\\d|\\\\d)\",l:\"(\\\\w+)\",m:\"(\\\\d\\\\d|\\\\d)\",n:\"(\\\\d\\\\d|\\\\d)\",s:\"(\\\\d\\\\d|\\\\d)\",u:\"(.+)\",w:\"(\\\\d\\\\d|\\\\d)\",y:\"(\\\\d{2})\"},w={Z:function(e){return e.toISOString()},D:function(e,n,t){return n.weekdays.shorthand[w.w(e,n,t)]},F:function(e,n,t){return h(w.n(e,n,t)-1,!1,n)},G:function(e,n,t){return o(w.h(e,n,t))},H:function(e){return o(e.getHours())},J:function(e,n){return void 0!==n.ordinal?e.getDate()+n.ordinal(e.getDate()):e.getDate()},K:function(e,n){return n.amPM[r(e.getHours()>11)]},M:function(e,n){return h(e.getMonth(),!0,n)},S:function(e){return o(e.getSeconds())},U:function(e){return e.getTime()/1e3},W:function(e,n,t){return t.getWeek(e)},Y:function(e){return o(e.getFullYear(),4)},d:function(e){return o(e.getDate())},h:function(e){return e.getHours()%12?e.getHours()%12:12},i:function(e){return o(e.getMinutes())},j:function(e){return e.getDate()},l:function(e,n){return n.weekdays.longhand[e.getDay()]},m:function(e){return o(e.getMonth()+1)},n:function(e){return e.getMonth()+1},s:function(e){return e.getSeconds()},u:function(e){return e.getTime()},w:function(e){return e.getDay()},y:function(e){return String(e.getFullYear()).substring(2)}},b=function(e){var n=e.config,t=void 0===n?a:n,o=e.l10n,r=void 0===o?i:o,l=e.isMobile,c=void 0!==l&&l;return function(e,n,a){var i=a||r;return void 0===t.formatDate||c?n.split(\"\").map((function(n,a,o){return w[n]&&\"\\\\\"!==o[a-1]?w[n](e,i,t):\"\\\\\"!==n?n:\"\"})).join(\"\"):t.formatDate(e,n,i)}},C=function(e){var n=e.config,t=void 0===n?a:n,o=e.l10n,r=void 0===o?i:o;return function(e,n,i,o){if(0===e||e){var l,c=o||r,d=e;if(e instanceof Date)l=new Date(e.getTime());else if(\"string\"!=typeof e&&void 0!==e.toFixed)l=new Date(e);else if(\"string\"==typeof e){var s=n||(t||a).dateFormat,u=String(e).trim();if(\"today\"===u)l=new Date,i=!0;else if(/Z$/.test(u)||/GMT$/.test(u))l=new Date(e);else if(t&&t.parseDate)l=t.parseDate(e,s);else{l=t&&t.noCalendar?new Date((new Date).setHours(0,0,0,0)):new Date((new Date).getFullYear(),0,1,0,0,0,0);for(var f=void 0,m=[],g=0,p=0,h=\"\";gl&&(u=a===w.hourElement?u-l-r(!w.amPM):i,m&&H(void 0,1,w.hourElement)),w.amPM&&f&&(1===c?u+d===23:Math.abs(u-d)>c)&&(w.amPM.textContent=w.l10n.amPM[r(w.amPM.textContent===w.l10n.amPM[0])]),a.value=o(u)}}(e);var c=w._input.value;I(),be(),w._input.value!==c&&w._debouncedChange()}function I(){if(void 0!==w.hourElement&&void 0!==w.minuteElement){var e,n,t=(parseInt(w.hourElement.value.slice(-2),10)||0)%24,a=(parseInt(w.minuteElement.value,10)||0)%60,i=void 0!==w.secondElement?(parseInt(w.secondElement.value,10)||0)%60:0;void 0!==w.amPM&&(e=t,n=w.amPM.textContent,t=e%12+12*r(n===w.l10n.amPM[1]));var o=void 0!==w.config.minTime||w.config.minDate&&w.minDateHasTime&&w.latestSelectedDateObj&&0===M(w.latestSelectedDateObj,w.config.minDate,!0);if(void 0!==w.config.maxTime||w.config.maxDate&&w.maxDateHasTime&&w.latestSelectedDateObj&&0===M(w.latestSelectedDateObj,w.config.maxDate,!0)){var l=void 0!==w.config.maxTime?w.config.maxTime:w.config.maxDate;(t=Math.min(t,l.getHours()))===l.getHours()&&(a=Math.min(a,l.getMinutes())),a===l.getMinutes()&&(i=Math.min(i,l.getSeconds()))}if(o){var c=void 0!==w.config.minTime?w.config.minTime:w.config.minDate;(t=Math.max(t,c.getHours()))===c.getHours()&&(a=Math.max(a,c.getMinutes())),a===c.getMinutes()&&(i=Math.max(i,c.getSeconds()))}O(t,a,i)}}function S(e){var n=e||w.latestSelectedDateObj;n&&O(n.getHours(),n.getMinutes(),n.getSeconds())}function _(){var e=w.config.defaultHour,n=w.config.defaultMinute,t=w.config.defaultSeconds;if(void 0!==w.config.minDate){var a=w.config.minDate.getHours(),i=w.config.minDate.getMinutes();(e=Math.max(e,a))===a&&(n=Math.max(i,n)),e===a&&n===i&&(t=w.config.minDate.getSeconds())}if(void 0!==w.config.maxDate){var o=w.config.maxDate.getHours(),r=w.config.maxDate.getMinutes();(e=Math.min(e,o))===o&&(n=Math.min(r,n)),e===o&&n===r&&(t=w.config.maxDate.getSeconds())}return{hours:e,minutes:n,seconds:t}}function O(e,n,t){void 0!==w.latestSelectedDateObj&&w.latestSelectedDateObj.setHours(e%24,n,t||0,0),w.hourElement&&w.minuteElement&&!w.isMobile&&(w.hourElement.value=o(w.config.time_24hr?e:(12+e)%12+12*r(e%12==0)),w.minuteElement.value=o(n),void 0!==w.amPM&&(w.amPM.textContent=w.l10n.amPM[r(e>=12)]),void 0!==w.secondElement&&(w.secondElement.value=o(t)))}function F(e){var n=g(e),t=parseInt(n.value)+(e.delta||0);(t/1e3>1||\"Enter\"===e.key&&!/[^\\d]/.test(t.toString()))&&Q(t)}function N(e,n,t,a){return n instanceof Array?n.forEach((function(n){return N(e,n,t,a)})):e instanceof Array?e.forEach((function(e){return N(e,n,t,a)})):(e.addEventListener(n,t,a),void w._handlers.push({element:e,event:n,handler:t,options:a}))}function A(){pe(\"onChange\")}function P(e,n){var t=void 0!==e?w.parseDate(e):w.latestSelectedDateObj||(w.config.minDate&&w.config.minDate>w.now?w.config.minDate:w.config.maxDate&&w.config.maxDate=0&&M(e,w.selectedDates[1])<=0}(n)&&!ve(n)&&o.classList.add(\"inRange\"),w.weekNumbers&&1===w.config.showMonths&&\"prevMonthDay\"!==e&&t%7==1&&w.weekNumbers.insertAdjacentHTML(\"beforeend\",\"\"+w.config.getWeek(n)+\"\"),pe(\"onDayCreate\",o),o}function L(e){e.focus(),\"range\"===w.config.mode&&ae(e)}function W(e){for(var n=e>0?0:w.config.showMonths-1,t=e>0?w.config.showMonths:-1,a=n;a!=t;a+=e)for(var i=w.daysContainer.children[a],o=e>0?0:i.children.length-1,r=e>0?i.children.length:-1,l=o;l!=r;l+=e){var c=i.children[l];if(-1===c.className.indexOf(\"hidden\")&&X(c.dateObj))return c}}function R(e,n){var t=ee(document.activeElement||document.body),a=void 0!==e?e:t?document.activeElement:void 0!==w.selectedDateElem&&ee(w.selectedDateElem)?w.selectedDateElem:void 0!==w.todayDateElem&&ee(w.todayDateElem)?w.todayDateElem:W(n>0?1:-1);void 0===a?w._input.focus():t?function(e,n){for(var t=-1===e.className.indexOf(\"Month\")?e.dateObj.getMonth():w.currentMonth,a=n>0?w.config.showMonths:-1,i=n>0?1:-1,o=t-w.currentMonth;o!=a;o+=i)for(var r=w.daysContainer.children[o],l=t-w.currentMonth===o?e.$i+n:n<0?r.children.length-1:0,c=r.children.length,d=l;d>=0&&d0?c:-1);d+=i){var s=r.children[d];if(-1===s.className.indexOf(\"hidden\")&&X(s.dateObj)&&Math.abs(e.$i-d)>=Math.abs(n))return L(s)}w.changeMonth(i),R(W(i),0)}(a,n):L(a)}function B(e,n){for(var t=(new Date(e,n,1).getDay()-w.l10n.firstDayOfWeek+7)%7,a=w.utils.getDaysInMonth((n-1+12)%12,e),i=w.utils.getDaysInMonth(n,e),o=window.document.createDocumentFragment(),r=w.config.showMonths>1,l=r?\"prevMonthDay hidden\":\"prevMonthDay\",c=r?\"nextMonthDay hidden\":\"nextMonthDay\",d=a+1-t,u=0;d<=a;d++,u++)o.appendChild(j(l,new Date(e,n-1,d),d,u));for(d=1;d<=i;d++,u++)o.appendChild(j(\"\",new Date(e,n,d),d,u));for(var f=i+1;f<=42-t&&(1===w.config.showMonths||u%7!=0);f++,u++)o.appendChild(j(c,new Date(e,n+1,f%i),f,u));var m=s(\"div\",\"dayContainer\");return m.appendChild(o),m}function J(){if(void 0!==w.daysContainer){u(w.daysContainer),w.weekNumbers&&u(w.weekNumbers);for(var e=document.createDocumentFragment(),n=0;n1||\"dropdown\"!==w.config.monthSelectorType)){var e=function(e){return!(void 0!==w.config.minDate&&w.currentYear===w.config.minDate.getFullYear()&&ew.config.maxDate.getMonth())};w.monthsDropdownContainer.tabIndex=-1,w.monthsDropdownContainer.innerHTML=\"\";for(var n=0;n<12;n++)if(e(n)){var t=s(\"option\",\"flatpickr-monthDropdown-month\");t.value=new Date(w.currentYear,n).getMonth().toString(),t.textContent=h(n,w.config.shorthandCurrentMonth,w.l10n),t.tabIndex=-1,w.currentMonth===n&&(t.selected=!0),w.monthsDropdownContainer.appendChild(t)}}}function U(){var e,n=s(\"div\",\"flatpickr-month\"),t=window.document.createDocumentFragment();w.config.showMonths>1||\"static\"===w.config.monthSelectorType?e=s(\"span\",\"cur-month\"):(w.monthsDropdownContainer=s(\"select\",\"flatpickr-monthDropdown-months\"),w.monthsDropdownContainer.setAttribute(\"aria-label\",w.l10n.monthAriaLabel),N(w.monthsDropdownContainer,\"change\",(function(e){var n=g(e),t=parseInt(n.value,10);w.changeMonth(t-w.currentMonth),pe(\"onMonthChange\")})),K(),e=w.monthsDropdownContainer);var a=m(\"cur-year\",{tabindex:\"-1\"}),i=a.getElementsByTagName(\"input\")[0];i.setAttribute(\"aria-label\",w.l10n.yearAriaLabel),w.config.minDate&&i.setAttribute(\"min\",w.config.minDate.getFullYear().toString()),w.config.maxDate&&(i.setAttribute(\"max\",w.config.maxDate.getFullYear().toString()),i.disabled=!!w.config.minDate&&w.config.minDate.getFullYear()===w.config.maxDate.getFullYear());var o=s(\"div\",\"flatpickr-current-month\");return o.appendChild(e),o.appendChild(a),t.appendChild(o),n.appendChild(t),{container:n,yearElement:i,monthElement:e}}function q(){u(w.monthNav),w.monthNav.appendChild(w.prevMonthNav),w.config.showMonths&&(w.yearElements=[],w.monthElements=[]);for(var e=w.config.showMonths;e--;){var n=U();w.yearElements.push(n.yearElement),w.monthElements.push(n.monthElement),w.monthNav.appendChild(n.container)}w.monthNav.appendChild(w.nextMonthNav)}function $(){w.weekdayContainer?u(w.weekdayContainer):w.weekdayContainer=s(\"div\",\"flatpickr-weekdays\");for(var e=w.config.showMonths;e--;){var n=s(\"div\",\"flatpickr-weekdaycontainer\");w.weekdayContainer.appendChild(n)}return z(),w.weekdayContainer}function z(){if(w.weekdayContainer){var e=w.l10n.firstDayOfWeek,t=n(w.l10n.weekdays.shorthand);e>0&&e\\n \"+t.join(\"\")+\"\\n \\n \"}}function G(e,n){void 0===n&&(n=!0);var t=n?e:e-w.currentMonth;t<0&&!0===w._hidePrevMonthArrow||t>0&&!0===w._hideNextMonthArrow||(w.currentMonth+=t,(w.currentMonth<0||w.currentMonth>11)&&(w.currentYear+=w.currentMonth>11?1:-1,w.currentMonth=(w.currentMonth+12)%12,pe(\"onYearChange\"),K()),J(),pe(\"onMonthChange\"),De())}function V(e){return!(!w.config.appendTo||!w.config.appendTo.contains(e))||w.calendarContainer.contains(e)}function Z(e){if(w.isOpen&&!w.config.inline){var n=g(e),t=V(n),a=n===w.input||n===w.altInput||w.element.contains(n)||e.path&&e.path.indexOf&&(~e.path.indexOf(w.input)||~e.path.indexOf(w.altInput)),i=\"blur\"===e.type?a&&e.relatedTarget&&!V(e.relatedTarget):!a&&!t&&!V(e.relatedTarget),o=!w.config.ignoredFocusElements.some((function(e){return e.contains(n)}));i&&o&&(void 0!==w.timeContainer&&void 0!==w.minuteElement&&void 0!==w.hourElement&&\"\"!==w.input.value&&void 0!==w.input.value&&T(),w.close(),w.config&&\"range\"===w.config.mode&&1===w.selectedDates.length&&(w.clear(!1),w.redraw()))}}function Q(e){if(!(!e||w.config.minDate&&ew.config.maxDate.getFullYear())){var n=e,t=w.currentYear!==n;w.currentYear=n||w.currentYear,w.config.maxDate&&w.currentYear===w.config.maxDate.getFullYear()?w.currentMonth=Math.min(w.config.maxDate.getMonth(),w.currentMonth):w.config.minDate&&w.currentYear===w.config.minDate.getFullYear()&&(w.currentMonth=Math.max(w.config.minDate.getMonth(),w.currentMonth)),t&&(w.redraw(),pe(\"onYearChange\"),K())}}function X(e,n){void 0===n&&(n=!0);var t=w.parseDate(e,void 0,n);if(w.config.minDate&&t&&M(t,w.config.minDate,void 0!==n?n:!w.minDateHasTime)<0||w.config.maxDate&&t&&M(t,w.config.maxDate,void 0!==n?n:!w.maxDateHasTime)>0)return!1;if(0===w.config.enable.length&&0===w.config.disable.length)return!0;if(void 0===t)return!1;for(var a=w.config.enable.length>0,i=a?w.config.enable:w.config.disable,o=0,r=void 0;o=r.from.getTime()&&t.getTime()<=r.to.getTime())return a}return!a}function ee(e){return void 0!==w.daysContainer&&-1===e.className.indexOf(\"hidden\")&&-1===e.className.indexOf(\"flatpickr-disabled\")&&w.daysContainer.contains(e)}function ne(e){e.target!==w._input||e.relatedTarget&&V(e.relatedTarget)||w.setDate(w._input.value,!0,e.target===w.altInput?w.config.altFormat:w.config.dateFormat)}function te(e){var n=g(e),t=w.config.wrap?p.contains(n):n===w._input,a=w.config.allowInput,i=w.isOpen&&(!a||!t),o=w.config.inline&&t&&!a;if(13===e.keyCode&&t){if(a)return w.setDate(w._input.value,!0,n===w.altInput?w.config.altFormat:w.config.dateFormat),n.blur();w.open()}else if(V(n)||i||o){var r=!!w.timeContainer&&w.timeContainer.contains(n);switch(e.keyCode){case 13:r?(e.preventDefault(),T(),se()):ue(e);break;case 27:e.preventDefault(),se();break;case 8:case 46:t&&!w.config.allowInput&&(e.preventDefault(),w.clear());break;case 37:case 39:if(r||t)w.hourElement&&w.hourElement.focus();else if(e.preventDefault(),void 0!==w.daysContainer&&(!1===a||document.activeElement&&ee(document.activeElement))){var l=39===e.keyCode?1:-1;e.ctrlKey?(e.stopPropagation(),G(l),R(W(1),0)):R(void 0,l)}break;case 38:case 40:e.preventDefault();var c=40===e.keyCode?1:-1;w.daysContainer&&void 0!==n.$i||n===w.input||n===w.altInput?e.ctrlKey?(e.stopPropagation(),Q(w.currentYear-c),R(W(1),0)):r||R(void 0,7*c):n===w.currentYearElement?Q(w.currentYear-c):w.config.enableTime&&(!r&&w.hourElement&&w.hourElement.focus(),T(e),w._debouncedChange());break;case 9:if(r){var d=[w.hourElement,w.minuteElement,w.secondElement,w.amPM].concat(w.pluginElements).filter((function(e){return e})),s=d.indexOf(n);if(-1!==s){var u=d[s+(e.shiftKey?-1:1)];e.preventDefault(),(u||w._input).focus()}}else!w.config.noCalendar&&w.daysContainer&&w.daysContainer.contains(n)&&e.shiftKey&&(e.preventDefault(),w._input.focus())}}if(void 0!==w.amPM&&n===w.amPM)switch(e.key){case w.l10n.amPM[0].charAt(0):case w.l10n.amPM[0].charAt(0).toLowerCase():w.amPM.textContent=w.l10n.amPM[0],I(),be();break;case w.l10n.amPM[1].charAt(0):case w.l10n.amPM[1].charAt(0).toLowerCase():w.amPM.textContent=w.l10n.amPM[1],I(),be()}(t||V(n))&&pe(\"onKeyDown\",e)}function ae(e){if(1===w.selectedDates.length&&(!e||e.classList.contains(\"flatpickr-day\")&&!e.classList.contains(\"flatpickr-disabled\"))){for(var n=e?e.dateObj.getTime():w.days.firstElementChild.dateObj.getTime(),t=w.parseDate(w.selectedDates[0],void 0,!0).getTime(),a=Math.min(n,w.selectedDates[0].getTime()),i=Math.max(n,w.selectedDates[0].getTime()),o=!1,r=0,l=0,c=a;ca&&cr)?r=c:c>t&&(!l||c0&&m0&&m>l;return g?(f.classList.add(\"notAllowed\"),[\"inRange\",\"startRange\",\"endRange\"].forEach((function(e){f.classList.remove(e)})),\"continue\"):o&&!g?\"continue\":([\"startRange\",\"inRange\",\"endRange\",\"notAllowed\"].forEach((function(e){f.classList.remove(e)})),void(void 0!==e&&(e.classList.add(n<=w.selectedDates[0].getTime()?\"startRange\":\"endRange\"),tn&&m===t&&f.classList.add(\"endRange\"),m>=r&&(0===l||m<=l)&&(d=t,u=n,(c=m)>Math.min(d,u)&&c0||t.getMinutes()>0||t.getSeconds()>0),w.selectedDates&&(w.selectedDates=w.selectedDates.filter((function(e){return X(e)})),w.selectedDates.length||\"min\"!==e||S(t),be()),w.daysContainer&&(de(),void 0!==t?w.currentYearElement[e]=t.getFullYear().toString():w.currentYearElement.removeAttribute(e),w.currentYearElement.disabled=!!a&&void 0!==t&&a.getFullYear()===t.getFullYear())}}function re(){return w.config.wrap?p.querySelector(\"[data-input]\"):p}function le(){\"object\"!=typeof w.config.locale&&void 0===k.l10ns[w.config.locale]&&w.config.errorHandler(new Error(\"flatpickr: invalid locale \"+w.config.locale)),w.l10n=e(e({},k.l10ns.default),\"object\"==typeof w.config.locale?w.config.locale:\"default\"!==w.config.locale?k.l10ns[w.config.locale]:void 0),D.K=\"(\"+w.l10n.amPM[0]+\"|\"+w.l10n.amPM[1]+\"|\"+w.l10n.amPM[0].toLowerCase()+\"|\"+w.l10n.amPM[1].toLowerCase()+\")\",void 0===e(e({},v),JSON.parse(JSON.stringify(p.dataset||{}))).time_24hr&&void 0===k.defaultConfig.time_24hr&&(w.config.time_24hr=w.l10n.time_24hr),w.formatDate=b(w),w.parseDate=C({config:w.config,l10n:w.l10n})}function ce(e){if(void 0!==w.calendarContainer){pe(\"onPreCalendarPosition\");var n=e||w._positionElement,t=Array.prototype.reduce.call(w.calendarContainer.children,(function(e,n){return e+n.offsetHeight}),0),a=w.calendarContainer.offsetWidth,i=w.config.position.split(\" \"),o=i[0],r=i.length>1?i[1]:null,l=n.getBoundingClientRect(),c=window.innerHeight-l.bottom,s=\"above\"===o||\"below\"!==o&&ct,u=window.pageYOffset+l.top+(s?-t-2:n.offsetHeight+2);if(d(w.calendarContainer,\"arrowTop\",!s),d(w.calendarContainer,\"arrowBottom\",s),!w.config.inline){var f=window.pageXOffset+l.left,m=!1,g=!1;\"center\"===r?(f-=(a-l.width)/2,m=!0):\"right\"===r&&(f-=a-l.width,g=!0),d(w.calendarContainer,\"arrowLeft\",!m&&!g),d(w.calendarContainer,\"arrowCenter\",m),d(w.calendarContainer,\"arrowRight\",g);var p=window.document.body.offsetWidth-(window.pageXOffset+l.right),h=f+a>window.document.body.offsetWidth,v=p+a>window.document.body.offsetWidth;if(d(w.calendarContainer,\"rightMost\",h),!w.config.static)if(w.calendarContainer.style.top=u+\"px\",h)if(v){var D=function(){for(var e=null,n=0;nw.currentMonth+w.config.showMonths-1)&&\"range\"!==w.config.mode;if(w.selectedDateElem=t,\"single\"===w.config.mode)w.selectedDates=[a];else if(\"multiple\"===w.config.mode){var o=ve(a);o?w.selectedDates.splice(parseInt(o),1):w.selectedDates.push(a)}else\"range\"===w.config.mode&&(2===w.selectedDates.length&&w.clear(!1,!1),w.latestSelectedDateObj=a,w.selectedDates.push(a),0!==M(a,w.selectedDates[0],!0)&&w.selectedDates.sort((function(e,n){return e.getTime()-n.getTime()})));if(I(),i){var r=w.currentYear!==a.getFullYear();w.currentYear=a.getFullYear(),w.currentMonth=a.getMonth(),r&&(pe(\"onYearChange\"),K()),pe(\"onMonthChange\")}if(De(),J(),be(),i||\"range\"===w.config.mode||1!==w.config.showMonths?void 0!==w.selectedDateElem&&void 0===w.hourElement&&w.selectedDateElem&&w.selectedDateElem.focus():L(t),void 0!==w.hourElement&&void 0!==w.hourElement&&w.hourElement.focus(),w.config.closeOnSelect){var l=\"single\"===w.config.mode&&!w.config.enableTime,c=\"range\"===w.config.mode&&2===w.selectedDates.length&&!w.config.enableTime;(l||c)&&se()}A()}}w.parseDate=C({config:w.config,l10n:w.l10n}),w._handlers=[],w.pluginElements=[],w.loadedPlugins=[],w._bind=N,w._setHoursFromDate=S,w._positionCalendar=ce,w.changeMonth=G,w.changeYear=Q,w.clear=function(e,n){if(void 0===e&&(e=!0),void 0===n&&(n=!0),w.input.value=\"\",void 0!==w.altInput&&(w.altInput.value=\"\"),void 0!==w.mobileInput&&(w.mobileInput.value=\"\"),w.selectedDates=[],w.latestSelectedDateObj=void 0,!0===n&&(w.currentYear=w._initialDate.getFullYear(),w.currentMonth=w._initialDate.getMonth()),!0===w.config.enableTime){var t=_(),a=t.hours,i=t.minutes,o=t.seconds;O(a,i,o)}w.redraw(),e&&pe(\"onChange\")},w.close=function(){w.isOpen=!1,w.isMobile||(void 0!==w.calendarContainer&&w.calendarContainer.classList.remove(\"open\"),void 0!==w._input&&w._input.classList.remove(\"active\")),pe(\"onClose\")},w._createElement=s,w.destroy=function(){void 0!==w.config&&pe(\"onDestroy\");for(var e=w._handlers.length;e--;){var n=w._handlers[e];n.element.removeEventListener(n.event,n.handler,n.options)}if(w._handlers=[],w.mobileInput)w.mobileInput.parentNode&&w.mobileInput.parentNode.removeChild(w.mobileInput),w.mobileInput=void 0;else if(w.calendarContainer&&w.calendarContainer.parentNode)if(w.config.static&&w.calendarContainer.parentNode){var t=w.calendarContainer.parentNode;if(t.lastChild&&t.removeChild(t.lastChild),t.parentNode){for(;t.firstChild;)t.parentNode.insertBefore(t.firstChild,t);t.parentNode.removeChild(t)}}else w.calendarContainer.parentNode.removeChild(w.calendarContainer);w.altInput&&(w.input.type=\"text\",w.altInput.parentNode&&w.altInput.parentNode.removeChild(w.altInput),delete w.altInput),w.input&&(w.input.type=w.input._type,w.input.classList.remove(\"flatpickr-input\"),w.input.removeAttribute(\"readonly\")),[\"_showTimeInput\",\"latestSelectedDateObj\",\"_hideNextMonthArrow\",\"_hidePrevMonthArrow\",\"__hideNextMonthArrow\",\"__hidePrevMonthArrow\",\"isMobile\",\"isOpen\",\"selectedDateElem\",\"minDateHasTime\",\"maxDateHasTime\",\"days\",\"daysContainer\",\"_input\",\"_positionElement\",\"innerContainer\",\"rContainer\",\"monthNav\",\"todayDateElem\",\"calendarContainer\",\"weekdayContainer\",\"prevMonthNav\",\"nextMonthNav\",\"monthsDropdownContainer\",\"currentMonthElement\",\"currentYearElement\",\"navigationCurrentMonth\",\"selectedDateElem\",\"config\"].forEach((function(e){try{delete w[e]}catch(e){}}))},w.isEnabled=X,w.jumpToDate=P,w.open=function(e,n){if(void 0===n&&(n=w._positionElement),!0===w.isMobile){if(e){e.preventDefault();var t=g(e);t&&t.blur()}return void 0!==w.mobileInput&&(w.mobileInput.focus(),w.mobileInput.click()),void pe(\"onOpen\")}if(!w._input.disabled&&!w.config.inline){var a=w.isOpen;w.isOpen=!0,a||(w.calendarContainer.classList.add(\"open\"),w._input.classList.add(\"active\"),pe(\"onOpen\"),ce(n)),!0===w.config.enableTime&&!0===w.config.noCalendar&&(!1!==w.config.allowInput||void 0!==e&&w.timeContainer.contains(e.relatedTarget)||setTimeout((function(){return w.hourElement.select()}),50))}},w.redraw=de,w.set=function(e,n){if(null!==e&&\"object\"==typeof e)for(var a in Object.assign(w.config,e),e)void 0!==fe[a]&&fe[a].forEach((function(e){return e()}));else w.config[e]=n,void 0!==fe[e]?fe[e].forEach((function(e){return e()})):t.indexOf(e)>-1&&(w.config[e]=c(n));w.redraw(),be(!0)},w.setDate=function(e,n,t){if(void 0===n&&(n=!1),void 0===t&&(t=w.config.dateFormat),0!==e&&!e||e instanceof Array&&0===e.length)return w.clear(n);me(e,t),w.latestSelectedDateObj=w.selectedDates[w.selectedDates.length-1],w.redraw(),P(void 0,n),S(),0===w.selectedDates.length&&w.clear(!1),be(n),n&&pe(\"onChange\")},w.toggle=function(e){if(!0===w.isOpen)return w.close();w.open(e)};var fe={locale:[le,z],showMonths:[q,E,$],minDate:[P],maxDate:[P]};function me(e,n){var t=[];if(e instanceof Array)t=e.map((function(e){return w.parseDate(e,n)}));else if(e instanceof Date||\"number\"==typeof e)t=[w.parseDate(e,n)];else if(\"string\"==typeof e)switch(w.config.mode){case\"single\":case\"time\":t=[w.parseDate(e,n)];break;case\"multiple\":t=e.split(w.config.conjunction).map((function(e){return w.parseDate(e,n)}));break;case\"range\":t=e.split(w.l10n.rangeSeparator).map((function(e){return w.parseDate(e,n)}))}else w.config.errorHandler(new Error(\"Invalid date supplied: \"+JSON.stringify(e)));w.selectedDates=w.config.allowInvalidPreload?t:t.filter((function(e){return e instanceof Date&&X(e,!1)})),\"range\"===w.config.mode&&w.selectedDates.sort((function(e,n){return e.getTime()-n.getTime()}))}function ge(e){return e.slice().map((function(e){return\"string\"==typeof e||\"number\"==typeof e||e instanceof Date?w.parseDate(e,void 0,!0):e&&\"object\"==typeof e&&e.from&&e.to?{from:w.parseDate(e.from,void 0),to:w.parseDate(e.to,void 0)}:e})).filter((function(e){return e}))}function pe(e,n){if(void 0!==w.config){var t=w.config[e];if(void 0!==t&&t.length>0)for(var a=0;t[a]&&a1||\"static\"===w.config.monthSelectorType?w.monthElements[n].textContent=h(t.getMonth(),w.config.shorthandCurrentMonth,w.l10n)+\" \":w.monthsDropdownContainer.value=t.getMonth().toString(),e.value=t.getFullYear().toString()})),w._hidePrevMonthArrow=void 0!==w.config.minDate&&(w.currentYear===w.config.minDate.getFullYear()?w.currentMonth<=w.config.minDate.getMonth():w.currentYearw.config.maxDate.getMonth():w.currentYear>w.config.maxDate.getFullYear()))}function we(e){return w.selectedDates.map((function(n){return w.formatDate(n,e)})).filter((function(e,n,t){return\"range\"!==w.config.mode||w.config.enableTime||t.indexOf(e)===n})).join(\"range\"!==w.config.mode?w.config.conjunction:w.l10n.rangeSeparator)}function be(e){void 0===e&&(e=!0),void 0!==w.mobileInput&&w.mobileFormatStr&&(w.mobileInput.value=void 0!==w.latestSelectedDateObj?w.formatDate(w.latestSelectedDateObj,w.mobileFormatStr):\"\"),w.input.value=we(w.config.dateFormat),void 0!==w.altInput&&(w.altInput.value=we(w.config.altFormat)),!1!==e&&pe(\"onValueUpdate\")}function Ce(e){var n=g(e),t=w.prevMonthNav.contains(n),a=w.nextMonthNav.contains(n);t||a?G(t?-1:1):w.yearElements.indexOf(n)>=0?n.select():n.classList.contains(\"arrowUp\")?w.changeYear(w.currentYear+1):n.classList.contains(\"arrowDown\")&&w.changeYear(w.currentYear-1)}return function(){w.element=w.input=p,w.isOpen=!1,function(){var n=[\"wrap\",\"weekNumbers\",\"allowInput\",\"allowInvalidPreload\",\"clickOpens\",\"time_24hr\",\"enableTime\",\"noCalendar\",\"altInput\",\"shorthandCurrentMonth\",\"inline\",\"static\",\"enableSeconds\",\"disableMobile\"],i=e(e({},JSON.parse(JSON.stringify(p.dataset||{}))),v),o={};w.config.parseDate=i.parseDate,w.config.formatDate=i.formatDate,Object.defineProperty(w.config,\"enable\",{get:function(){return w.config._enable},set:function(e){w.config._enable=ge(e)}}),Object.defineProperty(w.config,\"disable\",{get:function(){return w.config._disable},set:function(e){w.config._disable=ge(e)}});var r=\"time\"===i.mode;if(!i.dateFormat&&(i.enableTime||r)){var l=k.defaultConfig.dateFormat||a.dateFormat;o.dateFormat=i.noCalendar||r?\"H:i\"+(i.enableSeconds?\":S\":\"\"):l+\" H:i\"+(i.enableSeconds?\":S\":\"\")}if(i.altInput&&(i.enableTime||r)&&!i.altFormat){var d=k.defaultConfig.altFormat||a.altFormat;o.altFormat=i.noCalendar||r?\"h:i\"+(i.enableSeconds?\":S K\":\" K\"):d+\" h:i\"+(i.enableSeconds?\":S\":\"\")+\" K\"}Object.defineProperty(w.config,\"minDate\",{get:function(){return w.config._minDate},set:oe(\"min\")}),Object.defineProperty(w.config,\"maxDate\",{get:function(){return w.config._maxDate},set:oe(\"max\")});var s=function(e){return function(n){w.config[\"min\"===e?\"_minTime\":\"_maxTime\"]=w.parseDate(n,\"H:i:S\")}};Object.defineProperty(w.config,\"minTime\",{get:function(){return w.config._minTime},set:s(\"min\")}),Object.defineProperty(w.config,\"maxTime\",{get:function(){return w.config._maxTime},set:s(\"max\")}),\"time\"===i.mode&&(w.config.noCalendar=!0,w.config.enableTime=!0),Object.assign(w.config,o,i);for(var u=0;u-1?w.config[m]=c(f[m]).map(x).concat(w.config[m]):void 0===i[m]&&(w.config[m]=f[m])}i.altInputClass||(w.config.altInputClass=re().className+\" \"+w.config.altInputClass),pe(\"onParseConfig\")}(),le(),w.input=re(),w.input?(w.input._type=w.input.type,w.input.type=\"text\",w.input.classList.add(\"flatpickr-input\"),w._input=w.input,w.config.altInput&&(w.altInput=s(w.input.nodeName,w.config.altInputClass),w._input=w.altInput,w.altInput.placeholder=w.input.placeholder,w.altInput.disabled=w.input.disabled,w.altInput.required=w.input.required,w.altInput.tabIndex=w.input.tabIndex,w.altInput.type=\"text\",w.input.setAttribute(\"type\",\"hidden\"),!w.config.static&&w.input.parentNode&&w.input.parentNode.insertBefore(w.altInput,w.input.nextSibling)),w.config.allowInput||w._input.setAttribute(\"readonly\",\"readonly\"),w._positionElement=w.config.positionElement||w._input):w.config.errorHandler(new Error(\"Invalid input element specified\")),function(){w.selectedDates=[],w.now=w.parseDate(w.config.now)||new Date;var e=w.config.defaultDate||(\"INPUT\"!==w.input.nodeName&&\"TEXTAREA\"!==w.input.nodeName||!w.input.placeholder||w.input.value!==w.input.placeholder?w.input.value:null);e&&me(e,w.config.dateFormat),w._initialDate=w.selectedDates.length>0?w.selectedDates[0]:w.config.minDate&&w.config.minDate.getTime()>w.now.getTime()?w.config.minDate:w.config.maxDate&&w.config.maxDate.getTime()0&&(w.latestSelectedDateObj=w.selectedDates[0]),void 0!==w.config.minTime&&(w.config.minTime=w.parseDate(w.config.minTime,\"H:i\")),void 0!==w.config.maxTime&&(w.config.maxTime=w.parseDate(w.config.maxTime,\"H:i\")),w.minDateHasTime=!!w.config.minDate&&(w.config.minDate.getHours()>0||w.config.minDate.getMinutes()>0||w.config.minDate.getSeconds()>0),w.maxDateHasTime=!!w.config.maxDate&&(w.config.maxDate.getHours()>0||w.config.maxDate.getMinutes()>0||w.config.maxDate.getSeconds()>0)}(),w.utils={getDaysInMonth:function(e,n){return void 0===e&&(e=w.currentMonth),void 0===n&&(n=w.currentYear),1===e&&(n%4==0&&n%100!=0||n%400==0)?29:w.l10n.daysInMonth[e]}},w.isMobile||function(){var e=window.document.createDocumentFragment();if(w.calendarContainer=s(\"div\",\"flatpickr-calendar\"),w.calendarContainer.tabIndex=-1,!w.config.noCalendar){if(e.appendChild((w.monthNav=s(\"div\",\"flatpickr-months\"),w.yearElements=[],w.monthElements=[],w.prevMonthNav=s(\"span\",\"flatpickr-prev-month\"),w.prevMonthNav.innerHTML=w.config.prevArrow,w.nextMonthNav=s(\"span\",\"flatpickr-next-month\"),w.nextMonthNav.innerHTML=w.config.nextArrow,q(),Object.defineProperty(w,\"_hidePrevMonthArrow\",{get:function(){return w.__hidePrevMonthArrow},set:function(e){w.__hidePrevMonthArrow!==e&&(d(w.prevMonthNav,\"flatpickr-disabled\",e),w.__hidePrevMonthArrow=e)}}),Object.defineProperty(w,\"_hideNextMonthArrow\",{get:function(){return w.__hideNextMonthArrow},set:function(e){w.__hideNextMonthArrow!==e&&(d(w.nextMonthNav,\"flatpickr-disabled\",e),w.__hideNextMonthArrow=e)}}),w.currentYearElement=w.yearElements[0],De(),w.monthNav)),w.innerContainer=s(\"div\",\"flatpickr-innerContainer\"),w.config.weekNumbers){var n=function(){w.calendarContainer.classList.add(\"hasWeeks\");var e=s(\"div\",\"flatpickr-weekwrapper\");e.appendChild(s(\"span\",\"flatpickr-weekday\",w.l10n.weekAbbreviation));var n=s(\"div\",\"flatpickr-weeks\");return e.appendChild(n),{weekWrapper:e,weekNumbers:n}}(),t=n.weekWrapper,a=n.weekNumbers;w.innerContainer.appendChild(t),w.weekNumbers=a,w.weekWrapper=t}w.rContainer=s(\"div\",\"flatpickr-rContainer\"),w.rContainer.appendChild($()),w.daysContainer||(w.daysContainer=s(\"div\",\"flatpickr-days\"),w.daysContainer.tabIndex=-1),J(),w.rContainer.appendChild(w.daysContainer),w.innerContainer.appendChild(w.rContainer),e.appendChild(w.innerContainer)}w.config.enableTime&&e.appendChild(function(){w.calendarContainer.classList.add(\"hasTime\"),w.config.noCalendar&&w.calendarContainer.classList.add(\"noCalendar\"),w.timeContainer=s(\"div\",\"flatpickr-time\"),w.timeContainer.tabIndex=-1;var e=s(\"span\",\"flatpickr-time-separator\",\":\"),n=m(\"flatpickr-hour\",{\"aria-label\":w.l10n.hourAriaLabel});w.hourElement=n.getElementsByTagName(\"input\")[0];var t=m(\"flatpickr-minute\",{\"aria-label\":w.l10n.minuteAriaLabel});if(w.minuteElement=t.getElementsByTagName(\"input\")[0],w.hourElement.tabIndex=w.minuteElement.tabIndex=-1,w.hourElement.value=o(w.latestSelectedDateObj?w.latestSelectedDateObj.getHours():w.config.time_24hr?w.config.defaultHour:function(e){switch(e%24){case 0:case 12:return 12;default:return e%12}}(w.config.defaultHour)),w.minuteElement.value=o(w.latestSelectedDateObj?w.latestSelectedDateObj.getMinutes():w.config.defaultMinute),w.hourElement.setAttribute(\"step\",w.config.hourIncrement.toString()),w.minuteElement.setAttribute(\"step\",w.config.minuteIncrement.toString()),w.hourElement.setAttribute(\"min\",w.config.time_24hr?\"0\":\"1\"),w.hourElement.setAttribute(\"max\",w.config.time_24hr?\"23\":\"12\"),w.minuteElement.setAttribute(\"min\",\"0\"),w.minuteElement.setAttribute(\"max\",\"59\"),w.timeContainer.appendChild(n),w.timeContainer.appendChild(e),w.timeContainer.appendChild(t),w.config.time_24hr&&w.timeContainer.classList.add(\"time24hr\"),w.config.enableSeconds){w.timeContainer.classList.add(\"hasSeconds\");var a=m(\"flatpickr-second\");w.secondElement=a.getElementsByTagName(\"input\")[0],w.secondElement.value=o(w.latestSelectedDateObj?w.latestSelectedDateObj.getSeconds():w.config.defaultSeconds),w.secondElement.setAttribute(\"step\",w.minuteElement.getAttribute(\"step\")),w.secondElement.setAttribute(\"min\",\"0\"),w.secondElement.setAttribute(\"max\",\"59\"),w.timeContainer.appendChild(s(\"span\",\"flatpickr-time-separator\",\":\")),w.timeContainer.appendChild(a)}return w.config.time_24hr||(w.amPM=s(\"span\",\"flatpickr-am-pm\",w.l10n.amPM[r((w.latestSelectedDateObj?w.hourElement.value:w.config.defaultHour)>11)]),w.amPM.title=w.l10n.toggleTitle,w.amPM.tabIndex=-1,w.timeContainer.appendChild(w.amPM)),w.timeContainer}()),d(w.calendarContainer,\"rangeMode\",\"range\"===w.config.mode),d(w.calendarContainer,\"animate\",!0===w.config.animate),d(w.calendarContainer,\"multiMonth\",w.config.showMonths>1),w.calendarContainer.appendChild(e);var i=void 0!==w.config.appendTo&&void 0!==w.config.appendTo.nodeType;if((w.config.inline||w.config.static)&&(w.calendarContainer.classList.add(w.config.inline?\"inline\":\"static\"),w.config.inline&&(!i&&w.element.parentNode?w.element.parentNode.insertBefore(w.calendarContainer,w._input.nextSibling):void 0!==w.config.appendTo&&w.config.appendTo.appendChild(w.calendarContainer)),w.config.static)){var l=s(\"div\",\"flatpickr-wrapper\");w.element.parentNode&&w.element.parentNode.insertBefore(l,w.element),l.appendChild(w.element),w.altInput&&l.appendChild(w.altInput),l.appendChild(w.calendarContainer)}w.config.static||w.config.inline||(void 0!==w.config.appendTo?w.config.appendTo:window.document.body).appendChild(w.calendarContainer)}(),function(){if(w.config.wrap&&[\"open\",\"close\",\"toggle\",\"clear\"].forEach((function(e){Array.prototype.forEach.call(w.element.querySelectorAll(\"[data-\"+e+\"]\"),(function(n){return N(n,\"click\",w[e])}))})),w.isMobile)!function(){var e=w.config.enableTime?w.config.noCalendar?\"time\":\"datetime-local\":\"date\";w.mobileInput=s(\"input\",w.input.className+\" flatpickr-mobile\"),w.mobileInput.tabIndex=1,w.mobileInput.type=e,w.mobileInput.disabled=w.input.disabled,w.mobileInput.required=w.input.required,w.mobileInput.placeholder=w.input.placeholder,w.mobileFormatStr=\"datetime-local\"===e?\"Y-m-d\\\\TH:i:S\":\"date\"===e?\"Y-m-d\":\"H:i:S\",w.selectedDates.length>0&&(w.mobileInput.defaultValue=w.mobileInput.value=w.formatDate(w.selectedDates[0],w.mobileFormatStr)),w.config.minDate&&(w.mobileInput.min=w.formatDate(w.config.minDate,\"Y-m-d\")),w.config.maxDate&&(w.mobileInput.max=w.formatDate(w.config.maxDate,\"Y-m-d\")),w.input.getAttribute(\"step\")&&(w.mobileInput.step=String(w.input.getAttribute(\"step\"))),w.input.type=\"hidden\",void 0!==w.altInput&&(w.altInput.type=\"hidden\");try{w.input.parentNode&&w.input.parentNode.insertBefore(w.mobileInput,w.input.nextSibling)}catch(e){}N(w.mobileInput,\"change\",(function(e){w.setDate(g(e).value,!1,w.mobileFormatStr),pe(\"onChange\"),pe(\"onClose\")}))}();else{var e=l(ie,50);if(w._debouncedChange=l(A,300),w.daysContainer&&!/iPhone|iPad|iPod/i.test(navigator.userAgent)&&N(w.daysContainer,\"mouseover\",(function(e){\"range\"===w.config.mode&&ae(g(e))})),N(window.document.body,\"keydown\",te),w.config.inline||w.config.static||N(window,\"resize\",e),void 0!==window.ontouchstart?N(window.document,\"touchstart\",Z):N(window.document,\"click\",Z),N(window.document,\"focus\",Z,{capture:!0}),!0===w.config.clickOpens&&(N(w._input,\"focus\",w.open),N(w._input,\"click\",w.open)),void 0!==w.daysContainer&&(N(w.monthNav,\"click\",Ce),N(w.monthNav,[\"keyup\",\"increment\"],F),N(w.daysContainer,\"click\",ue)),void 0!==w.timeContainer&&void 0!==w.minuteElement&&void 0!==w.hourElement){var n=function(e){return g(e).select()};N(w.timeContainer,[\"increment\"],T),N(w.timeContainer,\"blur\",T,{capture:!0}),N(w.timeContainer,\"click\",Y),N([w.hourElement,w.minuteElement],[\"focus\",\"click\"],n),void 0!==w.secondElement&&N(w.secondElement,\"focus\",(function(){return w.secondElement&&w.secondElement.select()})),void 0!==w.amPM&&N(w.amPM,\"click\",(function(e){T(e),A()}))}w.config.allowInput&&N(w._input,\"blur\",ne)}}(),(w.selectedDates.length||w.config.noCalendar)&&(w.config.enableTime&&S(w.config.noCalendar?w.latestSelectedDateObj||w.config.minDate:void 0),be(!1)),E();var n=/^((?!chrome|android).)*safari/i.test(navigator.userAgent);!w.isMobile&&n&&ce(),pe(\"onReady\")}(),w}function E(e,n){for(var t=Array.prototype.slice.call(e).filter((function(e){return e instanceof HTMLElement})),a=[],i=0;ithis.render()));const{start:s,end:l,value:o,step:r,title:n}=this.model.properties;this.on_change([s,l,o,r],(()=>{const{start:t,end:e,value:i,step:s}=this._calc_to();this._noUiSlider.updateOptions({range:{min:t,max:e},start:i,step:s},!0)}));const{bar_color:a}=this.model.properties;this.on_change(a,(()=>{this._set_bar_color()}));const{show_value:d}=this.model.properties;this.on_change([o,n,d],(()=>this._update_title()))}styles(){return[...super.styles(),p.default,u.default]}_update_title(){var t;(0,a.empty)(this.title_el);const e=null==this.model.title||0==this.model.title.length&&!this.model.show_value;if(this.title_el.style.display=e?\"none\":\"\",!e&&(0!=(null===(t=this.model.title)||void 0===t?void 0:t.length)&&(this.title_el.textContent=`${this.model.title}: `),this.model.show_value)){const{value:t}=this._calc_to(),e=t.map((t=>this.model.pretty(t))).join(\" .. \");this.title_el.appendChild((0,a.span)({class:m.slider_value},e))}}_set_bar_color(){if(!this.model.disabled){this.slider_el.querySelector(\".noUi-connect\").style.backgroundColor=(0,_.color2css)(this.model.bar_color)}}render(){super.render();const{start:t,end:e,value:i,step:s}=this._calc_to();let l;if(this.model.tooltips){const t={to:t=>this.model.pretty(t)};l=(0,d.repeat)(t,i.length)}else l=!1;if(null==this.slider_el){this.slider_el=(0,a.div)(),this._noUiSlider=n.default.create(this.slider_el,{range:{min:t,max:e},start:i,step:s,behaviour:this.model.behaviour,connect:this.model.connected,tooltips:l,orientation:this.model.orientation,direction:this.model.direction}),this._noUiSlider.on(\"slide\",((t,e,i)=>this._slide(i))),this._noUiSlider.on(\"change\",((t,e,i)=>this._change(i)));const o=(t,e)=>{if(!l)return;this.slider_el.querySelectorAll(\".noUi-handle\")[t].querySelector(\".noUi-tooltip\").style.display=e?\"block\":\"\"};this._noUiSlider.on(\"start\",((t,e)=>o(e,!0))),this._noUiSlider.on(\"end\",((t,e)=>o(e,!1)))}else this._noUiSlider.updateOptions({range:{min:t,max:e},start:i,step:s},!0);this._set_bar_color(),this.model.disabled?this.slider_el.setAttribute(\"disabled\",\"true\"):this.slider_el.removeAttribute(\"disabled\"),this.title_el=(0,a.div)({class:m.slider_title}),this._update_title(),this.group_el=(0,a.div)({class:v.input_group},this.title_el,this.slider_el),this.el.appendChild(this.group_el)}_slide(t){this.model.value=this._calc_from(t)}_change(t){const e=this._calc_from(t);this.model.setv({value:e,value_throttled:e})}}b.__name__=\"AbstractBaseSliderView\";class g extends b{_calc_to(){return{start:this.model.start,end:this.model.end,value:[this.model.value],step:this.model.step}}_calc_from([t]){return Number.isInteger(this.model.start)&&Number.isInteger(this.model.end)&&Number.isInteger(this.model.step)?Math.round(t):t}}i.AbstractSliderView=g,g.__name__=\"AbstractSliderView\";class f extends b{_calc_to(){return{start:this.model.start,end:this.model.end,value:this.model.value,step:this.model.step}}_calc_from(t){return t}}i.AbstractRangeSliderView=f,f.__name__=\"AbstractRangeSliderView\";class S extends h.OrientedControl{constructor(t){super(t),this.connected=!1}pretty(t){return this._formatter(t,this.format)}}i.AbstractSlider=S,r=S,S.__name__=\"AbstractSlider\",r.define((({Any:t,Boolean:e,Number:i,String:s,Color:l,Or:o,Enum:r,Ref:n,Nullable:a})=>({title:[a(s),\"\"],show_value:[e,!0],start:[t],end:[t],value:[t],value_throttled:[t],step:[i,1],format:[o(s,n(c.TickFormatter))],direction:[r(\"ltr\",\"rtl\"),\"ltr\"],tooltips:[e,!0],bar_color:[l,\"#e6e6e6\"]})))},\n", + " 462: function _(t,e,r,n,i){var o,s;o=this,s=function(t){\"use strict\";var e,r;function n(t){return\"object\"==typeof t&&\"function\"==typeof t.to}function i(t){t.parentElement.removeChild(t)}function o(t){return null!=t}function s(t){t.preventDefault()}function a(t){return\"number\"==typeof t&&!isNaN(t)&&isFinite(t)}function l(t,e,r){r>0&&(f(t,e),setTimeout((function(){d(t,e)}),r))}function u(t){return Math.max(Math.min(t,100),0)}function c(t){return Array.isArray(t)?t:[t]}function p(t){var e=(t=String(t)).split(\".\");return e.length>1?e[1].length:0}function f(t,e){t.classList&&!/\\s/.test(e)?t.classList.add(e):t.className+=\" \"+e}function d(t,e){t.classList&&!/\\s/.test(e)?t.classList.remove(e):t.className=t.className.replace(new RegExp(\"(^|\\\\b)\"+e.split(\" \").join(\"|\")+\"(\\\\b|$)\",\"gi\"),\" \")}function h(t){var e=void 0!==window.pageXOffset,r=\"CSS1Compat\"===(t.compatMode||\"\");return{x:e?window.pageXOffset:r?t.documentElement.scrollLeft:t.body.scrollLeft,y:e?window.pageYOffset:r?t.documentElement.scrollTop:t.body.scrollTop}}function m(t,e){return 100/(e-t)}function g(t,e,r){return 100*e/(t[r+1]-t[r])}function v(t,e){for(var r=1;t>=e[r];)r+=1;return r}function b(t,e,r){if(r>=t.slice(-1)[0])return 100;var n=v(r,t),i=t[n-1],o=t[n],s=e[n-1],a=e[n];return s+function(t,e){return g(t,t[0]<0?e+Math.abs(t[0]):e-t[0],0)}([i,o],r)/m(s,a)}function S(t,e,r,n){if(100===n)return n;var i=v(n,t),o=t[i-1],s=t[i];return r?n-o>(s-o)/2?s:o:e[i-1]?t[i-1]+function(t,e){return Math.round(t/e)*e}(n-t[i-1],e[i-1]):n}t.PipsMode=void 0,(e=t.PipsMode||(t.PipsMode={})).Range=\"range\",e.Steps=\"steps\",e.Positions=\"positions\",e.Count=\"count\",e.Values=\"values\",t.PipsType=void 0,(r=t.PipsType||(t.PipsType={}))[r.None=-1]=\"None\",r[r.NoValue=0]=\"NoValue\",r[r.LargeValue=1]=\"LargeValue\",r[r.SmallValue=2]=\"SmallValue\";var x=function(){function t(t,e,r){var n;this.xPct=[],this.xVal=[],this.xSteps=[],this.xNumSteps=[],this.xHighestCompleteStep=[],this.xSteps=[r||!1],this.xNumSteps=[!1],this.snap=e;var i=[];for(Object.keys(t).forEach((function(e){i.push([c(t[e]),e])})),i.sort((function(t,e){return t[0][0]-e[0][0]})),n=0;nthis.xPct[i+1];)i++;else t===this.xPct[this.xPct.length-1]&&(i=this.xPct.length-2);r||t!==this.xPct[i+1]||i++,null===e&&(e=[]);var o=1,s=e[i],a=0,l=0,u=0,c=0;for(n=r?(t-this.xPct[i])/(this.xPct[i+1]-this.xPct[i]):(this.xPct[i+1]-t)/(this.xPct[i+1]-this.xPct[i]);s>0;)a=this.xPct[i+1+c]-this.xPct[i+c],e[i+c]*o+100-100*n>100?(l=a*n,o=(s-100*n)/e[i+c],n=1):(l=e[i+c]*a/100*o,o=0),r?(u-=l,this.xPct.length+c>=1&&c--):(u+=l,this.xPct.length-c>=1&&c++),s=e[i+c]*o;return t+u},t.prototype.toStepping=function(t){return t=b(this.xVal,this.xPct,t)},t.prototype.fromStepping=function(t){return function(t,e,r){if(r>=100)return t.slice(-1)[0];var n=v(r,e),i=t[n-1],o=t[n],s=e[n-1];return function(t,e){return e*(t[1]-t[0])/100+t[0]}([i,o],(r-s)*m(s,e[n]))}(this.xVal,this.xPct,t)},t.prototype.getStep=function(t){return t=S(this.xPct,this.xSteps,this.snap,t)},t.prototype.getDefaultStep=function(t,e,r){var n=v(t,this.xPct);return(100===t||e&&t===this.xPct[n-1])&&(n=Math.max(n-1,1)),(this.xVal[n]-this.xVal[n-1])/r},t.prototype.getNearbySteps=function(t){var e=v(t,this.xPct);return{stepBefore:{startValue:this.xVal[e-2],step:this.xNumSteps[e-2],highestStep:this.xHighestCompleteStep[e-2]},thisStep:{startValue:this.xVal[e-1],step:this.xNumSteps[e-1],highestStep:this.xHighestCompleteStep[e-1]},stepAfter:{startValue:this.xVal[e],step:this.xNumSteps[e],highestStep:this.xHighestCompleteStep[e]}}},t.prototype.countStepDecimals=function(){var t=this.xNumSteps.map(p);return Math.max.apply(null,t)},t.prototype.hasNoSize=function(){return this.xVal[0]===this.xVal[this.xVal.length-1]},t.prototype.convert=function(t){return this.getStep(this.toStepping(t))},t.prototype.handleEntryPoint=function(t,e){var r;if(!a(r=\"min\"===t?0:\"max\"===t?100:parseFloat(t))||!a(e[0]))throw new Error(\"noUiSlider: 'range' value isn't numeric.\");this.xPct.push(r),this.xVal.push(e[0]);var n=Number(e[1]);r?this.xSteps.push(!isNaN(n)&&n):isNaN(n)||(this.xSteps[0]=n),this.xHighestCompleteStep.push(0)},t.prototype.handleStepPoint=function(t,e){if(e)if(this.xVal[t]!==this.xVal[t+1]){this.xSteps[t]=g([this.xVal[t],this.xVal[t+1]],e,0)/m(this.xPct[t],this.xPct[t+1]);var r=(this.xVal[t+1]-this.xVal[t])/this.xNumSteps[t],n=Math.ceil(Number(r.toFixed(3))-1),i=this.xVal[t]+this.xNumSteps[t]*n;this.xHighestCompleteStep[t]=i}else this.xSteps[t]=this.xHighestCompleteStep[t]=this.xVal[t]},t}(),y={to:function(t){return void 0===t?\"\":t.toFixed(2)},from:Number},w={target:\"target\",base:\"base\",origin:\"origin\",handle:\"handle\",handleLower:\"handle-lower\",handleUpper:\"handle-upper\",touchArea:\"touch-area\",horizontal:\"horizontal\",vertical:\"vertical\",background:\"background\",connect:\"connect\",connects:\"connects\",ltr:\"ltr\",rtl:\"rtl\",textDirectionLtr:\"txt-dir-ltr\",textDirectionRtl:\"txt-dir-rtl\",draggable:\"draggable\",drag:\"state-drag\",tap:\"state-tap\",active:\"active\",tooltip:\"tooltip\",pips:\"pips\",pipsHorizontal:\"pips-horizontal\",pipsVertical:\"pips-vertical\",marker:\"marker\",markerHorizontal:\"marker-horizontal\",markerVertical:\"marker-vertical\",markerNormal:\"marker-normal\",markerLarge:\"marker-large\",markerSub:\"marker-sub\",value:\"value\",valueHorizontal:\"value-horizontal\",valueVertical:\"value-vertical\",valueNormal:\"value-normal\",valueLarge:\"value-large\",valueSub:\"value-sub\"},E=\".__tooltips\",P=\".__aria\";function C(t,e){if(!a(e))throw new Error(\"noUiSlider: 'step' is not numeric.\");t.singleStep=e}function N(t,e){if(!a(e))throw new Error(\"noUiSlider: 'keyboardPageMultiplier' is not numeric.\");t.keyboardPageMultiplier=e}function V(t,e){if(!a(e))throw new Error(\"noUiSlider: 'keyboardMultiplier' is not numeric.\");t.keyboardMultiplier=e}function k(t,e){if(!a(e))throw new Error(\"noUiSlider: 'keyboardDefaultStep' is not numeric.\");t.keyboardDefaultStep=e}function M(t,e){if(\"object\"!=typeof e||Array.isArray(e))throw new Error(\"noUiSlider: 'range' is not an object.\");if(void 0===e.min||void 0===e.max)throw new Error(\"noUiSlider: Missing 'min' or 'max' in 'range'.\");t.spectrum=new x(e,t.snap||!1,t.singleStep)}function A(t,e){if(e=c(e),!Array.isArray(e)||!e.length)throw new Error(\"noUiSlider: 'start' option is incorrect.\");t.handles=e.length,t.start=e}function U(t,e){if(\"boolean\"!=typeof e)throw new Error(\"noUiSlider: 'snap' option must be a boolean.\");t.snap=e}function D(t,e){if(\"boolean\"!=typeof e)throw new Error(\"noUiSlider: 'animate' option must be a boolean.\");t.animate=e}function O(t,e){if(\"number\"!=typeof e)throw new Error(\"noUiSlider: 'animationDuration' option must be a number.\");t.animationDuration=e}function L(t,e){var r,n=[!1];if(\"lower\"===e?e=[!0,!1]:\"upper\"===e&&(e=[!1,!0]),!0===e||!1===e){for(r=1;r1)throw new Error(\"noUiSlider: 'padding' option must not exceed 100% of the range.\")}}function F(t,e){switch(e){case\"ltr\":t.dir=0;break;case\"rtl\":t.dir=1;break;default:throw new Error(\"noUiSlider: 'direction' option was not recognized.\")}}function R(t,e){if(\"string\"!=typeof e)throw new Error(\"noUiSlider: 'behaviour' must be a string containing options.\");var r=e.indexOf(\"tap\")>=0,n=e.indexOf(\"drag\")>=0,i=e.indexOf(\"fixed\")>=0,o=e.indexOf(\"snap\")>=0,s=e.indexOf(\"hover\")>=0,a=e.indexOf(\"unconstrained\")>=0,l=e.indexOf(\"drag-all\")>=0;if(i){if(2!==t.handles)throw new Error(\"noUiSlider: 'fixed' behaviour must be used with 2 handles\");j(t,t.start[1]-t.start[0])}if(a&&(t.margin||t.limit))throw new Error(\"noUiSlider: 'unconstrained' behaviour cannot be used with margin or limit\");t.events={tap:r||o,drag:n,dragAll:l,fixed:i,snap:o,hover:s,unconstrained:a}}function _(t,e){if(!1!==e)if(!0===e||n(e)){t.tooltips=[];for(var r=0;r= 2) required for mode 'count'.\");for(var r=e.values-1,n=100/r,i=[];r--;)i[r]=r*n;return i.push(100),q(i,e.stepped)}return e.mode===t.PipsMode.Positions?q(e.values,e.stepped):e.mode===t.PipsMode.Values?e.stepped?e.values.map((function(t){return C.fromStepping(C.getStep(C.toStepping(t)))})):e.values:[]}(e),i={},o=C.xVal[0],s=C.xVal[C.xVal.length-1],a=!1,l=!1,u=0;return r=n.slice().sort((function(t,e){return t-e})),(n=r.filter((function(t){return!this[t]&&(this[t]=!0)}),{}))[0]!==o&&(n.unshift(o),a=!0),n[n.length-1]!==s&&(n.push(s),l=!0),n.forEach((function(r,o){var s,c,p,f,d,h,m,g,v,b,S=r,x=n[o+1],y=e.mode===t.PipsMode.Steps;for(y&&(s=C.xNumSteps[o]),s||(s=x-S),void 0===x&&(x=S),s=Math.max(s,1e-7),c=S;c<=x;c=Number((c+s).toFixed(7))){for(g=(d=(f=C.toStepping(c))-u)/(e.density||1),b=d/(v=Math.round(g)),p=1;p<=v;p+=1)i[(h=u+p*b).toFixed(5)]=[C.fromStepping(h),0];m=n.indexOf(c)>-1?t.PipsType.LargeValue:y?t.PipsType.SmallValue:t.PipsType.NoValue,!o&&a&&c!==x&&(m=0),c===x&&l||(i[f.toFixed(5)]=[c,m]),u=f}})),i}function Y(e,n,i){var o,s,a=U.createElement(\"div\"),l=((o={})[t.PipsType.None]=\"\",o[t.PipsType.NoValue]=r.cssClasses.valueNormal,o[t.PipsType.LargeValue]=r.cssClasses.valueLarge,o[t.PipsType.SmallValue]=r.cssClasses.valueSub,o),u=((s={})[t.PipsType.None]=\"\",s[t.PipsType.NoValue]=r.cssClasses.markerNormal,s[t.PipsType.LargeValue]=r.cssClasses.markerLarge,s[t.PipsType.SmallValue]=r.cssClasses.markerSub,s),c=[r.cssClasses.valueHorizontal,r.cssClasses.valueVertical],p=[r.cssClasses.markerHorizontal,r.cssClasses.markerVertical];function d(t,e){var n=e===r.cssClasses.value,i=n?l:u;return e+\" \"+(n?c:p)[r.ort]+\" \"+i[t]}return f(a,r.cssClasses.pips),f(a,0===r.ort?r.cssClasses.pipsHorizontal:r.cssClasses.pipsVertical),Object.keys(e).forEach((function(o){!function(e,o,s){if((s=n?n(o,s):s)!==t.PipsType.None){var l=T(a,!1);l.className=d(s,r.cssClasses.marker),l.style[r.style]=e+\"%\",s>t.PipsType.NoValue&&((l=T(a,!1)).className=d(s,r.cssClasses.value),l.setAttribute(\"data-value\",String(o)),l.style[r.style]=e+\"%\",l.innerHTML=String(i.to(o)))}}(o,e[o][0],e[o][1])})),a}function I(){g&&(i(g),g=null)}function W(t){I();var e=X(t),r=t.filter,n=t.format||{to:function(t){return String(Math.round(t))}};return g=w.appendChild(Y(e,r,n))}function $(){var t=a.getBoundingClientRect(),e=\"offset\"+[\"Width\",\"Height\"][r.ort];return 0===r.ort?t.width||a[e]:t.height||a[e]}function J(t,e,n,i){var o=function(o){var s,a,l=function(t,e,r){var n=0===t.type.indexOf(\"touch\"),i=0===t.type.indexOf(\"mouse\"),o=0===t.type.indexOf(\"pointer\"),s=0,a=0;if(0===t.type.indexOf(\"MSPointer\")&&(o=!0),\"mousedown\"===t.type&&!t.buttons&&!t.touches)return!1;if(n){var l=function(e){var n=e.target;return n===r||r.contains(n)||t.composed&&t.composedPath().shift()===r};if(\"touchstart\"===t.type){var u=Array.prototype.filter.call(t.touches,l);if(u.length>1)return!1;s=u[0].pageX,a=u[0].pageY}else{var c=Array.prototype.find.call(t.changedTouches,l);if(!c)return!1;s=c.pageX,a=c.pageY}}return e=e||h(U),(i||o)&&(s=t.clientX+e.x,a=t.clientY+e.y),t.pageOffset=e,t.points=[s,a],t.cursor=i||o,t}(o,i.pageOffset,i.target||e);return!!l&&!(F()&&!i.doNotReject)&&(s=w,a=r.cssClasses.tap,!((s.classList?s.classList.contains(a):new RegExp(\"\\\\b\"+a+\"\\\\b\").test(s.className))&&!i.doNotReject)&&!(t===x.start&&void 0!==l.buttons&&l.buttons>1)&&(!i.hover||!l.buttons)&&(y||l.preventDefault(),l.calcPoint=l.points[r.ort],void n(l,i)))},s=[];return t.split(\" \").forEach((function(t){e.addEventListener(t,o,!!y&&{passive:!0}),s.push([t,o])})),s}function K(t){var e,n,i,o,s,l,c=100*(t-(e=a,n=r.ort,i=e.getBoundingClientRect(),o=e.ownerDocument,s=o.documentElement,l=h(o),/webkit.*Chrome.*Mobile/i.test(navigator.userAgent)&&(l.x=0),n?i.top+l.y-s.clientTop:i.left+l.x-s.clientLeft))/$();return c=u(c),r.dir?100-c:c}function Q(t,e){\"mouseout\"===t.type&&\"HTML\"===t.target.nodeName&&null===t.relatedTarget&&tt(t,e)}function Z(t,e){if(-1===navigator.appVersion.indexOf(\"MSIE 9\")&&0===t.buttons&&0!==e.buttonsProperty)return tt(t,e);var n=(r.dir?-1:1)*(t.calcPoint-e.startCalcPoint);ut(n>0,100*n/e.baseSize,e.locations,e.handleNumbers,e.connect)}function tt(t,e){e.handle&&(d(e.handle,r.cssClasses.active),M-=1),e.listeners.forEach((function(t){D.removeEventListener(t[0],t[1])})),0===M&&(d(w,r.cssClasses.drag),pt(),t.cursor&&(O.style.cursor=\"\",O.removeEventListener(\"selectstart\",s))),e.handleNumbers.forEach((function(t){st(\"change\",t),st(\"set\",t),st(\"end\",t)}))}function et(t,e){if(!e.handleNumbers.some(R)){var n;1===e.handleNumbers.length&&(n=p[e.handleNumbers[0]].children[0],M+=1,f(n,r.cssClasses.active)),t.stopPropagation();var i=[],o=J(x.move,D,Z,{target:t.target,handle:n,connect:e.connect,listeners:i,startCalcPoint:t.calcPoint,baseSize:$(),pageOffset:t.pageOffset,handleNumbers:e.handleNumbers,buttonsProperty:t.buttons,locations:V.slice()}),a=J(x.end,D,tt,{target:t.target,handle:n,listeners:i,doNotReject:!0,handleNumbers:e.handleNumbers}),l=J(\"mouseout\",D,Q,{target:t.target,handle:n,listeners:i,doNotReject:!0,handleNumbers:e.handleNumbers});i.push.apply(i,o.concat(a,l)),t.cursor&&(O.style.cursor=getComputedStyle(t.target).cursor,p.length>1&&f(w,r.cssClasses.drag),O.addEventListener(\"selectstart\",s,!1)),e.handleNumbers.forEach((function(t){st(\"start\",t)}))}}function rt(t){t.stopPropagation();var e=K(t.calcPoint),n=function(t){var e=100,r=!1;return p.forEach((function(n,i){if(!R(i)){var o=V[i],s=Math.abs(o-t);(so||100===s&&100===e)&&(r=i,e=s)}})),r}(e);!1!==n&&(r.events.snap||l(w,r.cssClasses.tap,r.animationDuration),ft(n,e,!0,!0),pt(),st(\"slide\",n,!0),st(\"update\",n,!0),r.events.snap?et(t,{handleNumbers:[n]}):(st(\"change\",n,!0),st(\"set\",n,!0)))}function nt(t){var e=K(t.calcPoint),r=C.getStep(e),n=C.fromStepping(r);Object.keys(A).forEach((function(t){\"hover\"===t.split(\".\")[0]&&A[t].forEach((function(t){t.call(bt,n)}))}))}function it(t,e){A[t]=A[t]||[],A[t].push(e),\"update\"===t.split(\".\")[0]&&p.forEach((function(t,e){st(\"update\",e)}))}function ot(t){var e=t&&t.split(\".\")[0],r=e?t.substring(e.length):t;Object.keys(A).forEach((function(t){var n=t.split(\".\")[0],i=t.substring(n.length);e&&e!==n||r&&r!==i||function(t){return t===P||t===E}(i)&&r!==i||delete A[t]}))}function st(t,e,n){Object.keys(A).forEach((function(i){var o=i.split(\".\")[0];t===o&&A[i].forEach((function(t){t.call(bt,N.map(r.format.to),e,N.slice(),n||!1,V.slice(),bt)}))}))}function at(t,e,n,i,o,s){var a;return p.length>1&&!r.events.unconstrained&&(i&&e>0&&(a=C.getAbsoluteDistance(t[e-1],r.margin,!1),n=Math.max(n,a)),o&&e1&&r.limit&&(i&&e>0&&(a=C.getAbsoluteDistance(t[e-1],r.limit,!1),n=Math.min(n,a)),o&&e1?n.forEach((function(t,r){var n=at(o,t,o[t]+e,a[r],l[r],!1);!1===n?e=0:(e=n-o[t],o[t]=n)})):a=l=[!0];var u=!1;n.forEach((function(t,n){u=ft(t,r[t]+e,a[n],l[n])||u})),u&&(n.forEach((function(t){st(\"update\",t),st(\"slide\",t)})),null!=i&&st(\"drag\",s))}function ct(t,e){return r.dir?100-t-e:t}function pt(){k.forEach((function(t){var e=V[t]>50?-1:1,r=3+(p.length+e*t);p[t].style.zIndex=String(r)}))}function ft(t,e,n,i,o){return o||(e=at(V,t,e,n,i,!1)),!1!==e&&(function(t,e){V[t]=e,N[t]=C.fromStepping(e);var n=\"translate(\"+lt(10*(ct(e,0)-L)+\"%\",\"0\")+\")\";p[t].style[r.transformRule]=n,dt(t),dt(t+1)}(t,e),!0)}function dt(t){if(m[t]){var e=0,n=100;0!==t&&(e=V[t-1]),t!==m.length-1&&(n=V[t]);var i=n-e,o=\"translate(\"+lt(ct(e,i)+\"%\",\"0\")+\")\",s=\"scale(\"+lt(i/100,\"1\")+\")\";m[t].style[r.transformRule]=o+\" \"+s}}function ht(t,e){return null===t||!1===t||void 0===t?V[e]:(\"number\"==typeof t&&(t=String(t)),!1!==(t=r.format.from(t))&&(t=C.toStepping(t)),!1===t||isNaN(t)?V[e]:t)}function mt(t,e,n){var i=c(t),o=void 0===V[0];e=void 0===e||e,r.animate&&!o&&l(w,r.cssClasses.tap,r.animationDuration),k.forEach((function(t){ft(t,ht(i[t],t),!0,!1,n)}));var s=1===k.length?0:1;if(o&&C.hasNoSize()&&(n=!0,V[0]=0,k.length>1)){var a=100/(k.length-1);k.forEach((function(t){V[t]=t*a}))}for(;sn.stepAfter.startValue&&(o=n.stepAfter.startValue-i),s=i>n.thisStep.startValue?n.thisStep.step:!1!==n.stepBefore.step&&i-n.stepBefore.highestStep,100===e?o=null:0===e&&(s=null);var a=C.countStepDecimals();return null!==o&&!1!==o&&(o=Number(o.toFixed(a))),null!==s&&!1!==s&&(s=Number(s.toFixed(a))),[s,o]}f(b=w,r.cssClasses.target),0===r.dir?f(b,r.cssClasses.ltr):f(b,r.cssClasses.rtl),0===r.ort?f(b,r.cssClasses.horizontal):f(b,r.cssClasses.vertical),f(b,\"rtl\"===getComputedStyle(b).direction?r.cssClasses.textDirectionRtl:r.cssClasses.textDirectionLtr),a=T(b,r.cssClasses.base),function(t,e){var n=T(e,r.cssClasses.connects);p=[],(m=[]).push(z(n,t[0]));for(var i=0;i=0&&t .noUi-tooltip{-webkit-transform:translate(50%, 0);transform:translate(50%, 0);left:auto;bottom:10px;}.bk-root .noUi-vertical .noUi-origin > .noUi-tooltip{-webkit-transform:translate(0, -18px);transform:translate(0, -18px);top:auto;right:28px;}.bk-root .noUi-handle{cursor:grab;cursor:-webkit-grab;}.bk-root .noUi-handle.noUi-active{cursor:grabbing;cursor:-webkit-grabbing;}.bk-root .noUi-handle:after,.bk-root .noUi-handle:before{display:none;}.bk-root .noUi-tooltip{display:none;white-space:nowrap;}.bk-root .noUi-handle:hover .noUi-tooltip{display:block;}.bk-root .noUi-horizontal{width:100%;height:10px;}.bk-root .noUi-vertical{width:10px;height:100%;}.bk-root .noUi-horizontal .noUi-handle{width:14px;height:18px;right:-7px;top:-5px;}.bk-root .noUi-vertical .noUi-handle{width:18px;height:14px;right:-5px;top:-7px;}.bk-root .noUi-target.noUi-horizontal{margin:5px 0px;}.bk-root .noUi-target.noUi-vertical{margin:0px 5px;}'},\n", + " 465: function _(e,t,r,a,i){a();var s;const d=(0,e(1).__importDefault)(e(151)),o=e(461),_=e(8);class n extends o.AbstractSliderView{}r.DateSliderView=n,n.__name__=\"DateSliderView\";class c extends o.AbstractSlider{constructor(e){super(e),this.behaviour=\"tap\",this.connected=[!0,!1]}_formatter(e,t){return(0,_.isString)(t)?(0,d.default)(e,t):t.compute(e)}}r.DateSlider=c,s=c,c.__name__=\"DateSlider\",s.prototype.default_view=n,s.override({format:\"%d %b %Y\"})},\n", + " 466: function _(e,t,r,a,i){a();var n;const s=(0,e(1).__importDefault)(e(151)),d=e(461),o=e(8);class _ extends d.AbstractRangeSliderView{}r.DatetimeRangeSliderView=_,_.__name__=\"DatetimeRangeSliderView\";class c extends d.AbstractSlider{constructor(e){super(e),this.behaviour=\"drag\",this.connected=[!1,!0,!1]}_formatter(e,t){return(0,o.isString)(t)?(0,s.default)(e,t):t.compute(e)}}r.DatetimeRangeSlider=c,n=c,c.__name__=\"DatetimeRangeSlider\",n.prototype.default_view=_,n.override({format:\"%d %b %Y %H:%M:%S\",step:36e5})},\n", + " 467: function _(e,t,s,r,i){var _;r();const n=e(468);class a extends n.MarkupView{render(){super.render(),this.model.render_as_text?this.markup_el.textContent=this.model.text:this.markup_el.innerHTML=this.has_math_disabled()?this.model.text:this.process_tex()}}s.DivView=a,a.__name__=\"DivView\";class d extends n.Markup{constructor(e){super(e)}}s.Div=d,_=d,d.__name__=\"Div\",_.prototype.default_view=a,_.define((({Boolean:e})=>({render_as_text:[e,!1]})))},\n", + " 468: function _(t,e,s,i,r){i();const a=t(1);var n;const o=t(210),d=t(43),h=t(137),l=t(512),_=(0,a.__importStar)(t(469));class u extends l.WidgetView{get provider(){return h.default_provider}async lazy_initialize(){await super.lazy_initialize(),\"not_started\"==this.provider.status&&await this.provider.fetch(),\"not_started\"!=this.provider.status&&\"loading\"!=this.provider.status||this.provider.ready.connect((()=>{this.contains_tex_string()&&this.rerender()}))}after_layout(){super.after_layout(),\"loading\"===this.provider.status&&(this._has_finished=!1)}rerender(){this.layout.invalidate_cache(),this.render(),this.root.compute_layout()}connect_signals(){super.connect_signals(),this.connect(this.model.change,(()=>{this.rerender()}))}styles(){return[...super.styles(),_.default]}_update_layout(){this.layout=new o.CachedVariadicBox(this.el),this.layout.set_sizing(this.box_sizing())}render(){super.render();const t=Object.assign(Object.assign({},this.model.style),{display:\"inline-block\"});this.markup_el=(0,d.div)({class:_.clearfix,style:t}),this.el.appendChild(this.markup_el),\"failed\"!=this.provider.status&&\"loaded\"!=this.provider.status||(this._has_finished=!0)}has_math_disabled(){return this.model.disable_math||!this.contains_tex_string()}process_tex(){if(!this.provider.MathJax)return this.model.text;const{text:t}=this.model,e=this.provider.MathJax.find_tex(t),s=[];let i=0;for(const r of e)s.push(t.slice(i,r.start.n)),s.push(this.provider.MathJax.tex2svg(r.math,{display:r.display}).outerHTML),i=r.end.n;return i0}}s.MarkupView=u,u.__name__=\"MarkupView\";class p extends l.Widget{constructor(t){super(t)}}s.Markup=p,n=p,p.__name__=\"Markup\",n.define((({Boolean:t,String:e,Dict:s})=>({text:[e,\"\"],style:[s(e),{}],disable_math:[t,!1]})))},\n", + " 469: function _(o,r,e,t,a){t(),e.root=\"bk-root\",e.clearfix=\"bk-clearfix\",e.default='.bk-root .bk-clearfix:before,.bk-root .bk-clearfix:after{content:\"\";display:table;}.bk-root .bk-clearfix:after{clear:both;}'},\n", + " 470: function _(e,t,i,n,s){n();const o=e(1);var l;const r=e(441),d=e(251),_=e(43),u=e(8),c=(0,o.__importStar)(e(318)),h=(0,o.__importStar)(e(229)),m=h;class p extends r.AbstractButtonView{constructor(){super(...arguments),this._open=!1}styles(){return[...super.styles(),h.default]}render(){super.render();const e=(0,_.div)({class:[m.caret,m.down]});if(this.model.is_split){const t=this._render_button(e);t.classList.add(c.dropdown_toggle),t.addEventListener(\"click\",(()=>this._toggle_menu())),this.group_el.appendChild(t)}else this.button_el.appendChild(e);const t=this.model.menu.map(((e,t)=>{if(null==e)return(0,_.div)({class:m.divider});{const i=(0,u.isString)(e)?e:e[0],n=(0,_.div)(i);return n.addEventListener(\"click\",(()=>this._item_click(t))),n}}));this.menu=(0,_.div)({class:[m.menu,m.below]},t),this.el.appendChild(this.menu),(0,_.undisplay)(this.menu)}_show_menu(){if(!this._open){this._open=!0,(0,_.display)(this.menu);const e=t=>{const{target:i}=t;i instanceof HTMLElement&&!this.el.contains(i)&&(document.removeEventListener(\"click\",e),this._hide_menu())};document.addEventListener(\"click\",e)}}_hide_menu(){this._open&&(this._open=!1,(0,_.undisplay)(this.menu))}_toggle_menu(){this._open?this._hide_menu():this._show_menu()}click(){this.model.is_split?(this._hide_menu(),this.model.trigger_event(new d.ButtonClick),super.click()):this._toggle_menu()}_item_click(e){this._hide_menu();const t=this.model.menu[e];if(null!=t){const i=(0,u.isString)(t)?t:t[1];(0,u.isString)(i)?this.model.trigger_event(new d.MenuItemClick(i)):i.execute(this.model,{index:e})}}}i.DropdownView=p,p.__name__=\"DropdownView\";class a extends r.AbstractButton{constructor(e){super(e)}get is_split(){return this.split}}i.Dropdown=a,l=a,a.__name__=\"Dropdown\",l.prototype.default_view=p,l.define((({Null:e,Boolean:t,String:i,Array:n,Tuple:s,Or:o})=>({split:[t,!1],menu:[n(o(i,s(i,o(i)),e)),[]]}))),l.override({label:\"Dropdown\"})},\n", + " 471: function _(e,l,i,t,s){var n;t();const a=e(43),o=e(512);class d extends o.WidgetView{connect_signals(){super.connect_signals(),this.connect(this.model.change,(()=>this.render()))}render(){const{multiple:e,accept:l,disabled:i,width:t}=this.model;null==this.dialog_el&&(this.dialog_el=(0,a.input)({type:\"file\",multiple:e}),this.dialog_el.onchange=()=>{const{files:e}=this.dialog_el;null!=e&&this.load_files(e)},this.el.appendChild(this.dialog_el)),null!=l&&\"\"!=l&&(this.dialog_el.accept=l),this.dialog_el.style.width=`${t}px`,this.dialog_el.disabled=i}async load_files(e){const l=[],i=[],t=[];for(const s of e){const e=await this._read_file(s),[,n=\"\",,a=\"\"]=e.split(/[:;,]/,4);l.push(a),i.push(s.name),t.push(n)}this.model.multiple?this.model.setv({value:l,filename:i,mime_type:t}):this.model.setv({value:l[0],filename:i[0],mime_type:t[0]})}_read_file(e){return new Promise(((l,i)=>{const t=new FileReader;t.onload=()=>{var s;const{result:n}=t;null!=n?l(n):i(null!==(s=t.error)&&void 0!==s?s:new Error(`unable to read '${e.name}'`))},t.readAsDataURL(e)}))}}i.FileInputView=d,d.__name__=\"FileInputView\";class r extends o.Widget{constructor(e){super(e)}}i.FileInput=r,n=r,r.__name__=\"FileInput\",n.prototype.default_view=d,n.define((({Boolean:e,String:l,Array:i,Or:t})=>({value:[t(l,i(l)),\"\"],mime_type:[t(l,i(l)),\"\"],filename:[t(l,i(l)),\"\"],accept:[l,\"\"],multiple:[e,!1]})))},\n", + " 472: function _(e,t,i,s,n){s();const l=e(1);var o;const r=e(43),c=e(8),h=e(448),p=(0,l.__importStar)(e(449));class d extends h.InputWidgetView{connect_signals(){super.connect_signals(),this.connect(this.model.properties.value.change,(()=>this.render_selection())),this.connect(this.model.properties.options.change,(()=>this.render())),this.connect(this.model.properties.name.change,(()=>this.render())),this.connect(this.model.properties.title.change,(()=>this.render())),this.connect(this.model.properties.size.change,(()=>this.render())),this.connect(this.model.properties.disabled.change,(()=>this.render()))}render(){super.render();const e=this.model.options.map((e=>{let t,i;return(0,c.isString)(e)?t=i=e:[t,i]=e,(0,r.option)({value:t},i)}));this.input_el=(0,r.select)({multiple:!0,class:p.input,name:this.model.name,disabled:this.model.disabled},e),this.input_el.addEventListener(\"change\",(()=>this.change_input())),this.group_el.appendChild(this.input_el),this.render_selection()}render_selection(){const e=new Set(this.model.value);for(const t of this.el.querySelectorAll(\"option\"))t.selected=e.has(t.value);this.input_el.size=this.model.size}change_input(){const e=null!=this.el.querySelector(\"select:focus\"),t=[];for(const e of this.el.querySelectorAll(\"option\"))e.selected&&t.push(e.value);this.model.value=t,super.change_input(),e&&this.input_el.focus()}}i.MultiSelectView=d,d.__name__=\"MultiSelectView\";class u extends h.InputWidget{constructor(e){super(e)}}i.MultiSelect=u,o=u,u.__name__=\"MultiSelect\",o.prototype.default_view=d,o.define((({Int:e,String:t,Array:i,Tuple:s,Or:n})=>({value:[i(t),[]],options:[i(n(t,s(t,t))),[]],size:[e,4]})))},\n", + " 473: function _(e,a,r,t,s){var n;t();const p=e(468),_=e(43);class i extends p.MarkupView{render(){super.render();const e=(0,_.p)({style:{margin:0}});this.has_math_disabled()?e.textContent=this.model.text:e.innerHTML=this.process_tex(),this.markup_el.appendChild(e)}}r.ParagraphView=i,i.__name__=\"ParagraphView\";class h extends p.Markup{constructor(e){super(e)}}r.Paragraph=h,n=h,h.__name__=\"Paragraph\",n.prototype.default_view=i},\n", + " 474: function _(e,s,t,n,r){var p;n();const u=e(446);class a extends u.TextInputView{render(){super.render(),this.input_el.type=\"password\"}}t.PasswordInputView=a,a.__name__=\"PasswordInputView\";class o extends u.TextInput{constructor(e){super(e)}}t.PasswordInput=o,p=o,o.__name__=\"PasswordInput\",p.prototype.default_view=a},\n", + " 475: function _(e,t,i,l,s){l();const o=e(1);var n;const h=(0,o.__importDefault)(e(476)),a=e(43),u=e(8),c=e(210),_=(0,o.__importStar)(e(449)),d=(0,o.__importDefault)(e(477)),r=e(448);class m extends r.InputWidgetView{constructor(){super(...arguments),this._last_height=null}connect_signals(){super.connect_signals(),this.connect(this.model.properties.disabled.change,(()=>this.set_disabled()));const{value:e,max_items:t,option_limit:i,search_option_limit:l,delete_button:s,placeholder:o,options:n,name:h,title:a}=this.model.properties;this.on_change([e,t,i,l,s,o,n,h,a],(()=>this.render()))}styles(){return[...super.styles(),d.default]}_update_layout(){this.layout=new c.CachedVariadicBox(this.el),this.layout.set_sizing(this.box_sizing())}render(){super.render(),this.input_el=(0,a.select)({multiple:!0,class:_.input,name:this.model.name,disabled:this.model.disabled}),this.group_el.appendChild(this.input_el);const e=new Set(this.model.value),t=this.model.options.map((t=>{let i,l;return(0,u.isString)(t)?i=l=t:[i,l]=t,{value:i,label:l,selected:e.has(i)}})),i=this.model.solid?\"solid\":\"light\",l=`choices__item ${i}`,s=`choices__button ${i}`,o={choices:t,duplicateItemsAllowed:!1,removeItemButton:this.model.delete_button,classNames:{item:l,button:s}};null!=this.model.placeholder&&(o.placeholderValue=this.model.placeholder),null!=this.model.max_items&&(o.maxItemCount=this.model.max_items),null!=this.model.option_limit&&(o.renderChoiceLimit=this.model.option_limit),null!=this.model.search_option_limit&&(o.searchResultLimit=this.model.search_option_limit),this.choice_el=new h.default(this.input_el,o);const n=()=>this.choice_el.containerOuter.element.getBoundingClientRect().height;null!=this._last_height&&this._last_height!=n()&&this.root.invalidate_layout(),this._last_height=n(),this.input_el.addEventListener(\"change\",(()=>this.change_input()))}set_disabled(){this.model.disabled?this.choice_el.disable():this.choice_el.enable()}change_input(){const e=null!=this.el.querySelector(\"select:focus\"),t=[];for(const e of this.el.querySelectorAll(\"option\"))e.selected&&t.push(e.value);this.model.value=t,super.change_input(),e&&this.input_el.focus()}}i.MultiChoiceView=m,m.__name__=\"MultiChoiceView\";class p extends r.InputWidget{constructor(e){super(e)}}i.MultiChoice=p,n=p,p.__name__=\"MultiChoice\",n.prototype.default_view=m,n.define((({Boolean:e,Int:t,String:i,Array:l,Tuple:s,Or:o,Nullable:n})=>({value:[l(i),[]],options:[l(o(i,s(i,i))),[]],max_items:[n(t),null],delete_button:[e,!0],placeholder:[n(i),null],option_limit:[n(t),null],search_option_limit:[n(t),null],solid:[e,!0]})))},\n", + " 476: function _(e,t,i,n,s){\n", + " /*! choices.js v9.0.1 | © 2019 Josh Johnson | https://github.com/jshjohnson/Choices#readme */\n", + " var r,o;r=window,o=function(){return function(e){var t={};function i(n){if(t[n])return t[n].exports;var s=t[n]={i:n,l:!1,exports:{}};return e[n].call(s.exports,s,s.exports,i),s.l=!0,s.exports}return i.m=e,i.c=t,i.d=function(e,t,n){i.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:n})},i.r=function(e){\"undefined\"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:\"Module\"}),Object.defineProperty(e,\"__esModule\",{value:!0})},i.t=function(e,t){if(1&t&&(e=i(e)),8&t)return e;if(4&t&&\"object\"==typeof e&&e&&e.__esModule)return e;var n=Object.create(null);if(i.r(n),Object.defineProperty(n,\"default\",{enumerable:!0,value:e}),2&t&&\"string\"!=typeof e)for(var s in e)i.d(n,s,function(t){return e[t]}.bind(null,s));return n},i.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return i.d(t,\"a\",t),t},i.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},i.p=\"/public/assets/scripts/\",i(i.s=4)}([function(e,t,i){\"use strict\";var n=function(e){return function(e){return!!e&&\"object\"==typeof e}(e)&&!function(e){var t=Object.prototype.toString.call(e);return\"[object RegExp]\"===t||\"[object Date]\"===t||function(e){return e.$$typeof===s}(e)}(e)},s=\"function\"==typeof Symbol&&Symbol.for?Symbol.for(\"react.element\"):60103;function r(e,t){return!1!==t.clone&&t.isMergeableObject(e)?l((i=e,Array.isArray(i)?[]:{}),e,t):e;var i}function o(e,t,i){return e.concat(t).map((function(e){return r(e,i)}))}function a(e){return Object.keys(e).concat(function(e){return Object.getOwnPropertySymbols?Object.getOwnPropertySymbols(e).filter((function(t){return e.propertyIsEnumerable(t)})):[]}(e))}function c(e,t,i){var n={};return i.isMergeableObject(e)&&a(e).forEach((function(t){n[t]=r(e[t],i)})),a(t).forEach((function(s){(function(e,t){try{return t in e&&!(Object.hasOwnProperty.call(e,t)&&Object.propertyIsEnumerable.call(e,t))}catch(e){return!1}})(e,s)||(i.isMergeableObject(t[s])&&e[s]?n[s]=function(e,t){if(!t.customMerge)return l;var i=t.customMerge(e);return\"function\"==typeof i?i:l}(s,i)(e[s],t[s],i):n[s]=r(t[s],i))})),n}function l(e,t,i){(i=i||{}).arrayMerge=i.arrayMerge||o,i.isMergeableObject=i.isMergeableObject||n,i.cloneUnlessOtherwiseSpecified=r;var s=Array.isArray(t);return s===Array.isArray(e)?s?i.arrayMerge(e,t,i):c(e,t,i):r(t,i)}l.all=function(e,t){if(!Array.isArray(e))throw new Error(\"first argument should be an array\");return e.reduce((function(e,i){return l(e,i,t)}),{})};var h=l;e.exports=h},function(e,t,i){\"use strict\";(function(e,n){var s,r=i(3);s=\"undefined\"!=typeof self?self:\"undefined\"!=typeof window?window:void 0!==e?e:n;var o=Object(r.a)(s);t.a=o}).call(this,i(5),i(6)(e))},function(e,t,i){\n", + " /*!\n", + " * Fuse.js v3.4.5 - Lightweight fuzzy-search (http://fusejs.io)\n", + " *\n", + " * Copyright (c) 2012-2017 Kirollos Risk (http://kiro.me)\n", + " * All Rights Reserved. Apache Software License 2.0\n", + " *\n", + " * http://www.apache.org/licenses/LICENSE-2.0\n", + " */\n", + " e.exports=function(e){var t={};function i(n){if(t[n])return t[n].exports;var s=t[n]={i:n,l:!1,exports:{}};return e[n].call(s.exports,s,s.exports,i),s.l=!0,s.exports}return i.m=e,i.c=t,i.d=function(e,t,n){i.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:n})},i.r=function(e){\"undefined\"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:\"Module\"}),Object.defineProperty(e,\"__esModule\",{value:!0})},i.t=function(e,t){if(1&t&&(e=i(e)),8&t)return e;if(4&t&&\"object\"==typeof e&&e&&e.__esModule)return e;var n=Object.create(null);if(i.r(n),Object.defineProperty(n,\"default\",{enumerable:!0,value:e}),2&t&&\"string\"!=typeof e)for(var s in e)i.d(n,s,function(t){return e[t]}.bind(null,s));return n},i.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return i.d(t,\"a\",t),t},i.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},i.p=\"\",i(i.s=1)}([function(e,t){e.exports=function(e){return Array.isArray?Array.isArray(e):\"[object Array]\"===Object.prototype.toString.call(e)}},function(e,t,i){function n(e){return(n=\"function\"==typeof Symbol&&\"symbol\"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&\"function\"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?\"symbol\":typeof e})(e)}function s(e,t){for(var i=0;i1&&void 0!==arguments[1]?arguments[1]:{limit:!1};this._log('---------\\nSearch pattern: \"'.concat(e,'\"'));var i=this._prepareSearchers(e),n=i.tokenSearchers,s=i.fullSearcher,r=this._search(n,s),o=r.weights,a=r.results;return this._computeScore(o,a),this.options.shouldSort&&this._sort(a),t.limit&&\"number\"==typeof t.limit&&(a=a.slice(0,t.limit)),this._format(a)}},{key:\"_prepareSearchers\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:\"\",t=[];if(this.options.tokenize)for(var i=e.split(this.options.tokenSeparator),n=0,s=i.length;n0&&void 0!==arguments[0]?arguments[0]:[],t=arguments.length>1?arguments[1]:void 0,i=this.list,n={},s=[];if(\"string\"==typeof i[0]){for(var r=0,o=i.length;r1)throw new Error(\"Key weight has to be > 0 and <= 1\");p=p.name}else a[p]={weight:1};this._analyze({key:p,value:this.options.getFn(h,p),record:h,index:c},{resultMap:n,results:s,tokenSearchers:e,fullSearcher:t})}return{weights:a,results:s}}},{key:\"_analyze\",value:function(e,t){var i=e.key,n=e.arrayIndex,s=void 0===n?-1:n,r=e.value,o=e.record,c=e.index,l=t.tokenSearchers,h=void 0===l?[]:l,u=t.fullSearcher,d=void 0===u?[]:u,p=t.resultMap,m=void 0===p?{}:p,f=t.results,v=void 0===f?[]:f;if(null!=r){var g=!1,_=-1,b=0;if(\"string\"==typeof r){this._log(\"\\nKey: \".concat(\"\"===i?\"-\":i));var y=d.search(r);if(this._log('Full text: \"'.concat(r,'\", score: ').concat(y.score)),this.options.tokenize){for(var E=r.split(this.options.tokenSeparator),I=[],S=0;S-1&&(P=(P+_)/2),this._log(\"Score average:\",P);var D=!this.options.tokenize||!this.options.matchAllTokens||b>=h.length;if(this._log(\"\\nCheck Matches: \".concat(D)),(g||y.isMatch)&&D){var M=m[c];M?M.output.push({key:i,arrayIndex:s,value:r,score:P,matchedIndices:y.matchedIndices}):(m[c]={item:o,output:[{key:i,arrayIndex:s,value:r,score:P,matchedIndices:y.matchedIndices}]},v.push(m[c]))}}else if(a(r))for(var N=0,F=r.length;N-1&&(o.arrayIndex=r.arrayIndex),t.matches.push(o)}}})),this.options.includeScore&&s.push((function(e,t){t.score=e.score}));for(var r=0,o=e.length;ri)return s(e,this.pattern,n);var o=this.options,a=o.location,c=o.distance,l=o.threshold,h=o.findAllMatches,u=o.minMatchCharLength;return r(e,this.pattern,this.patternAlphabet,{location:a,distance:c,threshold:l,findAllMatches:h,minMatchCharLength:u})}}])&&n(t.prototype,i),a&&n(t,a),e}();e.exports=a},function(e,t){var i=/[\\-\\[\\]\\/\\{\\}\\(\\)\\*\\+\\?\\.\\\\\\^\\$\\|]/g;e.exports=function(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:/ +/g,s=new RegExp(t.replace(i,\"\\\\$&\").replace(n,\"|\")),r=e.match(s),o=!!r,a=[];if(o)for(var c=0,l=r.length;c=P;N-=1){var F=N-1,j=i[e.charAt(F)];if(j&&(E[F]=1),M[N]=(M[N+1]<<1|1)&j,0!==T&&(M[N]|=(O[N+1]|O[N])<<1|1|O[N+1]),M[N]&L&&(C=n(t,{errors:T,currentLocation:F,expectedLocation:v,distance:l}))<=_){if(_=C,(b=F)<=v)break;P=Math.max(1,2*v-b)}}if(n(t,{errors:T+1,currentLocation:v,expectedLocation:v,distance:l})>_)break;O=M}return{isMatch:b>=0,score:0===C?.001:C,matchedIndices:s(E,f)}}},function(e,t){e.exports=function(e,t){var i=t.errors,n=void 0===i?0:i,s=t.currentLocation,r=void 0===s?0:s,o=t.expectedLocation,a=void 0===o?0:o,c=t.distance,l=void 0===c?100:c,h=n/e.length,u=Math.abs(a-r);return l?h+u/l:u?1:h}},function(e,t){e.exports=function(){for(var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:1,i=[],n=-1,s=-1,r=0,o=e.length;r=t&&i.push([n,s]),n=-1)}return e[r-1]&&r-n>=t&&i.push([n,r-1]),i}},function(e,t){e.exports=function(e){for(var t={},i=e.length,n=0;n/g,\"&rt;\").replace(/-1?e.map((function(e){var i=e;return i.id===parseInt(t.choiceId,10)&&(i.selected=!0),i})):e;case\"REMOVE_ITEM\":return t.choiceId>-1?e.map((function(e){var i=e;return i.id===parseInt(t.choiceId,10)&&(i.selected=!1),i})):e;case\"FILTER_CHOICES\":return e.map((function(e){var i=e;return i.active=t.results.some((function(e){var t=e.item,n=e.score;return t.id===i.id&&(i.score=n,!0)})),i}));case\"ACTIVATE_CHOICES\":return e.map((function(e){var i=e;return i.active=t.active,i}));case\"CLEAR_CHOICES\":return v;default:return e}},general:_}),A=function(e,t){var i=e;if(\"CLEAR_ALL\"===t.type)i=void 0;else if(\"RESET_TO\"===t.type)return O(t.state);return C(i,t)};function L(e,t){for(var i=0;i\"'+I(e)+'\"'},maxItemText:function(e){return\"Only \"+e+\" values can be added\"},valueComparer:function(e,t){return e===t},fuseOptions:{includeScore:!0},callbackOnInit:null,callbackOnCreateTemplates:null,classNames:{containerOuter:\"choices\",containerInner:\"choices__inner\",input:\"choices__input\",inputCloned:\"choices__input--cloned\",list:\"choices__list\",listItems:\"choices__list--multiple\",listSingle:\"choices__list--single\",listDropdown:\"choices__list--dropdown\",item:\"choices__item\",itemSelectable:\"choices__item--selectable\",itemDisabled:\"choices__item--disabled\",itemChoice:\"choices__item--choice\",placeholder:\"choices__placeholder\",group:\"choices__group\",groupHeading:\"choices__heading\",button:\"choices__button\",activeState:\"is-active\",focusState:\"is-focused\",openState:\"is-open\",disabledState:\"is-disabled\",highlightedState:\"is-highlighted\",selectedState:\"is-selected\",flippedState:\"is-flipped\",loadingState:\"is-loading\",noResults:\"has-no-results\",noChoices:\"has-no-choices\"}},D=\"showDropdown\",M=\"hideDropdown\",N=\"change\",F=\"choice\",j=\"search\",K=\"addItem\",R=\"removeItem\",H=\"highlightItem\",B=\"highlightChoice\",V=\"ADD_CHOICE\",G=\"FILTER_CHOICES\",q=\"ACTIVATE_CHOICES\",U=\"CLEAR_CHOICES\",z=\"ADD_GROUP\",W=\"ADD_ITEM\",X=\"REMOVE_ITEM\",$=\"HIGHLIGHT_ITEM\",J=46,Y=8,Z=13,Q=65,ee=27,te=38,ie=40,ne=33,se=34,re=\"text\",oe=\"select-one\",ae=\"select-multiple\",ce=function(){function e(e){var t=e.element,i=e.type,n=e.classNames,s=e.position;this.element=t,this.classNames=n,this.type=i,this.position=s,this.isOpen=!1,this.isFlipped=!1,this.isFocussed=!1,this.isDisabled=!1,this.isLoading=!1,this._onFocus=this._onFocus.bind(this),this._onBlur=this._onBlur.bind(this)}var t=e.prototype;return t.addEventListeners=function(){this.element.addEventListener(\"focus\",this._onFocus),this.element.addEventListener(\"blur\",this._onBlur)},t.removeEventListeners=function(){this.element.removeEventListener(\"focus\",this._onFocus),this.element.removeEventListener(\"blur\",this._onBlur)},t.shouldFlip=function(e){if(\"number\"!=typeof e)return!1;var t=!1;return\"auto\"===this.position?t=!window.matchMedia(\"(min-height: \"+(e+1)+\"px)\").matches:\"top\"===this.position&&(t=!0),t},t.setActiveDescendant=function(e){this.element.setAttribute(\"aria-activedescendant\",e)},t.removeActiveDescendant=function(){this.element.removeAttribute(\"aria-activedescendant\")},t.open=function(e){this.element.classList.add(this.classNames.openState),this.element.setAttribute(\"aria-expanded\",\"true\"),this.isOpen=!0,this.shouldFlip(e)&&(this.element.classList.add(this.classNames.flippedState),this.isFlipped=!0)},t.close=function(){this.element.classList.remove(this.classNames.openState),this.element.setAttribute(\"aria-expanded\",\"false\"),this.removeActiveDescendant(),this.isOpen=!1,this.isFlipped&&(this.element.classList.remove(this.classNames.flippedState),this.isFlipped=!1)},t.focus=function(){this.isFocussed||this.element.focus()},t.addFocusState=function(){this.element.classList.add(this.classNames.focusState)},t.removeFocusState=function(){this.element.classList.remove(this.classNames.focusState)},t.enable=function(){this.element.classList.remove(this.classNames.disabledState),this.element.removeAttribute(\"aria-disabled\"),this.type===oe&&this.element.setAttribute(\"tabindex\",\"0\"),this.isDisabled=!1},t.disable=function(){this.element.classList.add(this.classNames.disabledState),this.element.setAttribute(\"aria-disabled\",\"true\"),this.type===oe&&this.element.setAttribute(\"tabindex\",\"-1\"),this.isDisabled=!0},t.wrap=function(e){!function(e,t){void 0===t&&(t=document.createElement(\"div\")),e.nextSibling?e.parentNode.insertBefore(t,e.nextSibling):e.parentNode.appendChild(t),t.appendChild(e)}(e,this.element)},t.unwrap=function(e){this.element.parentNode.insertBefore(e,this.element),this.element.parentNode.removeChild(this.element)},t.addLoadingState=function(){this.element.classList.add(this.classNames.loadingState),this.element.setAttribute(\"aria-busy\",\"true\"),this.isLoading=!0},t.removeLoadingState=function(){this.element.classList.remove(this.classNames.loadingState),this.element.removeAttribute(\"aria-busy\"),this.isLoading=!1},t._onFocus=function(){this.isFocussed=!0},t._onBlur=function(){this.isFocussed=!1},e}();function le(e,t){for(var i=0;i0?this.element.scrollTop+o-s:e.offsetTop;requestAnimationFrame((function(){i._animateScroll(a,t)}))}},t._scrollDown=function(e,t,i){var n=(i-e)/t,s=n>1?n:1;this.element.scrollTop=e+s},t._scrollUp=function(e,t,i){var n=(e-i)/t,s=n>1?n:1;this.element.scrollTop=e-s},t._animateScroll=function(e,t){var i=this,n=this.element.scrollTop,s=!1;t>0?(this._scrollDown(n,4,e),ne&&(s=!0)),s&&requestAnimationFrame((function(){i._animateScroll(e,t)}))},e}();function de(e,t){for(var i=0;i0?\"treeitem\":\"option\"),Object.assign(g.dataset,{choice:\"\",id:l,value:h,selectText:i}),m?(g.classList.add(a),g.dataset.choiceDisabled=\"\",g.setAttribute(\"aria-disabled\",\"true\")):(g.classList.add(r),g.dataset.choiceSelectable=\"\"),g},input:function(e,t){var i=e.input,n=e.inputCloned,s=Object.assign(document.createElement(\"input\"),{type:\"text\",className:i+\" \"+n,autocomplete:\"off\",autocapitalize:\"off\",spellcheck:!1});return s.setAttribute(\"role\",\"textbox\"),s.setAttribute(\"aria-autocomplete\",\"list\"),s.setAttribute(\"aria-label\",t),s},dropdown:function(e){var t=e.list,i=e.listDropdown,n=document.createElement(\"div\");return n.classList.add(t,i),n.setAttribute(\"aria-expanded\",\"false\"),n},notice:function(e,t,i){var n=e.item,s=e.itemChoice,r=e.noResults,o=e.noChoices;void 0===i&&(i=\"\");var a=[n,s];return\"no-choices\"===i?a.push(o):\"no-results\"===i&&a.push(r),Object.assign(document.createElement(\"div\"),{innerHTML:t,className:a.join(\" \")})},option:function(e){var t=e.label,i=e.value,n=e.customProperties,s=e.active,r=e.disabled,o=new Option(t,i,!1,s);return n&&(o.dataset.customProperties=n),o.disabled=r,o}},be=function(e){return void 0===e&&(e=!0),{type:q,active:e}},ye=function(e,t){return{type:$,id:e,highlighted:t}},Ee=function(e){var t=e.value,i=e.id,n=e.active,s=e.disabled;return{type:z,value:t,id:i,active:n,disabled:s}},Ie=function(e){return{type:\"SET_IS_LOADING\",isLoading:e}};function Se(e,t){for(var i=0;i=0?this._store.getGroupById(s):null;return this._store.dispatch(ye(i,!0)),t&&this.passedElement.triggerEvent(H,{id:i,value:o,label:c,groupValue:l&&l.value?l.value:null}),this},r.unhighlightItem=function(e){if(!e)return this;var t=e.id,i=e.groupId,n=void 0===i?-1:i,s=e.value,r=void 0===s?\"\":s,o=e.label,a=void 0===o?\"\":o,c=n>=0?this._store.getGroupById(n):null;return this._store.dispatch(ye(t,!1)),this.passedElement.triggerEvent(H,{id:t,value:r,label:a,groupValue:c&&c.value?c.value:null}),this},r.highlightAll=function(){var e=this;return this._store.items.forEach((function(t){return e.highlightItem(t)})),this},r.unhighlightAll=function(){var e=this;return this._store.items.forEach((function(t){return e.unhighlightItem(t)})),this},r.removeActiveItemsByValue=function(e){var t=this;return this._store.activeItems.filter((function(t){return t.value===e})).forEach((function(e){return t._removeItem(e)})),this},r.removeActiveItems=function(e){var t=this;return this._store.activeItems.filter((function(t){return t.id!==e})).forEach((function(e){return t._removeItem(e)})),this},r.removeHighlightedItems=function(e){var t=this;return void 0===e&&(e=!1),this._store.highlightedActiveItems.forEach((function(i){t._removeItem(i),e&&t._triggerChange(i.value)})),this},r.showDropdown=function(e){var t=this;return this.dropdown.isActive||requestAnimationFrame((function(){t.dropdown.show(),t.containerOuter.open(t.dropdown.distanceFromTopWindow),!e&&t._canSearch&&t.input.focus(),t.passedElement.triggerEvent(D,{})})),this},r.hideDropdown=function(e){var t=this;return this.dropdown.isActive?(requestAnimationFrame((function(){t.dropdown.hide(),t.containerOuter.close(),!e&&t._canSearch&&(t.input.removeActiveDescendant(),t.input.blur()),t.passedElement.triggerEvent(M,{})})),this):this},r.getValue=function(e){void 0===e&&(e=!1);var t=this._store.activeItems.reduce((function(t,i){var n=e?i.value:i;return t.push(n),t}),[]);return this._isSelectOneElement?t[0]:t},r.setValue=function(e){var t=this;return this.initialised?(e.forEach((function(e){return t._setChoiceOrItem(e)})),this):this},r.setChoiceByValue=function(e){var t=this;return!this.initialised||this._isTextElement||(Array.isArray(e)?e:[e]).forEach((function(e){return t._findAndSelectChoiceByValue(e)})),this},r.setChoices=function(e,t,i,n){var s=this;if(void 0===e&&(e=[]),void 0===t&&(t=\"value\"),void 0===i&&(i=\"label\"),void 0===n&&(n=!1),!this.initialised)throw new ReferenceError(\"setChoices was called on a non-initialized instance of Choices\");if(!this._isSelectElement)throw new TypeError(\"setChoices can't be used with INPUT based Choices\");if(\"string\"!=typeof t||!t)throw new TypeError(\"value parameter must be a name of 'value' field in passed objects\");if(n&&this.clearChoices(),\"function\"==typeof e){var r=e(this);if(\"function\"==typeof Promise&&r instanceof Promise)return new Promise((function(e){return requestAnimationFrame(e)})).then((function(){return s._handleLoadingState(!0)})).then((function(){return r})).then((function(e){return s.setChoices(e,t,i,n)})).catch((function(e){s.config.silent||console.error(e)})).then((function(){return s._handleLoadingState(!1)})).then((function(){return s}));if(!Array.isArray(r))throw new TypeError(\".setChoices first argument function must return either array of choices or Promise, got: \"+typeof r);return this.setChoices(r,t,i,!1)}if(!Array.isArray(e))throw new TypeError(\".setChoices must be called either with array of choices with a function resulting into Promise of array of choices\");return this.containerOuter.removeLoadingState(),this._startLoading(),e.forEach((function(e){e.choices?s._addGroup({id:parseInt(e.id,10)||null,group:e,valueKey:t,labelKey:i}):s._addChoice({value:e[t],label:e[i],isSelected:e.selected,isDisabled:e.disabled,customProperties:e.customProperties,placeholder:e.placeholder})})),this._stopLoading(),this},r.clearChoices=function(){return this._store.dispatch({type:U}),this},r.clearStore=function(){return this._store.dispatch({type:\"CLEAR_ALL\"}),this},r.clearInput=function(){var e=!this._isSelectOneElement;return this.input.clear(e),!this._isTextElement&&this._canSearch&&(this._isSearching=!1,this._store.dispatch(be(!0))),this},r._render=function(){if(!this._store.isLoading()){this._currentState=this._store.state;var e=this._currentState.choices!==this._prevState.choices||this._currentState.groups!==this._prevState.groups||this._currentState.items!==this._prevState.items,t=this._isSelectElement,i=this._currentState.items!==this._prevState.items;e&&(t&&this._renderChoices(),i&&this._renderItems(),this._prevState=this._currentState)}},r._renderChoices=function(){var e=this,t=this._store,i=t.activeGroups,n=t.activeChoices,s=document.createDocumentFragment();if(this.choiceList.clear(),this.config.resetScrollPosition&&requestAnimationFrame((function(){return e.choiceList.scrollToTop()})),i.length>=1&&!this._isSearching){var r=n.filter((function(e){return!0===e.placeholder&&-1===e.groupId}));r.length>=1&&(s=this._createChoicesFragment(r,s)),s=this._createGroupsFragment(i,n,s)}else n.length>=1&&(s=this._createChoicesFragment(n,s));if(s.childNodes&&s.childNodes.length>0){var o=this._store.activeItems,a=this._canAddItem(o,this.input.value);a.response?(this.choiceList.append(s),this._highlightChoice()):this.choiceList.append(this._getTemplate(\"notice\",a.notice))}else{var c,l;this._isSearching?(l=\"function\"==typeof this.config.noResultsText?this.config.noResultsText():this.config.noResultsText,c=this._getTemplate(\"notice\",l,\"no-results\")):(l=\"function\"==typeof this.config.noChoicesText?this.config.noChoicesText():this.config.noChoicesText,c=this._getTemplate(\"notice\",l,\"no-choices\")),this.choiceList.append(c)}},r._renderItems=function(){var e=this._store.activeItems||[];this.itemList.clear();var t=this._createItemsFragment(e);t.childNodes&&this.itemList.append(t)},r._createGroupsFragment=function(e,t,i){var n=this;return void 0===i&&(i=document.createDocumentFragment()),this.config.shouldSort&&e.sort(this.config.sorter),e.forEach((function(e){var s=function(e){return t.filter((function(t){return n._isSelectOneElement?t.groupId===e.id:t.groupId===e.id&&(\"always\"===n.config.renderSelectedChoices||!t.selected)}))}(e);if(s.length>=1){var r=n._getTemplate(\"choiceGroup\",e);i.appendChild(r),n._createChoicesFragment(s,i,!0)}})),i},r._createChoicesFragment=function(e,t,i){var n=this;void 0===t&&(t=document.createDocumentFragment()),void 0===i&&(i=!1);var s=this.config,r=s.renderSelectedChoices,o=s.searchResultLimit,a=s.renderChoiceLimit,c=this._isSearching?w:this.config.sorter,l=function(e){if(\"auto\"!==r||n._isSelectOneElement||!e.selected){var i=n._getTemplate(\"choice\",e,n.config.itemSelectText);t.appendChild(i)}},h=e;\"auto\"!==r||this._isSelectOneElement||(h=e.filter((function(e){return!e.selected})));var u=h.reduce((function(e,t){return t.placeholder?e.placeholderChoices.push(t):e.normalChoices.push(t),e}),{placeholderChoices:[],normalChoices:[]}),d=u.placeholderChoices,p=u.normalChoices;(this.config.shouldSort||this._isSearching)&&p.sort(c);var m=h.length,f=this._isSelectOneElement?[].concat(d,p):p;this._isSearching?m=o:a&&a>0&&!i&&(m=a);for(var v=0;v=n){var o=s?this._searchChoices(e):0;this.passedElement.triggerEvent(j,{value:e,resultCount:o})}else r&&(this._isSearching=!1,this._store.dispatch(be(!0)))}},r._canAddItem=function(e,t){var i=!0,n=\"function\"==typeof this.config.addItemText?this.config.addItemText(t):this.config.addItemText;if(!this._isSelectOneElement){var s=function(e,t,i){return void 0===i&&(i=\"value\"),e.some((function(e){return\"string\"==typeof t?e[i]===t.trim():e[i]===t}))}(e,t);this.config.maxItemCount>0&&this.config.maxItemCount<=e.length&&(i=!1,n=\"function\"==typeof this.config.maxItemText?this.config.maxItemText(this.config.maxItemCount):this.config.maxItemText),!this.config.duplicateItemsAllowed&&s&&i&&(i=!1,n=\"function\"==typeof this.config.uniqueItemText?this.config.uniqueItemText(t):this.config.uniqueItemText),this._isTextElement&&this.config.addItems&&i&&\"function\"==typeof this.config.addItemFilter&&!this.config.addItemFilter(t)&&(i=!1,n=\"function\"==typeof this.config.customAddItemText?this.config.customAddItemText(t):this.config.customAddItemText)}return{response:i,notice:n}},r._searchChoices=function(e){var t=\"string\"==typeof e?e.trim():e,i=\"string\"==typeof this._currentValue?this._currentValue.trim():this._currentValue;if(t.length<1&&t===i+\" \")return 0;var n=this._store.searchableChoices,r=t,o=[].concat(this.config.searchFields),a=Object.assign(this.config.fuseOptions,{keys:o}),c=new s.a(n,a).search(r);return this._currentValue=t,this._highlightPosition=0,this._isSearching=!0,this._store.dispatch(function(e){return{type:G,results:e}}(c)),c.length},r._addEventListeners=function(){var e=document.documentElement;e.addEventListener(\"touchend\",this._onTouchEnd,!0),this.containerOuter.element.addEventListener(\"keydown\",this._onKeyDown,!0),this.containerOuter.element.addEventListener(\"mousedown\",this._onMouseDown,!0),e.addEventListener(\"click\",this._onClick,{passive:!0}),e.addEventListener(\"touchmove\",this._onTouchMove,{passive:!0}),this.dropdown.element.addEventListener(\"mouseover\",this._onMouseOver,{passive:!0}),this._isSelectOneElement&&(this.containerOuter.element.addEventListener(\"focus\",this._onFocus,{passive:!0}),this.containerOuter.element.addEventListener(\"blur\",this._onBlur,{passive:!0})),this.input.element.addEventListener(\"keyup\",this._onKeyUp,{passive:!0}),this.input.element.addEventListener(\"focus\",this._onFocus,{passive:!0}),this.input.element.addEventListener(\"blur\",this._onBlur,{passive:!0}),this.input.element.form&&this.input.element.form.addEventListener(\"reset\",this._onFormReset,{passive:!0}),this.input.addEventListeners()},r._removeEventListeners=function(){var e=document.documentElement;e.removeEventListener(\"touchend\",this._onTouchEnd,!0),this.containerOuter.element.removeEventListener(\"keydown\",this._onKeyDown,!0),this.containerOuter.element.removeEventListener(\"mousedown\",this._onMouseDown,!0),e.removeEventListener(\"click\",this._onClick),e.removeEventListener(\"touchmove\",this._onTouchMove),this.dropdown.element.removeEventListener(\"mouseover\",this._onMouseOver),this._isSelectOneElement&&(this.containerOuter.element.removeEventListener(\"focus\",this._onFocus),this.containerOuter.element.removeEventListener(\"blur\",this._onBlur)),this.input.element.removeEventListener(\"keyup\",this._onKeyUp),this.input.element.removeEventListener(\"focus\",this._onFocus),this.input.element.removeEventListener(\"blur\",this._onBlur),this.input.element.form&&this.input.element.form.removeEventListener(\"reset\",this._onFormReset),this.input.removeEventListeners()},r._onKeyDown=function(e){var t,i=e.target,n=e.keyCode,s=e.ctrlKey,r=e.metaKey,o=this._store.activeItems,a=this.input.isFocussed,c=this.dropdown.isActive,l=this.itemList.hasChildren(),h=String.fromCharCode(n),u=J,d=Y,p=Z,m=Q,f=ee,v=te,g=ie,_=ne,b=se,y=s||r;!this._isTextElement&&/[a-zA-Z0-9-_ ]/.test(h)&&this.showDropdown();var E=((t={})[m]=this._onAKey,t[p]=this._onEnterKey,t[f]=this._onEscapeKey,t[v]=this._onDirectionKey,t[_]=this._onDirectionKey,t[g]=this._onDirectionKey,t[b]=this._onDirectionKey,t[d]=this._onDeleteKey,t[u]=this._onDeleteKey,t);E[n]&&E[n]({event:e,target:i,keyCode:n,metaKey:r,activeItems:o,hasFocusedInput:a,hasActiveDropdown:c,hasItems:l,hasCtrlDownKeyPressed:y})},r._onKeyUp=function(e){var t=e.target,i=e.keyCode,n=this.input.value,s=this._store.activeItems,r=this._canAddItem(s,n),o=J,a=Y;if(this._isTextElement)if(r.notice&&n){var c=this._getTemplate(\"notice\",r.notice);this.dropdown.element.innerHTML=c.outerHTML,this.showDropdown(!0)}else this.hideDropdown(!0);else{var l=(i===o||i===a)&&!t.value,h=!this._isTextElement&&this._isSearching,u=this._canSearch&&r.response;l&&h?(this._isSearching=!1,this._store.dispatch(be(!0))):u&&this._handleSearch(this.input.value)}this._canSearch=this.config.searchEnabled},r._onAKey=function(e){var t=e.hasItems;e.hasCtrlDownKeyPressed&&t&&(this._canSearch=!1,this.config.removeItems&&!this.input.value&&this.input.element===document.activeElement&&this.highlightAll())},r._onEnterKey=function(e){var t=e.event,i=e.target,n=e.activeItems,s=e.hasActiveDropdown,r=Z,o=i.hasAttribute(\"data-button\");if(this._isTextElement&&i.value){var a=this.input.value;this._canAddItem(n,a).response&&(this.hideDropdown(!0),this._addItem({value:a}),this._triggerChange(a),this.clearInput())}if(o&&(this._handleButtonAction(n,i),t.preventDefault()),s){var c=this.dropdown.getChild(\".\"+this.config.classNames.highlightedState);c&&(n[0]&&(n[0].keyCode=r),this._handleChoiceAction(n,c)),t.preventDefault()}else this._isSelectOneElement&&(this.showDropdown(),t.preventDefault())},r._onEscapeKey=function(e){e.hasActiveDropdown&&(this.hideDropdown(!0),this.containerOuter.focus())},r._onDirectionKey=function(e){var t,i,n,s=e.event,r=e.hasActiveDropdown,o=e.keyCode,a=e.metaKey,c=ie,l=ne,h=se;if(r||this._isSelectOneElement){this.showDropdown(),this._canSearch=!1;var u,d=o===c||o===h?1:-1,p=\"[data-choice-selectable]\";if(a||o===h||o===l)u=d>0?this.dropdown.element.querySelector(\"[data-choice-selectable]:last-of-type\"):this.dropdown.element.querySelector(p);else{var m=this.dropdown.element.querySelector(\".\"+this.config.classNames.highlightedState);u=m?function(e,t,i){if(void 0===i&&(i=1),e instanceof Element&&\"string\"==typeof t){for(var n=(i>0?\"next\":\"previous\")+\"ElementSibling\",s=e[n];s;){if(s.matches(t))return s;s=s[n]}return s}}(m,p,d):this.dropdown.element.querySelector(p)}u&&(t=u,i=this.choiceList.element,void 0===(n=d)&&(n=1),t&&(n>0?i.scrollTop+i.offsetHeight>=t.offsetTop+t.offsetHeight:t.offsetTop>=i.scrollTop)||this.choiceList.scrollToChildElement(u,d),this._highlightChoice(u)),s.preventDefault()}},r._onDeleteKey=function(e){var t=e.event,i=e.target,n=e.hasFocusedInput,s=e.activeItems;!n||i.value||this._isSelectOneElement||(this._handleBackspace(s),t.preventDefault())},r._onTouchMove=function(){this._wasTap&&(this._wasTap=!1)},r._onTouchEnd=function(e){var t=(e||e.touches[0]).target;this._wasTap&&this.containerOuter.element.contains(t)&&((t===this.containerOuter.element||t===this.containerInner.element)&&(this._isTextElement?this.input.focus():this._isSelectMultipleElement&&this.showDropdown()),e.stopPropagation()),this._wasTap=!0},r._onMouseDown=function(e){var t=e.target;if(t instanceof HTMLElement){if(we&&this.choiceList.element.contains(t)){var i=this.choiceList.element.firstElementChild,n=\"ltr\"===this._direction?e.offsetX>=i.offsetWidth:e.offsetX0&&this.unhighlightAll(),this.containerOuter.removeFocusState(),this.hideDropdown(!0))},r._onFocus=function(e){var t,i=this,n=e.target;this.containerOuter.element.contains(n)&&((t={}).text=function(){n===i.input.element&&i.containerOuter.addFocusState()},t[\"select-one\"]=function(){i.containerOuter.addFocusState(),n===i.input.element&&i.showDropdown(!0)},t[\"select-multiple\"]=function(){n===i.input.element&&(i.showDropdown(!0),i.containerOuter.addFocusState())},t)[this.passedElement.element.type]()},r._onBlur=function(e){var t=this,i=e.target;if(this.containerOuter.element.contains(i)&&!this._isScrollingOnIe){var n,s=this._store.activeItems.some((function(e){return e.highlighted}));((n={}).text=function(){i===t.input.element&&(t.containerOuter.removeFocusState(),s&&t.unhighlightAll(),t.hideDropdown(!0))},n[\"select-one\"]=function(){t.containerOuter.removeFocusState(),(i===t.input.element||i===t.containerOuter.element&&!t._canSearch)&&t.hideDropdown(!0)},n[\"select-multiple\"]=function(){i===t.input.element&&(t.containerOuter.removeFocusState(),t.hideDropdown(!0),s&&t.unhighlightAll())},n)[this.passedElement.element.type]()}else this._isScrollingOnIe=!1,this.input.element.focus()},r._onFormReset=function(){this._store.dispatch({type:\"RESET_TO\",state:this._initialState})},r._highlightChoice=function(e){var t=this;void 0===e&&(e=null);var i=Array.from(this.dropdown.element.querySelectorAll(\"[data-choice-selectable]\"));if(i.length){var n=e;Array.from(this.dropdown.element.querySelectorAll(\".\"+this.config.classNames.highlightedState)).forEach((function(e){e.classList.remove(t.config.classNames.highlightedState),e.setAttribute(\"aria-selected\",\"false\")})),n?this._highlightPosition=i.indexOf(n):(n=i.length>this._highlightPosition?i[this._highlightPosition]:i[i.length-1])||(n=i[0]),n.classList.add(this.config.classNames.highlightedState),n.setAttribute(\"aria-selected\",\"true\"),this.passedElement.triggerEvent(B,{el:n}),this.dropdown.isActive&&(this.input.setActiveDescendant(n.id),this.containerOuter.setActiveDescendant(n.id))}},r._addItem=function(e){var t=e.value,i=e.label,n=void 0===i?null:i,s=e.choiceId,r=void 0===s?-1:s,o=e.groupId,a=void 0===o?-1:o,c=e.customProperties,l=void 0===c?null:c,h=e.placeholder,u=void 0!==h&&h,d=e.keyCode,p=void 0===d?null:d,m=\"string\"==typeof t?t.trim():t,f=p,v=l,g=this._store.items,_=n||m,b=r||-1,y=a>=0?this._store.getGroupById(a):null,E=g?g.length+1:1;return this.config.prependValue&&(m=this.config.prependValue+m.toString()),this.config.appendValue&&(m+=this.config.appendValue.toString()),this._store.dispatch(function(e){var t=e.value,i=e.label,n=e.id,s=e.choiceId,r=e.groupId,o=e.customProperties,a=e.placeholder,c=e.keyCode;return{type:W,value:t,label:i,id:n,choiceId:s,groupId:r,customProperties:o,placeholder:a,keyCode:c}}({value:m,label:_,id:E,choiceId:b,groupId:a,customProperties:l,placeholder:u,keyCode:f})),this._isSelectOneElement&&this.removeActiveItems(E),this.passedElement.triggerEvent(K,{id:E,value:m,label:_,customProperties:v,groupValue:y&&y.value?y.value:void 0,keyCode:f}),this},r._removeItem=function(e){if(!e||!E(\"Object\",e))return this;var t=e.id,i=e.value,n=e.label,s=e.choiceId,r=e.groupId,o=r>=0?this._store.getGroupById(r):null;return this._store.dispatch(function(e,t){return{type:X,id:e,choiceId:t}}(t,s)),o&&o.value?this.passedElement.triggerEvent(R,{id:t,value:i,label:n,groupValue:o.value}):this.passedElement.triggerEvent(R,{id:t,value:i,label:n}),this},r._addChoice=function(e){var t=e.value,i=e.label,n=void 0===i?null:i,s=e.isSelected,r=void 0!==s&&s,o=e.isDisabled,a=void 0!==o&&o,c=e.groupId,l=void 0===c?-1:c,h=e.customProperties,u=void 0===h?null:h,d=e.placeholder,p=void 0!==d&&d,m=e.keyCode,f=void 0===m?null:m;if(null!=t){var v=this._store.choices,g=n||t,_=v?v.length+1:1,b=this._baseId+\"-\"+this._idNames.itemChoice+\"-\"+_;this._store.dispatch(function(e){var t=e.value,i=e.label,n=e.id,s=e.groupId,r=e.disabled,o=e.elementId,a=e.customProperties,c=e.placeholder,l=e.keyCode;return{type:V,value:t,label:i,id:n,groupId:s,disabled:r,elementId:o,customProperties:a,placeholder:c,keyCode:l}}({id:_,groupId:l,elementId:b,value:t,label:g,disabled:a,customProperties:u,placeholder:p,keyCode:f})),r&&this._addItem({value:t,label:g,choiceId:_,customProperties:u,placeholder:p,keyCode:f})}},r._addGroup=function(e){var t=this,i=e.group,n=e.id,s=e.valueKey,r=void 0===s?\"value\":s,o=e.labelKey,a=void 0===o?\"label\":o,c=E(\"Object\",i)?i.choices:Array.from(i.getElementsByTagName(\"OPTION\")),l=n||Math.floor((new Date).valueOf()*Math.random()),h=!!i.disabled&&i.disabled;c?(this._store.dispatch(Ee({value:i.label,id:l,active:!0,disabled:h})),c.forEach((function(e){var i=e.disabled||e.parentNode&&e.parentNode.disabled;t._addChoice({value:e[r],label:E(\"Object\",e)?e[a]:e.innerHTML,isSelected:e.selected,isDisabled:i,groupId:l,customProperties:e.customProperties,placeholder:e.placeholder})}))):this._store.dispatch(Ee({value:i.label,id:i.id,active:!1,disabled:i.disabled}))},r._getTemplate=function(e){var t;if(!e)return null;for(var i=this.config.classNames,n=arguments.length,s=new Array(n>1?n-1:0),r=1;r{var e;return this.input_el.name=null!==(e=this.model.name)&&void 0!==e?e:\"\"})),this.connect(this.model.properties.value.change,(()=>{this.input_el.value=this.format_value,this.old_value=this.input_el.value})),this.connect(this.model.properties.low.change,(()=>{const{value:e,low:t,high:l}=this.model;null!=t&&null!=l&&(0,p.assert)(t<=l,\"Invalid bounds, low must be inferior to high\"),null!=e&&null!=t&&e{const{value:e,low:t,high:l}=this.model;null!=t&&null!=l&&(0,p.assert)(l>=t,\"Invalid bounds, high must be superior to low\"),null!=e&&null!=l&&e>l&&(this.model.value=l)})),this.connect(this.model.properties.high.change,(()=>this.input_el.placeholder=this.model.placeholder)),this.connect(this.model.properties.disabled.change,(()=>this.input_el.disabled=this.model.disabled)),this.connect(this.model.properties.placeholder.change,(()=>this.input_el.placeholder=this.model.placeholder))}get format_value(){return null!=this.model.value?this.model.pretty(this.model.value):\"\"}_set_input_filter(e){this.input_el.addEventListener(\"input\",(()=>{const{selectionStart:t,selectionEnd:l}=this.input_el;if(e(this.input_el.value))this.old_value=this.input_el.value;else{const e=this.old_value.length-this.input_el.value.length;this.input_el.value=this.old_value,t&&l&&this.input_el.setSelectionRange(t-1,l+e)}}))}render(){super.render(),this.input_el=(0,r.input)({type:\"text\",class:_.input,name:this.model.name,value:this.format_value,disabled:this.model.disabled,placeholder:this.model.placeholder}),this.old_value=this.format_value,this.set_input_filter(),this.input_el.addEventListener(\"change\",(()=>this.change_input())),this.input_el.addEventListener(\"focusout\",(()=>this.input_el.value=this.format_value)),this.group_el.appendChild(this.input_el)}set_input_filter(){\"int\"==this.model.mode?this._set_input_filter((e=>m.test(e))):\"float\"==this.model.mode&&this._set_input_filter((e=>c.test(e)))}bound_value(e){let t=e;const{low:l,high:i}=this.model;return t=null!=l?Math.max(l,t):t,t=null!=i?Math.min(i,t):t,t}get value(){let e=\"\"!=this.input_el.value?Number(this.input_el.value):null;return null!=e&&(e=this.bound_value(e)),e}change_input(){null==this.value?this.model.value=null:Number.isNaN(this.value)||(this.model.value=this.value)}}l.NumericInputView=v,v.__name__=\"NumericInputView\";class g extends o.InputWidget{constructor(e){super(e)}_formatter(e,t){return(0,d.isString)(t)?h.format(e,t):t.doFormat([e],{loc:0})[0]}pretty(e){return null!=this.format?this._formatter(e,this.format):`${e}`}}l.NumericInput=g,u=g,g.__name__=\"NumericInput\",u.prototype.default_view=v,u.define((({Number:e,String:t,Enum:l,Ref:i,Or:n,Nullable:s})=>({value:[s(e),null],placeholder:[t,\"\"],mode:[l(\"int\",\"float\"),\"int\"],format:[s(n(t,i(a.TickFormatter))),null],low:[s(e),null],high:[s(e),null]})))},\n", + " 479: function _(e,t,r,s,n){var a;s();const o=e(468),_=e(43);class p extends o.MarkupView{render(){super.render();const e=(0,_.pre)({style:{overflow:\"auto\"}},this.model.text);this.markup_el.appendChild(e)}}r.PreTextView=p,p.__name__=\"PreTextView\";class u extends o.Markup{constructor(e){super(e)}}r.PreText=u,a=u,u.__name__=\"PreText\",a.prototype.default_view=p},\n", + " 480: function _(t,o,e,a,i){a();const n=t(1);var u;const s=t(452),c=t(43),_=(0,n.__importStar)(t(318));class r extends s.ButtonGroupView{change_active(t){this.model.active!==t&&(this.model.active=t)}_update_active(){const{active:t}=this.model;this._buttons.forEach(((o,e)=>{(0,c.classes)(o).toggle(_.active,t===e)}))}}e.RadioButtonGroupView=r,r.__name__=\"RadioButtonGroupView\";class l extends s.ButtonGroup{constructor(t){super(t)}}e.RadioButtonGroup=l,u=l,l.__name__=\"RadioButtonGroup\",u.prototype.default_view=r,u.define((({Int:t,Nullable:o})=>({active:[o(t),null]})))},\n", + " 481: function _(e,n,i,t,a){t();const s=e(1);var l;const o=e(43),d=e(34),p=e(455),r=(0,s.__importStar)(e(449));class u extends p.InputGroupView{render(){super.render();const e=(0,o.div)({class:[r.input_group,this.model.inline?r.inline:null]});this.el.appendChild(e);const n=(0,d.uniqueId)(),{active:i,labels:t}=this.model;this._inputs=[];for(let a=0;athis.change_active(a))),this._inputs.push(s),this.model.disabled&&(s.disabled=!0),a==i&&(s.checked=!0);const l=(0,o.label)(s,(0,o.span)(t[a]));e.appendChild(l)}}change_active(e){this.model.active=e}}i.RadioGroupView=u,u.__name__=\"RadioGroupView\";class c extends p.InputGroup{constructor(e){super(e)}}i.RadioGroup=c,l=c,c.__name__=\"RadioGroup\",l.prototype.default_view=u,l.define((({Boolean:e,Int:n,String:i,Array:t,Nullable:a})=>({active:[a(n),null],labels:[t(i),[]],inline:[e,!1]})))},\n", + " 482: function _(e,r,t,a,i){a();var n;const o=(0,e(1).__importStar)(e(153)),s=e(461),_=e(8);class d extends s.AbstractRangeSliderView{}t.RangeSliderView=d,d.__name__=\"RangeSliderView\";class c extends s.AbstractSlider{constructor(e){super(e),this.behaviour=\"drag\",this.connected=[!1,!0,!1]}_formatter(e,r){return(0,_.isString)(r)?o.format(e,r):r.compute(e)}}t.RangeSlider=c,n=c,c.__name__=\"RangeSlider\",n.prototype.default_view=d,n.override({format:\"0[.]00\"})},\n", + " 483: function _(e,t,n,s,i){s();const l=e(1);var u;const a=e(43),o=e(8),p=e(13),_=e(448),r=(0,l.__importStar)(e(449));class c extends _.InputWidgetView{constructor(){super(...arguments),this._known_values=new Set}connect_signals(){super.connect_signals();const{value:e,options:t}=this.model.properties;this.on_change(e,(()=>{this._update_value()})),this.on_change(t,(()=>{(0,a.empty)(this.input_el),(0,a.append)(this.input_el,...this.options_el()),this._update_value()}))}options_el(){const{_known_values:e}=this;function t(t){return t.map((t=>{let n,s;return(0,o.isString)(t)?n=s=t:[n,s]=t,e.add(n),(0,a.option)({value:n},s)}))}e.clear();const{options:n}=this.model;return(0,o.isArray)(n)?t(n):(0,p.entries)(n).map((([e,n])=>(0,a.optgroup)({label:e},t(n))))}render(){super.render(),this.input_el=(0,a.select)({class:r.input,name:this.model.name,disabled:this.model.disabled},this.options_el()),this._update_value(),this.input_el.addEventListener(\"change\",(()=>this.change_input())),this.group_el.appendChild(this.input_el)}change_input(){const e=this.input_el.value;this.model.value=e,super.change_input()}_update_value(){const{value:e}=this.model;this._known_values.has(e)?this.input_el.value=e:this.input_el.removeAttribute(\"value\")}}n.SelectView=c,c.__name__=\"SelectView\";class h extends _.InputWidget{constructor(e){super(e)}}n.Select=h,u=h,h.__name__=\"Select\",u.prototype.default_view=c,u.define((({String:e,Array:t,Tuple:n,Dict:s,Or:i})=>{const l=t(i(e,n(e,e)));return{value:[e,\"\"],options:[i(l,s(l)),[]]}}))},\n", + " 484: function _(e,t,r,i,a){i();var o;const s=(0,e(1).__importStar)(e(153)),_=e(461),n=e(8);class c extends _.AbstractSliderView{}r.SliderView=c,c.__name__=\"SliderView\";class d extends _.AbstractSlider{constructor(e){super(e),this.behaviour=\"tap\",this.connected=[!0,!1]}_formatter(e,t){return(0,n.isString)(t)?s.format(e,t):t.compute(e)}}r.Slider=d,o=d,d.__name__=\"Slider\",o.prototype.default_view=c,o.override({format:\"0[.]00\"})},\n", + " 485: function _(e,t,i,n,s){var l;n();const o=e(478),r=e(43),{min:a,max:h,floor:_,abs:u}=Math;function d(e){return _(e)!==e?e.toFixed(16).replace(/0+$/,\"\").split(\".\")[1].length:0}class p extends o.NumericInputView{*buttons(){yield this.btn_up_el,yield this.btn_down_el}initialize(){super.initialize(),this._handles={interval:void 0,timeout:void 0},this._interval=200}connect_signals(){super.connect_signals();const e=this.model.properties;this.on_change(e.disabled,(()=>{for(const e of this.buttons())(0,r.toggle_attribute)(e,\"disabled\",this.model.disabled)}))}render(){super.render(),this.wrapper_el=(0,r.div)({class:\"bk-spin-wrapper\"}),this.group_el.replaceChild(this.wrapper_el,this.input_el),this.btn_up_el=(0,r.button)({class:\"bk-spin-btn bk-spin-btn-up\"}),this.btn_down_el=(0,r.button)({class:\"bk-spin-btn bk-spin-btn-down\"}),this.wrapper_el.appendChild(this.input_el),this.wrapper_el.appendChild(this.btn_up_el),this.wrapper_el.appendChild(this.btn_down_el);for(const e of this.buttons())(0,r.toggle_attribute)(e,\"disabled\",this.model.disabled),e.addEventListener(\"mousedown\",(e=>this._btn_mouse_down(e))),e.addEventListener(\"mouseup\",(()=>this._btn_mouse_up())),e.addEventListener(\"mouseleave\",(()=>this._btn_mouse_leave()));this.input_el.addEventListener(\"keydown\",(e=>this._input_key_down(e))),this.input_el.addEventListener(\"keyup\",(()=>this.model.value_throttled=this.model.value)),this.input_el.addEventListener(\"wheel\",(e=>this._input_mouse_wheel(e))),this.input_el.addEventListener(\"wheel\",function(e,t,i=!1){let n;return function(...s){const l=this,o=i&&void 0===n;void 0!==n&&clearTimeout(n),n=setTimeout((function(){n=void 0,i||e.apply(l,s)}),t),o&&e.apply(l,s)}}((()=>{this.model.value_throttled=this.model.value}),this.model.wheel_wait,!1))}get precision(){const{low:e,high:t,step:i}=this.model,n=d;return h(n(u(null!=e?e:0)),n(u(null!=t?t:0)),n(u(i)))}remove(){this._stop_incrementation(),super.remove()}_start_incrementation(e){clearInterval(this._handles.interval),this._counter=0;const{step:t}=this.model,i=e=>{if(this._counter+=1,this._counter%5==0){const t=Math.floor(this._counter/5);t<10?(clearInterval(this._handles.interval),this._handles.interval=setInterval((()=>i(e)),this._interval/(t+1))):t>=10&&t<=13&&(clearInterval(this._handles.interval),this._handles.interval=setInterval((()=>i(2*e)),this._interval/10))}this.increment(e)};this._handles.interval=setInterval((()=>i(e*t)),this._interval)}_stop_incrementation(){clearTimeout(this._handles.timeout),this._handles.timeout=void 0,clearInterval(this._handles.interval),this._handles.interval=void 0,this.model.value_throttled=this.model.value}_btn_mouse_down(e){e.preventDefault();const t=e.currentTarget===this.btn_up_el?1:-1;this.increment(t*this.model.step),this.input_el.focus(),this._handles.timeout=setTimeout((()=>this._start_incrementation(t)),this._interval)}_btn_mouse_up(){this._stop_incrementation()}_btn_mouse_leave(){this._stop_incrementation()}_input_mouse_wheel(e){if(document.activeElement===this.input_el){e.preventDefault();const t=e.deltaY>0?-1:1;this.increment(t*this.model.step)}}_input_key_down(e){switch(e.keyCode){case r.Keys.Up:return e.preventDefault(),this.increment(this.model.step);case r.Keys.Down:return e.preventDefault(),this.increment(-this.model.step);case r.Keys.PageUp:return e.preventDefault(),this.increment(this.model.page_step_multiplier*this.model.step);case r.Keys.PageDown:return e.preventDefault(),this.increment(-this.model.page_step_multiplier*this.model.step)}}adjust_to_precision(e){return this.bound_value(Number(e.toFixed(this.precision)))}increment(e){const{low:t,high:i}=this.model;null==this.model.value?e>0?this.model.value=null!=t?t:null!=i?a(0,i):0:e<0&&(this.model.value=null!=i?i:null!=t?h(t,0):0):this.model.value=this.adjust_to_precision(this.model.value+e)}change_input(){super.change_input(),this.model.value_throttled=this.model.value}}i.SpinnerView=p,p.__name__=\"SpinnerView\";class m extends o.NumericInput{constructor(e){super(e)}}i.Spinner=m,l=m,m.__name__=\"Spinner\",l.prototype.default_view=p,l.define((({Number:e,Nullable:t})=>({value_throttled:[t(e),null],step:[e,1],page_step_multiplier:[e,10],wheel_wait:[e,100]}))),l.override({mode:\"float\"})},\n", + " 486: function _(e,t,s,n,i){n();const o=e(1);var r;const c=e(447),l=e(43),p=(0,o.__importStar)(e(449));class _ extends c.TextLikeInputView{connect_signals(){super.connect_signals(),this.connect(this.model.properties.rows.change,(()=>this.input_el.rows=this.model.rows)),this.connect(this.model.properties.cols.change,(()=>this.input_el.cols=this.model.cols))}_render_input(){this.input_el=(0,l.textarea)({class:p.input})}render(){super.render(),this.input_el.cols=this.model.cols,this.input_el.rows=this.model.rows}}s.TextAreaInputView=_,_.__name__=\"TextAreaInputView\";class a extends c.TextLikeInput{constructor(e){super(e)}}s.TextAreaInput=a,r=a,a.__name__=\"TextAreaInput\",r.prototype.default_view=_,r.define((({Int:e})=>({cols:[e,20],rows:[e,2]}))),r.override({max_length:500})},\n", + " 487: function _(e,t,s,c,i){c();const o=e(1);var a;const n=e(441),l=e(43),_=(0,o.__importStar)(e(318));class r extends n.AbstractButtonView{connect_signals(){super.connect_signals(),this.connect(this.model.properties.active.change,(()=>this._update_active()))}render(){super.render(),this._update_active()}click(){this.model.active=!this.model.active,super.click()}_update_active(){(0,l.classes)(this.button_el).toggle(_.active,this.model.active)}}s.ToggleView=r,r.__name__=\"ToggleView\";class g extends n.AbstractButton{constructor(e){super(e)}}s.Toggle=g,a=g,g.__name__=\"Toggle\",a.prototype.default_view=r,a.define((({Boolean:e})=>({active:[e,!1]}))),a.override({label:\"Toggle\"})},\n", + " }, 439, {\"models/widgets/main\":439,\"models/widgets/index\":440,\"models/widgets/abstract_button\":441,\"models/widgets/control\":442,\"models/widgets/widget\":512,\"models/widgets/abstract_icon\":444,\"models/widgets/autocomplete_input\":445,\"models/widgets/text_input\":446,\"models/widgets/text_like_input\":447,\"models/widgets/input_widget\":448,\"styles/widgets/inputs.css\":449,\"models/widgets/button\":450,\"models/widgets/checkbox_button_group\":451,\"models/widgets/button_group\":452,\"models/widgets/oriented_control\":453,\"models/widgets/checkbox_group\":454,\"models/widgets/input_group\":455,\"models/widgets/color_picker\":456,\"models/widgets/date_picker\":457,\"styles/widgets/flatpickr.css\":459,\"models/widgets/date_range_slider\":460,\"models/widgets/abstract_slider\":461,\"styles/widgets/sliders.css\":463,\"styles/widgets/nouislider.css\":464,\"models/widgets/date_slider\":465,\"models/widgets/datetime_range_slider\":466,\"models/widgets/div\":467,\"models/widgets/markup\":468,\"styles/clearfix.css\":469,\"models/widgets/dropdown\":470,\"models/widgets/file_input\":471,\"models/widgets/multiselect\":472,\"models/widgets/paragraph\":473,\"models/widgets/password_input\":474,\"models/widgets/multichoice\":475,\"styles/widgets/choices.css\":477,\"models/widgets/numeric_input\":478,\"models/widgets/pretext\":479,\"models/widgets/radio_button_group\":480,\"models/widgets/radio_group\":481,\"models/widgets/range_slider\":482,\"models/widgets/selectbox\":483,\"models/widgets/slider\":484,\"models/widgets/spinner\":485,\"models/widgets/textarea_input\":486,\"models/widgets/toggle\":487}, {});});\n", + "\n", + " /* END bokeh-widgets.min.js */\n", + " },\n", + " function(Bokeh) {\n", + " /* BEGIN bokeh-tables.min.js */\n", + " /*!\n", + " * Copyright (c) 2012 - 2022, Anaconda, Inc., and Bokeh Contributors\n", + " * All rights reserved.\n", + " * \n", + " * Redistribution and use in source and binary forms, with or without modification,\n", + " * are permitted provided that the following conditions are met:\n", + " * \n", + " * Redistributions of source code must retain the above copyright notice,\n", + " * this list of conditions and the following disclaimer.\n", + " * \n", + " * Redistributions in binary form must reproduce the above copyright notice,\n", + " * this list of conditions and the following disclaimer in the documentation\n", + " * and/or other materials provided with the distribution.\n", + " * \n", + " * Neither the name of Anaconda nor the names of any contributors\n", + " * may be used to endorse or promote products derived from this software\n", + " * without specific prior written permission.\n", + " * \n", + " * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\n", + " * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n", + " * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n", + " * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE\n", + " * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n", + " * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n", + " * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n", + " * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\n", + " * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n", + " * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF\n", + " * THE POSSIBILITY OF SUCH DAMAGE.\n", + " */\n", + " (function(root, factory) {\n", + " factory(root[\"Bokeh\"], \"2.4.3\");\n", + " })(this, function(Bokeh, version) {\n", + " let define;\n", + " return (function(modules, entry, aliases, externals) {\n", + " const bokeh = typeof Bokeh !== \"undefined\" && (version != null ? Bokeh[version] : Bokeh);\n", + " if (bokeh != null) {\n", + " return bokeh.register_plugin(modules, entry, aliases);\n", + " } else {\n", + " throw new Error(\"Cannot find Bokeh \" + version + \". You have to load it prior to loading plugins.\");\n", + " }\n", + " })\n", + " ({\n", + " 488: function _(t,e,o,r,s){r();const _=(0,t(1).__importStar)(t(489));o.Tables=_;(0,t(7).register_models)(_)},\n", + " 489: function _(g,a,r,e,t){e();const o=g(1);(0,o.__exportStar)(g(490),r),(0,o.__exportStar)(g(493),r),t(\"DataTable\",g(496).DataTable),t(\"TableColumn\",g(514).TableColumn),t(\"TableWidget\",g(513).TableWidget);var n=g(516);t(\"AvgAggregator\",n.AvgAggregator),t(\"MinAggregator\",n.MinAggregator),t(\"MaxAggregator\",n.MaxAggregator),t(\"SumAggregator\",n.SumAggregator);var A=g(517);t(\"GroupingInfo\",A.GroupingInfo),t(\"DataCube\",A.DataCube)},\n", + " 490: function _(e,t,i,s,a){s();const r=e(1);var l,n,u,d,o,p,_,c,h;const E=e(43),V=e(226),m=e(53),f=e(491),v=(0,r.__importStar)(e(492));class w extends V.DOMView{constructor(e){const{model:t,parent:i}=e.column;super(Object.assign({model:t,parent:i},e)),this.args=e,this.initialize(),this.render()}get emptyValue(){return null}initialize(){super.initialize(),this.inputEl=this._createInput(),this.defaultValue=null}async lazy_initialize(){throw new Error(\"unsupported\")}css_classes(){return super.css_classes().concat(v.cell_editor)}render(){super.render(),this.args.container.append(this.el),this.el.appendChild(this.inputEl),this.renderEditor(),this.disableNavigation()}renderEditor(){}disableNavigation(){this.inputEl.addEventListener(\"keydown\",(e=>{switch(e.keyCode){case E.Keys.Left:case E.Keys.Right:case E.Keys.Up:case E.Keys.Down:case E.Keys.PageUp:case E.Keys.PageDown:e.stopImmediatePropagation()}}))}destroy(){this.remove()}focus(){this.inputEl.focus()}show(){}hide(){}position(){}getValue(){return this.inputEl.value}setValue(e){this.inputEl.value=e}serializeValue(){return this.getValue()}isValueChanged(){return!(\"\"==this.getValue()&&null==this.defaultValue)&&this.getValue()!==this.defaultValue}applyValue(e,t){const i=this.args.grid.getData(),s=i.index.indexOf(e[f.DTINDEX_NAME]);i.setField(s,this.args.column.field,t)}loadValue(e){const t=e[this.args.column.field];this.defaultValue=null!=t?t:this.emptyValue,this.setValue(this.defaultValue)}validateValue(e){if(this.args.column.validator){const t=this.args.column.validator(e);if(!t.valid)return t}return{valid:!0,msg:null}}validate(){return this.validateValue(this.getValue())}}i.CellEditorView=w,w.__name__=\"CellEditorView\";class g extends m.Model{}i.CellEditor=g,g.__name__=\"CellEditor\";class x extends w{get emptyValue(){return\"\"}_createInput(){return(0,E.input)({type:\"text\"})}renderEditor(){this.inputEl.focus(),this.inputEl.select()}loadValue(e){super.loadValue(e),this.inputEl.defaultValue=this.defaultValue,this.inputEl.select()}}i.StringEditorView=x,x.__name__=\"StringEditorView\";class y extends g{}i.StringEditor=y,l=y,y.__name__=\"StringEditor\",l.prototype.default_view=x,l.define((({String:e,Array:t})=>({completions:[t(e),[]]})));class I extends w{_createInput(){return(0,E.textarea)()}renderEditor(){this.inputEl.focus(),this.inputEl.select()}}i.TextEditorView=I,I.__name__=\"TextEditorView\";class b extends g{}i.TextEditor=b,n=b,b.__name__=\"TextEditor\",n.prototype.default_view=I;class N extends w{_createInput(){return(0,E.select)()}renderEditor(){for(const e of this.model.options)this.inputEl.appendChild((0,E.option)({value:e},e));this.focus()}}i.SelectEditorView=N,N.__name__=\"SelectEditorView\";class C extends g{}i.SelectEditor=C,u=C,C.__name__=\"SelectEditor\",u.prototype.default_view=N,u.define((({String:e,Array:t})=>({options:[t(e),[]]})));class D extends w{_createInput(){return(0,E.input)({type:\"text\"})}}i.PercentEditorView=D,D.__name__=\"PercentEditorView\";class S extends g{}i.PercentEditor=S,d=S,S.__name__=\"PercentEditor\",d.prototype.default_view=D;class k extends w{_createInput(){return(0,E.input)({type:\"checkbox\"})}renderEditor(){this.focus()}loadValue(e){this.defaultValue=!!e[this.args.column.field],this.inputEl.checked=this.defaultValue}serializeValue(){return this.inputEl.checked}}i.CheckboxEditorView=k,k.__name__=\"CheckboxEditorView\";class z extends g{}i.CheckboxEditor=z,o=z,z.__name__=\"CheckboxEditor\",o.prototype.default_view=k;class P extends w{_createInput(){return(0,E.input)({type:\"text\"})}renderEditor(){this.inputEl.focus(),this.inputEl.select()}remove(){super.remove()}serializeValue(){var e;return null!==(e=parseInt(this.getValue(),10))&&void 0!==e?e:0}loadValue(e){super.loadValue(e),this.inputEl.defaultValue=this.defaultValue,this.inputEl.select()}validateValue(e){return isNaN(e)?{valid:!1,msg:\"Please enter a valid integer\"}:super.validateValue(e)}}i.IntEditorView=P,P.__name__=\"IntEditorView\";class T extends g{}i.IntEditor=T,p=T,T.__name__=\"IntEditor\",p.prototype.default_view=P,p.define((({Int:e})=>({step:[e,1]})));class K extends w{_createInput(){return(0,E.input)({type:\"text\"})}renderEditor(){this.inputEl.focus(),this.inputEl.select()}remove(){super.remove()}serializeValue(){var e;return null!==(e=parseFloat(this.getValue()))&&void 0!==e?e:0}loadValue(e){super.loadValue(e),this.inputEl.defaultValue=this.defaultValue,this.inputEl.select()}validateValue(e){return isNaN(e)?{valid:!1,msg:\"Please enter a valid number\"}:super.validateValue(e)}}i.NumberEditorView=K,K.__name__=\"NumberEditorView\";class A extends g{}i.NumberEditor=A,_=A,A.__name__=\"NumberEditor\",_.prototype.default_view=K,_.define((({Number:e})=>({step:[e,.01]})));class M extends w{_createInput(){return(0,E.input)({type:\"text\"})}}i.TimeEditorView=M,M.__name__=\"TimeEditorView\";class O extends g{}i.TimeEditor=O,c=O,O.__name__=\"TimeEditor\",c.prototype.default_view=M;class F extends w{_createInput(){return(0,E.input)({type:\"text\"})}get emptyValue(){return new Date}renderEditor(){this.inputEl.focus(),this.inputEl.select()}destroy(){super.destroy()}show(){super.show()}hide(){super.hide()}position(){return super.position()}getValue(){}setValue(e){}}i.DateEditorView=F,F.__name__=\"DateEditorView\";class L extends g{}i.DateEditor=L,h=L,L.__name__=\"DateEditor\",h.prototype.default_view=F},\n", + " 491: function _(_,n,i,t,d){t(),i.DTINDEX_NAME=\"__bkdt_internal_index__\"},\n", + " 492: function _(e,l,o,t,r){t(),o.root=\"bk-root\",o.data_table=\"bk-data-table\",o.cell_special_defaults=\"bk-cell-special-defaults\",o.cell_select=\"bk-cell-select\",o.cell_index=\"bk-cell-index\",o.header_index=\"bk-header-index\",o.cell_editor=\"bk-cell-editor\",o.cell_editor_completion=\"bk-cell-editor-completion\",o.default='.bk-root .bk-data-table{box-sizing:content-box;font-size:11px;}.bk-root .bk-data-table input[type=\"checkbox\"]{margin-left:4px;margin-right:4px;}.bk-root .bk-cell-special-defaults{border-right-color:silver;border-right-style:solid;background:#f5f5f5;}.bk-root .bk-cell-select{border-right-color:silver;border-right-style:solid;background:#f5f5f5;}.bk-root .slick-cell.bk-cell-index{border-right-color:silver;border-right-style:solid;background:#f5f5f5;text-align:right;background:#f0f0f0;color:#909090;}.bk-root .bk-header-index .slick-column-name{float:right;}.bk-root .slick-row.selected .bk-cell-index{background-color:transparent;}.bk-root .slick-row.odd{background:#f0f0f0;}.bk-root .slick-cell{padding-left:4px;padding-right:4px;border-right-color:transparent;border:0.25px solid transparent;}.bk-root .slick-cell .bk{line-height:inherit;}.bk-root .slick-cell.active{border-style:dashed;}.bk-root .slick-cell.selected{background-color:#F0F8FF;}.bk-root .slick-cell.editable{padding-left:0;padding-right:0;}.bk-root .bk-cell-editor{display:contents;}.bk-root .bk-cell-editor input,.bk-root .bk-cell-editor select{width:100%;height:100%;border:0;margin:0;padding:0;outline:0;background:transparent;vertical-align:baseline;}.bk-root .bk-cell-editor input{padding-left:4px;padding-right:4px;}.bk-root .bk-cell-editor-completion{font-size:11px;}'},\n", + " 493: function _(t,e,r,n,o){n();const a=t(1);var s,i,l,c,u,m;const _=(0,a.__importDefault)(t(151)),d=(0,a.__importStar)(t(153)),f=t(494),g=t(43),F=t(20),h=t(8),p=t(34),S=t(22),x=t(53);class b extends x.Model{constructor(t){super(t)}doFormat(t,e,r,n,o){return null==r?\"\":`${r}`.replace(/&/g,\"&\").replace(//g,\">\")}}r.CellFormatter=b,b.__name__=\"CellFormatter\";class M extends b{constructor(t){super(t)}doFormat(t,e,r,n,o){const{font_style:a,text_align:s,text_color:i}=this,l=(0,g.div)(null==r?\"\":`${r}`);switch(a){case\"bold\":l.style.fontWeight=\"bold\";break;case\"italic\":l.style.fontStyle=\"italic\"}return null!=s&&(l.style.textAlign=s),null!=i&&(l.style.color=(0,S.color2css)(i)),l.outerHTML}}r.StringFormatter=M,s=M,M.__name__=\"StringFormatter\",s.define((({Color:t,Nullable:e,String:r})=>({font_style:[F.FontStyle,\"normal\"],text_align:[F.TextAlign,\"left\"],text_color:[e(t),null],nan_format:[r,\"-\"]})));class w extends M{constructor(t){super(t)}get scientific_limit_low(){return 10**this.power_limit_low}get scientific_limit_high(){return 10**this.power_limit_high}doFormat(t,e,r,n,o){const a=Math.abs(r)<=this.scientific_limit_low||Math.abs(r)>=this.scientific_limit_high;let s=this.precision;return s<1&&(s=1),r=null==r||isNaN(r)?this.nan_format:0==r?(0,p.to_fixed)(r,1):a?r.toExponential(s):(0,p.to_fixed)(r,s),super.doFormat(t,e,r,n,o)}}r.ScientificFormatter=w,i=w,w.__name__=\"ScientificFormatter\",i.define((({Number:t})=>({precision:[t,10],power_limit_high:[t,5],power_limit_low:[t,-3]})));class C extends M{constructor(t){super(t)}doFormat(t,e,r,n,o){const{format:a,language:s,nan_format:i}=this,l=(()=>{switch(this.rounding){case\"round\":case\"nearest\":return Math.round;case\"floor\":case\"rounddown\":return Math.floor;case\"ceil\":case\"roundup\":return Math.ceil}})();return r=null==r||isNaN(r)?i:d.format(r,a,s,l),super.doFormat(t,e,r,n,o)}}r.NumberFormatter=C,l=C,C.__name__=\"NumberFormatter\",l.define((({String:t})=>({format:[t,\"0,0\"],language:[t,\"en\"],rounding:[F.RoundingFunction,\"round\"]})));class y extends b{constructor(t){super(t)}doFormat(t,e,r,n,o){return r?(0,g.i)({class:this.icon}).outerHTML:\"\"}}r.BooleanFormatter=y,c=y,y.__name__=\"BooleanFormatter\",c.define((({String:t})=>({icon:[t,\"check\"]})));class N extends M{constructor(t){super(t)}getFormat(){switch(this.format){case\"ATOM\":case\"W3C\":case\"RFC-3339\":case\"ISO-8601\":return\"%Y-%m-%d\";case\"COOKIE\":return\"%a, %d %b %Y\";case\"RFC-850\":return\"%A, %d-%b-%y\";case\"RFC-1123\":case\"RFC-2822\":return\"%a, %e %b %Y\";case\"RSS\":case\"RFC-822\":case\"RFC-1036\":return\"%a, %e %b %y\";case\"TIMESTAMP\":return;default:return this.format}}doFormat(t,e,r,n,o){const{nan_format:a}=this;let s;return s=null==(r=(0,h.isString)(r)?parseInt(r,10):r)||isNaN(r)||-9223372036854776===r?a:(0,_.default)(r,this.getFormat()),super.doFormat(t,e,s,n,o)}}r.DateFormatter=N,u=N,N.__name__=\"DateFormatter\",u.define((({String:t})=>({format:[t,\"ISO-8601\"]})));class T extends b{constructor(t){super(t)}doFormat(t,e,r,n,o){const{template:a}=this;if(null==r)return\"\";return f._.template(a)(Object.assign(Object.assign({},o),{value:r}))}}r.HTMLTemplateFormatter=T,m=T,T.__name__=\"HTMLTemplateFormatter\",m.define((({String:t})=>({template:[t,\"<%= value %>\"]})))},\n", + " 494: function _(e,n,t,f,i){var o=e(495),d=o.template;function r(e,n,t){return d(e,n,t)}r._=o,n.exports=r,\"function\"==typeof define&&define.amd?define((function(){return r})):\"undefined\"==typeof window&&\"undefined\"==typeof navigator||(window.UnderscoreTemplate=r)},\n", + " 495: function _(r,e,n,t,a){\n", + " // (c) 2009-2013 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors\n", + " // Underscore may be freely distributed under the MIT license.\n", + " var u={},c=Array.prototype,o=Object.prototype,l=c.slice,i=o.toString,f=o.hasOwnProperty,s=c.forEach,p=Object.keys,_=Array.isArray,h=function(){},v=h.each=h.forEach=function(r,e,n){if(null!=r)if(s&&r.forEach===s)r.forEach(e,n);else if(r.length===+r.length){for(var t=0,a=r.length;t\":\">\",'\"':\""\",\"'\":\"'\"}},y={escape:new RegExp(\"[\"+h.keys(g.escape).join(\"\")+\"]\",\"g\")};h.each([\"escape\"],(function(r){h[r]=function(e){return null==e?\"\":(\"\"+e).replace(y[r],(function(e){return g[r][e]}))}})),h.templateSettings={evaluate:/<%([\\s\\S]+?)%>/g,interpolate:/<%=([\\s\\S]+?)%>/g,escape:/<%-([\\s\\S]+?)%>/g};var j=/(.)^/,b={\"'\":\"'\",\"\\\\\":\"\\\\\",\"\\r\":\"r\",\"\\n\":\"n\",\"\\t\":\"t\",\"\\u2028\":\"u2028\",\"\\u2029\":\"u2029\"},w=/\\\\|'|\\r|\\n|\\t|\\u2028|\\u2029/g;h.template=function(r,e,n){var t;n=h.defaults({},n,h.templateSettings);var a=new RegExp([(n.escape||j).source,(n.interpolate||j).source,(n.evaluate||j).source].join(\"|\")+\"|$\",\"g\"),u=0,c=\"__p+='\";r.replace(a,(function(e,n,t,a,o){return c+=r.slice(u,o).replace(w,(function(r){return\"\\\\\"+b[r]})),n&&(c+=\"'+\\n((__t=(\"+n+\"))==null?'':_.escape(__t))+\\n'\"),t&&(c+=\"'+\\n((__t=(\"+t+\"))==null?'':__t)+\\n'\"),a&&(c+=\"';\\n\"+a+\"\\n__p+='\"),u=o+e.length,e})),c+=\"';\\n\",n.variable||(c=\"with(obj||{}){\\n\"+c+\"}\\n\"),c=\"var __t,__p='',__j=Array.prototype.join,print=function(){__p+=__j.call(arguments,'');};\\n\"+c+\"return __p;\\n\";try{t=new Function(n.variable||\"obj\",\"_\",c)}catch(r){throw r.source=c,r}if(e)return t(e,h);var o=function(r){return t.call(this,r,h)};return o.source=\"function(\"+(n.variable||\"obj\")+\"){\\n\"+c+\"}\",o},e.exports=h},\n", + " 496: function _(e,t,i,s,o){s();const n=e(1);var l;const r=e(497),d=e(501),a=e(502),h=e(503),u=e(34),c=e(8),_=e(9),m=e(13),g=e(19),p=e(512),f=e(491),b=e(513),w=e(514),x=(0,n.__importStar)(e(492)),C=x,v=(0,n.__importDefault)(e(515));i.AutosizeModes={fit_columns:\"FCV\",fit_viewport:\"FVC\",force_fit:\"LFF\",none:\"NOA\"};let z=!1;class A{constructor(e,t){this.init(e,t)}init(e,t){if(f.DTINDEX_NAME in e.data)throw new Error(`special name ${f.DTINDEX_NAME} cannot be used as a data table column`);this.source=e,this.view=t,this.index=[...this.view.indices]}getLength(){return this.index.length}getItem(e){const t={};for(const i of(0,m.keys)(this.source.data))t[i]=this.source.data[i][this.index[e]];return t[f.DTINDEX_NAME]=this.index[e],t}getField(e,t){return t==f.DTINDEX_NAME?this.index[e]:this.source.data[t][this.index[e]]}setField(e,t,i){const s=this.index[e];this.source.patch({[t]:[[s,i]]})}getRecords(){return(0,_.range)(0,this.getLength()).map((e=>this.getItem(e)))}getItems(){return this.getRecords()}slice(e,t,i){return e=null!=e?e:0,t=null!=t?t:this.getLength(),i=null!=i?i:1,(0,_.range)(e,t,i).map((e=>this.getItem(e)))}sort(e){let t=e.map((e=>[e.sortCol.field,e.sortAsc?1:-1]));0==t.length&&(t=[[f.DTINDEX_NAME,1]]);const i=this.getRecords(),s=this.index.slice();this.index.sort(((e,o)=>{for(const[n,l]of t){const t=i[s.indexOf(e)][n],r=i[s.indexOf(o)][n];if(t!==r)return(0,c.isNumber)(t)&&(0,c.isNumber)(r)?l*(t-r||+isNaN(t)-+isNaN(r)):`${t}`>`${r}`?l:-l}return 0}))}}i.TableDataProvider=A,A.__name__=\"TableDataProvider\";class M extends p.WidgetView{constructor(){super(...arguments),this._in_selection_update=!1,this._width=null}connect_signals(){super.connect_signals(),this.connect(this.model.change,(()=>this.render())),this.connect(this.model.source.streaming,(()=>this.updateGrid())),this.connect(this.model.source.patching,(()=>this.updateGrid())),this.connect(this.model.source.change,(()=>this.updateGrid())),this.connect(this.model.source.properties.data.change,(()=>this.updateGrid())),this.connect(this.model.source.selected.change,(()=>this.updateSelection())),this.connect(this.model.source.selected.properties.indices.change,(()=>this.updateSelection()));for(const e of this.model.columns)this.connect(e.change,(()=>{this.invalidate_layout(),this.render()}))}remove(){var e;null===(e=this.grid)||void 0===e||e.destroy(),super.remove()}styles(){return[...super.styles(),v.default,x.default]}update_position(){super.update_position(),this.grid.resizeCanvas()}after_layout(){super.after_layout(),this.updateLayout(!0,!1)}box_sizing(){const e=super.box_sizing();return\"fit_viewport\"===this.model.autosize_mode&&null!=this._width&&(e.width=this._width),e}updateLayout(e,t){const s=this.autosize;s===i.AutosizeModes.fit_columns||s===i.AutosizeModes.force_fit?(e||this.grid.resizeCanvas(),this.grid.autosizeColumns()):e&&t&&s===i.AutosizeModes.fit_viewport&&this.invalidate_layout()}updateGrid(){if(this.model.view.compute_indices(),this.data.init(this.model.source,this.model.view),this.model.sortable){const e=this.grid.getColumns(),t=this.grid.getSortColumns().map((t=>({sortCol:{field:e[this.grid.getColumnIndex(t.columnId)].field},sortAsc:t.sortAsc})));this.data.sort(t)}this.grid.invalidate(),this.updateLayout(!0,!0)}updateSelection(){if(this._in_selection_update)return;const{selected:e}=this.model.source,t=e.indices.map((e=>this.data.index.indexOf(e))).sort();this._in_selection_update=!0,this.grid.setSelectedRows(t),this._in_selection_update=!1;const i=this.grid.getViewport(),s=this.model.get_scroll_index(i,t);null!=s&&this.grid.scrollRowToTop(s)}newIndexColumn(){return{id:(0,u.uniqueId)(),name:this.model.index_header,field:f.DTINDEX_NAME,width:this.model.index_width,behavior:\"select\",cannotTriggerInsert:!0,resizable:!1,selectable:!1,sortable:!0,cssClass:C.cell_index,headerCssClass:C.header_index}}css_classes(){return super.css_classes().concat(C.data_table)}get autosize(){let e;return e=!0===this.model.fit_columns?i.AutosizeModes.force_fit:!1===this.model.fit_columns?i.AutosizeModes.none:i.AutosizeModes[this.model.autosize_mode],e}render(){var e;const t=this.model.columns.filter((e=>e.visible)).map((e=>Object.assign(Object.assign({},e.toColumn()),{parent:this})));let s=null;if(\"checkbox\"==this.model.selectable&&(s=new d.CheckboxSelectColumn({cssClass:C.cell_select}),t.unshift(s.getColumnDefinition())),null!=this.model.index_position){const e=this.model.index_position,i=this.newIndexColumn();-1==e?t.push(i):e<-1?t.splice(e+1,0,i):t.splice(e,0,i)}let{reorderable:o}=this.model;!o||\"undefined\"!=typeof $&&null!=$.fn&&null!=$.fn.sortable||(z||(g.logger.warn(\"jquery-ui is required to enable DataTable.reorderable\"),z=!0),o=!1);let n=-1,l=!1;const{frozen_rows:u,frozen_columns:_}=this.model,m=null==_?-1:_-1;null!=u&&(l=u<0,n=Math.abs(u));const p={enableCellNavigation:!1!==this.model.selectable,enableColumnReorder:o,autosizeColsMode:this.autosize,multiColumnSort:this.model.sortable,editable:this.model.editable,autoEdit:this.model.auto_edit,autoHeight:!1,rowHeight:this.model.row_height,frozenColumn:m,frozenRow:n,frozenBottom:l},f=null!=this.grid;if(this.data=new A(this.model.source,this.model.view),this.grid=new h.Grid(this.el,this.data,t,p),this.autosize==i.AutosizeModes.fit_viewport){this.grid.autosizeColumns();let i=0;for(const s of t)i+=null!==(e=s.width)&&void 0!==e?e:0;this._width=Math.ceil(i)}if(this.grid.onSort.subscribe(((e,t)=>{if(!this.model.sortable)return;const i=t.sortCols;null!=i&&(this.data.sort(i),this.grid.invalidate(),this.updateSelection(),this.grid.render(),this.model.header_row||this._hide_header(),this.model.update_sort_columns(i))})),!1!==this.model.selectable){this.grid.setSelectionModel(new r.RowSelectionModel({selectActiveRow:null==s})),null!=s&&this.grid.registerPlugin(s);const e={dataItemColumnValueExtractor(e,t){let i=e[t.field];return(0,c.isString)(i)&&(i=i.replace(/\\n/g,\"\\\\n\")),i},includeHeaderWhenCopying:!1};this.grid.registerPlugin(new a.CellExternalCopyManager(e)),this.grid.onSelectedRowsChanged.subscribe(((e,t)=>{this._in_selection_update||(this.model.source.selected.indices=t.rows.map((e=>this.data.index[e])))})),this.updateSelection(),this.model.header_row||this._hide_header()}f&&this.updateLayout(f,!1)}_hide_header(){for(const e of this.el.querySelectorAll(\".slick-header-columns\"))e.style.height=\"0px\";this.grid.resizeCanvas()}}i.DataTableView=M,M.__name__=\"DataTableView\";class D extends b.TableWidget{constructor(e){super(e),this._sort_columns=[]}get sort_columns(){return this._sort_columns}update_sort_columns(e){this._sort_columns=e.map((({sortCol:e,sortAsc:t})=>({field:e.field,sortAsc:t})))}get_scroll_index(e,t){return this.scroll_to_selection&&0!=t.length?(0,_.some)(t,(t=>e.top<=t&&t<=e.bottom))?null:Math.max(0,Math.min(...t)-1):null}}i.DataTable=D,l=D,D.__name__=\"DataTable\",l.prototype.default_view=M,l.define((({Array:e,Boolean:t,Int:i,Ref:s,String:o,Enum:n,Or:l,Nullable:r})=>({autosize_mode:[n(\"fit_columns\",\"fit_viewport\",\"none\",\"force_fit\"),\"force_fit\"],auto_edit:[t,!1],columns:[e(s(w.TableColumn)),[]],fit_columns:[r(t),null],frozen_columns:[r(i),null],frozen_rows:[r(i),null],sortable:[t,!0],reorderable:[t,!0],editable:[t,!1],selectable:[l(t,n(\"checkbox\")),!0],index_position:[r(i),0],index_header:[o,\"#\"],index_width:[i,40],scroll_to_selection:[t,!0],header_row:[t,!0],row_height:[i,25]}))),l.override({width:600,height:400})},\n", + " 497: function _(e,t,n,o,r){var l=e(498),i=e(500);t.exports={RowSelectionModel:function(e){var t,n,o,r=[],c=this,u=new i.EventHandler,s={selectActiveRow:!0};function a(e){return function(){n||(n=!0,e.apply(this,arguments),n=!1)}}function f(e){for(var t=[],n=0;n=0&&r0&&t-1 in e)}w.fn=w.prototype={jquery:b,constructor:w,length:0,toArray:function(){return i.call(this)},get:function(e){return null==e?i.call(this):e<0?this[e+this.length]:this[e]},pushStack:function(e){var t=w.merge(this.constructor(),e);return t.prevObject=this,t},each:function(e){return w.each(this,e)},map:function(e){return this.pushStack(w.map(this,(function(t,n){return e.call(t,n,t)})))},slice:function(){return this.pushStack(i.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},even:function(){return this.pushStack(w.grep(this,(function(e,t){return(t+1)%2})))},odd:function(){return this.pushStack(w.grep(this,(function(e,t){return t%2})))},eq:function(e){var t=this.length,n=+e+(e<0?t:0);return this.pushStack(n>=0&&n+~]|[\\\\x20\\\\t\\\\r\\\\n\\\\f])[\\\\x20\\\\t\\\\r\\\\n\\\\f]*\"),U=new RegExp(M+\"|>\"),X=new RegExp(F),V=new RegExp(\"^\"+I+\"$\"),G={ID:new RegExp(\"^#(\"+I+\")\"),CLASS:new RegExp(\"^\\\\.(\"+I+\")\"),TAG:new RegExp(\"^(\"+I+\"|[*])\"),ATTR:new RegExp(\"^\"+W),PSEUDO:new RegExp(\"^\"+F),CHILD:new RegExp(\"^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\\\([\\\\x20\\\\t\\\\r\\\\n\\\\f]*(even|odd|(([+-]|)(\\\\d*)n|)[\\\\x20\\\\t\\\\r\\\\n\\\\f]*(?:([+-]|)[\\\\x20\\\\t\\\\r\\\\n\\\\f]*(\\\\d+)|))[\\\\x20\\\\t\\\\r\\\\n\\\\f]*\\\\)|)\",\"i\"),bool:new RegExp(\"^(?:\"+R+\")$\",\"i\"),needsContext:new RegExp(\"^[\\\\x20\\\\t\\\\r\\\\n\\\\f]*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\\\([\\\\x20\\\\t\\\\r\\\\n\\\\f]*((?:-\\\\d)?\\\\d*)[\\\\x20\\\\t\\\\r\\\\n\\\\f]*\\\\)|)(?=[^-]|$)\",\"i\")},Y=/HTML$/i,Q=/^(?:input|select|textarea|button)$/i,J=/^h\\d$/i,K=/^[^{]+\\{\\s*\\[native \\w/,Z=/^(?:#([\\w-]+)|(\\w+)|\\.([\\w-]+))$/,ee=/[+~]/,te=new RegExp(\"\\\\\\\\[\\\\da-fA-F]{1,6}[\\\\x20\\\\t\\\\r\\\\n\\\\f]?|\\\\\\\\([^\\\\r\\\\n\\\\f])\",\"g\"),ne=function(e,t){var n=\"0x\"+e.slice(1)-65536;return t||(n<0?String.fromCharCode(n+65536):String.fromCharCode(n>>10|55296,1023&n|56320))},re=/([\\0-\\x1f\\x7f]|^-?\\d)|^-$|[^\\0-\\x1f\\x7f-\\uFFFF\\w-]/g,ie=function(e,t){return t?\"\\0\"===e?\"\\ufffd\":e.slice(0,-1)+\"\\\\\"+e.charCodeAt(e.length-1).toString(16)+\" \":\"\\\\\"+e},oe=function(){p()},ae=be((function(e){return!0===e.disabled&&\"fieldset\"===e.nodeName.toLowerCase()}),{dir:\"parentNode\",next:\"legend\"});try{H.apply(D=O.call(w.childNodes),w.childNodes),D[w.childNodes.length].nodeType}catch(e){H={apply:D.length?function(e,t){L.apply(e,O.call(t))}:function(e,t){for(var n=e.length,r=0;e[n++]=t[r++];);e.length=n-1}}}function se(e,t,r,i){var o,s,l,c,f,h,y,m=t&&t.ownerDocument,w=t?t.nodeType:9;if(r=r||[],\"string\"!=typeof e||!e||1!==w&&9!==w&&11!==w)return r;if(!i&&(p(t),t=t||d,g)){if(11!==w&&(f=Z.exec(e)))if(o=f[1]){if(9===w){if(!(l=t.getElementById(o)))return r;if(l.id===o)return r.push(l),r}else if(m&&(l=m.getElementById(o))&&x(t,l)&&l.id===o)return r.push(l),r}else{if(f[2])return H.apply(r,t.getElementsByTagName(e)),r;if((o=f[3])&&n.getElementsByClassName&&t.getElementsByClassName)return H.apply(r,t.getElementsByClassName(o)),r}if(n.qsa&&!A[e+\" \"]&&(!v||!v.test(e))&&(1!==w||\"object\"!==t.nodeName.toLowerCase())){if(y=e,m=t,1===w&&(U.test(e)||z.test(e))){for((m=ee.test(e)&&ye(t.parentNode)||t)===t&&n.scope||((c=t.getAttribute(\"id\"))?c=c.replace(re,ie):t.setAttribute(\"id\",c=b)),s=(h=a(e)).length;s--;)h[s]=(c?\"#\"+c:\":scope\")+\" \"+xe(h[s]);y=h.join(\",\")}try{return H.apply(r,m.querySelectorAll(y)),r}catch(t){A(e,!0)}finally{c===b&&t.removeAttribute(\"id\")}}}return u(e.replace($,\"$1\"),t,r,i)}function ue(){var e=[];return function t(n,i){return e.push(n+\" \")>r.cacheLength&&delete t[e.shift()],t[n+\" \"]=i}}function le(e){return e[b]=!0,e}function ce(e){var t=d.createElement(\"fieldset\");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function fe(e,t){for(var n=e.split(\"|\"),i=n.length;i--;)r.attrHandle[n[i]]=t}function pe(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(r)return r;if(n)for(;n=n.nextSibling;)if(n===t)return-1;return e?1:-1}function de(e){return function(t){return\"input\"===t.nodeName.toLowerCase()&&t.type===e}}function he(e){return function(t){var n=t.nodeName.toLowerCase();return(\"input\"===n||\"button\"===n)&&t.type===e}}function ge(e){return function(t){return\"form\"in t?t.parentNode&&!1===t.disabled?\"label\"in t?\"label\"in t.parentNode?t.parentNode.disabled===e:t.disabled===e:t.isDisabled===e||t.isDisabled!==!e&&ae(t)===e:t.disabled===e:\"label\"in t&&t.disabled===e}}function ve(e){return le((function(t){return t=+t,le((function(n,r){for(var i,o=e([],n.length,t),a=o.length;a--;)n[i=o[a]]&&(n[i]=!(r[i]=n[i]))}))}))}function ye(e){return e&&void 0!==e.getElementsByTagName&&e}for(t in n=se.support={},o=se.isXML=function(e){var t=e&&e.namespaceURI,n=e&&(e.ownerDocument||e).documentElement;return!Y.test(t||n&&n.nodeName||\"HTML\")},p=se.setDocument=function(e){var t,i,a=e?e.ownerDocument||e:w;return a!=d&&9===a.nodeType&&a.documentElement?(h=(d=a).documentElement,g=!o(d),w!=d&&(i=d.defaultView)&&i.top!==i&&(i.addEventListener?i.addEventListener(\"unload\",oe,!1):i.attachEvent&&i.attachEvent(\"onunload\",oe)),n.scope=ce((function(e){return h.appendChild(e).appendChild(d.createElement(\"div\")),void 0!==e.querySelectorAll&&!e.querySelectorAll(\":scope fieldset div\").length})),n.attributes=ce((function(e){return e.className=\"i\",!e.getAttribute(\"className\")})),n.getElementsByTagName=ce((function(e){return e.appendChild(d.createComment(\"\")),!e.getElementsByTagName(\"*\").length})),n.getElementsByClassName=K.test(d.getElementsByClassName),n.getById=ce((function(e){return h.appendChild(e).id=b,!d.getElementsByName||!d.getElementsByName(b).length})),n.getById?(r.filter.ID=function(e){var t=e.replace(te,ne);return function(e){return e.getAttribute(\"id\")===t}},r.find.ID=function(e,t){if(void 0!==t.getElementById&&g){var n=t.getElementById(e);return n?[n]:[]}}):(r.filter.ID=function(e){var t=e.replace(te,ne);return function(e){var n=void 0!==e.getAttributeNode&&e.getAttributeNode(\"id\");return n&&n.value===t}},r.find.ID=function(e,t){if(void 0!==t.getElementById&&g){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode(\"id\"))&&n.value===e)return[o];for(i=t.getElementsByName(e),r=0;o=i[r++];)if((n=o.getAttributeNode(\"id\"))&&n.value===e)return[o]}return[]}}),r.find.TAG=n.getElementsByTagName?function(e,t){return void 0!==t.getElementsByTagName?t.getElementsByTagName(e):n.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if(\"*\"===e){for(;n=o[i++];)1===n.nodeType&&r.push(n);return r}return o},r.find.CLASS=n.getElementsByClassName&&function(e,t){if(void 0!==t.getElementsByClassName&&g)return t.getElementsByClassName(e)},y=[],v=[],(n.qsa=K.test(d.querySelectorAll))&&(ce((function(e){var t;h.appendChild(e).innerHTML=\"\",e.querySelectorAll(\"[msallowcapture^='']\").length&&v.push(\"[*^$]=[\\\\x20\\\\t\\\\r\\\\n\\\\f]*(?:''|\\\"\\\")\"),e.querySelectorAll(\"[selected]\").length||v.push(\"\\\\[[\\\\x20\\\\t\\\\r\\\\n\\\\f]*(?:value|\"+R+\")\"),e.querySelectorAll(\"[id~=\"+b+\"-]\").length||v.push(\"~=\"),(t=d.createElement(\"input\")).setAttribute(\"name\",\"\"),e.appendChild(t),e.querySelectorAll(\"[name='']\").length||v.push(\"\\\\[[\\\\x20\\\\t\\\\r\\\\n\\\\f]*name[\\\\x20\\\\t\\\\r\\\\n\\\\f]*=[\\\\x20\\\\t\\\\r\\\\n\\\\f]*(?:''|\\\"\\\")\"),e.querySelectorAll(\":checked\").length||v.push(\":checked\"),e.querySelectorAll(\"a#\"+b+\"+*\").length||v.push(\".#.+[+~]\"),e.querySelectorAll(\"\\\\\\f\"),v.push(\"[\\\\r\\\\n\\\\f]\")})),ce((function(e){e.innerHTML=\"\";var t=d.createElement(\"input\");t.setAttribute(\"type\",\"hidden\"),e.appendChild(t).setAttribute(\"name\",\"D\"),e.querySelectorAll(\"[name=d]\").length&&v.push(\"name[\\\\x20\\\\t\\\\r\\\\n\\\\f]*[*^$|!~]?=\"),2!==e.querySelectorAll(\":enabled\").length&&v.push(\":enabled\",\":disabled\"),h.appendChild(e).disabled=!0,2!==e.querySelectorAll(\":disabled\").length&&v.push(\":enabled\",\":disabled\"),e.querySelectorAll(\"*,:x\"),v.push(\",.*:\")}))),(n.matchesSelector=K.test(m=h.matches||h.webkitMatchesSelector||h.mozMatchesSelector||h.oMatchesSelector||h.msMatchesSelector))&&ce((function(e){n.disconnectedMatch=m.call(e,\"*\"),m.call(e,\"[s!='']:x\"),y.push(\"!=\",F)})),v=v.length&&new RegExp(v.join(\"|\")),y=y.length&&new RegExp(y.join(\"|\")),t=K.test(h.compareDocumentPosition),x=t||K.test(h.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)for(;t=t.parentNode;)if(t===e)return!0;return!1},N=t?function(e,t){if(e===t)return f=!0,0;var r=!e.compareDocumentPosition-!t.compareDocumentPosition;return r||(1&(r=(e.ownerDocument||e)==(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!n.sortDetached&&t.compareDocumentPosition(e)===r?e==d||e.ownerDocument==w&&x(w,e)?-1:t==d||t.ownerDocument==w&&x(w,t)?1:c?P(c,e)-P(c,t):0:4&r?-1:1)}:function(e,t){if(e===t)return f=!0,0;var n,r=0,i=e.parentNode,o=t.parentNode,a=[e],s=[t];if(!i||!o)return e==d?-1:t==d?1:i?-1:o?1:c?P(c,e)-P(c,t):0;if(i===o)return pe(e,t);for(n=e;n=n.parentNode;)a.unshift(n);for(n=t;n=n.parentNode;)s.unshift(n);for(;a[r]===s[r];)r++;return r?pe(a[r],s[r]):a[r]==w?-1:s[r]==w?1:0},d):d},se.matches=function(e,t){return se(e,null,null,t)},se.matchesSelector=function(e,t){if(p(e),n.matchesSelector&&g&&!A[t+\" \"]&&(!y||!y.test(t))&&(!v||!v.test(t)))try{var r=m.call(e,t);if(r||n.disconnectedMatch||e.document&&11!==e.document.nodeType)return r}catch(e){A(t,!0)}return se(t,d,null,[e]).length>0},se.contains=function(e,t){return(e.ownerDocument||e)!=d&&p(e),x(e,t)},se.attr=function(e,t){(e.ownerDocument||e)!=d&&p(e);var i=r.attrHandle[t.toLowerCase()],o=i&&j.call(r.attrHandle,t.toLowerCase())?i(e,t,!g):void 0;return void 0!==o?o:n.attributes||!g?e.getAttribute(t):(o=e.getAttributeNode(t))&&o.specified?o.value:null},se.escape=function(e){return(e+\"\").replace(re,ie)},se.error=function(e){throw new Error(\"Syntax error, unrecognized expression: \"+e)},se.uniqueSort=function(e){var t,r=[],i=0,o=0;if(f=!n.detectDuplicates,c=!n.sortStable&&e.slice(0),e.sort(N),f){for(;t=e[o++];)t===e[o]&&(i=r.push(o));for(;i--;)e.splice(r[i],1)}return c=null,e},i=se.getText=function(e){var t,n=\"\",r=0,o=e.nodeType;if(o){if(1===o||9===o||11===o){if(\"string\"==typeof e.textContent)return e.textContent;for(e=e.firstChild;e;e=e.nextSibling)n+=i(e)}else if(3===o||4===o)return e.nodeValue}else for(;t=e[r++];)n+=i(t);return n},r=se.selectors={cacheLength:50,createPseudo:le,match:G,attrHandle:{},find:{},relative:{\">\":{dir:\"parentNode\",first:!0},\" \":{dir:\"parentNode\"},\"+\":{dir:\"previousSibling\",first:!0},\"~\":{dir:\"previousSibling\"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(te,ne),e[3]=(e[3]||e[4]||e[5]||\"\").replace(te,ne),\"~=\"===e[2]&&(e[3]=\" \"+e[3]+\" \"),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),\"nth\"===e[1].slice(0,3)?(e[3]||se.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*(\"even\"===e[3]||\"odd\"===e[3])),e[5]=+(e[7]+e[8]||\"odd\"===e[3])):e[3]&&se.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return G.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||\"\":n&&X.test(n)&&(t=a(n,!0))&&(t=n.indexOf(\")\",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(te,ne).toLowerCase();return\"*\"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=E[e+\" \"];return t||(t=new RegExp(\"(^|[\\\\x20\\\\t\\\\r\\\\n\\\\f])\"+e+\"(\"+M+\"|$)\"))&&E(e,(function(e){return t.test(\"string\"==typeof e.className&&e.className||void 0!==e.getAttribute&&e.getAttribute(\"class\")||\"\")}))},ATTR:function(e,t,n){return function(r){var i=se.attr(r,e);return null==i?\"!=\"===t:!t||(i+=\"\",\"=\"===t?i===n:\"!=\"===t?i!==n:\"^=\"===t?n&&0===i.indexOf(n):\"*=\"===t?n&&i.indexOf(n)>-1:\"$=\"===t?n&&i.slice(-n.length)===n:\"~=\"===t?(\" \"+i.replace(B,\" \")+\" \").indexOf(n)>-1:\"|=\"===t&&(i===n||i.slice(0,n.length+1)===n+\"-\"))}},CHILD:function(e,t,n,r,i){var o=\"nth\"!==e.slice(0,3),a=\"last\"!==e.slice(-4),s=\"of-type\"===t;return 1===r&&0===i?function(e){return!!e.parentNode}:function(t,n,u){var l,c,f,p,d,h,g=o!==a?\"nextSibling\":\"previousSibling\",v=t.parentNode,y=s&&t.nodeName.toLowerCase(),m=!u&&!s,x=!1;if(v){if(o){for(;g;){for(p=t;p=p[g];)if(s?p.nodeName.toLowerCase()===y:1===p.nodeType)return!1;h=g=\"only\"===e&&!h&&\"nextSibling\"}return!0}if(h=[a?v.firstChild:v.lastChild],a&&m){for(x=(d=(l=(c=(f=(p=v)[b]||(p[b]={}))[p.uniqueID]||(f[p.uniqueID]={}))[e]||[])[0]===T&&l[1])&&l[2],p=d&&v.childNodes[d];p=++d&&p&&p[g]||(x=d=0)||h.pop();)if(1===p.nodeType&&++x&&p===t){c[e]=[T,d,x];break}}else if(m&&(x=d=(l=(c=(f=(p=t)[b]||(p[b]={}))[p.uniqueID]||(f[p.uniqueID]={}))[e]||[])[0]===T&&l[1]),!1===x)for(;(p=++d&&p&&p[g]||(x=d=0)||h.pop())&&((s?p.nodeName.toLowerCase()!==y:1!==p.nodeType)||!++x||(m&&((c=(f=p[b]||(p[b]={}))[p.uniqueID]||(f[p.uniqueID]={}))[e]=[T,x]),p!==t)););return(x-=i)===r||x%r==0&&x/r>=0}}},PSEUDO:function(e,t){var n,i=r.pseudos[e]||r.setFilters[e.toLowerCase()]||se.error(\"unsupported pseudo: \"+e);return i[b]?i(t):i.length>1?(n=[e,e,\"\",t],r.setFilters.hasOwnProperty(e.toLowerCase())?le((function(e,n){for(var r,o=i(e,t),a=o.length;a--;)e[r=P(e,o[a])]=!(n[r]=o[a])})):function(e){return i(e,0,n)}):i}},pseudos:{not:le((function(e){var t=[],n=[],r=s(e.replace($,\"$1\"));return r[b]?le((function(e,t,n,i){for(var o,a=r(e,null,i,[]),s=e.length;s--;)(o=a[s])&&(e[s]=!(t[s]=o))})):function(e,i,o){return t[0]=e,r(t,null,o,n),t[0]=null,!n.pop()}})),has:le((function(e){return function(t){return se(e,t).length>0}})),contains:le((function(e){return e=e.replace(te,ne),function(t){return(t.textContent||i(t)).indexOf(e)>-1}})),lang:le((function(e){return V.test(e||\"\")||se.error(\"unsupported lang: \"+e),e=e.replace(te,ne).toLowerCase(),function(t){var n;do{if(n=g?t.lang:t.getAttribute(\"xml:lang\")||t.getAttribute(\"lang\"))return(n=n.toLowerCase())===e||0===n.indexOf(e+\"-\")}while((t=t.parentNode)&&1===t.nodeType);return!1}})),target:function(t){var n=e.location&&e.location.hash;return n&&n.slice(1)===t.id},root:function(e){return e===h},focus:function(e){return e===d.activeElement&&(!d.hasFocus||d.hasFocus())&&!!(e.type||e.href||~e.tabIndex)},enabled:ge(!1),disabled:ge(!0),checked:function(e){var t=e.nodeName.toLowerCase();return\"input\"===t&&!!e.checked||\"option\"===t&&!!e.selected},selected:function(e){return e.parentNode&&e.parentNode.selectedIndex,!0===e.selected},empty:function(e){for(e=e.firstChild;e;e=e.nextSibling)if(e.nodeType<6)return!1;return!0},parent:function(e){return!r.pseudos.empty(e)},header:function(e){return J.test(e.nodeName)},input:function(e){return Q.test(e.nodeName)},button:function(e){var t=e.nodeName.toLowerCase();return\"input\"===t&&\"button\"===e.type||\"button\"===t},text:function(e){var t;return\"input\"===e.nodeName.toLowerCase()&&\"text\"===e.type&&(null==(t=e.getAttribute(\"type\"))||\"text\"===t.toLowerCase())},first:ve((function(){return[0]})),last:ve((function(e,t){return[t-1]})),eq:ve((function(e,t,n){return[n<0?n+t:n]})),even:ve((function(e,t){for(var n=0;nt?t:n;--r>=0;)e.push(r);return e})),gt:ve((function(e,t,n){for(var r=n<0?n+t:n;++r1?function(t,n,r){for(var i=e.length;i--;)if(!e[i](t,n,r))return!1;return!0}:e[0]}function Te(e,t,n,r,i){for(var o,a=[],s=0,u=e.length,l=null!=t;s-1&&(o[l]=!(a[l]=f))}}else y=Te(y===a?y.splice(h,y.length):y),i?i(null,a,y,u):H.apply(a,y)}))}function Ee(e){for(var t,n,i,o=e.length,a=r.relative[e[0].type],s=a||r.relative[\" \"],u=a?1:0,c=be((function(e){return e===t}),s,!0),f=be((function(e){return P(t,e)>-1}),s,!0),p=[function(e,n,r){var i=!a&&(r||n!==l)||((t=n).nodeType?c(e,n,r):f(e,n,r));return t=null,i}];u1&&we(p),u>1&&xe(e.slice(0,u-1).concat({value:\" \"===e[u-2].type?\"*\":\"\"})).replace($,\"$1\"),n,u0,i=e.length>0,o=function(o,a,s,u,c){var f,h,v,y=0,m=\"0\",x=o&&[],b=[],w=l,C=o||i&&r.find.TAG(\"*\",c),E=T+=null==w?1:Math.random()||.1,S=C.length;for(c&&(l=a==d||a||c);m!==S&&null!=(f=C[m]);m++){if(i&&f){for(h=0,a||f.ownerDocument==d||(p(f),s=!g);v=e[h++];)if(v(f,a||d,s)){u.push(f);break}c&&(T=E)}n&&((f=!v&&f)&&y--,o&&x.push(f))}if(y+=m,n&&m!==y){for(h=0;v=t[h++];)v(x,b,a,s);if(o){if(y>0)for(;m--;)x[m]||b[m]||(b[m]=q.call(u));b=Te(b)}H.apply(u,b),c&&!o&&b.length>0&&y+t.length>1&&se.uniqueSort(u)}return c&&(T=E,l=w),x};return n?le(o):o}(o,i)),s.selector=e}return s},u=se.select=function(e,t,n,i){var o,u,l,c,f,p=\"function\"==typeof e&&e,d=!i&&a(e=p.selector||e);if(n=n||[],1===d.length){if((u=d[0]=d[0].slice(0)).length>2&&\"ID\"===(l=u[0]).type&&9===t.nodeType&&g&&r.relative[u[1].type]){if(!(t=(r.find.ID(l.matches[0].replace(te,ne),t)||[])[0]))return n;p&&(t=t.parentNode),e=e.slice(u.shift().value.length)}for(o=G.needsContext.test(e)?0:u.length;o--&&(l=u[o],!r.relative[c=l.type]);)if((f=r.find[c])&&(i=f(l.matches[0].replace(te,ne),ee.test(u[0].type)&&ye(t.parentNode)||t))){if(u.splice(o,1),!(e=i.length&&xe(u)))return H.apply(n,i),n;break}}return(p||s(e,d))(i,t,!g,n,!t||ee.test(e)&&ye(t.parentNode)||t),n},n.sortStable=b.split(\"\").sort(N).join(\"\")===b,n.detectDuplicates=!!f,p(),n.sortDetached=ce((function(e){return 1&e.compareDocumentPosition(d.createElement(\"fieldset\"))})),ce((function(e){return e.innerHTML=\"\",\"#\"===e.firstChild.getAttribute(\"href\")}))||fe(\"type|href|height|width\",(function(e,t,n){if(!n)return e.getAttribute(t,\"type\"===t.toLowerCase()?1:2)})),n.attributes&&ce((function(e){return e.innerHTML=\"\",e.firstChild.setAttribute(\"value\",\"\"),\"\"===e.firstChild.getAttribute(\"value\")}))||fe(\"value\",(function(e,t,n){if(!n&&\"input\"===e.nodeName.toLowerCase())return e.defaultValue})),ce((function(e){return null==e.getAttribute(\"disabled\")}))||fe(R,(function(e,t,n){var r;if(!n)return!0===e[t]?t.toLowerCase():(r=e.getAttributeNode(t))&&r.specified?r.value:null})),se}(e);w.find=C,w.expr=C.selectors,w.expr[\":\"]=w.expr.pseudos,w.uniqueSort=w.unique=C.uniqueSort,w.text=C.getText,w.isXMLDoc=C.isXML,w.contains=C.contains,w.escapeSelector=C.escape;var E=function(e,t,n){for(var r=[],i=void 0!==n;(e=e[t])&&9!==e.nodeType;)if(1===e.nodeType){if(i&&w(e).is(n))break;r.push(e)}return r},S=function(e,t){for(var n=[];e;e=e.nextSibling)1===e.nodeType&&e!==t&&n.push(e);return n},k=w.expr.match.needsContext;function A(e,t){return e.nodeName&&e.nodeName.toLowerCase()===t.toLowerCase()}var N=/^<([a-z][^\\/\\0>:\\x20\\t\\r\\n\\f]*)[\\x20\\t\\r\\n\\f]*\\/?>(?:<\\/\\1>|)$/i;function j(e,t,n){return h(t)?w.grep(e,(function(e,r){return!!t.call(e,r,e)!==n})):t.nodeType?w.grep(e,(function(e){return e===t!==n})):\"string\"!=typeof t?w.grep(e,(function(e){return s.call(t,e)>-1!==n})):w.filter(t,e,n)}w.filter=function(e,t,n){var r=t[0];return n&&(e=\":not(\"+e+\")\"),1===t.length&&1===r.nodeType?w.find.matchesSelector(r,e)?[r]:[]:w.find.matches(e,w.grep(t,(function(e){return 1===e.nodeType})))},w.fn.extend({find:function(e){var t,n,r=this.length,i=this;if(\"string\"!=typeof e)return this.pushStack(w(e).filter((function(){for(t=0;t1?w.uniqueSort(n):n},filter:function(e){return this.pushStack(j(this,e||[],!1))},not:function(e){return this.pushStack(j(this,e||[],!0))},is:function(e){return!!j(this,\"string\"==typeof e&&k.test(e)?w(e):e||[],!1).length}});var D,q=/^(?:\\s*(<[\\w\\W]+>)[^>]*|#([\\w-]+))$/;(w.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||D,\"string\"==typeof e){if(!(r=\"<\"===e[0]&&\">\"===e[e.length-1]&&e.length>=3?[null,e,null]:q.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof w?t[0]:t,w.merge(this,w.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:v,!0)),N.test(r[1])&&w.isPlainObject(t))for(r in t)h(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=v.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):h(e)?void 0!==n.ready?n.ready(e):e(w):w.makeArray(e,this)}).prototype=w.fn,D=w(v);var L=/^(?:parents|prev(?:Until|All))/,H={children:!0,contents:!0,next:!0,prev:!0};function O(e,t){for(;(e=e[t])&&1!==e.nodeType;);return e}w.fn.extend({has:function(e){var t=w(e,this),n=t.length;return this.filter((function(){for(var e=0;e-1:1===n.nodeType&&w.find.matchesSelector(n,e))){o.push(n);break}return this.pushStack(o.length>1?w.uniqueSort(o):o)},index:function(e){return e?\"string\"==typeof e?s.call(w(e),this[0]):s.call(this,e.jquery?e[0]:e):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(e,t){return this.pushStack(w.uniqueSort(w.merge(this.get(),w(e,t))))},addBack:function(e){return this.add(null==e?this.prevObject:this.prevObject.filter(e))}}),w.each({parent:function(e){var t=e.parentNode;return t&&11!==t.nodeType?t:null},parents:function(e){return E(e,\"parentNode\")},parentsUntil:function(e,t,n){return E(e,\"parentNode\",n)},next:function(e){return O(e,\"nextSibling\")},prev:function(e){return O(e,\"previousSibling\")},nextAll:function(e){return E(e,\"nextSibling\")},prevAll:function(e){return E(e,\"previousSibling\")},nextUntil:function(e,t,n){return E(e,\"nextSibling\",n)},prevUntil:function(e,t,n){return E(e,\"previousSibling\",n)},siblings:function(e){return S((e.parentNode||{}).firstChild,e)},children:function(e){return S(e.firstChild)},contents:function(e){return null!=e.contentDocument&&r(e.contentDocument)?e.contentDocument:(A(e,\"template\")&&(e=e.content||e),w.merge([],e.childNodes))}},(function(e,t){w.fn[e]=function(n,r){var i=w.map(this,t,n);return\"Until\"!==e.slice(-5)&&(r=n),r&&\"string\"==typeof r&&(i=w.filter(r,i)),this.length>1&&(H[e]||w.uniqueSort(i),L.test(e)&&i.reverse()),this.pushStack(i)}}));var P=/[^\\x20\\t\\r\\n\\f]+/g;function R(e){return e}function M(e){throw e}function I(e,t,n,r){var i;try{e&&h(i=e.promise)?i.call(e).done(t).fail(n):e&&h(i=e.then)?i.call(e,t,n):t.apply(void 0,[e].slice(r))}catch(e){n.apply(void 0,[e])}}w.Callbacks=function(e){e=\"string\"==typeof e?function(e){var t={};return w.each(e.match(P)||[],(function(e,n){t[n]=!0})),t}(e):w.extend({},e);var t,n,r,i,o=[],a=[],s=-1,u=function(){for(i=i||e.once,r=t=!0;a.length;s=-1)for(n=a.shift();++s-1;)o.splice(n,1),n<=s&&s--})),this},has:function(e){return e?w.inArray(e,o)>-1:o.length>0},empty:function(){return o&&(o=[]),this},disable:function(){return i=a=[],o=n=\"\",this},disabled:function(){return!o},lock:function(){return i=a=[],n||t||(o=n=\"\"),this},locked:function(){return!!i},fireWith:function(e,n){return i||(n=[e,(n=n||[]).slice?n.slice():n],a.push(n),t||u()),this},fire:function(){return l.fireWith(this,arguments),this},fired:function(){return!!r}};return l},w.extend({Deferred:function(t){var n=[[\"notify\",\"progress\",w.Callbacks(\"memory\"),w.Callbacks(\"memory\"),2],[\"resolve\",\"done\",w.Callbacks(\"once memory\"),w.Callbacks(\"once memory\"),0,\"resolved\"],[\"reject\",\"fail\",w.Callbacks(\"once memory\"),w.Callbacks(\"once memory\"),1,\"rejected\"]],r=\"pending\",i={state:function(){return r},always:function(){return o.done(arguments).fail(arguments),this},catch:function(e){return i.then(null,e)},pipe:function(){var e=arguments;return w.Deferred((function(t){w.each(n,(function(n,r){var i=h(e[r[4]])&&e[r[4]];o[r[1]]((function(){var e=i&&i.apply(this,arguments);e&&h(e.promise)?e.promise().progress(t.notify).done(t.resolve).fail(t.reject):t[r[0]+\"With\"](this,i?[e]:arguments)}))})),e=null})).promise()},then:function(t,r,i){var o=0;function a(t,n,r,i){return function(){var s=this,u=arguments,l=function(){var e,l;if(!(t=o&&(r!==M&&(s=void 0,u=[e]),n.rejectWith(s,u))}};t?c():(w.Deferred.getStackHook&&(c.stackTrace=w.Deferred.getStackHook()),e.setTimeout(c))}}return w.Deferred((function(e){n[0][3].add(a(0,e,h(i)?i:R,e.notifyWith)),n[1][3].add(a(0,e,h(t)?t:R)),n[2][3].add(a(0,e,h(r)?r:M))})).promise()},promise:function(e){return null!=e?w.extend(e,i):i}},o={};return w.each(n,(function(e,t){var a=t[2],s=t[5];i[t[1]]=a.add,s&&a.add((function(){r=s}),n[3-e][2].disable,n[3-e][3].disable,n[0][2].lock,n[0][3].lock),a.add(t[3].fire),o[t[0]]=function(){return o[t[0]+\"With\"](this===o?void 0:this,arguments),this},o[t[0]+\"With\"]=a.fireWith})),i.promise(o),t&&t.call(o,o),o},when:function(e){var t=arguments.length,n=t,r=Array(n),o=i.call(arguments),a=w.Deferred(),s=function(e){return function(n){r[e]=this,o[e]=arguments.length>1?i.call(arguments):n,--t||a.resolveWith(r,o)}};if(t<=1&&(I(e,a.done(s(n)).resolve,a.reject,!t),\"pending\"===a.state()||h(o[n]&&o[n].then)))return a.then();for(;n--;)I(o[n],s(n),a.reject);return a.promise()}});var W=/^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/;w.Deferred.exceptionHook=function(t,n){e.console&&e.console.warn&&t&&W.test(t.name)&&e.console.warn(\"jQuery.Deferred exception: \"+t.message,t.stack,n)},w.readyException=function(t){e.setTimeout((function(){throw t}))};var F=w.Deferred();function B(){v.removeEventListener(\"DOMContentLoaded\",B),e.removeEventListener(\"load\",B),w.ready()}w.fn.ready=function(e){return F.then(e).catch((function(e){w.readyException(e)})),this},w.extend({isReady:!1,readyWait:1,ready:function(e){(!0===e?--w.readyWait:w.isReady)||(w.isReady=!0,!0!==e&&--w.readyWait>0||F.resolveWith(v,[w]))}}),w.ready.then=F.then,\"complete\"===v.readyState||\"loading\"!==v.readyState&&!v.documentElement.doScroll?e.setTimeout(w.ready):(v.addEventListener(\"DOMContentLoaded\",B),e.addEventListener(\"load\",B));var $=function(e,t,n,r,i,o,a){var s=0,u=e.length,l=null==n;if(\"object\"===x(n))for(s in i=!0,n)$(e,t,s,n[s],!0,o,a);else if(void 0!==r&&(i=!0,h(r)||(a=!0),l&&(a?(t.call(e,r),t=null):(l=t,t=function(e,t,n){return l.call(w(e),n)})),t))for(;s1,null,!0)},removeData:function(e){return this.each((function(){Q.remove(this,e)}))}}),w.extend({queue:function(e,t,n){var r;if(e)return t=(t||\"fx\")+\"queue\",r=Y.get(e,t),n&&(!r||Array.isArray(n)?r=Y.access(e,t,w.makeArray(n)):r.push(n)),r||[]},dequeue:function(e,t){t=t||\"fx\";var n=w.queue(e,t),r=n.length,i=n.shift(),o=w._queueHooks(e,t);\"inprogress\"===i&&(i=n.shift(),r--),i&&(\"fx\"===t&&n.unshift(\"inprogress\"),delete o.stop,i.call(e,(function(){w.dequeue(e,t)}),o)),!r&&o&&o.empty.fire()},_queueHooks:function(e,t){var n=t+\"queueHooks\";return Y.get(e,n)||Y.access(e,n,{empty:w.Callbacks(\"once memory\").add((function(){Y.remove(e,[t+\"queue\",n])}))})}}),w.fn.extend({queue:function(e,t){var n=2;return\"string\"!=typeof e&&(t=e,e=\"fx\",n--),arguments.length\\x20\\t\\r\\n\\f]*)/i,ge=/^$|^module$|\\/(?:java|ecma)script/i;fe=v.createDocumentFragment().appendChild(v.createElement(\"div\")),(pe=v.createElement(\"input\")).setAttribute(\"type\",\"radio\"),pe.setAttribute(\"checked\",\"checked\"),pe.setAttribute(\"name\",\"t\"),fe.appendChild(pe),d.checkClone=fe.cloneNode(!0).cloneNode(!0).lastChild.checked,fe.innerHTML=\"\",d.noCloneChecked=!!fe.cloneNode(!0).lastChild.defaultValue,fe.innerHTML=\"\",d.option=!!fe.lastChild;var ve={thead:[1,\"\",\"
\"],col:[2,\"\",\"
\"],tr:[2,\"\",\"
\"],td:[3,\"\",\"
\"],_default:[0,\"\",\"\"]};function ye(e,t){var n;return n=void 0!==e.getElementsByTagName?e.getElementsByTagName(t||\"*\"):void 0!==e.querySelectorAll?e.querySelectorAll(t||\"*\"):[],void 0===t||t&&A(e,t)?w.merge([e],n):n}function me(e,t){for(var n=0,r=e.length;n\",\"\"]);var xe=/<|&#?\\w+;/;function be(e,t,n,r,i){for(var o,a,s,u,l,c,f=t.createDocumentFragment(),p=[],d=0,h=e.length;d-1)i&&i.push(o);else if(l=ie(o),a=ye(f.appendChild(o),\"script\"),l&&me(a),n)for(c=0;o=a[c++];)ge.test(o.type||\"\")&&n.push(o);return f}var we=/^([^.]*)(?:\\.(.+)|)/;function Te(){return!0}function Ce(){return!1}function Ee(e,t){return e===function(){try{return v.activeElement}catch(e){}}()==(\"focus\"===t)}function Se(e,t,n,r,i,o){var a,s;if(\"object\"==typeof t){for(s in\"string\"!=typeof n&&(r=r||n,n=void 0),t)Se(e,s,n,r,t[s],o);return e}if(null==r&&null==i?(i=n,r=n=void 0):null==i&&(\"string\"==typeof n?(i=r,r=void 0):(i=r,r=n,n=void 0)),!1===i)i=Ce;else if(!i)return e;return 1===o&&(a=i,i=function(e){return w().off(e),a.apply(this,arguments)},i.guid=a.guid||(a.guid=w.guid++)),e.each((function(){w.event.add(this,t,i,r,n)}))}function ke(e,t,n){n?(Y.set(e,t,!1),w.event.add(e,t,{namespace:!1,handler:function(e){var r,o,a=Y.get(this,t);if(1&e.isTrigger&&this[t]){if(a.length)(w.event.special[t]||{}).delegateType&&e.stopPropagation();else if(a=i.call(arguments),Y.set(this,t,a),r=n(this,t),this[t](),a!==(o=Y.get(this,t))||r?Y.set(this,t,!1):o={},a!==o)return e.stopImmediatePropagation(),e.preventDefault(),o&&o.value}else a.length&&(Y.set(this,t,{value:w.event.trigger(w.extend(a[0],w.Event.prototype),a.slice(1),this)}),e.stopImmediatePropagation())}})):void 0===Y.get(e,t)&&w.event.add(e,t,Te)}w.event={global:{},add:function(e,t,n,r,i){var o,a,s,u,l,c,f,p,d,h,g,v=Y.get(e);if(V(e))for(n.handler&&(n=(o=n).handler,i=o.selector),i&&w.find.matchesSelector(re,i),n.guid||(n.guid=w.guid++),(u=v.events)||(u=v.events=Object.create(null)),(a=v.handle)||(a=v.handle=function(t){return void 0!==w&&w.event.triggered!==t.type?w.event.dispatch.apply(e,arguments):void 0}),l=(t=(t||\"\").match(P)||[\"\"]).length;l--;)d=g=(s=we.exec(t[l])||[])[1],h=(s[2]||\"\").split(\".\").sort(),d&&(f=w.event.special[d]||{},d=(i?f.delegateType:f.bindType)||d,f=w.event.special[d]||{},c=w.extend({type:d,origType:g,data:r,handler:n,guid:n.guid,selector:i,needsContext:i&&w.expr.match.needsContext.test(i),namespace:h.join(\".\")},o),(p=u[d])||((p=u[d]=[]).delegateCount=0,f.setup&&!1!==f.setup.call(e,r,h,a)||e.addEventListener&&e.addEventListener(d,a)),f.add&&(f.add.call(e,c),c.handler.guid||(c.handler.guid=n.guid)),i?p.splice(p.delegateCount++,0,c):p.push(c),w.event.global[d]=!0)},remove:function(e,t,n,r,i){var o,a,s,u,l,c,f,p,d,h,g,v=Y.hasData(e)&&Y.get(e);if(v&&(u=v.events)){for(l=(t=(t||\"\").match(P)||[\"\"]).length;l--;)if(d=g=(s=we.exec(t[l])||[])[1],h=(s[2]||\"\").split(\".\").sort(),d){for(f=w.event.special[d]||{},p=u[d=(r?f.delegateType:f.bindType)||d]||[],s=s[2]&&new RegExp(\"(^|\\\\.)\"+h.join(\"\\\\.(?:.*\\\\.|)\")+\"(\\\\.|$)\"),a=o=p.length;o--;)c=p[o],!i&&g!==c.origType||n&&n.guid!==c.guid||s&&!s.test(c.namespace)||r&&r!==c.selector&&(\"**\"!==r||!c.selector)||(p.splice(o,1),c.selector&&p.delegateCount--,f.remove&&f.remove.call(e,c));a&&!p.length&&(f.teardown&&!1!==f.teardown.call(e,h,v.handle)||w.removeEvent(e,d,v.handle),delete u[d])}else for(d in u)w.event.remove(e,d+t[l],n,r,!0);w.isEmptyObject(u)&&Y.remove(e,\"handle events\")}},dispatch:function(e){var t,n,r,i,o,a,s=new Array(arguments.length),u=w.event.fix(e),l=(Y.get(this,\"events\")||Object.create(null))[u.type]||[],c=w.event.special[u.type]||{};for(s[0]=u,t=1;t=1))for(;l!==this;l=l.parentNode||this)if(1===l.nodeType&&(\"click\"!==e.type||!0!==l.disabled)){for(o=[],a={},n=0;n-1:w.find(i,this,null,[l]).length),a[i]&&o.push(r);o.length&&s.push({elem:l,handlers:o})}return l=this,u\\s*$/g;function De(e,t){return A(e,\"table\")&&A(11!==t.nodeType?t:t.firstChild,\"tr\")&&w(e).children(\"tbody\")[0]||e}function qe(e){return e.type=(null!==e.getAttribute(\"type\"))+\"/\"+e.type,e}function Le(e){return\"true/\"===(e.type||\"\").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute(\"type\"),e}function He(e,t){var n,r,i,o,a,s;if(1===t.nodeType){if(Y.hasData(e)&&(s=Y.get(e).events))for(i in Y.remove(t,\"handle events\"),s)for(n=0,r=s[i].length;n1&&\"string\"==typeof v&&!d.checkClone&&Ne.test(v))return e.each((function(i){var o=e.eq(i);y&&(t[0]=v.call(this,i,o.html())),Pe(o,t,n,r)}));if(p&&(a=(i=be(t,e[0].ownerDocument,!1,e,r)).firstChild,1===i.childNodes.length&&(i=a),a||r)){for(u=(s=w.map(ye(i,\"script\"),qe)).length;f0&&me(a,!u&&ye(e,\"script\")),s},cleanData:function(e){for(var t,n,r,i=w.event.special,o=0;void 0!==(n=e[o]);o++)if(V(n)){if(t=n[Y.expando]){if(t.events)for(r in t.events)i[r]?w.event.remove(n,r):w.removeEvent(n,r,t.handle);n[Y.expando]=void 0}n[Q.expando]&&(n[Q.expando]=void 0)}}}),w.fn.extend({detach:function(e){return Re(this,e,!0)},remove:function(e){return Re(this,e)},text:function(e){return $(this,(function(e){return void 0===e?w.text(this):this.empty().each((function(){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||(this.textContent=e)}))}),null,e,arguments.length)},append:function(){return Pe(this,arguments,(function(e){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||De(this,e).appendChild(e)}))},prepend:function(){return Pe(this,arguments,(function(e){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var t=De(this,e);t.insertBefore(e,t.firstChild)}}))},before:function(){return Pe(this,arguments,(function(e){this.parentNode&&this.parentNode.insertBefore(e,this)}))},after:function(){return Pe(this,arguments,(function(e){this.parentNode&&this.parentNode.insertBefore(e,this.nextSibling)}))},empty:function(){for(var e,t=0;null!=(e=this[t]);t++)1===e.nodeType&&(w.cleanData(ye(e,!1)),e.textContent=\"\");return this},clone:function(e,t){return e=null!=e&&e,t=null==t?e:t,this.map((function(){return w.clone(this,e,t)}))},html:function(e){return $(this,(function(e){var t=this[0]||{},n=0,r=this.length;if(void 0===e&&1===t.nodeType)return t.innerHTML;if(\"string\"==typeof e&&!Ae.test(e)&&!ve[(he.exec(e)||[\"\",\"\"])[1].toLowerCase()]){e=w.htmlPrefilter(e);try{for(;n=0&&(u+=Math.max(0,Math.ceil(e[\"offset\"+t[0].toUpperCase()+t.slice(1)]-o-u-s-.5))||0),u}function Ze(e,t,n){var r=Ie(e),i=(!d.boxSizingReliable()||n)&&\"border-box\"===w.css(e,\"boxSizing\",!1,r),o=i,a=Be(e,t,r),s=\"offset\"+t[0].toUpperCase()+t.slice(1);if(Me.test(a)){if(!n)return a;a=\"auto\"}return(!d.boxSizingReliable()&&i||!d.reliableTrDimensions()&&A(e,\"tr\")||\"auto\"===a||!parseFloat(a)&&\"inline\"===w.css(e,\"display\",!1,r))&&e.getClientRects().length&&(i=\"border-box\"===w.css(e,\"boxSizing\",!1,r),(o=s in e)&&(a=e[s])),(a=parseFloat(a)||0)+Ke(e,t,n||(i?\"border\":\"content\"),o,r,a)+\"px\"}function et(e,t,n,r,i){return new et.prototype.init(e,t,n,r,i)}w.extend({cssHooks:{opacity:{get:function(e,t){if(t){var n=Be(e,\"opacity\");return\"\"===n?\"1\":n}}}},cssNumber:{animationIterationCount:!0,columnCount:!0,fillOpacity:!0,flexGrow:!0,flexShrink:!0,fontWeight:!0,gridArea:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnStart:!0,gridRow:!0,gridRowEnd:!0,gridRowStart:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{},style:function(e,t,n,r){if(e&&3!==e.nodeType&&8!==e.nodeType&&e.style){var i,o,a,s=X(t),u=Ge.test(t),l=e.style;if(u||(t=Xe(s)),a=w.cssHooks[t]||w.cssHooks[s],void 0===n)return a&&\"get\"in a&&void 0!==(i=a.get(e,!1,r))?i:l[t];\"string\"===(o=typeof n)&&(i=te.exec(n))&&i[1]&&(n=se(e,t,i),o=\"number\"),null!=n&&n==n&&(\"number\"!==o||u||(n+=i&&i[3]||(w.cssNumber[s]?\"\":\"px\")),d.clearCloneStyle||\"\"!==n||0!==t.indexOf(\"background\")||(l[t]=\"inherit\"),a&&\"set\"in a&&void 0===(n=a.set(e,n,r))||(u?l.setProperty(t,n):l[t]=n))}},css:function(e,t,n,r){var i,o,a,s=X(t);return Ge.test(t)||(t=Xe(s)),(a=w.cssHooks[t]||w.cssHooks[s])&&\"get\"in a&&(i=a.get(e,!0,n)),void 0===i&&(i=Be(e,t,r)),\"normal\"===i&&t in Qe&&(i=Qe[t]),\"\"===n||n?(o=parseFloat(i),!0===n||isFinite(o)?o||0:i):i}}),w.each([\"height\",\"width\"],(function(e,t){w.cssHooks[t]={get:function(e,n,r){if(n)return!Ve.test(w.css(e,\"display\"))||e.getClientRects().length&&e.getBoundingClientRect().width?Ze(e,t,r):We(e,Ye,(function(){return Ze(e,t,r)}))},set:function(e,n,r){var i,o=Ie(e),a=!d.scrollboxSize()&&\"absolute\"===o.position,s=(a||r)&&\"border-box\"===w.css(e,\"boxSizing\",!1,o),u=r?Ke(e,t,r,s,o):0;return s&&a&&(u-=Math.ceil(e[\"offset\"+t[0].toUpperCase()+t.slice(1)]-parseFloat(o[t])-Ke(e,t,\"border\",!1,o)-.5)),u&&(i=te.exec(n))&&\"px\"!==(i[3]||\"px\")&&(e.style[t]=n,n=w.css(e,t)),Je(0,n,u)}}})),w.cssHooks.marginLeft=$e(d.reliableMarginLeft,(function(e,t){if(t)return(parseFloat(Be(e,\"marginLeft\"))||e.getBoundingClientRect().left-We(e,{marginLeft:0},(function(){return e.getBoundingClientRect().left})))+\"px\"})),w.each({margin:\"\",padding:\"\",border:\"Width\"},(function(e,t){w.cssHooks[e+t]={expand:function(n){for(var r=0,i={},o=\"string\"==typeof n?n.split(\" \"):[n];r<4;r++)i[e+ne[r]+t]=o[r]||o[r-2]||o[0];return i}},\"margin\"!==e&&(w.cssHooks[e+t].set=Je)})),w.fn.extend({css:function(e,t){return $(this,(function(e,t,n){var r,i,o={},a=0;if(Array.isArray(t)){for(r=Ie(e),i=t.length;a1)}}),w.Tween=et,et.prototype={constructor:et,init:function(e,t,n,r,i,o){this.elem=e,this.prop=n,this.easing=i||w.easing._default,this.options=t,this.start=this.now=this.cur(),this.end=r,this.unit=o||(w.cssNumber[n]?\"\":\"px\")},cur:function(){var e=et.propHooks[this.prop];return e&&e.get?e.get(this):et.propHooks._default.get(this)},run:function(e){var t,n=et.propHooks[this.prop];return this.options.duration?this.pos=t=w.easing[this.easing](e,this.options.duration*e,0,1,this.options.duration):this.pos=t=e,this.now=(this.end-this.start)*t+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),n&&n.set?n.set(this):et.propHooks._default.set(this),this}},et.prototype.init.prototype=et.prototype,et.propHooks={_default:{get:function(e){var t;return 1!==e.elem.nodeType||null!=e.elem[e.prop]&&null==e.elem.style[e.prop]?e.elem[e.prop]:(t=w.css(e.elem,e.prop,\"\"))&&\"auto\"!==t?t:0},set:function(e){w.fx.step[e.prop]?w.fx.step[e.prop](e):1!==e.elem.nodeType||!w.cssHooks[e.prop]&&null==e.elem.style[Xe(e.prop)]?e.elem[e.prop]=e.now:w.style(e.elem,e.prop,e.now+e.unit)}}},et.propHooks.scrollTop=et.propHooks.scrollLeft={set:function(e){e.elem.nodeType&&e.elem.parentNode&&(e.elem[e.prop]=e.now)}},w.easing={linear:function(e){return e},swing:function(e){return.5-Math.cos(e*Math.PI)/2},_default:\"swing\"},w.fx=et.prototype.init,w.fx.step={};var tt,nt,rt=/^(?:toggle|show|hide)$/,it=/queueHooks$/;function ot(){nt&&(!1===v.hidden&&e.requestAnimationFrame?e.requestAnimationFrame(ot):e.setTimeout(ot,w.fx.interval),w.fx.tick())}function at(){return e.setTimeout((function(){tt=void 0})),tt=Date.now()}function st(e,t){var n,r=0,i={height:e};for(t=t?1:0;r<4;r+=2-t)i[\"margin\"+(n=ne[r])]=i[\"padding\"+n]=e;return t&&(i.opacity=i.width=e),i}function ut(e,t,n){for(var r,i=(lt.tweeners[t]||[]).concat(lt.tweeners[\"*\"]),o=0,a=i.length;o1)},removeAttr:function(e){return this.each((function(){w.removeAttr(this,e)}))}}),w.extend({attr:function(e,t,n){var r,i,o=e.nodeType;if(3!==o&&8!==o&&2!==o)return void 0===e.getAttribute?w.prop(e,t,n):(1===o&&w.isXMLDoc(e)||(i=w.attrHooks[t.toLowerCase()]||(w.expr.match.bool.test(t)?ct:void 0)),void 0!==n?null===n?void w.removeAttr(e,t):i&&\"set\"in i&&void 0!==(r=i.set(e,n,t))?r:(e.setAttribute(t,n+\"\"),n):i&&\"get\"in i&&null!==(r=i.get(e,t))?r:null==(r=w.find.attr(e,t))?void 0:r)},attrHooks:{type:{set:function(e,t){if(!d.radioValue&&\"radio\"===t&&A(e,\"input\")){var n=e.value;return e.setAttribute(\"type\",t),n&&(e.value=n),t}}}},removeAttr:function(e,t){var n,r=0,i=t&&t.match(P);if(i&&1===e.nodeType)for(;n=i[r++];)e.removeAttribute(n)}}),ct={set:function(e,t,n){return!1===t?w.removeAttr(e,n):e.setAttribute(n,n),n}},w.each(w.expr.match.bool.source.match(/\\w+/g),(function(e,t){var n=ft[t]||w.find.attr;ft[t]=function(e,t,r){var i,o,a=t.toLowerCase();return r||(o=ft[a],ft[a]=i,i=null!=n(e,t,r)?a:null,ft[a]=o),i}}));var pt=/^(?:input|select|textarea|button)$/i,dt=/^(?:a|area)$/i;function ht(e){return(e.match(P)||[]).join(\" \")}function gt(e){return e.getAttribute&&e.getAttribute(\"class\")||\"\"}function vt(e){return Array.isArray(e)?e:\"string\"==typeof e&&e.match(P)||[]}w.fn.extend({prop:function(e,t){return $(this,w.prop,e,t,arguments.length>1)},removeProp:function(e){return this.each((function(){delete this[w.propFix[e]||e]}))}}),w.extend({prop:function(e,t,n){var r,i,o=e.nodeType;if(3!==o&&8!==o&&2!==o)return 1===o&&w.isXMLDoc(e)||(t=w.propFix[t]||t,i=w.propHooks[t]),void 0!==n?i&&\"set\"in i&&void 0!==(r=i.set(e,n,t))?r:e[t]=n:i&&\"get\"in i&&null!==(r=i.get(e,t))?r:e[t]},propHooks:{tabIndex:{get:function(e){var t=w.find.attr(e,\"tabindex\");return t?parseInt(t,10):pt.test(e.nodeName)||dt.test(e.nodeName)&&e.href?0:-1}}},propFix:{for:\"htmlFor\",class:\"className\"}}),d.optSelected||(w.propHooks.selected={get:function(e){var t=e.parentNode;return t&&t.parentNode&&t.parentNode.selectedIndex,null},set:function(e){var t=e.parentNode;t&&(t.selectedIndex,t.parentNode&&t.parentNode.selectedIndex)}}),w.each([\"tabIndex\",\"readOnly\",\"maxLength\",\"cellSpacing\",\"cellPadding\",\"rowSpan\",\"colSpan\",\"useMap\",\"frameBorder\",\"contentEditable\"],(function(){w.propFix[this.toLowerCase()]=this})),w.fn.extend({addClass:function(e){var t,n,r,i,o,a,s,u=0;if(h(e))return this.each((function(t){w(this).addClass(e.call(this,t,gt(this)))}));if((t=vt(e)).length)for(;n=this[u++];)if(i=gt(n),r=1===n.nodeType&&\" \"+ht(i)+\" \"){for(a=0;o=t[a++];)r.indexOf(\" \"+o+\" \")<0&&(r+=o+\" \");i!==(s=ht(r))&&n.setAttribute(\"class\",s)}return this},removeClass:function(e){var t,n,r,i,o,a,s,u=0;if(h(e))return this.each((function(t){w(this).removeClass(e.call(this,t,gt(this)))}));if(!arguments.length)return this.attr(\"class\",\"\");if((t=vt(e)).length)for(;n=this[u++];)if(i=gt(n),r=1===n.nodeType&&\" \"+ht(i)+\" \"){for(a=0;o=t[a++];)for(;r.indexOf(\" \"+o+\" \")>-1;)r=r.replace(\" \"+o+\" \",\" \");i!==(s=ht(r))&&n.setAttribute(\"class\",s)}return this},toggleClass:function(e,t){var n=typeof e,r=\"string\"===n||Array.isArray(e);return\"boolean\"==typeof t&&r?t?this.addClass(e):this.removeClass(e):h(e)?this.each((function(n){w(this).toggleClass(e.call(this,n,gt(this),t),t)})):this.each((function(){var t,i,o,a;if(r)for(i=0,o=w(this),a=vt(e);t=a[i++];)o.hasClass(t)?o.removeClass(t):o.addClass(t);else void 0!==e&&\"boolean\"!==n||((t=gt(this))&&Y.set(this,\"__className__\",t),this.setAttribute&&this.setAttribute(\"class\",t||!1===e?\"\":Y.get(this,\"__className__\")||\"\"))}))},hasClass:function(e){var t,n,r=0;for(t=\" \"+e+\" \";n=this[r++];)if(1===n.nodeType&&(\" \"+ht(gt(n))+\" \").indexOf(t)>-1)return!0;return!1}});var yt=/\\r/g;w.fn.extend({val:function(e){var t,n,r,i=this[0];return arguments.length?(r=h(e),this.each((function(n){var i;1===this.nodeType&&(null==(i=r?e.call(this,n,w(this).val()):e)?i=\"\":\"number\"==typeof i?i+=\"\":Array.isArray(i)&&(i=w.map(i,(function(e){return null==e?\"\":e+\"\"}))),(t=w.valHooks[this.type]||w.valHooks[this.nodeName.toLowerCase()])&&\"set\"in t&&void 0!==t.set(this,i,\"value\")||(this.value=i))}))):i?(t=w.valHooks[i.type]||w.valHooks[i.nodeName.toLowerCase()])&&\"get\"in t&&void 0!==(n=t.get(i,\"value\"))?n:\"string\"==typeof(n=i.value)?n.replace(yt,\"\"):null==n?\"\":n:void 0}}),w.extend({valHooks:{option:{get:function(e){var t=w.find.attr(e,\"value\");return null!=t?t:ht(w.text(e))}},select:{get:function(e){var t,n,r,i=e.options,o=e.selectedIndex,a=\"select-one\"===e.type,s=a?null:[],u=a?o+1:i.length;for(r=o<0?u:a?o:0;r-1)&&(n=!0);return n||(e.selectedIndex=-1),o}}}}),w.each([\"radio\",\"checkbox\"],(function(){w.valHooks[this]={set:function(e,t){if(Array.isArray(t))return e.checked=w.inArray(w(e).val(),t)>-1}},d.checkOn||(w.valHooks[this].get=function(e){return null===e.getAttribute(\"value\")?\"on\":e.value})})),d.focusin=\"onfocusin\"in e;var mt=/^(?:focusinfocus|focusoutblur)$/,xt=function(e){e.stopPropagation()};w.extend(w.event,{trigger:function(t,n,r,i){var o,a,s,u,l,f,p,d,y=[r||v],m=c.call(t,\"type\")?t.type:t,x=c.call(t,\"namespace\")?t.namespace.split(\".\"):[];if(a=d=s=r=r||v,3!==r.nodeType&&8!==r.nodeType&&!mt.test(m+w.event.triggered)&&(m.indexOf(\".\")>-1&&(x=m.split(\".\"),m=x.shift(),x.sort()),l=m.indexOf(\":\")<0&&\"on\"+m,(t=t[w.expando]?t:new w.Event(m,\"object\"==typeof t&&t)).isTrigger=i?2:3,t.namespace=x.join(\".\"),t.rnamespace=t.namespace?new RegExp(\"(^|\\\\.)\"+x.join(\"\\\\.(?:.*\\\\.|)\")+\"(\\\\.|$)\"):null,t.result=void 0,t.target||(t.target=r),n=null==n?[t]:w.makeArray(n,[t]),p=w.event.special[m]||{},i||!p.trigger||!1!==p.trigger.apply(r,n))){if(!i&&!p.noBubble&&!g(r)){for(u=p.delegateType||m,mt.test(u+m)||(a=a.parentNode);a;a=a.parentNode)y.push(a),s=a;s===(r.ownerDocument||v)&&y.push(s.defaultView||s.parentWindow||e)}for(o=0;(a=y[o++])&&!t.isPropagationStopped();)d=a,t.type=o>1?u:p.bindType||m,(f=(Y.get(a,\"events\")||Object.create(null))[t.type]&&Y.get(a,\"handle\"))&&f.apply(a,n),(f=l&&a[l])&&f.apply&&V(a)&&(t.result=f.apply(a,n),!1===t.result&&t.preventDefault());return t.type=m,i||t.isDefaultPrevented()||p._default&&!1!==p._default.apply(y.pop(),n)||!V(r)||l&&h(r[m])&&!g(r)&&((s=r[l])&&(r[l]=null),w.event.triggered=m,t.isPropagationStopped()&&d.addEventListener(m,xt),r[m](),t.isPropagationStopped()&&d.removeEventListener(m,xt),w.event.triggered=void 0,s&&(r[l]=s)),t.result}},simulate:function(e,t,n){var r=w.extend(new w.Event,n,{type:e,isSimulated:!0});w.event.trigger(r,null,t)}}),w.fn.extend({trigger:function(e,t){return this.each((function(){w.event.trigger(e,t,this)}))},triggerHandler:function(e,t){var n=this[0];if(n)return w.event.trigger(e,t,n,!0)}}),d.focusin||w.each({focus:\"focusin\",blur:\"focusout\"},(function(e,t){var n=function(e){w.event.simulate(t,e.target,w.event.fix(e))};w.event.special[t]={setup:function(){var r=this.ownerDocument||this.document||this,i=Y.access(r,t);i||r.addEventListener(e,n,!0),Y.access(r,t,(i||0)+1)},teardown:function(){var r=this.ownerDocument||this.document||this,i=Y.access(r,t)-1;i?Y.access(r,t,i):(r.removeEventListener(e,n,!0),Y.remove(r,t))}}}));var bt=e.location,wt={guid:Date.now()},Tt=/\\?/;w.parseXML=function(t){var n,r;if(!t||\"string\"!=typeof t)return null;try{n=(new e.DOMParser).parseFromString(t,\"text/xml\")}catch(e){}return r=n&&n.getElementsByTagName(\"parsererror\")[0],n&&!r||w.error(\"Invalid XML: \"+(r?w.map(r.childNodes,(function(e){return e.textContent})).join(\"\\n\"):t)),n};var Ct=/\\[\\]$/,Et=/\\r?\\n/g,St=/^(?:submit|button|image|reset|file)$/i,kt=/^(?:input|select|textarea|keygen)/i;function At(e,t,n,r){var i;if(Array.isArray(t))w.each(t,(function(t,i){n||Ct.test(e)?r(e,i):At(e+\"[\"+(\"object\"==typeof i&&null!=i?t:\"\")+\"]\",i,n,r)}));else if(n||\"object\"!==x(t))r(e,t);else for(i in t)At(e+\"[\"+i+\"]\",t[i],n,r)}w.param=function(e,t){var n,r=[],i=function(e,t){var n=h(t)?t():t;r[r.length]=encodeURIComponent(e)+\"=\"+encodeURIComponent(null==n?\"\":n)};if(null==e)return\"\";if(Array.isArray(e)||e.jquery&&!w.isPlainObject(e))w.each(e,(function(){i(this.name,this.value)}));else for(n in e)At(n,e[n],t,i);return r.join(\"&\")},w.fn.extend({serialize:function(){return w.param(this.serializeArray())},serializeArray:function(){return this.map((function(){var e=w.prop(this,\"elements\");return e?w.makeArray(e):this})).filter((function(){var e=this.type;return this.name&&!w(this).is(\":disabled\")&&kt.test(this.nodeName)&&!St.test(e)&&(this.checked||!de.test(e))})).map((function(e,t){var n=w(this).val();return null==n?null:Array.isArray(n)?w.map(n,(function(e){return{name:t.name,value:e.replace(Et,\"\\r\\n\")}})):{name:t.name,value:n.replace(Et,\"\\r\\n\")}})).get()}});var Nt=/%20/g,jt=/#.*$/,Dt=/([?&])_=[^&]*/,qt=/^(.*?):[ \\t]*([^\\r\\n]*)$/gm,Lt=/^(?:GET|HEAD)$/,Ht=/^\\/\\//,Ot={},Pt={},Rt=\"*/\".concat(\"*\"),Mt=v.createElement(\"a\");function It(e){return function(t,n){\"string\"!=typeof t&&(n=t,t=\"*\");var r,i=0,o=t.toLowerCase().match(P)||[];if(h(n))for(;r=o[i++];)\"+\"===r[0]?(r=r.slice(1)||\"*\",(e[r]=e[r]||[]).unshift(n)):(e[r]=e[r]||[]).push(n)}}function Wt(e,t,n,r){var i={},o=e===Pt;function a(s){var u;return i[s]=!0,w.each(e[s]||[],(function(e,s){var l=s(t,n,r);return\"string\"!=typeof l||o||i[l]?o?!(u=l):void 0:(t.dataTypes.unshift(l),a(l),!1)})),u}return a(t.dataTypes[0])||!i[\"*\"]&&a(\"*\")}function Ft(e,t){var n,r,i=w.ajaxSettings.flatOptions||{};for(n in t)void 0!==t[n]&&((i[n]?e:r||(r={}))[n]=t[n]);return r&&w.extend(!0,e,r),e}Mt.href=bt.href,w.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:bt.href,type:\"GET\",isLocal:/^(?:about|app|app-storage|.+-extension|file|res|widget):$/.test(bt.protocol),global:!0,processData:!0,async:!0,contentType:\"application/x-www-form-urlencoded; charset=UTF-8\",accepts:{\"*\":Rt,text:\"text/plain\",html:\"text/html\",xml:\"application/xml, text/xml\",json:\"application/json, text/javascript\"},contents:{xml:/\\bxml\\b/,html:/\\bhtml/,json:/\\bjson\\b/},responseFields:{xml:\"responseXML\",text:\"responseText\",json:\"responseJSON\"},converters:{\"* text\":String,\"text html\":!0,\"text json\":JSON.parse,\"text xml\":w.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(e,t){return t?Ft(Ft(e,w.ajaxSettings),t):Ft(w.ajaxSettings,e)},ajaxPrefilter:It(Ot),ajaxTransport:It(Pt),ajax:function(t,n){\"object\"==typeof t&&(n=t,t=void 0),n=n||{};var r,i,o,a,s,u,l,c,f,p,d=w.ajaxSetup({},n),h=d.context||d,g=d.context&&(h.nodeType||h.jquery)?w(h):w.event,y=w.Deferred(),m=w.Callbacks(\"once memory\"),x=d.statusCode||{},b={},T={},C=\"canceled\",E={readyState:0,getResponseHeader:function(e){var t;if(l){if(!a)for(a={};t=qt.exec(o);)a[t[1].toLowerCase()+\" \"]=(a[t[1].toLowerCase()+\" \"]||[]).concat(t[2]);t=a[e.toLowerCase()+\" \"]}return null==t?null:t.join(\", \")},getAllResponseHeaders:function(){return l?o:null},setRequestHeader:function(e,t){return null==l&&(e=T[e.toLowerCase()]=T[e.toLowerCase()]||e,b[e]=t),this},overrideMimeType:function(e){return null==l&&(d.mimeType=e),this},statusCode:function(e){var t;if(e)if(l)E.always(e[E.status]);else for(t in e)x[t]=[x[t],e[t]];return this},abort:function(e){var t=e||C;return r&&r.abort(t),S(0,t),this}};if(y.promise(E),d.url=((t||d.url||bt.href)+\"\").replace(Ht,bt.protocol+\"//\"),d.type=n.method||n.type||d.method||d.type,d.dataTypes=(d.dataType||\"*\").toLowerCase().match(P)||[\"\"],null==d.crossDomain){u=v.createElement(\"a\");try{u.href=d.url,u.href=u.href,d.crossDomain=Mt.protocol+\"//\"+Mt.host!=u.protocol+\"//\"+u.host}catch(e){d.crossDomain=!0}}if(d.data&&d.processData&&\"string\"!=typeof d.data&&(d.data=w.param(d.data,d.traditional)),Wt(Ot,d,n,E),l)return E;for(f in(c=w.event&&d.global)&&0==w.active++&&w.event.trigger(\"ajaxStart\"),d.type=d.type.toUpperCase(),d.hasContent=!Lt.test(d.type),i=d.url.replace(jt,\"\"),d.hasContent?d.data&&d.processData&&0===(d.contentType||\"\").indexOf(\"application/x-www-form-urlencoded\")&&(d.data=d.data.replace(Nt,\"+\")):(p=d.url.slice(i.length),d.data&&(d.processData||\"string\"==typeof d.data)&&(i+=(Tt.test(i)?\"&\":\"?\")+d.data,delete d.data),!1===d.cache&&(i=i.replace(Dt,\"$1\"),p=(Tt.test(i)?\"&\":\"?\")+\"_=\"+wt.guid+++p),d.url=i+p),d.ifModified&&(w.lastModified[i]&&E.setRequestHeader(\"If-Modified-Since\",w.lastModified[i]),w.etag[i]&&E.setRequestHeader(\"If-None-Match\",w.etag[i])),(d.data&&d.hasContent&&!1!==d.contentType||n.contentType)&&E.setRequestHeader(\"Content-Type\",d.contentType),E.setRequestHeader(\"Accept\",d.dataTypes[0]&&d.accepts[d.dataTypes[0]]?d.accepts[d.dataTypes[0]]+(\"*\"!==d.dataTypes[0]?\", \"+Rt+\"; q=0.01\":\"\"):d.accepts[\"*\"]),d.headers)E.setRequestHeader(f,d.headers[f]);if(d.beforeSend&&(!1===d.beforeSend.call(h,E,d)||l))return E.abort();if(C=\"abort\",m.add(d.complete),E.done(d.success),E.fail(d.error),r=Wt(Pt,d,n,E)){if(E.readyState=1,c&&g.trigger(\"ajaxSend\",[E,d]),l)return E;d.async&&d.timeout>0&&(s=e.setTimeout((function(){E.abort(\"timeout\")}),d.timeout));try{l=!1,r.send(b,S)}catch(e){if(l)throw e;S(-1,e)}}else S(-1,\"No Transport\");function S(t,n,a,u){var f,p,v,b,T,C=n;l||(l=!0,s&&e.clearTimeout(s),r=void 0,o=u||\"\",E.readyState=t>0?4:0,f=t>=200&&t<300||304===t,a&&(b=function(e,t,n){for(var r,i,o,a,s=e.contents,u=e.dataTypes;\"*\"===u[0];)u.shift(),void 0===r&&(r=e.mimeType||t.getResponseHeader(\"Content-Type\"));if(r)for(i in s)if(s[i]&&s[i].test(r)){u.unshift(i);break}if(u[0]in n)o=u[0];else{for(i in n){if(!u[0]||e.converters[i+\" \"+u[0]]){o=i;break}a||(a=i)}o=o||a}if(o)return o!==u[0]&&u.unshift(o),n[o]}(d,E,a)),!f&&w.inArray(\"script\",d.dataTypes)>-1&&w.inArray(\"json\",d.dataTypes)<0&&(d.converters[\"text script\"]=function(){}),b=function(e,t,n,r){var i,o,a,s,u,l={},c=e.dataTypes.slice();if(c[1])for(a in e.converters)l[a.toLowerCase()]=e.converters[a];for(o=c.shift();o;)if(e.responseFields[o]&&(n[e.responseFields[o]]=t),!u&&r&&e.dataFilter&&(t=e.dataFilter(t,e.dataType)),u=o,o=c.shift())if(\"*\"===o)o=u;else if(\"*\"!==u&&u!==o){if(!(a=l[u+\" \"+o]||l[\"* \"+o]))for(i in l)if((s=i.split(\" \"))[1]===o&&(a=l[u+\" \"+s[0]]||l[\"* \"+s[0]])){!0===a?a=l[i]:!0!==l[i]&&(o=s[0],c.unshift(s[1]));break}if(!0!==a)if(a&&e.throws)t=a(t);else try{t=a(t)}catch(e){return{state:\"parsererror\",error:a?e:\"No conversion from \"+u+\" to \"+o}}}return{state:\"success\",data:t}}(d,b,E,f),f?(d.ifModified&&((T=E.getResponseHeader(\"Last-Modified\"))&&(w.lastModified[i]=T),(T=E.getResponseHeader(\"etag\"))&&(w.etag[i]=T)),204===t||\"HEAD\"===d.type?C=\"nocontent\":304===t?C=\"notmodified\":(C=b.state,p=b.data,f=!(v=b.error))):(v=C,!t&&C||(C=\"error\",t<0&&(t=0))),E.status=t,E.statusText=(n||C)+\"\",f?y.resolveWith(h,[p,C,E]):y.rejectWith(h,[E,C,v]),E.statusCode(x),x=void 0,c&&g.trigger(f?\"ajaxSuccess\":\"ajaxError\",[E,d,f?p:v]),m.fireWith(h,[E,C]),c&&(g.trigger(\"ajaxComplete\",[E,d]),--w.active||w.event.trigger(\"ajaxStop\")))}return E},getJSON:function(e,t,n){return w.get(e,t,n,\"json\")},getScript:function(e,t){return w.get(e,void 0,t,\"script\")}}),w.each([\"get\",\"post\"],(function(e,t){w[t]=function(e,n,r,i){return h(n)&&(i=i||r,r=n,n=void 0),w.ajax(w.extend({url:e,type:t,dataType:i,data:n,success:r},w.isPlainObject(e)&&e))}})),w.ajaxPrefilter((function(e){var t;for(t in e.headers)\"content-type\"===t.toLowerCase()&&(e.contentType=e.headers[t]||\"\")})),w._evalUrl=function(e,t,n){return w.ajax({url:e,type:\"GET\",dataType:\"script\",cache:!0,async:!1,global:!1,converters:{\"text script\":function(){}},dataFilter:function(e){w.globalEval(e,t,n)}})},w.fn.extend({wrapAll:function(e){var t;return this[0]&&(h(e)&&(e=e.call(this[0])),t=w(e,this[0].ownerDocument).eq(0).clone(!0),this[0].parentNode&&t.insertBefore(this[0]),t.map((function(){for(var e=this;e.firstElementChild;)e=e.firstElementChild;return e})).append(this)),this},wrapInner:function(e){return h(e)?this.each((function(t){w(this).wrapInner(e.call(this,t))})):this.each((function(){var t=w(this),n=t.contents();n.length?n.wrapAll(e):t.append(e)}))},wrap:function(e){var t=h(e);return this.each((function(n){w(this).wrapAll(t?e.call(this,n):e)}))},unwrap:function(e){return this.parent(e).not(\"body\").each((function(){w(this).replaceWith(this.childNodes)})),this}}),w.expr.pseudos.hidden=function(e){return!w.expr.pseudos.visible(e)},w.expr.pseudos.visible=function(e){return!!(e.offsetWidth||e.offsetHeight||e.getClientRects().length)},w.ajaxSettings.xhr=function(){try{return new e.XMLHttpRequest}catch(e){}};var Bt={0:200,1223:204},$t=w.ajaxSettings.xhr();d.cors=!!$t&&\"withCredentials\"in $t,d.ajax=$t=!!$t,w.ajaxTransport((function(t){var n,r;if(d.cors||$t&&!t.crossDomain)return{send:function(i,o){var a,s=t.xhr();if(s.open(t.type,t.url,t.async,t.username,t.password),t.xhrFields)for(a in t.xhrFields)s[a]=t.xhrFields[a];for(a in t.mimeType&&s.overrideMimeType&&s.overrideMimeType(t.mimeType),t.crossDomain||i[\"X-Requested-With\"]||(i[\"X-Requested-With\"]=\"XMLHttpRequest\"),i)s.setRequestHeader(a,i[a]);n=function(e){return function(){n&&(n=r=s.onload=s.onerror=s.onabort=s.ontimeout=s.onreadystatechange=null,\"abort\"===e?s.abort():\"error\"===e?\"number\"!=typeof s.status?o(0,\"error\"):o(s.status,s.statusText):o(Bt[s.status]||s.status,s.statusText,\"text\"!==(s.responseType||\"text\")||\"string\"!=typeof s.responseText?{binary:s.response}:{text:s.responseText},s.getAllResponseHeaders()))}},s.onload=n(),r=s.onerror=s.ontimeout=n(\"error\"),void 0!==s.onabort?s.onabort=r:s.onreadystatechange=function(){4===s.readyState&&e.setTimeout((function(){n&&r()}))},n=n(\"abort\");try{s.send(t.hasContent&&t.data||null)}catch(e){if(n)throw e}},abort:function(){n&&n()}}})),w.ajaxPrefilter((function(e){e.crossDomain&&(e.contents.script=!1)})),w.ajaxSetup({accepts:{script:\"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript\"},contents:{script:/\\b(?:java|ecma)script\\b/},converters:{\"text script\":function(e){return w.globalEval(e),e}}}),w.ajaxPrefilter(\"script\",(function(e){void 0===e.cache&&(e.cache=!1),e.crossDomain&&(e.type=\"GET\")})),w.ajaxTransport(\"script\",(function(e){var t,n;if(e.crossDomain||e.scriptAttrs)return{send:function(r,i){t=w(\"" + ], + "text/plain": [ + ":Overlay\n", + " .Image.I :Image [lon,lat] (u)\n", + " .Coastline.I :Feature [Longitude,Latitude]" + ] + }, + "execution_count": 11, + "metadata": { + "application/vnd.holoviews_exec.v0+json": { + "id": "1004" + } + }, + "output_type": "execute_result" + } + ], + "source": [ + "#ds.sst.isel(time=0).plot()\n", + "p1=ds.u[0,-1].hvplot.image(cmap=\"RdBu_r\", width=500, height=250, coastline=True, projection=ccrs.PlateCarree())\n", + "p1.redim.range(value=(-10, 10))\n" + ] + }, + { + "cell_type": "markdown", + "id": "354a0bff-a874-4b46-8f7a-acd7713aa338", + "metadata": {}, + "source": [ + "### Winter season climatology and climatology difference" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "id": "e0a2e744-bf0b-49cf-a4bb-69088e8f0185", + "metadata": { + "tags": [] + }, + "outputs": [], + "source": [ + "# Geopotential height\n", + "z500_clm=z500.groupby(\"time.season\").mean(\"time\")\n", + "z500_smooth_clm=z500_smooth.groupby(\"time.season\").mean(\"time\")\n", + "z500_clm_diff = z500_clm - z500_smooth_clm\n", + "\n", + "# U component of wind\n", + "u300_clm=u300.groupby(\"time.season\").mean(\"time\")\n", + "u300_smooth_clm=u300_smooth.groupby(\"time.season\").mean(\"time\")\n", + "u300_clm_diff = u300_clm - u300_smooth_clm\n" + ] + }, + { + "cell_type": "markdown", + "id": "0b88b2a5-c2ce-4528-8ad0-5a654b7770be", + "metadata": {}, + "source": [ + "### Wilcoxon significance test for the climatology differences" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "id": "c5a6be4b-42ce-4515-bd86-42dc9a8733a5", + "metadata": { + "tags": [] + }, + "outputs": [], + "source": [ + "def month_selector(month):\n", + " return (month >= 1) & (month <= 2) | (month >=12) # select Jan, Feb, Dec\n", + "\n", + "def djf_average(x_djf):\n", + " x_djf = x_djf.rolling(time = 3).mean() # rolling mean over three months: JFD, FDJ, DJF, ...\n", + " x_djf = x_djf[x_djf.time.dt.month == 12] # pick rolling mean that starts with Dec\n", + " return x_djf\n" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "id": "21fa84b1-927c-4741-a499-d5e4c5ab0f7a", + "metadata": { + "tags": [] + }, + "outputs": [], + "source": [ + "# Geopotential height\n", + "z500_djf = z500.sel(time=month_selector(ds[\"z\"]['time.month']))\n", + "z500_djf = djf_average(z500_djf)\n", + "\n", + "z500_smooth_djf = z500_smooth.sel(time=month_selector(ds_smooth[\"z\"]['time.month']))\n", + "z500_smooth_djf = djf_average(z500_smooth_djf)\n", + "\n", + "# U component of wind\n", + "u300_djf = u300.sel(time=month_selector(ds[\"u\"]['time.month']))\n", + "u300_djf = djf_average(u300_djf)\n", + "\n", + "u300_smooth_djf = u300_smooth.sel(time=month_selector(ds_smooth[\"u\"]['time.month']))\n", + "u300_smooth_djf = djf_average(u300_smooth_djf)\n" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "id": "02fbd26c-eac2-4e52-89e2-b82c9ebd2422", + "metadata": {}, + "outputs": [], + "source": [ + "import scipy.stats as stats\n", + "\n", + "def wilcoxon_gufunc(x,y):\n", + " s,p = stats.wilcoxon(x, y) \n", + " return p" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "id": "26e0eab4-4fad-4dee-83f0-24406d26586f", + "metadata": { + "tags": [] + }, + "outputs": [], + "source": [ + "def wilcoxon_xr(x, y, dim):\n", + " return xr.apply_ufunc(\n", + " wilcoxon_gufunc, # first the function\n", + " x, # now arguments in the order expected by the function\n", + " y,\n", + " #input_core_dims=[[\"time\"],[\"time\"]], # list with one entry per arg\n", + " input_core_dims=[[dim],[dim]], # list with one entry per arg\n", + " output_core_dims=[[]],\n", + " #exclude_dims=set((\"lat\",)),\n", + " dask=\"parallelized\",\n", + " output_dtypes=[float],\n", + "\t\t#dask_gufunc_kwargs={'allow_rechunk': True},\n", + " vectorize=True, # loop over non-core dims\n", + "\t)\n" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "id": "10a3728e-fd4e-4289-97cb-0a810e6dd9bc", + "metadata": { + "tags": [] + }, + "outputs": [], + "source": [ + "z500_wt = wilcoxon_xr(z500_djf.chunk({\"time\": -1, \"lon\":100, \"lat\":100}), z500_smooth_djf.chunk({\"time\": -1, \"lon\":100, \"lat\":100}),dim=\"time\").compute()\n", + "u300_wt = wilcoxon_xr(u300_djf.chunk({\"time\": -1, \"lon\":100, \"lat\":100}), u300_smooth_djf.chunk({\"time\": -1, \"lon\":100, \"lat\":100}),dim=\"time\").compute()\n" + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "id": "00b371f0-9762-4632-b804-f00ffc414d31", + "metadata": { + "tags": [] + }, + "outputs": [], + "source": [ + "#z500_wt.hvplot.image(cmap=\"RdBu_r\", width=1000, height=500, coastline=True)" + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "id": "525f8da7-b477-43dc-aabf-c7de067cd0ba", + "metadata": { + "tags": [] + }, + "outputs": [], + "source": [ + "# H0: means are the same\n", + "# for p-value smaller 0.05 (0.1) H0 can be rejected, thus means between the experiments are not the same\n", + "z500_clmdiff_mask=z500_clm_diff[0].where(z500_wt < 0.1)\n", + "u300_clmdiff_mask=u300_clm_diff[0].where(u300_wt < 0.1)\n" + ] + }, + { + "cell_type": "markdown", + "id": "c4b42347-10cb-46e9-91bc-e3bfae0e81dc", + "metadata": {}, + "source": [ + "### Plot clm differences " + ] + }, + { + "cell_type": "code", + "execution_count": 20, + "id": "54107ef8-c614-447f-bb11-2f7ec1df99c9", + "metadata": { + "tags": [] + }, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/sw/spack-levante/mambaforge-22.9.0-2-Linux-x86_64-kptncg/lib/python3.10/site-packages/cartopy/mpl/geoaxes.py:1714: UserWarning: The following kwargs were not used by contour: 'linewidth'\n", + " result = matplotlib.axes.Axes.contourf(self, *args, **kwargs)\n" + ] + }, + { + "data": { + "text/plain": [ + "Text(0.5, 1.0, 'U300 DJF diff')" + ] + }, + "execution_count": 20, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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CgoK/qIIRwWF45i8vDyuvPJKZFlGrVbz2WefkZiY2GPna56qp2XQRf/+/b3bGoMz2mP16tUAJCcnt0rhMmPGDO/rjtrZsmWLd6l6+vTpnXc+SLz33nuYzWbAU4bQ3+Cj3mLAgAGYTCYANm/e3OG+nb2voKCg0BJFOCooHKc4nU4uuOACr0/bI488wpw5c3rsfIcOHWL58uWAx98xOTnZ531BELz5IjMzM9mwYUOb7WzYsMFrSTzrrLPaLGfXmCfygw8+aNfK+f7773tfn3POOYFfUBfIysri3nvv9f79r3/9q1fOGwgajcZbcWfZsmUUFxe3uZ8kSd5SgAoKCgr+oghHBYXjlNtvv92bgPnkk0/mvvvu63JbixcvRhTFdt8vLS3l/PPP91aiuemmm9rc77bbbvNa4G655ZZWKXLq6+u55ZZbAI/Aue2221q1odPpvKl+9u/fz8KFC1vts379et555x3AU5aws+jhYPDjjz8ybdo0b0T1vffey+jRo3v8vF3hhhtuADxR59dffz1ut7vVPk888YRSuUVBQSFgjq01FgUFBb/4/PPPee211wBPFPI999zD3r17/T4+JCTEpwThLbfcgsvl4rzzzmPq1Kn069cPo9FIRUUFv//+uzcBOHiWktsTjoMGDeKf//wnTz75JFu2bGH69Oncc889DBgwgJycHJ566ilvYMldd91FRkZGm+3cddddfPHFFxw8eJC7776b7OxsLr74YoxGIytXruS///0voihiNBp54YUX/L7ujsjNzSU2Nhbw+HLW1tZSXl7O5s2bWbx4sY/Iuvbaa/nPf/4TlPP2BGeccQZnnHGGt4LM9OnTuf3228nIyKCsrIz333+fL774gokTJyrL1QoKCoEhKygoHHfMmTNHBrr8b/bs2T7tpaWl+XXceeedJ1dXV3fYN7fbLV999dUdtnPNNdfIbre7w3aysrLkjIyMdtsIDw+XFy9e3K3P8aGHHgrocxs2bJi8aNGiDtvMzc317n/VVVe1uU/j552Wltat/ndEbW2tPH369HavZdy4cfK2bdu8f7/33nut2mj++bTFe++9530/Nze33b5ceeWVPX69CgoKvYNicVRQOA6Rg5xG5YMPPmDVqlWsX7+eQ4cOUVFRQW1tLaGhoaSmpjJt2jSuvPJKpk6d2mlbKpWKd955h/POO48333yTzZs3U1FR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x13+LyQkRHnttdcUm81W635re64VpfLr586/plRe1hkzZlS5reLzs2bNmmrvP2HCBAVQfH19lc8++0zZtm2bEh8fr8THxysmk0lRFEUxGo2Kn5+fAihdunRRfv/9d2X37t1KfHy8cvDgwSY8OkEQGpumcWOoIAjnKj8/P0aPHs2gQYNo3749EREReHp6kp6eztq1a/n2228pLCzkmWeewd/fn3vuuafa/fzzzz/cddddyLJMWFgYzz33HIMGDSIvL4+vvvqKBQsWsGXLFq688krWrFmDSlV9w8cdd9zBkiVLABgzZgwPP/wwbdq0IT4+njfffJOEhARefPFFIiIimDlz5lkf/7333st9993n+rukpIT8/Hz27dvHqlWrWLlyJdnZ2bzwwgssXryYJUuWEBISctaP+88//9CmTZuz3k9TGD16NIqi1Hi7zWZj3bp1ANx1113ce++91W63fft2CgsLAZg1axZTpkxp/MIKgtA8Wjq5CoJQf41d46goimK322u9/4kTJ5SAgABXzVt129tsNqVjx46uGqjjx49X2ea+++5zlf3777+v9rHWrl3r2mbatGlVHis7O1tp166dAigBAQFKfn5+rWWvScUatZdeeqnWbffv36/07dvXtf3w4cMVi8VS7bb1qXF09/VrKrXVONYlPT3ddRyzZ8+ucbuff/7Ztd3Ro0fPorSCILQ00cdREAQA1Gp1rbfHxsZy3XXXAZCdnc3hw4erbLNw4UKOHz8OwDPPPEOHDh2qbPPOO+8QEBDgulyd//73v64yffbZZ1XKFhwczNtvvw1Afn4+33zzTa1lbwzdu3dn06ZN9O3bF4CNGzfy2WefNfnjtmYWi8V1WavVnvV2giC0fiI4CoLgNi8vL9dls9lc5fZFixa5Llc3ShfA09OTa6+9FnCOxj127Fil20tKSli1ahUAEyZMoG3bttXu58orr8TX1xeABQsWuH0MZ8PDw4Mff/zRNWBl1qxZNQ4GaS3+97//MXnyZEJCQvD09CQuLo7HHnuM9PT0Ou9b06jql19+GUmSiI2NdV132223VRrQ8/LLLzN69GgkSeK2225zbRcbG1tpu9pGawuC0PqI4CgIgltMJhN//vknACqViri4uCrbbNiwAYDOnTsTHh5e475GjRrlurxx48ZKt23bts1VQ1VxuzPpdDoGDx7suk9zBbju3bszYcIEANLS0ti+fXuzPG5DPPLII0yZMoVly5aRk5ODyWTi2LFjvP/++/Tt25edO3e2dBEFQTjHiOAoCEKNbDYbycnJzJs3j6FDh7qaoW+77TZ8fHwqbVtSUkJqaioAXbp0qXW/FW8/dOhQpdsq/u3ufux2e5Way6Y0fvx41+XysNzavPvuu3z44YcAtGnTho8//pitW7eybt06nnzySQoKCrj66qsxGo313vd9991HfHw8//zzj+u6119/nfj4eNe/++67jzlz5hAfH8/rr7/u2u6ff/6ptN2AAQPO/mAFQWg2YlS1IAiVnDx5slIT5JnGjx/Pu+++W+X61NRU1wjcmpqXy0VFRbkup6SkVLqt4t/13U+3bt1q3b6x9OvXz3X56NGjZ7Wvo0ePUlJSUuPtnTt3rne/wMzMTF588UUAoqOj2bJlS6Ua4JEjRzJx4kQmTpxYrzk1y4WGhhIaGoq3t7frusjISHr06FHt9jt27HBdjouLq3F+S0EQWj8RHAVBcEtQUBCffPIJ11xzTbUDaYqLi12XKwaK6lTsK3lmaGqs/TSloKAg1+X8/Pyz2tfEiRNrvT0xMbHeQev777931SS+++671XYbGDt2LHfeeSeff/55vfYtCMKFTTRVC4JQSWRkpKsZcffu3SxZsoQHHngAo9HIfffdx9tvv13t3H4VB8vodLpaH0Ov17sum0ymJtlPU6oYaCsG3dZi5cqVAAQEBHDZZZfVuN3tt9/eXEUSBOE8IWocBUGoRKvVVmpy7NOnD1OmTOHOO+9kzJgxPPfccxw/fpxvv/220v0MBoPrcl1L81WcnsXDw6NJ9tOUKobF8pHdDdWQGsW6xMfHA9C3b180mpq/5vv06YNOp3N7KUVBEARR4ygI56CGrF9cXkvY0LWPe/Xq5RrkMGfOHJYvX17p9oqDZepqNi4tLXVdPrM5urH205RycnJclwMDA5vtcd1V3nweGhpa63bla3ILgiC4SwRHQTgHVaxdc3dUbHnIqtgvsL4qNnv+/vvvlW6rOJClfHR1TSoOgKk4wKUx99OUdu/e7brcuXPnZnvc+nLnR0J13Q4EQRBqIoKjIJyDKtYSZWRk1Lm9xWKhoKCgyn3rq+LazElJSZVu8/b2doW36laVqaji7V27dq10W8WR0e7uR6PR0LFjx1q3bUwrVqxwXR4+fHizPa67ylfmyczMrHU7u91+1oN7BEG4sIjgKAjnoF69erku79q1q87t9+7di8PhqHLf+kpLS3Ndrq5puDxEHTlypNZAu27dOtflYcOGVbptwIABrkExFbc7k9VqZcuWLVXu09T279/vWtkmKiqKiy66qFketz569uwJwJ49e2qdbmfv3r2if6MgCPUigqMgnINGjhzpGvTwyy+/1Nnc+NNPP7kujxs3rsGP+9tvv7kul4eTii6//HLX5e+++67afRiNRn799VfAWbt45go0Pj4+rjKuXLmyxubqBQsWUFRUBMAVV1zh9jGcDZPJxPTp013P9+OPP17r4JOWUj5BeV5eHosXL65xuzMHOAmCINRFBEdBOAeFh4dz9dVXA84ax//85z81brt69Wq++OILwDkZ9LRp06pss2jRIk6dOlXrY65fv55XX30VcDYN33DDDVW2ueKKK+jQoQMAb731FgkJCVW2eeKJJ1zNo0888US1j/X4448DzqbU+++/31VbWi4nJ4ennnoKAH9/f2bOnFlr2RvDwYMHGT58uKt/46hRo7j33nub/HEbYsaMGa5+sI899li1Tdbr1q1j9uzZzV00QRDOca3vp7IgCG557733WL16NVlZWTz77LOsXbuWm2++mbi4ODQaDampqSxevJjvv/8eu92OSqVizpw51daQLVq0iOuuu44pU6Ywbtw4unfvjr+/PxaLhYSEBBYvXsyvv/6KLMsAvPDCC9UOCtFqtXz00UdMmzaNoqIihg0bxvPPP8/AgQPJz8/nq6++4o8//gCczdq33HJLtcc2duxYrr/+eubNm8dff/3FhAkTeOSRR2jTpg3x8fG88cYbJCcnA/Cf//zH1afvbGRlZbF//37X36WlpeTn57Nv3z5WrVrFihUrXDWNgwcP5vfff6/3ii7NJSwsjNdee43HH3+ckydP0r9/f5555hkGDhyI2Wzmf//7H++//z6RkZEYjUays7NbusiCIJwrFEEQzlmHDx9WunbtqgC1/vP391eWLFlS435mzJhR5z4AxcPDQ5k1a1ad5Zo9e7ai0+lq3M/AgQOV7OzsWvdhNBqVSy65pMZ9qFQq5aWXXqrvU1bJmjVr3Dru8n8hISHKG2+8odhstlr3Gx0drQBKTExMtbdXfL4TExPP6hhq89BDD9V4LMHBwcr27dtdZZ0xY0aV+1d8ftasWVPl9sTERNftc+bM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", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "fig=plt.figure(figsize=(20,20))\n", + "proj=ccrs.PlateCarree()\n", + "\n", + "z500_levels = np.linspace(-20, 20, 11)\n", + "u300_levels = np.linspace(-3, 3, 11)\n", + "\n", + "ax1 = plt.subplot(321, projection=proj)\n", + "ax1.coastlines(resolution='110m')\n", + "p = ax1.contourf(ds.lon, ds.lat, z500_clm_diff[0],\n", + " #ds.lon.sel(lon=slice(0,60)), ds.lat.sel(lat=slice(40,60)), z500_clm_diff[0].sel(lat=slice(40,60),lon=slice(0,60)),\n", + " vmin=-20,vmax=20,levels=z500_levels,\n", + " extend='both',\n", + " cmap = plt.get_cmap('Spectral_r'),\n", + " transform=ccrs.PlateCarree())\n", + "pp=ax1.contourf(ds.lon, ds.lat, z500_clmdiff_mask, colors='none', #alpha=0.5,\n", + " #vmin=-1,vmax=1,levels=levels,\n", + " hatches=['...','...'],linewidth=15,\n", + " #transform=ccrs.PlateCarree()\n", + " )\n", + "cbar = plt.colorbar(p, orientation='horizontal', shrink=0.8)\n", + "cbar.set_label('m',fontsize=15)\n", + "#cbar.set_clim(0,5)\n", + "cbar.ax.tick_params(labelsize=20)\n", + "ax1.coastlines()\n", + "ax1.set_title('Z500 DJF diff',fontsize=20)\n", + "#ax1.set_global()\n", + "\n", + "ax2 = plt.subplot(323, projection=proj)\n", + "ax2.coastlines(resolution='110m')\n", + "p = ax2.contourf(ds.lon, ds.lat, u300_clm_diff[0],\n", + " vmin=-3,vmax=3,levels=u300_levels,\n", + " extend='both',\n", + " cmap = plt.get_cmap('Spectral_r'),\n", + " transform=ccrs.PlateCarree())\n", + "pp=ax2.contourf(ds.lon, ds.lat, u300_clmdiff_mask, colors='none',\n", + " #vmin=-1,vmax=1,levels=t2m_levels,\n", + " hatches=['...','...'],linewidth=15,\n", + " #transform=ccrs.PlateCarree()\n", + " )\n", + "cbar = plt.colorbar(p, orientation='horizontal', shrink=0.8)\n", + "cbar.set_label('m s**-1',fontsize=15)\n", + "#cbar.set_clim(0,5)\n", + "cbar.ax.tick_params(labelsize=20)\n", + "ax2.coastlines()\n", + "ax2.set_title('U300 DJF diff',fontsize=20)\n", + "#ax1.set_global()\n", + "\n", + "\n", + "#ax1.set_global()\n", + "#plt.savefig('....png', bbox_inches='tight', dpi=300)" + ] + }, + { + "cell_type": "markdown", + "id": "194d506e-70f3-4a84-aada-f88da05b71e3", + "metadata": {}, + "source": [ + "### Effect of prescribed eddy-rich SST-forcing on the winter mean state in the North Atlantic\n", + "#### Z500" + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "id": "bf3176b7-5300-4306-bf2b-32aee39a9c34", + "metadata": { + "tags": [] + }, + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAABiIAAAGTCAYAAAClEwrlAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjUuMywgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/NK7nSAAAACXBIWXMAAA9hAAAPYQGoP6dpAAEAAElEQVR4nOydd4AkZZ33P0+Fzt2Tw+acE0uGBXYRUU6JShIUMHLCAWbR88Rwh8qpp57KKb6AImJAgmAis4QFFljCRtgcJ6fOXeF5/6ju3pmdmZ2wk3Z5PjjOToWnnqqurvo+zy8JKaVEoVAoFAqFQqFQKBQKhUKhUCgUCoViGNBGuwMKhUKhUCgUCoVCoVAoFAqFQqFQKI5clCFCoVAoFAqFQqFQKBQKhUKhUCgUCsWwoQwRCoVCoVAoFAqFQqFQKBQKhUKhUCiGDWWIUCgUCoVCoVAoFAqFQqFQKBQKhUIxbChDhEKhUCgUCoVCoVAoFAqFQqFQKBSKYUMZIhQKhUKhUCgUCoVCoVAoFAqFQqFQDBvKEKFQKBQKhUKhUCgUCoVCoVAoFAqFYthQhgiFQqFQKBQKhUKhUCgUCoVCoVAoFMOGMkQoFAqFQqFQKBQKhUKhUCgUCoVCoRg2lCGiH0ydOhUhRL9/OvONb3zjoNveeOONvR73+eef533vex/l5eVEIhGOP/54fv3rXx+0r7t37+ZjH/sY48ePJxAIMHv2bL7+9a+TyWSG5Fr0hhCCqVOnDusxDsZTTz3V7doGg0Fqa2s56aSTuOGGG3jhhRf63H/FihV9tnvgzze+8Y0B9XXz5s34fD6+8pWvDOJM31kUvnsDZbTvx74YTP96uhbbt2/v8b4dbs477zxqa2tJJBIjelyF4p2I0iB9M9rPfKVBFGONwr1z1VVXjWo/etIua9asQQjBf//3f49SrxQKhWJkUBqub5SGG5r+H/i+L9w/d955Z7d9XnnlFd7znvdQWlpa7Mv27dsBSCaTXH/99UyaNAnDMIasnwpFZ4zR7sDhwIUXXkhTU9NBt3niiSfYtWsX48eP73H9smXLmDlzZrflxxxzTI/b33///Vx00UW4rstpp51GZWUljz/+OFdddRWvv/46P/zhD7vts2XLFk466SQaGxtZuHAhp556Ki+//DLf/va3eeyxx3jyySfx+/39OOPDl5qaGs466ywAbNumpaWF119/nRdeeIGf/OQnvOc97+HXv/41tbW1g273QI466qgBtfWVr3wFv9/P5z//+QHtp/DYvn0706ZNY/ny5Tz11FOj3Z13JDfddBPHHHMMt9xyC9/61rdGuzsKxRGN0iCHD0qDKEaKO++8k49+9KPcdNNNh90EwdKlSzn33HO5+eab+fjHP055eflod0mhUCiGBaXhDh8OBw03FMTjcc4991z27dvHihUrmDRpEkIIIpEI4OnE//3f/2XmzJlcfPHF+Hy+Uemn4ghHKg6ZF154QZqmKXVdl0899VSXdTfddJME5B133NHv9lpaWmRJSYkE5J///Ofi8rq6Ojlz5kwJyCeeeKLbfqeddpoE5PXXX19cZlmWvOCCCyQgv/71rw/85PoJIKdMmTJs7ffFk08+KQG5fPnyHtevXLlSHnXUURKQc+fOle3t7f3av692B8orr7wiAfmZz3xmSNo70tm8ebPcsGFDl2Xbtm3r8zMZ7fuxLwbTvylTpsgDH9m5XE5u2LBB7tixYwh71z/e+973ylAoJJuamkb82AqFYj9Kg4z+M19pEMVIc8cdd0hA3nTTTT2uL9w7V1555Yj260B60i5SSrlq1SoJyC996Uuj0CuFQqEYGygNpzTcodLb+76xsVFu2LBBtrW1dVn++OOPS0B+5CMf6bG9SZMmyWAwKBOJxHB1WaGQKjXTIdLW1sall16KZVl8/etfZ/ny5Yfc5q9+9Sva29s577zz+MAHPlBcXlNTwy233ALQzZK9evVqVq5cSXV1dXEbAMMwuPXWWzFNk//93//FsqxD7t/hyKmnnspzzz3HokWL2Lhx46h5j916660AXHHFFaNy/MONGTNmMHfu3NHuxpjFNE3mzp3L5MmTR/zYH/7wh0mlUn2G+SoUiuFDaZDDA6VBFIqunHjiicycOZPbb7+dXC432t1RKBSKEUdpuMODsaLhBkplZSVz586lpKSky/Ldu3cDMH369B732717N9XV1YTD4WHvo+KdizJEHCIf//jH2b59O6effjpf+9rXhqTNhx9+GPBC+Q7k/e9/P4FAgMcee6xLvr7CPuecc063sLmamhpOPfVUWltbee655wbUl7///e+cffbZVFdX4/f7mTx5Mueffz5//etf+9y3c766hoYGPv7xj1NbW0skEuGUU07h+eefL277f//3fyxevJhgMMikSZP45je/ieu6A+prX4RCIf7nf/4HgF/+8pfDnu/wQBKJBL///e+ZN28eS5cu7XEbKSW//vWvOe200ygtLSUYDLJ48WK+//3vd3n5O47DsmXLEEIUJxY689RTT6HrOpMmTaK1tbW4vJCnUkrJj3/8Y+bPn08gEGDChAlcf/31tLW1Dcm5Tp06lWAw2O0a/9u//RtCCKZNm9Ztn7PPPhshBOvWrevW3wLf+MY3ivs+/fTTXXIs9pQH2XEcbrnlFmbPno3f72fSpEl8+ctfJpvNDvic3nzzTS6//HImTJiA3+9n/PjxfPSjHy3mUzyQZDLJl7/8ZSZPnkwgEGDu3Ln88Ic/RErZ6zFs2+Y73/kOs2bNIhAIMH36dP7jP/6j10F6XzUinn32WS644ILi93fq1Klcf/31NDY2dtvWsix+8YtfcPzxx1NZWUkoFGLq1KmcffbZ/P73v++2/fnnn08wGOS2227r9XwUCsXwojRI7ygN0pV3kgYB2LVrF9deey1z5swhFApRXl7OggULuPrqq9m0aVNxu87v0WQyyec+9zkmTZpEMBjk6KOP5qGHHipu+6c//Ynjjz+ecDhMTU0N119/Pel0utfjX3311UyZMgW/3091dTUf+MAHWL16da99XrVqFeeddx5VVVXFd/Y111zD3r17u2y3YsUKPvrRjwLwzW9+s4sW6ikXdEtLC5/+9KcZN24cfr+fhQsXcvvtt/faj+3bt3P11VczdepU/H4/VVVVXHjhhbzxxhs9bj9Q7VLgQx/6EE1NTdx///0H3a4znXNev/jii7z3ve+ltLSUWCzGmWeeedA83gqFQjGWUBqud5SG68727dv50Ic+REVFBZFIhJNPPvmg1/LAGhEFvXPllVcCXfXDVVddxYoVK4oabceOHb3WLlEohoTRDMc43PnJT34iAVldXS337t3b4zaFkLqPfOQj8oYbbpBXX321/Pa3vy1ffvnlXtstLS2VgFy3bl2P64899lgJyNdee6247LzzzpOA/NnPftbjPl/4whckIH/0ox/1+/w+97nPSUDqui5POeUUeemll8rTTjtNxmKxbiFm9BBSVwgTO/fcc+X06dPl+PHj5fnnny9POOEECchQKCTXrl0rr7/+ehkIBOTy5cvl2WefLaPRqATkV7/61X73dSChb1VVVRKQK1eu7HP/oQype/jhhyUgP/3pT/e43nEcedFFF0lAxmIxecYZZ8jzzjtP1tbWSkC+733vk47jFLffsmWLjEajMhgMdklf1NraKidNmiSFEPLxxx/vcoxCiPy1114rTdOUZ555prz44otlTU2NBOTixYtlR0dHt74BEpDbtm3r17leccUVEpBPPvlkl+ULFizosS3btmVJSYmsrKyUrut262+B+++/X37wgx+UgKypqZFXXnll8ee2227r0t8pU6bISy65RIbDYXn66afLs88+uxiqevnll/frPArce++90ufzSUAec8wx8sILL5RLly6VgKyoqJBr167tsn0mk5Enn3yyBGRlZaW88MIL5Xvf+15pmqa85ppreg1BvfDCCyUgI5GIPO+88+S5554rQ6GQfP/73y8nT57cLb3BwdJU/fjHP5ZCCKnrujzppJPkhRdeKOfOnSsBOW3atG7PrEsuuaTY33POOUdecskl8pRTTunx+17g1FNPlYDcsmXLgK6nQqE4dJQG2Y/SIH3zTtIgu3btkpWVlcU2L774YnnuuefKJUuWSCFElzQXhffoSSedJE844QRZWVkpzz77bLlixQqpaZrUdV0++uij8oc//KE0DEOedNJJ8vzzz5cVFRUSkJdddlm347/xxhvF48+dO1deeumlRU1gGIb84x//2G2fu+66S+q6LoUQctmyZfLSSy+Vs2fPLuqdztf4O9/5jly2bJkE5JIlS7pooWeeeUZKuf/eOe+88+Ts2bNlTU2NPOecc+Tpp58udV2XQBfdVOCZZ56RsVhMAnLBggXywgsvlCeddJIUQshgMNhjSo+BapcCfaWH6InCM+2Tn/yk9Pl8cv78+fLSSy8tPpd8Pp985JFH+t2eQqFQjAZKw+1Habi+2bx5s6yurpaAnD17trz00kvlCSecIIUQ8tOf/nSPqZkOTO3V2Ngor7zyyh71w2233Sa/853vyCuvvFICMhwOd9EWCsVQowwRg+TVV1+Vfr9fCiHkP/7xj163KzwAevr54Ac/KOPxeJft29vbi+sPzD9X4Pzzz5eA/Mtf/lJcVpgUffDBB3vc50c/+pEE5Oc+97l+nd9dd90lATlx4kT5+uuvd1mXSCS6DS4P9gIB5CWXXCLT6XRxXeG6zJ8/X06YMKHLRO66deukz+eToVCo2/XpjYE86N/97ndLQP7iF7/oc/+hfIF8+ctfloC8/fbbe1z/ve99TwLyzDPPlA0NDcXliURCnnPOORKQP/3pT7vsc+eddxYnx3O5nJRSyosvvlgC8gtf+EK3YxQmAWKxWBcRE4/H5bve9S4JyM9+9rPd9hvoJMDtt98uoWvu4sbGRimEKBojOk8ErF69uvid6Km/nelvjQhAzps3r0uft27dKsvKyiQgN2/e3K9z2bp1qwyFQrKkpEQ+/fTTXdb9+te/loA87rjjuiy/+eabJSCPP/74LnkZX3nlleIA/8Dvy+9+9zsJyOnTp8vdu3d3Of7EiROL59Sfa7Fq1SqpaZqcMmVKl++v67ryW9/6lgTkhRde2K2d4447rsv3VEopU6mUfP7553u8Np///OclIO+8884e1ysUiuFBaRClQQbKO0mDFD7fH/zgB93Wbd++vcv7v/D+A+SKFStkS0tLcV2hDsPMmTNleXl5l4mHPXv2FCcFOhvjXdeVixYtkoD8yle+0sW54k9/+pPUNE1Go1FZV1dXXL5z504ZDAalYRjyoYceKi53HEd+5jOf6VFn9LdGROG73jnX8wMPPCABOXny5C77tLe3y9raWmmapvzTn/7UZd2jjz4qfT6fnDBhgsxms8Xlg9EuBTo6OqSmaXLq1Kk9ru+Jzs+0r371q12u789//nMJyPHjx3fTMgqFQjFWUBpOabiB8p73vEcC8pprruniFHLbbbcVr1NfhogCfemHnj4PhWKoUYaIQdDR0SFnzZolAXnjjTcedNu77rpLfv/735fr1q2TiURC7tq1S959991ywoQJEpDnn39+l+337NlTfJhYltVjm5dffrkE5O9+97viskJ/Hn300R73KTykPvWpT/XrHOfNmycBee+99/Zr+4O9QEpKSmRra2uXde3t7VII0euguFAY6UCP+t4YyIP+0ksvlYD87ne/2+f+nV+CPf0sWbKkX/2TUsp/+Zd/kYB87rnnuq2zLEtWVlbKaDQqGxsbu62vq6uTfr9fLlq0qNu6ggfjV77yleKkwJIlS7oMFAsUJgF68hJYv369FELIWCwmM5lMl3Vz5syRc+bM6TLIPBhbtmzpdj3vvfdeCcjf/va30ufzdXlZfv/735eA/N///d8e+9uZgRgiHnvssW7rrrvuuh5fyr1xww03dBMcnSkIuldeeaW4bNKkSb1+1l/5yld6/L4Uogvuvvvubvv84he/GJAhouDZ8s9//rNbW67ryqVLl0pN04r32osvvigBecMNN/R4jr1ReK70NHGkUCiGB6VBuqM0SN+8kzRIwTtwzZo1fW5beI/qui7ffvvtLuscxyl6P/ZUqPOzn/1sNz3xxBNPSPAiD23b7rbPBz7wAQnI73znO8VlX//61yX0HBmQyWTk+PHjJSBXrVpVXN5fQ0QsFpPNzc3d1heMJZ2NO//zP/9T/Cx7omAU6VwAdTDapTOFZ1Fvk2YHUphYmTJlSo/PqIK3bOfnk0KhUIwVlIbrjtJwB2fz5s0SkGVlZT0WkC5EXCpDhOJwQtWIGARXX301b7/9NieffDLf/va3D7rthz/8YT7/+c8zf/58wuEwEydO5LLLLmP16tVUVFTwwAMPdMlxJw+SP/5g2xSW9ZbDrT/tFti7dy8bNmygoqKCD37wg/3erzeOPfZYSktLuyyLxWJUVFQAcOaZZ3bbZ8aMGQDs27fvkI9/IH1dq56oqanhyiuv7PZz7rnn9ruNhoYGAMrKyrqtW7NmDU1NTZxyyilUVlb2ePxZs2axdu3abvmIf/GLXzBx4kS+973vce211xIIBLj77rvx+Xy99uXSSy/ttmzevHksWbKEjo6ObnmAN27cyMaNG5kwYUK/znX69OlMnjyZF154oZhDsZDr8ayzzuK4447jqaeeKm5f+PdQFOkqYJpmj7UTZs+eDfT/3nr00UcBOO+883pcf8oppwAU8z7v3LmTXbt2MWHCBE4++eRu23/oQx/qtsyyLF588UU0Tesxp2dP+/SG67o8/vjjRKNRzjjjjG7rhRAsW7YM13V55ZVXAJg7dy7hcJg77riD2267jebm5n4dq7y8HKDHmhMKhWJ4UBpkYCgN4vFO0iDHHHMMANdeey1PPvkktm33uc/UqVOZOXNml2WapjFlyhSg//fJM888A8All1yCruvd9vnIRz7SZbvO/7788su7be/3+7nooou67dNfjj322OK7ujM9aaGC3jn//PN7bOtAvTMU2mWwOuKDH/wghmH0esxnn312QO0pFArFSKA03MBQGo5ibY73ve99PRaQ7klTKRRjne4KTnFQbrvtNu655x7Kysq45557ehTB/WHcuHF89KMf5fvf/z7//Oc/ixOW0Wi0uE0qlSIWi3XbN5VKARCJRIrLCvslk8kej9fTPr2xa9cuYP9D/FDpbeAYDodpamrqcX3hITuYosJ90dTUBNDjwKw35s6d22MBwIHQ3t4OdP2MCxQKHv/973/v88XW0tLS5ZqVlZXxs5/9jPPOO49kMskPfvADFixYcNA2CgPrA5k6dSqvvfZat8KIg2H58uXcddddvPDCC6xYsYKnnnqKRYsWUVFRwYoVK/iv//ovtm/fzuTJk3n22WeprKxk4cKFh3zcAuPGjetxEqDwHejvvVX4bGpraw+6XeG+Kly7yZMn97hdT8ubm5vJ5XKMGzeux8mbaDRKaWlpvwp5Njc3k0gkAPp8PhX6HIvFuO222/jUpz7Fpz71Ka6++mrmzJnD6aefzhVXXMGJJ57Y4/6F51Ph3lYoFMOL0iADR2kQj3eSBrnqqqt45JFH+OMf/8i73vUuQqEQxx57LP/yL//Cxz72Maqrq7vtc7D7pLf1Pd0nhb5PnTq1x/YKyzuf42D26S8TJ07scXlPWqhwH5xwwgkHbbNwDw+FdhmsjjjYPQSDu1YKhUIxnCgNN3CUhhvc3IJCMdZRhogBsG7dOm644QYA7rjjjkP+0s+aNQvoaq2NxWKUlJTQ3t7O7t27mT9/frf9du/eDXR96EyePJk1a9YU1/Vnn74YiKX3UNoZquP0l9dffx2gx2s7nJSUlADQ0dHRbZ3jOIB3T/TkRd8Zv9/fbdkf/vCH4r9ffvnlQfdxIB4PfVEwRBQMEOvWreO6664DKBoinnrqKRYvXkxbWxsf+MAHhvReGKq2HMdBCMEVV1xx0O0KEy99eUr0tHww3hW9UbiXotEoH/jABw66beeB/Ic+9CHe/e538+CDD/LII4/w9NNPc+utt3LrrbfyxS9+kVtuuaXb/oWJg8K9rVAohg+lQQaH0iAe7yQNous6f/jDH7jxxht58MEHefLJJ3nhhRdYuXIl3/nOd/jnP//ZzcA+1PfJYNobjnt1IPsU7oOLLrqIUCjU63YFQ8VQaJeh1hFDqWMVCoViqFAabnAoDTe08wQKxVhBGSL6SSqV4uKLLyadTnP99df3mqZlILS2tgLdrctLlixh5cqVvPrqq90ecpZlsXbtWvx+P3PmzOmyz4MPPsirr77a47EKyxcvXtxnvyZNmgTA5s2b+38yhwmPPfYYTU1NRKPRYuj+SFHwwGtpaem2ruCxtnDhwgFbzH/3u9/xu9/9rvjZ3nPPPZx99tlcdtllve6zY8cOFi1a1G35zp07ARg/fvyA+tAThbRIBWODlLK47OSTT8bn8/HUU08Vr8dQpmUaSiZOnMiWLVv4yU9+0qNnyYEUrt2OHTt6XN/T8srKSnw+H3V1deRyuW6ehfF4vF/REIW2/H4/pmkO+F6qqqriE5/4BJ/4xCeQUvLPf/6TSy65hP/+7//mqquu6vY8KjzDqqqqBnQchUIxMJQGOTJQGsRjJDQIwNKlS1m6dCnf+MY36Ojo4Jvf/CY//OEPueGGG3jxxReH5BgHUuj7tm3belxf0ADjxo3rss+mTZvYtm1bMWVSX/sMBxMnTmTTpk187Wtf69d3dSi0y2B1RG8aa6jvIYVCoThUlIY7MhgtDdfX3ELhvadQHE6oGhH95Nprr2X9+vUcc8wx/Pd///chtyel5P777wfo9iB7//vfD8C9997bbb+HH36YTCbDGWecQSAQ6LbPQw891C0Mrb6+nmeeeYaSkpJifteDMX78eObNm0dzczP33XffwE5sDJNKpfjc5z4HwL/+67/26NU3nCxZsgTwch0fyHHHHUdJSQlPPvlkj96KvbFz506uueYa/H4/d999N3fffTd+v59rrrmm15cVdPVeLLBx40Zee+01otFov4RGX8yYMYOJEyfywgsv8I9//AMhRNHYEAqFinUiCvUheqrn0BOFgW5/cj4PBe9+97sBeOCBB/q1/ZQpU5g4cSJ79uxh1apV3db//ve/77bMNE2OP/54XNflz3/+c7/26Q3DMFixYgUtLS2sXLmy3/sdSKGeR+HZsnbt2m7bbNiwAYCjjjpq0MdRKBR9ozTI4Y/SIPsZCQ1yILFYjJtvvhkhBG+++eaQt1/g1FNPBbxzLEQYdOa3v/1tl+06//vuu+/utn0ul+NPf/pTt32GQwsNVO8cqnbp6Ohg7969TJs2rV+OHp3585//3OP1LRxz2bJlA2pPoVAohgul4Q5/RlPDFd5nf/vb33pMnzWQeQKFYqygDBH94Le//S133nkn0WiUP/zhDwctwNeZpqYmfvOb33R7oCcSCT796U/z4osvUltbywUXXNBl/Sc+8QlisRgPPvhglwd4Q0MDX/rSlwCKD8ICxx9/PMuWLaOhoYEvf/nLxeW2bXPNNddgWRbXXXcdpmn2q+833ngjAJ/5zGdYt25dl3XJZJInnniiX+2MFZ599lmWLVvGm2++yYIFC/iP//iPEe9DYQD50ksvdVvn9/v5whe+QFtbGx/84Ad7HMC/8cYbXQbvruvykY98hPb2dr7zne+wcOFCFi5cyM0330x7eztXXHEFruv22Jef/vSnrFmzpvh3MpnkuuuuQ0rJxz72sW4v17lz5zJ37lz27NkzoHNevnw52WyWu+66i8WLF3fJp7hixQp27NjBo48+Snl5eY/ekT1RWVmJaZps2bKlx0HoUPP5z3+eYDDIZz/7WR566KFu61taWvj5z3/epYDn1VdfXdy386TOa6+9xs9+9rMej1PY5+tf/3qXMNsdO3b0WczsQL761a+iaRpXXnlljwUb9+7d26Ufa9as4b777sOyrC7btba2Fr1GewrHLdzLnSdHFArF0KI0iNIgQ8E7SYPcddddPRrP//GPfyClHNZ8yitWrGDRokVs27aNr3/9611SBT3wwAPcd999RCIRrrrqquLyj3/84wSDQe655x7++te/Fpe7rstXv/pV9uzZw3HHHdclnVTBQ3LTpk1D1verr76aqqoqbr75Zu64445uaY6SySS/+c1vuqTvOBTtsnr1aqSUg9IQO3bs4Jvf/GaXZb/85S9ZtWpVj881hUKhGA2UhlMa7lCZOXMmZ5xxBq2trdx4441dtNUdd9zRpWC5QnG4oFIz9UFrayuf/vSnAa9YTn8mBG+88Ubmzp1LIpHgyiuv5LrrrmPevHlMnjyZtrY2Xn31VZqbmyktLeXee+/tloe1vLyc22+/nYsvvpgLL7yQ5cuXU1lZyWOPPUZbWxvXX389Z5xxRrfj3nHHHZx00kn8+Mc/5oknnmD+/PmsXr2arVu3csIJJ/Dv//7v/T7vK664gtWrV/PTn/6UJUuWcPLJJzNx4kT27t3LmjVrWLp0Ke9617v63d5IsXHjxuLgzrZtWltbef3114uD17POOqsoBnpC04bPNnfaaacRiUR48skne1z/1a9+lfXr13PPPfcwZ84cjj76aCZPnkxTUxNbt25l27ZtnHfeeVxyySUAfO9732PlypW8+93v5jOf+Uyxnc9+9rP87W9/4/HHH+eWW24pioHOfPjDH+aEE07gXe96FyUlJaxcuZK6ujoWLFjQbWAH+we6B05U98WKFSu4++67yWQy3SIeCnUiMpkMZ511Vr/zHvp8Ps466yweeughlixZwtFHH43P52PZsmV89KMfHVD/+sOsWbP47W9/y4c//GHOPfdc5syZw7x585BSsmPHDtavX08ul+Oyyy4jGAwC8MUvfpGHH36YVatWMWPGDE4//XTi8ThPPPEEH//4x7n11lu7Hefyyy/nvvvu4/7772fOnDmcccYZSCl57LHHWL58OUKIfodennbaafz4xz/mM5/5DKeeeiqLFy9m1qxZZDIZduzYwYYNG4hEIlx77bWAN6D/4Ac/SElJCcceeyy1tbW0tbXxzDPP0NHRwQUXXNAtn3YikeDll19m7ty5TJs27RCvskKh6AmlQZQGGSreSRrkz3/+M1dccQUzZsxg0aJFBINBtm/fzgsvvICu69x88839amcwCCG4++67Of3007n55pu5//77Oeqoo9i5cyfPPfcchmFw++23U1tbW9xn8uTJ/PKXv+Sqq67inHPOYdmyZUyaNIlXX32VTZs2UVNTw29+85suxznxxBOprq7m3nvvZcWKFUyfPh1N0/jYxz7WZ52P3igrK+P+++/n3HPP5WMf+xjf/OY3WbhwIX6/n507d7JhwwaSySRr1qwppvM6FO1SiIh93/veN+C+fvKTn+S73/0u9913H4sXL2bz5s2sXr0a0zS54447inpMoVAoRgul4ZSGGypuvfVWli1bxk9/+lMeffRRjj76aLZt28aLL77Iv/7rv/J///d/w3ZshWJYkIqDsm3bNgkM6OfJJ5+UUkrZ0dEhv/zlL8vly5fLCRMmSL/fL0OhkFywYIH8/Oc/L3fv3n3QYz/77LPyrLPOkqWlpTIUCsljjjlG3n777QfdZ+fOnfKqq66StbW10ufzyRkzZsivfe1rMpVKDer877//fvme97xHlpWVSZ/PJydPniwvuOAC+be//a3LdoCcMmVKl2VPPvmkBOSVV17ZY9tTpkyRvd2CN910kwTkHXfc0a9+Fo7V+cfv98vq6mp54oknyuuvv16uWrWq1/3//ve/S0CeffbZPba7fPnyfvWjLz75yU9KQL700ku9bnPvvffKs846S1ZWVkrTNOW4cePkiSeeKL/xjW/IjRs3SimlfPnll6VpmrKsrKzH+2j37t2yrKxMmqYpX3755eLywjV3XVd+//vfl3PnzpV+v1+OGzdOXnvttbKlpaXHPhWu6bZt2wZ0vm+//XZx3/vvv7/LumQyKX0+nwTkj370ox737+0eqa+vlx/5yEdkbW2t1HW9233W0/1Y4I477pCA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JvXo0UPdunWTFJlt+9///qennnpKU6dO1ciRI7Vz5846t43E9jWXqClEPPzww9X+/Ytf/ELTp0/X9OnTT+h1jxw5ovz8fEmqdfAEl69du1a7du2qTOp37dp1zH2O3q4pnWhfzJkzRwcPHlSbNm109tln17rN6tWra8zyfsYZZ2ju3Lk69dRTqy0PVV80ph+mT5+unTt3atmyZZUV2rpE2pho7Hh4/fXXq/17+vTpmjRpkl599dVaJxWUImM8SCd2bsyaNUvGGI0fP15paWnV1kXrmHj00Ue1du1aPffcc3rnnXc0YMAAFRUVaeXKlUpLS9OCBQt02mmn1XqMSBkTQFMiF6lCLhJALhJALlKFXCSAXASITNu2bau8M+CSSy6pti7az6NIaF8kxNiUjtXexMREpaamKi8vTwUFBWrRokVzhtcozzzzjCRp3LhxlXfcRGr7nnjiCa1fv15FRUX69ttvtX79erVv316zZ8+uvBgg0trm9/t18803KzU1VY8//vgxt4+09jWniH8008iRI/X6669r27ZtKi4u1qZNm/TII4/I5XLp/vvvrzyZj1dhYWHl/05ISKh1m8TExBrbBv93Y/Y5UU3RF7t379Zdd90lSXrwwQdr3HKYkpKiX/7yl/rkk0+Uk5OjnJwcLVmyREOGDNHXX3+t0aNH6/Dhw9X2ae6+aGw/rFu3Ts8884ymTJnSoCsXImVMNLYfMjMz9eSTT2r9+vUqLCzU7t27NWvWLHXo0EFz586t9REAkTAepKY5N+p7FEK0jol27dpp+fLlGj16tLZv364333xT7733noqKijRq1Cj17t27xjEiZUwATYlcpAq5SAC5SAC5SBVykQByESByeb1e3XDDDSorK9PkyZNr3KkW7edRJLQvEmJsSsdqrxQZbX733Xf197//XTExMXrooYcql0dq+xYtWqSZM2fqzTff1Pr169WpUyfNnj272ntGpLXtueee02effaYnnniixsUgtYm09jWrUE9SYZdFixYZSSYlJcUUFxfXud2xJojcs2ePkWQkGY/HU+s2V199tZFkZs+eXbksOBHL4sWLa90nONHcLbfc0ohWHZ+G9kVhYaEZOHCgkWQuu+yyRh3D6/WaESNGGEnmkUceqbYuXPqitn7wer1mwIABJi0tzRw6dKja9nVNEBnpY6Kh4yFo3759lRMFfvzxxw06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", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "f=plt.figure(figsize=(20,5))\n", + "\n", + "proj=ccrs.PlateCarree()\n", + "levels = np.linspace(-10, 10, 11)\n", + "#levels_contour = np.linspace(-20, 20, 6)\n", + "\n", + "ax1 = plt.subplot(131,projection=proj)\n", + "ax1.coastlines(resolution='110m', linewidth=0.5)\n", + "p = ax1.contourf(ds.lon,ds.lat,z500_clm[0],\n", + " #vmin=-20,vmax=20,levels=levels,\n", + " extend='both',\n", + " cmap = plt.get_cmap('rocket'))\n", + "cbar = plt.colorbar(p, orientation='horizontal', shrink=0.8)\n", + "cbar.set_label('m',fontsize=15)\n", + "ax1.set_title('Z500 clm DJF (exp: with eddies)',fontsize=15)\n", + "ax1.set_xlabel('lon',fontsize=15)\n", + "ax1.set_ylabel('lat',fontsize=15)\n", + "#ax1.set_ylim(ax1.get_ylim()[::-1])\n", + "ax1.xaxis.set_tick_params(labelsize=15)\n", + "ax1.yaxis.set_tick_params(labelsize=15)\n", + "cbar.ax.tick_params(labelsize=15)\n", + "\n", + "ax2 = plt.subplot(132,projection=proj)\n", + "ax2.coastlines(resolution='110m', linewidth=0.5)\n", + "p = ax2.contourf(ds.lon,ds.lat,z500_smooth_clm[0],\n", + " #vmin=-20,vmax=20,levels=levels,\n", + " extend='both',\n", + " cmap = plt.get_cmap('rocket'))\n", + "cbar = plt.colorbar(p, orientation='horizontal', shrink=0.8)\n", + "cbar.set_label('m',fontsize=15)\n", + "ax2.set_title('Z500 clm DJF (exp: smoothed) p',fontsize=15)\n", + "ax2.set_xlabel('lon',fontsize=15)\n", + "ax2.set_ylabel('lat',fontsize=15)\n", + "#ax2.set_ylim(ax2.get_ylim()[::-1])\n", + "ax2.xaxis.set_tick_params(labelsize=15)\n", + "ax2.yaxis.set_tick_params(labelsize=15)\n", + "cbar.ax.tick_params(labelsize=15)\n", + "\n", + "ax3 = plt.subplot(133,projection=proj)\n", + "ax3.coastlines(resolution='110m', linewidth=0.5)\n", + "p = ax3.contourf(ds.lon,ds.lat,z500_clm_diff[0],\n", + " #vmin=-10,vmax=10,levels=levels,\n", + " extend='both',\n", + " cmap = plt.get_cmap('RdBu_r'))\n", + "cbar = plt.colorbar(p, orientation='horizontal', shrink=0.8)\n", + "cbar.set_label('m',fontsize=15)\n", + "ax3.set_title('Z500 clm DJF diff',fontsize=15)\n", + "ax3.set_xlabel('lon',fontsize=15)\n", + "ax3.set_ylabel('lat',fontsize=15)\n", + "#ax2.set_ylim(ax2.get_ylim()[::-1])\n", + "ax3.xaxis.set_tick_params(labelsize=15)\n", + "ax3.yaxis.set_tick_params(labelsize=15)\n", + "cbar.ax.tick_params(labelsize=15)" + ] + }, + { + "cell_type": "markdown", + "id": "c9460e91-4b43-45a9-b1f5-318bc1f0687b", + "metadata": {}, + "source": [ + "### Effect of prescribed eddy-rich SST-forcing on the winter mean state in the North Atlantic\n", + "#### 300hPa zonal wind\n", + "#### meso-scale SST forcing might affect the position of the mean wind." + ] + }, + { + "cell_type": "code", + "execution_count": 22, + "id": "2af8d1fa-9333-4ab4-9ea9-b76d2e83ccc4", + "metadata": { + "tags": [] + }, + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAABiIAAAGTCAYAAAClEwrlAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjUuMywgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/NK7nSAAAACXBIWXMAAA9hAAAPYQGoP6dpAAEAAElEQVR4nOyddXhcVfrHP+MzSSYTd2uSpu5G3UuLFpcCxZddHBaWBX74ssjiurguWrQUp0bdLW2Txt19fO75/THN0DRJm7SRtpzP88yTzLn3yL1z5XvOe877qoQQAolEIpFIJBKJRCKRSCQSiUQikUgkkm5A3dsNkEgkEolEIpFIJBKJRCKRSCQSiURy4iINERKJRCKRSCQSiUQikUgkEolEIpFIug1piJBIJBKJRCKRSCQSiUQikUgkEolE0m1IQ4REIpFIJBKJRCKRSCQSiUQikUgkkm5DGiIkEolEIpFIJBKJRCKRSCQSiUQikXQb0hAhkUgkEolEIpFIJBKJRCKRSCQSiaTbkIYIiUQikUgkEolEIpFIJBKJRCKRSCTdhjRESCQSiUQikUgkEolEIpFIJBKJRCLpNqQhQiKRSCQSiUQikUgkEolEIpFIJBJJtyENEd3IO++8w4UXXsiAAQMICQlBr9cTExPDueeey+rVqw+Zd/HixUydOhWLxUJgYCBTp05l8eLFh8yze/duzjvvPMLDwzGZTAwZMoRnnnkGRVG68rBakJubi0qlYtq0ad1Wx+F45513UKlULT7+/v7ExMQwbdo0/vGPf7Br167D5r/88ssPW+7Bn3feeadTbV2xYgUqlYr//ve/R3Ckfy5UKhVJSUmdynMsXI+H4kjb19a5WLZsWZvXbXcihGDEiBEMHTq0W58rEomk55BapWeQWkVyrNF87TzwwAO92o62NM6XX36JSqXis88+651GSSQSSS8j9VnPcDzps0PVf/C7/PLLL0elUrFs2bJWeX7++WcmTZqE2Wz2taWZiooKLrvsMqKjo9FoNF3WTonkQLS93YATmRdffJFt27YxZMgQJk2ahNFoZO/evSxatIgvvviC1157jauvvrpVvueff56bb74ZrVbLrFmzMBgM/PTTT5x++uk899xz3HTTTa3yrF27lpkzZ2K1Whk7dixJSUmsWLGC2267jVWrVvHZZ5+1eMCciKSkpDBp0iQAnE4nlZWVbNmyheXLl/PEE0+wYMECXn75ZQIDA4+43INJTU3tcDlCCO644w4SEhK44oorOtUGiZdly5Yxffp0Fi5cKF+IvYBKpeK+++7j7LPP5p133uHKK6/s7SZJJJKjRGqVnkVqFUlP8cADD/Dggw/y9ttv9+ikha5g/vz5DBs2jH/+85+ceeaZ6PX63m6SRCKR9ChSn/Usx7o+6yry8/M566yzcDqdzJo1i4iIiBbbr7rqKr799luGDh3KzJkz0Wq1vdJOyQmOkHQba9euFfX19a3Sv/76a6HVaoXJZBJVVVUttu3du1dotVphMBjE6tWrW6SHhoYKrVYrMjIyWuRxuVwiJSVFAOLpp5/2pTc0NIjx48cLQLz11ltdfHRecnJyBCCmTp3aLeV3hLffflsAYuHCha22KYoivv32W5GUlORrp9Pp7FD+Q5V7JHzxxRcCEM8++2yXlHeis3v3brFv374WaUuXLj3kb3IsXI+H4kjbB4jExMQWaU1NTWL37t2iuLi46xrYARRFEf379xexsbHC5XL1aN0SiaTrkVqlZ5BaRdLT3H///QIQb7/9dpvbm6+d+++/v0fbdTBtaRwhhPjoo48EIF5++eWeb5REIpH0MlKf9QzHiz5rj/be5cXFxWL37t2iqampRfqbb74pAPF///d/rcpyOBxCo9GIpKQk4fF4urPZkj850jVTNzJu3DjMZnOr9DPOOINp06Zhs9lYu3Zti23PPfccbreb6667jvHjx/vS09LSuOeee3C73Tz//PMt8nz55ZdkZWUxbNgwbr31Vl96QEAAL730EgBPP/10Vx7acYNKpeK0005j3bp1xMTEsHz5cl555ZVeacvLL7+MVqvl4osv7pX6jzf69+9PSkpKbzfjmMXPz4/+/fsTHR3do/WqVCoWLFhAUVER33zzTY/WLZFIuh6pVXofqVUkktaceeaZmM1mXn311d5uikQikfQ4Up/1PseSPuss0dHR9O/fHz8/vxbphYWFACQnJ7fKU1paisfjITExEbVaDhVLug95dXWAw/liP5T/tfbQaDQArZYaN/vuO/fcc1vlOe+88wD49ttvO5xnxIgRJCcns3PnTnJzczvcPiEEH374ITNnziQ0NBSj0UhycjIXX3wxq1atOmz+A33VZWVlcf755xMWFkZgYCDz5s0jPT0dALfbzaOPPkpaWhpGo5HU1FRefvnlDrezo0RERPDQQw8BtHr59gQ5OTn8+uuvzJ49m/Dw8Db3cTqdPPfcc4wZMwaz2Yy/vz9jx47lzTffRAjh26+hoYHU1FRUKhVLlixpVc67776LSqVixIgROJ1OX3qzD16n08n9999PSkqK73e97777sNvtR32cdrsdo9FInz59Wm077bTTUKlUTJ8+vdW2wYMHo9Vqqa+vb9XeZi6//HJf3uZjbP605d/YZrNx1113kZiYiMFgIDU1lccff7zFuewov//+O2eddRYREREYDAaSkpK46aabqKioaHP/yspK/vKXvxAVFYWfnx8jRozgvffeO2QdTU1N/OMf/yAhIQGj0Uj//v15+umn223v4Z5L3377LSeffLLv/k1LS+P//u//aGxsbLPuxx9/nOHDhxMUFERAQAApKSmcd955/Pjjj632bx6gev311w95TBKJpOeQWkVqlaPlz6JVmtm9ezeXXnqpr47w8HCGDx/OLbfcQklJiW+/A++t8vJyrrrqKqKioggICGDSpEktfHW/+uqrDB06FJPJRHx8PA8++GC7/rXT09NZsGAB0dHR6PV6YmNjueyyy9i7d2+7bV6yZAmzZ88mODgYo9FIv379uOuuu6itrW2xX1JSEg8++CAAV1xxRQvN1NYzID8/n4svvtjnG3z06NGt7uED2bFjBwsWLCA2NhaDwUBMTAxXXHFFu/dvZzUOgMlkYv78+Wzfvp1169a1u59EIpEcy0h9JvVZV7B9+3ZOO+00LBYLFouF2bNns2bNmnb3P/i6ar4O77//fqClNnjggQdISkoiMTERgOXLl/u2dTZmp0TSEWSMiF7g119/ZenSpYSEhDB27Fhfem1tLfn5+YD3oX8wcXFxhIWFkZeXR11dHRaLBYBt27YBMHLkyDbrGzlyJNnZ2Wzbtq1DDxKPx8OFF17I559/jsFgYNKkSYSFhZGfn8+XX36JXq9n4sSJHTrWnJwcxo4dS1BQEFOnTiUzM5MffviBTZs2sX37dq677jp+++03xo8fT3JyMkuXLuX6669Hp9NxzTXXdKiOjnL++edz7bXXkpWVRUFBAfHx8V1a/qFYsmQJQoh2AzE1NTUxb948Vq5cSVhYGJMmTUKtVrNmzRquvvpqNmzY4JsRZjab+eCDD5g8eTJXXnklO3bs8A0Y5OTkcOONN2Iymfjwww9biRMhBOeeey6//PILM2fOZPjw4fz66688/PDDrF69mh9//NEnbMAbQKrZqNCRAXyj0ci4ceNYsWIFubm5vuvN4/Hw+++/A7BmzRqfwQK8g/bp6emMHDnykD4XJ02aRGlpKT/++GMrX4vDhw9vsa/T6WTOnDns2rWLsWPHMmDAAJYvX85dd91FQ0MDjzzyyGGPpZnnn3+eW265BbVazdixY4mNjWXnzp288MILLF68mFWrVrVYlVBVVcXEiRPJyMggLi6OM844g9LSUq644gquu+66NutwOBzMmTOH1atXExYWxumnn05DQwN33XUXWVlZHW5rM7fffjtPP/00RqORsWPHEhYWxqZNm3jkkUf4/vvvWb58Of7+/oD3t2muOy4ujmnTpqHX6yksLGTx4sX4+/tz8skntyg/OTmZ+Ph4fvvttxa/pUQiOXGQWkVqlYM5UbQKwObNm5k0aRJ2u52xY8cyduxYGhoayM7O5rnnnmP+/PmtVhzW1NQwfvx47HY748ePp6SkhFWrVjF79mzWr1/Pa6+9xmuvvca4ceOYNWsWy5cv54EHHsDpdPKvf/2rRVm//vorp59+OjabjZEjRzJt2jT27NnD+++/z5dffsmSJUuYPHlyizz//ve/ufvuu9FqtUydOpWwsDBWrVrF448/zpdffsmKFSuIjIwE8J2/bdu2MXHixBb+naOiolqUm5uby5gxYzAajUyaNImysjLWrFnD/Pnz+f7775kzZ06L/RctWsTFF1+M0+lk1KhRTJgwgaysLN555x2+/fZbli9fzqBBg3z7H43GmTZtGu+//z7fffcd48aNO8yvKpFIJCc+Up/9+fTZunXrmDFjBlarleHDh9O/f3927tzJ1KlTOxwDKioqioULF7J169ZW2mD48OGce+655ObmsmjRIiIjI5k7dy4AYWFh3XVYkj8zveEP6njjcH7pFy5cKACxdOnSNre/9dZbYuHCheKCCy4Qo0ePFoAIDAwUP/zwQ4v9tm3bJgARHBzcbluGDx8uALF9+3ZfWnBwsADEtm3b2sxzyy23CEA8//zzhz7Q/Tz88MMCEEOGDBG5ubkttlVVVYnff//d9709v37NvuoAcdttt/l8zCmKIi6//HIBiIEDB4rBgweLgoICX75ffvmlXV+x7dEZ/3upqakCED/++ONh83elX78LLrhAAOK3335rc/tf//pXAYhLL71U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cFtbyyp7m7CwMAwGAzqdrsOzGJqvq+aVCQfTfI47k6e99LZovpaioqI6PfMiPj6eG2+8kRtvvBG3283HH3/MFVdcwW233caCBQtarVhp9o15NDNSJRJJ1yG1yomB1Co9p1VUKhWTJk3yXcMVFRXcfPPNfPTRR9x999188sknR11HWzT/rjk5OW1ub37vH3iMMTEx5OTkkJeX16brxbbydAdxcXFkZWXx/PPPd8gwcLQax+Vy0djYSHBw8GFXp0okEsmxiNRnJwa9pc+OZHxBIjnWkTEiOkCzqM/IyGi1raqqqkVAto7SHKD34NlWp556KkCLmWPNfPbZZwCcdtppHc6zZcsWsrOzGThwIH369Dlsu5r9327evNnn9/5EoLy8nPvvvx/A5xqgJxk2bBhAm/6Lp0+fjkajYfHixb4Zhx1h48aNPPDAA4SGhvLhhx/y9ttvI4Tg0ksvPaS7nLY61j/++CM1NTX07duXiIiIDrehPSZMmIBer2fZsmUsW7aM4OBg3zlITU31xYlojg9xcMDD9mgWcj3hJ1ir1TJt2jSqq6tZsWJFh/KMGjUKo9HIunXr2hSVH3/8cau0xMRE4uLiKCoqYs2aNR3K0x5xcXH069eP7du3tzvA0RG0Wi2XXHIJY8aMwel0tvns2717N+CNMSGRSHofqVWOf6RW+YOe0CoHEx4ezgMPPADAjh07urz8ZpoNMB9++GGb25vTDzTUHCpPRUUFP/30E2q1ukUchu7QTLNmzQLgq6++6tD+R6txmq9FqTUkEsnxitRnxz+9qc+aDUqLFi1qtSrU7XazaNGiHm2PRNIVSENEB+jTpw8JCQns2LGDr7/+2pfe1NTENddcQ319fas86enpvP7666185Qoh+Pjjj3niiSdQqVQsXLiwxfabb74ZjUbDq6++ytq1a33pmZmZ/Otf/0Kj0XDTTTe1yHPWWWfRp08ftm3bxjPPPNOifc0uVW677bYOHater+fWW29FCMFVV13VajC1urqaVatWdaisYwEhBEuWLOGkk06iuLiYGTNmtArs1BM0dyDXr1/faltsbCyXX345mZmZXHrppT7fgweyevVqlixZ4vtutVpZsGABLpeL119/naioKObMmcMNN9xAXl5em650mnnooYd8Pn7B6+vwzjvvBOBvf/tbi32Lioro378//fv379TxmkwmxowZQ15e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2HlzAhwJgJ3rOv1TkTcroG+nOzXHTp0qLqDvAwD7akJz7Pzi+OALnf05L0pCCNHbSi6XCzqdblBBERERDUdJSUkoLi7meTLAmIsQERF1jblIcDAXISIi6lpfc5E+FSKAtpOuy+XyS3BERETDhUaj4UVpkDAXISIiOhtzkeBhLkJERHS2vuYifS5EEBERERERERERERER9Zci1AEQEREREREREREREdHwxUIEEREREREREREREREFDAsRREREREREREREREQUMCxEEBERERERERERERFRwLAQQUREREREREREREREAcNCBBERERERERERERERBQwLEUREREREREREREREFDAsRBARERERERERERERUcCwEEFERERERERERERERAHDQgQREREREREREREREQUMCxFERERERERERERERBQwLEQQEREREREREREREVHAsBBBREREREREREREREQBw0IEEREREREREREREREFDAsRREREREREREREREQUMCxEEBERERERERERERFRwLAQQUREREREREREREREAcNCBBERERERERERERERBQwLEUREREREREREREREFDAsRBARERERERERERERUcCwEEFERERERERERERERAHDQgQREREREREREREREQUMCxFERERERERERERERBQwLEQQEREREREREREREVHAsBBBREREREREREREREQBw0IEEREREREREREREREFDAsRREREREREREREREQUMCxEEBERERERERERERFRwLAQQUREREREREREREREAcNCBBERERERERERERERBQwLEUREREREREREREREFDAsRBARERERERERERERUcCwEEFERERERERERERERAHDQgQREREREREREREREQUMCxFERERERERERERERBQwLEQQEREREREREREREVHAsBBBREREREREREREREQBw0IEEREREREREREREREFDAsRREREREREREREREQUMCxEEBERERERERERERFRwLAQQUREREREREREREREAcNCBBERERERERERERERBQwLEUREREREREREREREFDAsRBARERERERERERERUcCwEEFERERERERERERERAHDQgQREREREREREREREQUMCxFERERERERERERERBQwLEQQEREREREREREREVHAsBBBREREREREREREREQB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y1/+ErIsdyz/zW9+g+uvvx4vvPBCj739AsGf+eNwzEUHov3cqdfrMXnyZBw/frzT8vvuuw/vvPMOFixYEIrw+qUvOeNAtefOl19+uT9CpT4Kn/5YQ5jVagUAGAyGLpcbjcZO6w3XGPytt88EhMfn+vjjj/H8889DrVbjt7/9bcfj4Rr/p59+ipdffhlvv/02Dh8+jPT0dLz++uuYNm1axzrhFvtTTz2FHTt24PHHH0dsbGyv64db/AsWLMCrr76KoqIi2O12HD9+HI8++ihUKhUefPDBjhPg6fGEQ+xNTU0A2u46OHDgAJ5//nnU1dWhuLgY9957L2w2G66//vqOuwrDKXaic0045AHhEIO/DZXjGnMR5iK9YS4S/NiJaOBqamrw8ssv49VXX8Vnn30Gq9WKO++8E3/84x8hSdKgXru1tRW33HILgLZhipKTk/0RclhrP5ZaLBbcd999uO6663D8+HE0NTXh7bffRlxcHF577bVORelg8Wf+OBxz0YFo/77/8pe/oLGxEe+++y6am5tx/PhxrFq1CvX19VixYgWqqqpCHGnv+pIzDsSzzz6L9evXw2w24xe/+IWfoqW+GHY9Iq666iocOnSoX8955ZVXMGPGjAG/pxACALo9IbYvD6RwiMHfevtMp68TKkePHsX1118PIQQef/zxjjHmgPCNf/369QCA5uZmHDx4EL/5zW+waNEiPPLII/jlL3/ZKa5wiL2srAy/+tWvsHDhQtx00019ek44xQ+03WFyupycHNx///0477zzsHTpUjz00EO47bbboNfrwyp2n88HAPB6vXj66ac7Eva4uDg88cQTKC0txdtvv40//vGPeO2118IqdqJQYi7CXCSYmIsEHnORszEXIaKu+CsHmjdvHoQQ8Pl8KC0txXvvvYeHH34Yn376KT777DNkZmYOKD6fz4dVq1ahoKAAM2bMOOvY6E+hyAe7c/qxdPbs2XjllVc6ll155ZXQ6XRYvnw5/va3v+H+++8P6rA9/swfh2MuOhCnf9+vvfYaLrroIgCAyWTCf/7zHxQUFGDnzp14+umnz+opGW76kjP211dffYW7774bkiThhRdeQEpKij9Dpl4Mu0JESUnJWd2OemO32wf1nu1dem02W4+vHxERMaj3CfcY/K23zwSE9nOVl5dj2bJlaGpqwr333ou777670/Jwj99sNmP+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mzdj27Zt+N3vfgedTgez2YznnnsOH330EV577TV8/fXXaGxsxM9+9jPcf//9+PLLL5Gbm9sR99GjR2E2m/Hwww8PeJsQERFR8DAXISIiolBiLkJE/sC+SES9yMzMxKhRozo9plAokJGRgbq6Olx44YVnPSc7OxsAUFVV1af3mDZtGl577TXceuutuOeeezB+/Pgu17vllltwyy23dNndcMGCBTh48CDUajUAoKCgoOP/TxcXF4dXX30VHo+nT7ERERFRaDEXISIiolBiLkJE/sBCBFEvUlNTu3zcaDR2u7x9mcvl6tN7/O53v8PBgwfxwgsv4IUXXkBcXBzmzJmDFStWYNWqVdBqtQDQ5Yn2dKefYLs62Xa17vvvv4/333//rOUvvfRSn2InIiKiwGIuQkRERKHEXISI/IGFCKJeSJI0qOV9kZ6ejl27duGLL77AmjVr8NVXX2H16tX48MMP8cc//hFbtmzp1AWyXV9PiosWLUJJSUmXy/bt24eXX355wK9NREREgcVchIiIiEKJuQgR+QPniCAKEyqVChdddBH+9re/Yf/+/SgpKcHixYtx7NgxPPbYYwF731//+tcQQpz1R0REROcW5iJEREQUSsxFiIY3FiKIwtSIESPw85//HABw8ODBEEdDRERE5xrmIkRERBRKzEWIhhcWIojCwJNPPomampqzHv/kk08AtJ18iYiIiAKFuQgRERGFEnMRouGPc0QQhYGHH34YP/nJTzBp0iSMHj0aQggcOHAAx48fR1xcHH7605+GNL6PPvoIv/3tbzs95na7MWvWrI5/P/DAA7j00kuDHRoRERH5AXMRIiIiCiXmIkTDHwsRRGHgqaeewieffILdu3dj7dq1ANomavrJT36Ce++9F8nJySGNr66uDtu3b+/0mBCi02N1dXXBDouIiIj8hLkIERERhRJzEaLhTxKcfYWIiIiIiIiIiIiIiAKEc0QQEREREREREREREVHAsBBBREREREREREREREQBw0IEEREREREREREREREFDAsRREREREREREREREQUMCxEEBERERERERERERFRwLAQQUREREREREREREREAcNCBBERERERERERERERBQwLEUREREREREREREREFDAsRBARERERERERERERUcCwEEFERERERERERERERAHDQgQREREREREREREREQUMCxFERERERERERERERBQw/x9SdGjxArq97QAAAABJRU5ErkJggg==", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "f=plt.figure(figsize=(20,5))\n", + "\n", + "proj=ccrs.PlateCarree()\n", + "levels = np.linspace(-4, 4, 11)\n", + "#levels_contour = np.linspace(-20, 20, 6)\n", + "\n", + "ax1 = plt.subplot(131,projection=proj)\n", + "ax1.coastlines(resolution='110m', linewidth=0.5)\n", + "p = ax1.contourf(ds.lon,ds.lat,u300_clm[0],\n", + " #vmin=-10,vmax=10,levels=levels,\n", + " extend='both',\n", + " cmap = plt.get_cmap('RdBu_r'))\n", + "cbar = plt.colorbar(p, orientation='horizontal', shrink=0.8)\n", + "cbar.set_label('m s**-1',fontsize=15)\n", + "ax1.set_title('u300 clm DJF (exp: with eddies)',fontsize=15)\n", + "ax1.set_xlabel('lon',fontsize=15)\n", + "ax1.set_ylabel('lat',fontsize=15)\n", + "#ax1.set_ylim(ax1.get_ylim()[::-1])\n", + "ax1.xaxis.set_tick_params(labelsize=15)\n", + "ax1.yaxis.set_tick_params(labelsize=15)\n", + "cbar.ax.tick_params(labelsize=15)\n", + "\n", + "ax2 = plt.subplot(132, projection=proj)\n", + "ax2.coastlines(resolution='110m', linewidth=0.5)\n", + "p = ax2.contourf(ds.lon,ds.lat,u300_smooth_clm[0],\n", + " #vmin=-10,vmax=10,levels=levels,\n", + " extend='both',\n", + " cmap = plt.get_cmap('RdBu_r'))\n", + "cbar = plt.colorbar(p, orientation='horizontal', shrink=0.8)\n", + "cbar.set_label('m s**-1',fontsize=15)\n", + "ax2.set_title('u300 clm DJF (exp: smoothed)',fontsize=15)\n", + "ax2.set_xlabel('lon',fontsize=15)\n", + "ax2.set_ylabel('lat',fontsize=15)\n", + "#ax2.set_ylim(ax2.get_ylim()[::-1])\n", + "ax2.xaxis.set_tick_params(labelsize=15)\n", + "ax2.yaxis.set_tick_params(labelsize=15)\n", + "cbar.ax.tick_params(labelsize=15)\n", + "\n", + "ax3 = plt.subplot(133, projection=proj)\n", + "ax3.coastlines(resolution='110m', linewidth=0.5)\n", + "p = ax3.contourf(ds.lon,ds.lat,u300_clm_diff[0],\n", + " vmin=-4,vmax=4,levels=levels,\n", + " extend='both',\n", + " cmap = plt.get_cmap('RdBu_r'),\n", + " transform=ccrs.PlateCarree())\n", + "cbar = plt.colorbar(p, orientation='horizontal', shrink=0.8)\n", + "cbar.set_label('m s**-1',fontsize=15)\n", + "ax3.set_title('u300 clm DJF diff',fontsize=15)\n", + "ax3.set_xlabel('lon',fontsize=15)\n", + "ax3.set_ylabel('lat',fontsize=15)\n", + "#ax2.set_ylim(ax2.get_ylim()[::-1])\n", + "ax3.xaxis.set_tick_params(labelsize=15)\n", + "ax3.yaxis.set_tick_params(labelsize=15)\n", + "cbar.ax.tick_params(labelsize=15)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "840f3632-3c0f-4263-ac70-ae5fc032787b", + "metadata": { + "tags": [] + }, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "1 Python 3 (based on the module python3/2023.01)", + "language": "python", + "name": "python3_2023_01" + }, + "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.10.10" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/RESULTS/IFS_AMIP_atmosresponse_to_SST_forcing_djf_correlation.ipynb b/RESULTS/IFS_AMIP_atmosresponse_to_SST_forcing_djf_correlation.ipynb new file mode 100644 index 0000000..bbbcaa0 --- /dev/null +++ b/RESULTS/IFS_AMIP_atmosresponse_to_SST_forcing_djf_correlation.ipynb @@ -0,0 +1,8631 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "ae5eab8f-530e-4324-8538-7ab9d2c9583c", + "metadata": {}, + "source": [ + "### Correlation between the IFS-AMIP twin experiments with and without eddies in the SST forcing\n", + "- Analysed here is the DJF correlation between the twin experiments with and w/o eddy forcing in the SSTs in terms of differences in the variability of the following variables:\n", + " - mean surface latent heat flux\n", + " - 10m zonal wind\n", + " - mean sea level pressure\n", + " - 2m air temperature\n", + " - sea surface temperature\n", + "- The correlation for DJF values is calculated, thus we do not need to remove the seasonal cycle. If the correlation to be calculated over all season then removing seasonal cycle is recommended.\n", + "\n", + "- Correlation and significance test is calculated with the xskillscore package: https://xskillscore.readthedocs.io/en/stable/quick-start.html#Correlation-Based, which is really fast and handy.\n", + "\n", + "Iuliia Polkova polkova@dkrz.de" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "id": "e2da14f2-12b0-4745-ae1d-b02b2bad6fb0", + "metadata": { + "tags": [] + }, + "outputs": [ + { + "data": { + "application/javascript": [ + "(function(root) {\n", + " function now() {\n", + " return new Date();\n", + " }\n", + "\n", + " var force = true;\n", + "\n", + " if (typeof root._bokeh_onload_callbacks === \"undefined\" || force === true) {\n", + " root._bokeh_onload_callbacks = [];\n", + " root._bokeh_is_loading = undefined;\n", + " }\n", + "\n", + " if (typeof (root._bokeh_timeout) === \"undefined\" || force === true) {\n", + " root._bokeh_timeout = Date.now() + 5000;\n", + " root._bokeh_failed_load = false;\n", + " }\n", + "\n", + " function run_callbacks() {\n", + " try {\n", + " root._bokeh_onload_callbacks.forEach(function(callback) {\n", + " if (callback != null)\n", + " callback();\n", + " });\n", + " } finally {\n", + " delete root._bokeh_onload_callbacks\n", + " }\n", + " console.debug(\"Bokeh: all callbacks have finished\");\n", + " }\n", + "\n", + " function load_libs(css_urls, js_urls, js_modules, callback) {\n", + " if (css_urls == null) css_urls = [];\n", + " if (js_urls == null) js_urls = [];\n", + " if (js_modules == null) js_modules = [];\n", + "\n", + " root._bokeh_onload_callbacks.push(callback);\n", + " if (root._bokeh_is_loading > 0) {\n", + " console.debug(\"Bokeh: BokehJS is being loaded, scheduling callback at\", now());\n", + " return null;\n", + " }\n", + " if (js_urls.length === 0 && js_modules.length === 0) {\n", + " run_callbacks();\n", + " return null;\n", + " }\n", + " console.debug(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n", + "\n", + " function on_load() {\n", + " root._bokeh_is_loading--;\n", + " if (root._bokeh_is_loading === 0) {\n", + " console.debug(\"Bokeh: all BokehJS libraries/stylesheets loaded\");\n", + " run_callbacks()\n", + " }\n", + " }\n", + "\n", + " function on_error() {\n", + " console.error(\"failed to load \" + url);\n", + " }\n", + "\n", + " for (var i = 0; i < css_urls.length; i++) {\n", + " var url = css_urls[i];\n", + " const element = document.createElement(\"link\");\n", + " element.onload = on_load;\n", + " element.onerror = on_error;\n", + " element.rel = \"stylesheet\";\n", + " element.type = \"text/css\";\n", + " element.href = url;\n", + " console.debug(\"Bokeh: injecting link tag for BokehJS stylesheet: \", url);\n", + " document.body.appendChild(element);\n", + " }\n", + "\n", + " var skip = [];\n", + " if (window.requirejs) {\n", + " window.requirejs.config({'packages': {}, 'paths': {'gridstack': 'https://cdn.jsdelivr.net/npm/gridstack@4.2.5/dist/gridstack-h5', 'notyf': 'https://cdn.jsdelivr.net/npm/notyf@3/notyf.min'}, 'shim': {'gridstack': {'exports': 'GridStack'}}});\n", + " require([\"gridstack\"], function(GridStack) {\n", + "\twindow.GridStack = GridStack\n", + "\ton_load()\n", + " })\n", + " require([\"notyf\"], function() {\n", + "\ton_load()\n", + " })\n", + " root._bokeh_is_loading = css_urls.length + 2;\n", + " } else {\n", + " root._bokeh_is_loading = css_urls.length + js_urls.length + js_modules.length;\n", + " } if (((window['GridStack'] !== undefined) && (!(window['GridStack'] instanceof HTMLElement))) || window.requirejs) {\n", + " var urls = ['https://cdn.holoviz.org/panel/0.14.4/dist/bundled/gridstack/gridstack@4.2.5/dist/gridstack-h5.js'];\n", + " for (var i = 0; i < urls.length; i++) {\n", + " skip.push(urls[i])\n", + " }\n", + " } if (((window['Notyf'] !== undefined) && (!(window['Notyf'] instanceof HTMLElement))) || window.requirejs) {\n", + " var urls = ['https://cdn.holoviz.org/panel/0.14.4/dist/bundled/notificationarea/notyf@3/notyf.min.js'];\n", + " for (var i = 0; i < urls.length; i++) {\n", + " skip.push(urls[i])\n", + " }\n", + " } for (var i = 0; i < js_urls.length; i++) {\n", + " var url = js_urls[i];\n", + " if (skip.indexOf(url) >= 0) {\n", + "\tif (!window.requirejs) {\n", + "\t on_load();\n", + "\t}\n", + "\tcontinue;\n", + " }\n", + " var element = document.createElement('script');\n", + " element.onload = on_load;\n", + " element.onerror = on_error;\n", + " element.async = false;\n", + " element.src = url;\n", + " console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n", + " document.head.appendChild(element);\n", + " }\n", + " for (var i = 0; i < js_modules.length; i++) {\n", + " var url = js_modules[i];\n", + " if (skip.indexOf(url) >= 0) {\n", + "\tif (!window.requirejs) {\n", + "\t on_load();\n", + "\t}\n", + "\tcontinue;\n", + " }\n", + " var element = document.createElement('script');\n", + " element.onload = on_load;\n", + " element.onerror = on_error;\n", + " element.async = false;\n", + " element.src = url;\n", + " element.type = \"module\";\n", + " console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n", + " document.head.appendChild(element);\n", + " }\n", + " if (!js_urls.length && !js_modules.length) {\n", + " on_load()\n", + " }\n", + " };\n", + "\n", + " function inject_raw_css(css) {\n", + " const element = document.createElement(\"style\");\n", + " element.appendChild(document.createTextNode(css));\n", + " document.body.appendChild(element);\n", + " }\n", + "\n", + " var js_urls = [];\n", + " var js_modules = [];\n", + " var css_urls = [];\n", + " var inline_js = [ function(Bokeh) {\n", + " inject_raw_css(\".bk.alert {\\n padding: 0.75rem 1.25rem;\\n border: 1px solid transparent;\\n border-radius: 0.25rem;\\n /* Don't set margin because that will not render correctly! */\\n /* margin-bottom: 1rem; */\\n margin-top: 15px;\\n margin-bottom: 15px;\\n}\\n.bk.alert a {\\n color: rgb(11, 46, 19); /* #002752; */\\n font-weight: 700;\\n text-decoration: rgb(11, 46, 19);\\n text-decoration-color: rgb(11, 46, 19);\\n text-decoration-line: none;\\n text-decoration-style: solid;\\n text-decoration-thickness: auto;\\n }\\n.bk.alert a:hover {\\n color: rgb(11, 46, 19);\\n font-weight: 700;\\n text-decoration: underline;\\n}\\n\\n.bk.alert-primary {\\n color: #004085;\\n background-color: #cce5ff;\\n border-color: #b8daff;\\n}\\n.bk.alert-primary hr {\\n border-top-color: #9fcdff;\\n}\\n\\n.bk.alert-secondary {\\n color: #383d41;\\n background-color: #e2e3e5;\\n border-color: #d6d8db;\\n }\\n.bk.alert-secondary hr {\\n border-top-color: #c8cbcf;\\n}\\n\\n.bk.alert-success {\\n color: #155724;\\n background-color: #d4edda;\\n border-color: #c3e6cb;\\n }\\n\\n.bk.alert-success hr {\\n border-top-color: #b1dfbb;\\n}\\n\\n.bk.alert-info {\\n color: #0c5460;\\n background-color: #d1ecf1;\\n border-color: #bee5eb;\\n }\\n.bk.alert-info hr {\\n border-top-color: #abdde5;\\n}\\n\\n.bk.alert-warning {\\n color: #856404;\\n background-color: #fff3cd;\\n border-color: #ffeeba;\\n }\\n\\n.bk.alert-warning hr {\\n border-top-color: #ffe8a1;\\n}\\n\\n.bk.alert-danger {\\n color: #721c24;\\n background-color: #f8d7da;\\n border-color: #f5c6cb;\\n}\\n.bk.alert-danger hr {\\n border-top-color: #f1b0b7;\\n}\\n\\n.bk.alert-light {\\n color: #818182;\\n background-color: #fefefe;\\n border-color: #fdfdfe;\\n }\\n.bk.alert-light hr {\\n border-top-color: #ececf6;\\n}\\n\\n.bk.alert-dark {\\n color: #1b1e21;\\n background-color: #d6d8d9;\\n border-color: #c6c8ca;\\n }\\n.bk.alert-dark hr {\\n border-top-color: #b9bbbe;\\n}\\n\\n\\n/* adjf\\u00e6l */\\n\\n.bk.alert-primary a {\\n color: #002752;\\n}\\n\\n.bk.alert-secondary a {\\n color: #202326;\\n}\\n\\n\\n.bk.alert-success a {\\n color: #0b2e13;\\n}\\n\\n\\n.bk.alert-info a {\\n color: #062c33;\\n}\\n\\n\\n.bk.alert-warning a {\\n color: #533f03;\\n}\\n\\n\\n.bk.alert-danger a {\\n color: #491217;\\n}\\n\\n.bk.alert-light a {\\n color: #686868;\\n}\\n\\n.bk.alert-dark a {\\n color: #040505;\\n}\\n\");\n", + " }, function(Bokeh) {\n", + " inject_raw_css(\"table.panel-df {\\n margin-left: auto;\\n margin-right: auto;\\n border: none;\\n border-collapse: collapse;\\n border-spacing: 0;\\n color: black;\\n font-size: 12px;\\n table-layout: fixed;\\n width: 100%;\\n}\\n\\n.panel-df tr, .panel-df th, .panel-df td {\\n text-align: right;\\n vertical-align: middle;\\n padding: 0.5em 0.5em !important;\\n line-height: normal;\\n white-space: normal;\\n max-width: none;\\n border: none;\\n}\\n\\n.panel-df tbody {\\n display: table-row-group;\\n vertical-align: middle;\\n border-color: inherit;\\n}\\n\\n.panel-df tbody tr:nth-child(odd) {\\n background: #f5f5f5;\\n}\\n\\n.panel-df thead {\\n border-bottom: 1px solid black;\\n vertical-align: bottom;\\n}\\n\\n.panel-df tr:hover {\\n background: lightblue !important;\\n cursor: pointer;\\n}\\n\");\n", + " }, function(Bokeh) {\n", + " inject_raw_css(\".codehilite .hll { background-color: #ffffcc }\\n.codehilite { background: #f8f8f8; }\\n.codehilite .c { color: #408080; font-style: italic } /* Comment */\\n.codehilite .err { border: 1px solid #FF0000 } /* Error */\\n.codehilite .k { color: #008000; font-weight: bold } /* Keyword */\\n.codehilite .o { color: #666666 } /* Operator */\\n.codehilite .ch { color: #408080; font-style: italic } /* Comment.Hashbang */\\n.codehilite .cm { color: #408080; font-style: italic } /* Comment.Multiline */\\n.codehilite .cp { color: #BC7A00 } /* Comment.Preproc */\\n.codehilite .cpf { color: #408080; font-style: italic } /* Comment.PreprocFile */\\n.codehilite .c1 { color: #408080; font-style: italic } /* Comment.Single */\\n.codehilite .cs { color: #408080; font-style: italic } /* Comment.Special */\\n.codehilite .gd { color: #A00000 } /* Generic.Deleted */\\n.codehilite .ge { font-style: italic } /* Generic.Emph */\\n.codehilite .gr { color: #FF0000 } /* Generic.Error */\\n.codehilite .gh { color: #000080; font-weight: bold } /* Generic.Heading */\\n.codehilite .gi { color: #00A000 } /* Generic.Inserted */\\n.codehilite .go { color: #888888 } /* Generic.Output */\\n.codehilite .gp { color: #000080; font-weight: bold } /* Generic.Prompt */\\n.codehilite .gs { font-weight: bold } /* Generic.Strong */\\n.codehilite .gu { color: #800080; font-weight: bold } /* Generic.Subheading */\\n.codehilite .gt { color: #0044DD } /* Generic.Traceback */\\n.codehilite .kc { color: #008000; font-weight: bold } /* Keyword.Constant */\\n.codehilite .kd { color: #008000; font-weight: bold } /* Keyword.Declaration */\\n.codehilite .kn { color: #008000; font-weight: bold } /* Keyword.Namespace */\\n.codehilite .kp { color: #008000 } /* Keyword.Pseudo */\\n.codehilite .kr { color: #008000; font-weight: bold } /* Keyword.Reserved */\\n.codehilite .kt { color: #B00040 } /* Keyword.Type */\\n.codehilite .m { color: #666666 } /* Literal.Number */\\n.codehilite .s { color: #BA2121 } /* Literal.String */\\n.codehilite .na { color: #7D9029 } /* Name.Attribute */\\n.codehilite .nb { color: #008000 } /* Name.Builtin */\\n.codehilite .nc { color: #0000FF; font-weight: bold } /* Name.Class */\\n.codehilite .no { color: #880000 } /* Name.Constant */\\n.codehilite .nd { color: #AA22FF } /* Name.Decorator */\\n.codehilite .ni { color: #999999; font-weight: bold } /* Name.Entity */\\n.codehilite .ne { color: #D2413A; font-weight: bold } /* Name.Exception */\\n.codehilite .nf { color: #0000FF } /* Name.Function */\\n.codehilite .nl { color: #A0A000 } /* Name.Label */\\n.codehilite .nn { color: #0000FF; font-weight: bold } /* Name.Namespace */\\n.codehilite .nt { color: #008000; font-weight: bold } /* Name.Tag */\\n.codehilite .nv { color: #19177C } /* Name.Variable */\\n.codehilite .ow { color: #AA22FF; font-weight: bold } /* Operator.Word */\\n.codehilite .w { color: #bbbbbb } /* Text.Whitespace */\\n.codehilite .mb { color: #666666 } /* Literal.Number.Bin */\\n.codehilite .mf { color: #666666 } /* Literal.Number.Float */\\n.codehilite .mh { color: #666666 } /* Literal.Number.Hex */\\n.codehilite .mi { color: #666666 } /* Literal.Number.Integer */\\n.codehilite .mo { color: #666666 } /* Literal.Number.Oct */\\n.codehilite .sa { color: #BA2121 } /* Literal.String.Affix */\\n.codehilite .sb { color: #BA2121 } /* Literal.String.Backtick */\\n.codehilite .sc { color: #BA2121 } /* Literal.String.Char */\\n.codehilite .dl { color: #BA2121 } /* Literal.String.Delimiter */\\n.codehilite .sd { color: #BA2121; font-style: italic } /* Literal.String.Doc */\\n.codehilite .s2 { color: #BA2121 } /* Literal.String.Double */\\n.codehilite .se { color: #BB6622; font-weight: bold } /* Literal.String.Escape */\\n.codehilite .sh { color: #BA2121 } /* Literal.String.Heredoc */\\n.codehilite .si { color: #BB6688; font-weight: bold } /* Literal.String.Interpol */\\n.codehilite .sx { color: #008000 } /* Literal.String.Other */\\n.codehilite .sr { color: #BB6688 } /* Literal.String.Regex */\\n.codehilite .s1 { color: #BA2121 } /* Literal.String.Single */\\n.codehilite .ss { color: #19177C } /* Literal.String.Symbol */\\n.codehilite .bp { color: #008000 } /* Name.Builtin.Pseudo */\\n.codehilite .fm { color: #0000FF } /* Name.Function.Magic */\\n.codehilite .vc { color: #19177C } /* Name.Variable.Class */\\n.codehilite .vg { color: #19177C } /* Name.Variable.Global */\\n.codehilite .vi { color: #19177C } /* Name.Variable.Instance */\\n.codehilite .vm { color: #19177C } /* Name.Variable.Magic */\\n.codehilite .il { color: #666666 } /* Literal.Number.Integer.Long */\\n\\n.markdown h1 { margin-block-start: 0.34em }\\n.markdown h2 { margin-block-start: 0.42em }\\n.markdown h3 { margin-block-start: 0.5em }\\n.markdown h4 { margin-block-start: 0.67em }\\n.markdown h5 { margin-block-start: 0.84em }\\n.markdown h6 { margin-block-start: 1.17em }\\n.markdown ul { padding-inline-start: 2em }\\n.markdown ol { padding-inline-start: 2em }\\n.markdown strong { font-weight: 600 }\\n.markdown a { color: -webkit-link }\\n.markdown a { color: -moz-hyperlinkText }\\n\\n.markdown .codehilite {\\n padding: 1rem 1.25rem;\\n margin-top: 1rem;\\n margin-bottom: 1rem;\\n border-radius: 0.25rem;\\n}\\n\");\n", + " }, function(Bokeh) {\n", + " inject_raw_css(\".json-formatter-row {\\n font-family: monospace;\\n}\\n.json-formatter-row,\\n.json-formatter-row a,\\n.json-formatter-row a:hover {\\n color: black;\\n text-decoration: none;\\n}\\n.json-formatter-row .json-formatter-row {\\n margin-left: 1rem;\\n}\\n.json-formatter-row .json-formatter-children.json-formatter-empty {\\n opacity: 0.5;\\n margin-left: 1rem;\\n}\\n.json-formatter-row .json-formatter-children.json-formatter-empty:after {\\n display: none;\\n}\\n.json-formatter-row .json-formatter-children.json-formatter-empty.json-formatter-object:after {\\n content: \\\"No properties\\\";\\n}\\n.json-formatter-row .json-formatter-children.json-formatter-empty.json-formatter-array:after {\\n content: \\\"[]\\\";\\n}\\n.json-formatter-row .json-formatter-string,\\n.json-formatter-row .json-formatter-stringifiable {\\n color: green;\\n white-space: pre;\\n word-wrap: break-word;\\n}\\n.json-formatter-row .json-formatter-number {\\n color: blue;\\n}\\n.json-formatter-row .json-formatter-boolean {\\n color: red;\\n}\\n.json-formatter-row .json-formatter-null {\\n color: #855A00;\\n}\\n.json-formatter-row .json-formatter-undefined {\\n color: #ca0b69;\\n}\\n.json-formatter-row .json-formatter-function {\\n color: #FF20ED;\\n}\\n.json-formatter-row .json-formatter-date {\\n background-color: rgba(0, 0, 0, 0.05);\\n}\\n.json-formatter-row .json-formatter-url {\\n text-decoration: underline;\\n color: blue;\\n cursor: pointer;\\n}\\n.json-formatter-row .json-formatter-bracket {\\n color: blue;\\n}\\n.json-formatter-row .json-formatter-key {\\n color: #00008B;\\n padding-right: 0.2rem;\\n}\\n.json-formatter-row .json-formatter-toggler-link {\\n cursor: pointer;\\n}\\n.json-formatter-row .json-formatter-toggler {\\n line-height: 1.2rem;\\n font-size: 0.7rem;\\n vertical-align: middle;\\n opacity: 0.6;\\n cursor: pointer;\\n padding-right: 0.2rem;\\n}\\n.json-formatter-row .json-formatter-toggler:after {\\n display: inline-block;\\n transition: transform 100ms ease-in;\\n content: \\\"\\\\25BA\\\";\\n}\\n.json-formatter-row > a > .json-formatter-preview-text {\\n opacity: 0;\\n transition: opacity 0.15s ease-in;\\n font-style: italic;\\n}\\n.json-formatter-row:hover > a > .json-formatter-preview-text {\\n opacity: 0.6;\\n}\\n.json-formatter-row.json-formatter-open > .json-formatter-toggler-link .json-formatter-toggler:after {\\n transform: rotate(90deg);\\n}\\n.json-formatter-row.json-formatter-open > .json-formatter-children:after {\\n display: inline-block;\\n}\\n.json-formatter-row.json-formatter-open > a > .json-formatter-preview-text {\\n display: none;\\n}\\n.json-formatter-row.json-formatter-open.json-formatter-empty:after {\\n display: block;\\n}\\n.json-formatter-dark.json-formatter-row {\\n font-family: monospace;\\n}\\n.json-formatter-dark.json-formatter-row,\\n.json-formatter-dark.json-formatter-row a,\\n.json-formatter-dark.json-formatter-row a:hover {\\n color: white;\\n text-decoration: none;\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-row {\\n margin-left: 1rem;\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-children.json-formatter-empty {\\n opacity: 0.5;\\n margin-left: 1rem;\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-children.json-formatter-empty:after {\\n display: none;\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-children.json-formatter-empty.json-formatter-object:after {\\n content: \\\"No properties\\\";\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-children.json-formatter-empty.json-formatter-array:after {\\n content: \\\"[]\\\";\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-string,\\n.json-formatter-dark.json-formatter-row .json-formatter-stringifiable {\\n color: #31F031;\\n white-space: pre;\\n word-wrap: break-word;\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-number {\\n color: #66C2FF;\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-boolean {\\n color: #EC4242;\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-null {\\n color: #EEC97D;\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-undefined {\\n color: #ef8fbe;\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-function {\\n color: #FD48CB;\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-date {\\n background-color: rgba(255, 255, 255, 0.05);\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-url {\\n text-decoration: underline;\\n color: #027BFF;\\n cursor: pointer;\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-bracket {\\n color: #9494FF;\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-key {\\n color: #23A0DB;\\n padding-right: 0.2rem;\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-toggler-link {\\n cursor: pointer;\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-toggler {\\n line-height: 1.2rem;\\n font-size: 0.7rem;\\n vertical-align: middle;\\n opacity: 0.6;\\n cursor: pointer;\\n padding-right: 0.2rem;\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-toggler:after {\\n display: inline-block;\\n transition: transform 100ms ease-in;\\n content: \\\"\\\\25BA\\\";\\n}\\n.json-formatter-dark.json-formatter-row > a > .json-formatter-preview-text {\\n opacity: 0;\\n transition: opacity 0.15s ease-in;\\n font-style: italic;\\n}\\n.json-formatter-dark.json-formatter-row:hover > a > .json-formatter-preview-text {\\n opacity: 0.6;\\n}\\n.json-formatter-dark.json-formatter-row.json-formatter-open > .json-formatter-toggler-link .json-formatter-toggler:after {\\n transform: rotate(90deg);\\n}\\n.json-formatter-dark.json-formatter-row.json-formatter-open > .json-formatter-children:after {\\n display: inline-block;\\n}\\n.json-formatter-dark.json-formatter-row.json-formatter-open > a > .json-formatter-preview-text {\\n display: none;\\n}\\n.json-formatter-dark.json-formatter-row.json-formatter-open.json-formatter-empty:after {\\n display: block;\\n}\\n\");\n", + " }, function(Bokeh) {\n", + " inject_raw_css(\".bk.debugger-card {\\n border: 1px solid rgba(0,0,0,1);\\n color: rgba(255,255,255,1);\\n background-color: rgba(0,0,0,1);\\n border-radius: 0rem;\\n}\\n.bk.debugger-card-header {\\n align-items: center;\\n text-align: left;\\n background-color: rgba(0, 0, 0, 1)!important;\\n color: rgba(255, 255, 255, 1);\\n border-radius: 0rem;\\n display: inline-flex;\\n justify-content: start;\\n width: 100%;\\n}\\n.bk.debugger-card-button {\\n background-color: transparent;\\n color: rgba(255, 255, 255, 1);\\n margin-left: 0.5em;\\n}\\n.bk.debugger-card-title {\\n align-items: center;\\n text-align: left;\\n color: rgba(255, 255, 255, 1);\\n font-size: 1em;\\n overflow-wrap: break-word;\\n}\\n\\n/* Special debugger buttons for clearing and saving */\\n.bk button.special_btn {\\n width: 25px;\\n height: 25px;\\n background-color: black;\\n color: white;\\n display: inline-block;\\n}\\n\\n\\n.bk button.special_btn .tooltiptext {\\n visibility: hidden;\\n width: 100px;\\n background-color: darkgray;\\n color: #fff;\\n text-align: center;\\n border-radius: 6px;\\n padding: 5px 0;\\n\\n /* Position the tooltip */\\n position: relative;\\n z-index: 1;\\n top: 100%;\\n left: 100%;\\n margin-left: -100px;\\n display: block;\\n}\\n\\n.bk button.special_btn:hover .tooltiptext {\\n visibility: visible;\\n}\\n\\n\\n\\n.bk button.clear_btn:hover .shown { display: none;}\\n.bk button.clear_btn:hover:before { content: \\\"\\u2611\\\"; }\\n\");\n", + " }, function(Bokeh) {\n", + " inject_raw_css(\".bk.card {\\n border: 1px solid rgba(0,0,0,.125);\\n border-radius: 0.25rem;\\n}\\n.bk.accordion {\\n border: 1px solid rgba(0,0,0,.125);\\n}\\n.bk.card-header {\\n align-items: center;\\n background-color: rgba(0, 0, 0, 0.03);\\n border-radius: 0.25rem;\\n display: inline-flex;\\n justify-content: start;\\n width: 100%;\\n}\\n.bk.accordion-header {\\n align-items: center;\\n background-color: rgba(0, 0, 0, 0.03);\\n border-radius: 0;\\n display: flex;\\n justify-content: start;\\n width: 100%;\\n}\\n.bk.card-button {\\n background-color: transparent;\\n margin-left: 0.5em;\\n}\\n.bk.card-header-row {\\n position: relative !important;\\n}\\n.bk.card-title {\\n align-items: center;\\n font-size: 1.4em;\\n font-weight: bold;\\n overflow-wrap: break-word;\\n}\\n.bk.card-header-row > .bk {\\n overflow-wrap: break-word;\\n text-align: center;\\n}\\n\");\n", + " }, function(Bokeh) {\n", + " inject_raw_css(\".bk.pn-loading {\\n overflow: hidden;\\n}\\n.bk.pn-loading:before {\\n position: absolute;\\n height: 100%;\\n width: 100%;\\n content: '';\\n z-index: 1000;\\n background-color: rgb(255,255,255,0.50);\\n border-color: lightgray;\\n background-repeat: no-repeat;\\n background-position: center;\\n background-size: auto 50%;\\n border-width: 1px;\\n cursor: progress;\\n}\\n.bk.pn-loading.arcs:hover:before {\\n cursor: progress;\\n}\\n.bk.pn-loading .pn-loading-msg {\\n position: absolute;\\n top: 72%;\\n font-size: 2em;\\n color: black;\\n width: 100%;\\n text-align: center;\\n}\\n\");\n", + " }, function(Bokeh) {\n", + " inject_raw_css(\".bk.panel-widget-box {\\n min-height: 20px;\\n background-color: #f5f5f5;\\n border: 1px solid #e3e3e3;\\n border-radius: 4px;\\n -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.05);\\n box-shadow: inset 0 1px 1px rgba(0,0,0,.05);\\n overflow-x: hidden;\\n overflow-y: hidden;\\n}\\n\\n.scrollable {\\n overflow: scroll;\\n}\\n\\nprogress {\\n appearance: none;\\n -moz-appearance: none;\\n -webkit-appearance: none;\\n border: none;\\n height: 20px;\\n background-color: whiteSmoke;\\n border-radius: 3px;\\n box-shadow: 0 2px 3px rgba(0,0,0,.5) inset;\\n color: royalblue;\\n position: relative;\\n margin: 0 0 1.5em;\\n}\\n\\nprogress[value]::-webkit-progress-bar {\\n background-color: whiteSmoke;\\n border-radius: 3px;\\n box-shadow: 0 2px 3px rgba(0,0,0,.5) inset;\\n}\\n\\nprogress[value]::-webkit-progress-value {\\n position: relative;\\n background-size: 35px 20px, 100% 100%, 100% 100%;\\n border-radius:3px;\\n}\\n\\nprogress.active:not([value])::before {\\n background-position: 10%;\\n animation-name: stripes;\\n animation-duration: 3s;\\n animation-timing-function: linear;\\n animation-iteration-count: infinite;\\n}\\n\\nprogress[value]::-moz-progress-bar {\\n background-size: 35px 20px, 100% 100%, 100% 100%;\\n border-radius:3px;\\n}\\n\\nprogress:not([value])::-moz-progress-bar {\\n border-radius:3px;\\n background: linear-gradient(-45deg, transparent 33%, rgba(0, 0, 0, 0.2) 33%, rgba(0, 0, 0, 0.2) 66%, transparent 66%) left/2.5em 1.5em;\\n}\\n\\nprogress.active:not([value])::-moz-progress-bar {\\n background-position: 10%;\\n animation-name: stripes;\\n animation-duration: 3s;\\n animation-timing-function: linear;\\n animation-iteration-count: infinite;\\n}\\n\\nprogress.active:not([value])::-webkit-progress-bar {\\n background-position: 10%;\\n animation-name: stripes;\\n animation-duration: 3s;\\n animation-timing-function: linear;\\n animation-iteration-count: infinite;\\n}\\n\\nprogress.primary[value]::-webkit-progress-value { background-color: #007bff; }\\nprogress.primary:not([value])::before { background-color: #007bff; }\\nprogress.primary:not([value])::-webkit-progress-bar { background-color: #007bff; }\\nprogress.primary::-moz-progress-bar { background-color: #007bff; }\\n\\nprogress.secondary[value]::-webkit-progress-value { background-color: #6c757d; }\\nprogress.secondary:not([value])::before { background-color: #6c757d; }\\nprogress.secondary:not([value])::-webkit-progress-bar { background-color: #6c757d; }\\nprogress.secondary::-moz-progress-bar { background-color: #6c757d; }\\n\\nprogress.success[value]::-webkit-progress-value { background-color: #28a745; }\\nprogress.success:not([value])::before { background-color: #28a745; }\\nprogress.success:not([value])::-webkit-progress-bar { background-color: #28a745; }\\nprogress.success::-moz-progress-bar { background-color: #28a745; }\\n\\nprogress.danger[value]::-webkit-progress-value { background-color: #dc3545; }\\nprogress.danger:not([value])::before { background-color: #dc3545; }\\nprogress.danger:not([value])::-webkit-progress-bar { background-color: #dc3545; }\\nprogress.danger::-moz-progress-bar { background-color: #dc3545; }\\n\\nprogress.warning[value]::-webkit-progress-value { background-color: #ffc107; }\\nprogress.warning:not([value])::before { background-color: #ffc107; }\\nprogress.warning:not([value])::-webkit-progress-bar { background-color: #ffc107; }\\nprogress.warning::-moz-progress-bar { background-color: #ffc107; }\\n\\nprogress.info[value]::-webkit-progress-value { background-color: #17a2b8; }\\nprogress.info:not([value])::before { background-color: #17a2b8; }\\nprogress.info:not([value])::-webkit-progress-bar { background-color: #17a2b8; }\\nprogress.info::-moz-progress-bar { background-color: #17a2b8; }\\n\\nprogress.light[value]::-webkit-progress-value { background-color: #f8f9fa; }\\nprogress.light:not([value])::before { background-color: #f8f9fa; }\\nprogress.light:not([value])::-webkit-progress-bar { background-color: #f8f9fa; }\\nprogress.light::-moz-progress-bar { background-color: #f8f9fa; }\\n\\nprogress.dark[value]::-webkit-progress-value { background-color: #343a40; }\\nprogress.dark:not([value])::-webkit-progress-bar { background-color: #343a40; }\\nprogress.dark:not([value])::before { background-color: #343a40; }\\nprogress.dark::-moz-progress-bar { background-color: #343a40; }\\n\\nprogress:not([value])::-webkit-progress-bar {\\n border-radius: 3px;\\n background: linear-gradient(-45deg, transparent 33%, rgba(0, 0, 0, 0.2) 33%, rgba(0, 0, 0, 0.2) 66%, transparent 66%) left/2.5em 1.5em;\\n}\\nprogress:not([value])::before {\\n content:\\\" \\\";\\n position:absolute;\\n height: 20px;\\n top:0;\\n left:0;\\n right:0;\\n bottom:0;\\n border-radius: 3px;\\n background: linear-gradient(-45deg, transparent 33%, rgba(0, 0, 0, 0.2) 33%, rgba(0, 0, 0, 0.2) 66%, transparent 66%) left/2.5em 1.5em;\\n}\\n\\n@keyframes stripes {\\n from {background-position: 0%}\\n to {background-position: 100%}\\n}\\n\\n.bk-root .bk.loader {\\n overflow: hidden;\\n}\\n\\n.bk.loader::after {\\n content: \\\"\\\";\\n border-radius: 50%;\\n -webkit-mask-image: radial-gradient(transparent 50%, rgba(0, 0, 0, 1) 54%);\\n width: 100%;\\n height: 100%;\\n left: 0;\\n top: 0;\\n position: absolute;\\n}\\n\\n.bk-root .bk.loader.dark::after {\\n background: #0f0f0f;\\n}\\n\\n.bk-root .bk.loader.light::after {\\n background: #f0f0f0;\\n}\\n\\n.bk-root .bk.loader.spin::after {\\n animation: spin 2s linear infinite;\\n}\\n\\n.bk-root div.bk.loader.spin.primary-light::after {\\n background: linear-gradient(135deg, #f0f0f0 50%, transparent 50%), linear-gradient(45deg, #f0f0f0 50%, #007bff 50%);\\n}\\n\\n.bk-root div.bk.loader.spin.secondary-light::after {\\n background: linear-gradient(135deg, #f0f0f0 50%, transparent 50%), linear-gradient(45deg, #f0f0f0 50%, #6c757d 50%);\\n}\\n\\n.bk-root div.bk.loader.spin.success-light::after {\\n background: linear-gradient(135deg, #f0f0f0 50%, transparent 50%), linear-gradient(45deg, #f0f0f0 50%, #28a745 50%);\\n}\\n\\n.bk-root div.bk.loader.spin.danger-light::after {\\n background: linear-gradient(135deg, #f0f0f0 50%, transparent 50%), linear-gradient(45deg, #f0f0f0 50%, #dc3545 50%);\\n}\\n\\n.bk-root div.bk.loader.spin.warning-light::after {\\n background: linear-gradient(135deg, #f0f0f0 50%, transparent 50%), linear-gradient(45deg, #f0f0f0 50%, #ffc107 50%);\\n}\\n\\n.bk-root div.bk.loader.spin.info-light::after {\\n background: linear-gradient(135deg, #f0f0f0 50%, transparent 50%), linear-gradient(45deg, #f0f0f0 50%, #17a2b8 50%);\\n}\\n\\n.bk-root div.bk.loader.spin.light-light::after {\\n background: linear-gradient(135deg, #f0f0f0 50%, transparent 50%), linear-gradient(45deg, #f0f0f0 50%, #f8f9fa 50%);\\n}\\n\\n.bk-root div.bk.loader.dark-light::after {\\n background: linear-gradient(135deg, #f0f0f0 50%, transparent 50%), linear-gradient(45deg, #f0f0f0 50%, #343a40 50%);\\n}\\n\\n.bk-root div.bk.loader.spin.primary-dark::after {\\n background: linear-gradient(135deg, #0f0f0f 50%, transparent 50%), linear-gradient(45deg, #0f0f0f 50%, #007bff 50%);\\n}\\n\\n.bk-root div.bk.loader.spin.secondary-dark::after {\\n background: linear-gradient(135deg, #0f0f0f 50%, transparent 50%), linear-gradient(45deg, #0f0f0f 50%, #6c757d 50%);\\n}\\n\\n.bk-root div.bk.loader.spin.success-dark::after {\\n background: linear-gradient(135deg, #0f0f0f 50%, transparent 50%), linear-gradient(45deg, #0f0f0f 50%, #28a745 50%);\\n}\\n\\n.bk-root div.bk.loader.spin.danger-dark::after {\\n background: linear-gradient(135deg, #0f0f0f 50%, transparent 50%), linear-gradient(45deg, #0f0f0f 50%, #dc3545 50%)\\n}\\n\\n.bk-root div.bk.loader.spin.warning-dark::after {\\n background: linear-gradient(135deg, #0f0f0f 50%, transparent 50%), linear-gradient(45deg, #0f0f0f 50%, #ffc107 50%);\\n}\\n\\n.bk-root div.bk.loader.spin.info-dark::after {\\n background: linear-gradient(135deg, #0f0f0f 50%, transparent 50%), linear-gradient(45deg, #0f0f0f 50%, #17a2b8 50%);\\n}\\n\\n.bk-root div.bk.loader.spin.light-dark::after {\\n background: linear-gradient(135deg, #0f0f0f 50%, transparent 50%), linear-gradient(45deg, #0f0f0f 50%, #f8f9fa 50%);\\n}\\n\\n.bk-root div.bk.loader.spin.dark-dark::after {\\n background: linear-gradient(135deg, #0f0f0f 50%, transparent 50%), linear-gradient(45deg, #0f0f0f 50%, #343a40 50%);\\n}\\n\\n/* Safari */\\n@-webkit-keyframes spin {\\n 0% { -webkit-transform: rotate(0deg); }\\n 100% { -webkit-transform: rotate(360deg); }\\n}\\n\\n@keyframes spin {\\n 0% { transform: rotate(0deg); }\\n 100% { transform: rotate(360deg); }\\n}\\n\\n.dot div {\\n height: 100%;\\n width: 100%;\\n border: 1px solid #000 !important;\\n background-color: #fff;\\n border-radius: 50%;\\n display: inline-block;\\n}\\n\\n.dot-filled div {\\n height: 100%;\\n width: 100%;\\n border: 1px solid #000 !important;\\n border-radius: 50%;\\n display: inline-block;\\n}\\n\\n.dot-filled.primary div {\\n background-color: #007bff;\\n}\\n\\n.dot-filled.secondary div {\\n background-color: #6c757d;\\n}\\n\\n.dot-filled.success div {\\n background-color: #28a745;\\n}\\n\\n.dot-filled.danger div {\\n background-color: #dc3545;\\n}\\n\\n.dot-filled.warning div {\\n background-color: #ffc107;\\n}\\n\\n.dot-filled.info div {\\n background-color: #17a2b8;\\n}\\n\\n.dot-filled.dark div {\\n background-color: #343a40;\\n}\\n\\n.dot-filled.light div {\\n background-color: #f8f9fa;\\n}\\n\\n/* Slider editor */\\n.slider-edit .bk-input-group .bk-input {\\n border: 0;\\n border-radius: 0;\\n min-height: 0;\\n padding-left: 0;\\n padding-right: 0;\\n font-weight: bold;\\n}\\n\\n.slider-edit .bk-input-group .bk-spin-wrapper {\\n display: contents;\\n}\\n\\n.slider-edit .bk-input-group .bk-spin-wrapper .bk.bk-spin-btn-up {\\n top: -6px;\\n}\\n\\n.slider-edit .bk-input-group .bk-spin-wrapper .bk.bk-spin-btn-down {\\n bottom: 3px;\\n}\\n\\n/* JSON Pane */\\n.bk-root .json-formatter-row .json-formatter-string, .bk-root .json-formatter-row .json-formatter-stringifiable {\\n white-space: pre-wrap;\\n}\\n\\n.ql-bubble .ql-editor {\\n border: 1px solid #ccc;\\n}\\n\");\n", + " }, function(Bokeh) {\n", + " inject_raw_css(\"\\n .bk.pn-loading.arc:before {\\n background-image: url(\\\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHN0eWxlPSJtYXJnaW46IGF1dG87IGJhY2tncm91bmQ6IG5vbmU7IGRpc3BsYXk6IGJsb2NrOyBzaGFwZS1yZW5kZXJpbmc6IGF1dG87IiB2aWV3Qm94PSIwIDAgMTAwIDEwMCIgcHJlc2VydmVBc3BlY3RSYXRpbz0ieE1pZFlNaWQiPiAgPGNpcmNsZSBjeD0iNTAiIGN5PSI1MCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjYzNjM2MzIiBzdHJva2Utd2lkdGg9IjEwIiByPSIzNSIgc3Ryb2tlLWRhc2hhcnJheT0iMTY0LjkzMzYxNDMxMzQ2NDE1IDU2Ljk3Nzg3MTQzNzgyMTM4Ij4gICAgPGFuaW1hdGVUcmFuc2Zvcm0gYXR0cmlidXRlTmFtZT0idHJhbnNmb3JtIiB0eXBlPSJyb3RhdGUiIHJlcGVhdENvdW50PSJpbmRlZmluaXRlIiBkdXI9IjFzIiB2YWx1ZXM9IjAgNTAgNTA7MzYwIDUwIDUwIiBrZXlUaW1lcz0iMDsxIj48L2FuaW1hdGVUcmFuc2Zvcm0+ICA8L2NpcmNsZT48L3N2Zz4=\\\");\\n background-size: auto calc(min(50%, 400px));\\n }\\n \");\n", + " }, function(Bokeh) {\n", + " /* BEGIN bokeh.min.js */\n", + " /*!\n", + " * Copyright (c) 2012 - 2022, Anaconda, Inc., and Bokeh Contributors\n", + " * All rights reserved.\n", + " * \n", + " * Redistribution and use in source and binary forms, with or without modification,\n", + " * are permitted provided that the following conditions are met:\n", + " * \n", + " * Redistributions of source code must retain the above copyright notice,\n", + " * this list of conditions and the following disclaimer.\n", + " * \n", + " * Redistributions in binary form must reproduce the above copyright notice,\n", + " * this list of conditions and the following disclaimer in the documentation\n", + " * and/or other materials provided with the distribution.\n", + " * \n", + " * Neither the name of Anaconda nor the names of any contributors\n", + " * may be used to endorse or promote products derived from this software\n", + " * without specific prior written permission.\n", + " * \n", + " * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\n", + " * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n", + " * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n", + " * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE\n", + " * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n", + " * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n", + " * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n", + " * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\n", + " * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n", + " * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF\n", + " * THE POSSIBILITY OF SUCH DAMAGE.\n", + " */\n", + " (function(root, factory) {\n", + " const bokeh = factory();\n", + " bokeh.__bokeh__ = true;\n", + " if (typeof root.Bokeh === \"undefined\" || typeof root.Bokeh.__bokeh__ === \"undefined\") {\n", + " root.Bokeh = bokeh;\n", + " }\n", + " const Bokeh = root.Bokeh;\n", + " Bokeh[bokeh.version] = bokeh;\n", + " })(this, function() {\n", + " let define;\n", + " const parent_require = typeof require === \"function\" && require\n", + " return (function(modules, entry, aliases, externals) {\n", + " if (aliases === undefined) aliases = {};\n", + " if (externals === undefined) externals = {};\n", + "\n", + " const cache = {};\n", + "\n", + " const normalize = function(name) {\n", + " if (typeof name === \"number\")\n", + " return name;\n", + "\n", + " if (name === \"bokehjs\")\n", + " return entry;\n", + "\n", + " if (!externals[name]) {\n", + " const prefix = \"@bokehjs/\"\n", + " if (name.slice(0, prefix.length) === prefix)\n", + " name = name.slice(prefix.length)\n", + " }\n", + "\n", + " const alias = aliases[name]\n", + " if (alias != null)\n", + " return alias;\n", + "\n", + " const trailing = name.length > 0 && name[name.lenght-1] === \"/\";\n", + " const index = aliases[name + (trailing ? \"\" : \"/\") + \"index\"];\n", + " if (index != null)\n", + " return index;\n", + "\n", + " return name;\n", + " }\n", + "\n", + " const require = function(name) {\n", + " let mod = cache[name];\n", + " if (!mod) {\n", + " const id = normalize(name);\n", + "\n", + " mod = cache[id];\n", + " if (!mod) {\n", + " if (!modules[id]) {\n", + " if (externals[id] === false || (externals[id] == true && parent_require)) {\n", + " try {\n", + " mod = {exports: externals[id] ? parent_require(id) : {}};\n", + " cache[id] = cache[name] = mod;\n", + " return mod.exports;\n", + " } catch (e) {}\n", + " }\n", + "\n", + " const err = new Error(\"Cannot find module '\" + name + \"'\");\n", + " err.code = 'MODULE_NOT_FOUND';\n", + " throw err;\n", + " }\n", + "\n", + " mod = {exports: {}};\n", + " cache[id] = cache[name] = mod;\n", + "\n", + " function __esModule() {\n", + " Object.defineProperty(mod.exports, \"__esModule\", {value: true});\n", + " }\n", + "\n", + " function __esExport(name, value) {\n", + " Object.defineProperty(mod.exports, name, {\n", + " enumerable: true, get: function () { return value; }\n", + " });\n", + " }\n", + "\n", + " modules[id].call(mod.exports, require, mod, mod.exports, __esModule, __esExport);\n", + " } else {\n", + " cache[name] = mod;\n", + " }\n", + " }\n", + "\n", + " return mod.exports;\n", + " }\n", + " require.resolve = function(name) {\n", + " return \"\"\n", + " }\n", + "\n", + " const main = require(entry);\n", + " main.require = require;\n", + "\n", + " if (typeof Proxy !== \"undefined\") {\n", + " // allow Bokeh.loader[\"@bokehjs/module/name\"] syntax\n", + " main.loader = new Proxy({}, {\n", + " get: function(_obj, module) {\n", + " return require(module);\n", + " }\n", + " });\n", + " }\n", + "\n", + " main.register_plugin = function(plugin_modules, plugin_entry, plugin_aliases, plugin_externals) {\n", + " if (plugin_aliases === undefined) plugin_aliases = {};\n", + " if (plugin_externals === undefined) plugin_externals = {};\n", + "\n", + " for (let name in plugin_modules) {\n", + " modules[name] = plugin_modules[name];\n", + " }\n", + "\n", + " for (let name in plugin_aliases) {\n", + " aliases[name] = plugin_aliases[name];\n", + " }\n", + "\n", + " for (let name in plugin_externals) {\n", + " externals[name] = plugin_externals[name];\n", + " }\n", + "\n", + " const plugin = require(plugin_entry);\n", + "\n", + " for (let name in plugin) {\n", + " main[name] = plugin[name];\n", + " }\n", + "\n", + " return plugin;\n", + " }\n", + "\n", + " return main;\n", + " })\n", + " ([\n", + " function _(t,_,n,o,r){o();(0,t(1).__exportStar)(t(2),n)},\n", + " function _(t,e,r,n,o){n();var a=function(t,e){return a=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r])},a(t,e)};r.__extends=function(t,e){if(\"function\"!=typeof e&&null!==e)throw new TypeError(\"Class extends value \"+String(e)+\" is not a constructor or null\");function r(){this.constructor=t}a(t,e),t.prototype=null===e?Object.create(e):(r.prototype=e.prototype,new r)};function i(t){var e=\"function\"==typeof Symbol&&Symbol.iterator,r=e&&t[e],n=0;if(r)return r.call(t);if(t&&\"number\"==typeof t.length)return{next:function(){return t&&n>=t.length&&(t=void 0),{value:t&&t[n++],done:!t}}};throw new TypeError(e?\"Object is not iterable.\":\"Symbol.iterator is not defined.\")}function c(t,e){var r=\"function\"==typeof Symbol&&t[Symbol.iterator];if(!r)return t;var n,o,a=r.call(t),i=[];try{for(;(void 0===e||e-- >0)&&!(n=a.next()).done;)i.push(n.value)}catch(t){o={error:t}}finally{try{n&&!n.done&&(r=a.return)&&r.call(a)}finally{if(o)throw o.error}}return i}function u(t){return this instanceof u?(this.v=t,this):new u(t)}r.__assign=function(){return r.__assign=Object.assign||function(t){for(var e,r=1,n=arguments.length;r=0;c--)(o=t[c])&&(i=(a<3?o(i):a>3?o(e,r,i):o(e,r))||i);return a>3&&i&&Object.defineProperty(e,r,i),i},r.__param=function(t,e){return function(r,n){e(r,n,t)}},r.__metadata=function(t,e){if(\"object\"==typeof Reflect&&\"function\"==typeof Reflect.metadata)return Reflect.metadata(t,e)},r.__awaiter=function(t,e,r,n){return new(r||(r=Promise))((function(o,a){function i(t){try{u(n.next(t))}catch(t){a(t)}}function c(t){try{u(n.throw(t))}catch(t){a(t)}}function u(t){var e;t.done?o(t.value):(e=t.value,e instanceof r?e:new r((function(t){t(e)}))).then(i,c)}u((n=n.apply(t,e||[])).next())}))},r.__generator=function(t,e){var r,n,o,a,i={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]};return a={next:c(0),throw:c(1),return:c(2)},\"function\"==typeof Symbol&&(a[Symbol.iterator]=function(){return this}),a;function c(a){return function(c){return function(a){if(r)throw new TypeError(\"Generator is already executing.\");for(;i;)try{if(r=1,n&&(o=2&a[0]?n.return:a[0]?n.throw||((o=n.return)&&o.call(n),0):n.next)&&!(o=o.call(n,a[1])).done)return o;switch(n=0,o&&(a=[2&a[0],o.value]),a[0]){case 0:case 1:o=a;break;case 4:return i.label++,{value:a[1],done:!1};case 5:i.label++,n=a[1],a=[0];continue;case 7:a=i.ops.pop(),i.trys.pop();continue;default:if(!(o=i.trys,(o=o.length>0&&o[o.length-1])||6!==a[0]&&2!==a[0])){i=0;continue}if(3===a[0]&&(!o||a[1]>o[0]&&a[1]1||c(t,e)}))})}function c(t,e){try{(r=o[t](e)).value instanceof u?Promise.resolve(r.value.v).then(f,l):s(a[0][2],r)}catch(t){s(a[0][3],t)}var r}function f(t){c(\"next\",t)}function l(t){c(\"throw\",t)}function s(t,e){t(e),a.shift(),a.length&&c(a[0][0],a[0][1])}},r.__asyncDelegator=function(t){var e,r;return e={},n(\"next\"),n(\"throw\",(function(t){throw t})),n(\"return\"),e[Symbol.iterator]=function(){return this},e;function n(n,o){e[n]=t[n]?function(e){return(r=!r)?{value:u(t[n](e)),done:\"return\"===n}:o?o(e):e}:o}},r.__asyncValues=function(t){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var e,r=t[Symbol.asyncIterator];return r?r.call(t):(t=i(t),e={},n(\"next\"),n(\"throw\"),n(\"return\"),e[Symbol.asyncIterator]=function(){return this},e);function n(r){e[r]=t[r]&&function(e){return new Promise((function(n,o){(function(t,e,r,n){Promise.resolve(n).then((function(e){t({value:e,done:r})}),e)})(n,o,(e=t[r](e)).done,e.value)}))}}},r.__makeTemplateObject=function(t,e){return Object.defineProperty?Object.defineProperty(t,\"raw\",{value:e}):t.raw=e,t};var f=Object.create?function(t,e){Object.defineProperty(t,\"default\",{enumerable:!0,value:e})}:function(t,e){t.default=e};r.__importStar=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var n in t)\"default\"!==n&&Object.prototype.hasOwnProperty.call(t,n)&&(0,r.__createBinding)(e,t,n);return f(e,t),e},r.__importDefault=function(t){return t&&t.__esModule?t:{default:t}},r.__classPrivateFieldGet=function(t,e,r,n){if(\"a\"===r&&!n)throw new TypeError(\"Private accessor was defined without a getter\");if(\"function\"==typeof e?t!==e||!n:!e.has(t))throw new TypeError(\"Cannot read private member from an object whose class did not declare it\");return\"m\"===r?n:\"a\"===r?n.call(t):n?n.value:e.get(t)},r.__classPrivateFieldSet=function(t,e,r,n,o){if(\"m\"===n)throw new TypeError(\"Private method is not writable\");if(\"a\"===n&&!o)throw new TypeError(\"Private accessor was defined without a setter\");if(\"function\"==typeof e?t!==e||!o:!e.has(t))throw new TypeError(\"Cannot write private member to an object whose class did not declare it\");return\"a\"===n?o.call(t,r):o?o.value=r:e.set(t,r),r}},\n", + " function _(e,t,o,s,l){s();const n=e(1);l(\"version\",e(3).version),l(\"index\",e(4).index),o.embed=(0,n.__importStar)(e(4)),o.protocol=(0,n.__importStar)(e(406)),o._testing=(0,n.__importStar)(e(407));var r=e(19);l(\"logger\",r.logger),l(\"set_log_level\",r.set_log_level),l(\"settings\",e(28).settings),l(\"Models\",e(7).Models),l(\"documents\",e(5).documents),l(\"safely\",e(408).safely)},\n", + " function _(n,i,o,c,e){c(),o.version=\"2.4.3\"},\n", + " function _(e,o,t,n,s){n();const d=e(5),r=e(19),_=e(34),c=e(13),i=e(8),a=e(16),u=e(397),l=e(399),m=e(398);var f=e(397);s(\"add_document_standalone\",f.add_document_standalone),s(\"index\",f.index),s(\"add_document_from_session\",e(399).add_document_from_session);var g=e(404);async function w(e,o,t,n){(0,i.isString)(e)&&(e=JSON.parse((0,_.unescape)(e)));const s={};for(const[o,t]of(0,c.entries)(e))s[o]=d.Document.from_json(t);const a=[];for(const e of o){const o=(0,m._resolve_element)(e),d=(0,m._resolve_root_elements)(e);if(null!=e.docid)a.push(await(0,u.add_document_standalone)(s[e.docid],o,d,e.use_for_title));else{if(null==e.token)throw new Error(\"Error rendering Bokeh items: either 'docid' or 'token' was expected.\");{const s=(0,l._get_ws_url)(t,n);r.logger.debug(`embed: computed ws url: ${s}`);try{a.push(await(0,l.add_document_from_session)(s,e.token,o,d,e.use_for_title)),console.log(\"Bokeh items were rendered successfully\")}catch(e){console.log(\"Error rendering Bokeh items:\",e)}}}}return a}s(\"embed_items_notebook\",g.embed_items_notebook),s(\"kernels\",g.kernels),s(\"BOKEH_ROOT\",e(398).BOKEH_ROOT),t.embed_item=async function(e,o){const t={},n=(0,_.uuid4)();t[n]=e.doc,null==o&&(o=e.target_id);const s=document.getElementById(o);null!=s&&s.classList.add(m.BOKEH_ROOT);const d={roots:{[e.root_id]:o},root_ids:[e.root_id],docid:n};await(0,a.defer)();const[r]=await w(t,[d]);return r},t.embed_items=async function(e,o,t,n){return await(0,a.defer)(),w(e,o,t,n)}},\n", + " function _(t,_,o,r,n){r();const a=t(1);(0,a.__exportStar)(t(6),o),(0,a.__exportStar)(t(35),o)},\n", + " function _(e,t,s,o,n){o();const i=e(1),r=e(7),l=e(3),_=e(19),a=e(251),c=e(14),d=e(30),h=e(15),f=e(17),u=e(31),m=e(29),g=e(9),v=e(13),p=(0,i.__importStar)(e(77)),w=e(26),b=e(8),y=e(309),k=e(75),M=e(53),j=e(396),z=e(35);class S{constructor(e){this.document=e,this.session=null,this.subscribed_models=new Set}send_event(e){const t=new z.MessageSentEvent(this.document,\"bokeh_event\",e.to_json());this.document._trigger_on_change(t)}trigger(e){for(const t of this.subscribed_models)null!=e.origin&&e.origin!=t||t._process_event(e)}}s.EventManager=S,S.__name__=\"EventManager\",s.documents=[],s.DEFAULT_TITLE=\"Bokeh Application\";class E{constructor(e){var t;s.documents.push(this),this._init_timestamp=Date.now(),this._resolver=null!==(t=null==e?void 0:e.resolver)&&void 0!==t?t:new r.ModelResolver,this._title=s.DEFAULT_TITLE,this._roots=[],this._all_models=new Map,this._all_models_freeze_count=0,this._callbacks=new Map,this._message_callbacks=new Map,this.event_manager=new S(this),this.idle=new h.Signal0(this,\"idle\"),this._idle_roots=new WeakMap,this._interactive_timestamp=null,this._interactive_plot=null}get layoutables(){return this._roots.filter((e=>e instanceof y.LayoutDOM))}get is_idle(){for(const e of this.layoutables)if(!this._idle_roots.has(e))return!1;return!0}notify_idle(e){this._idle_roots.set(e,!0),this.is_idle&&(_.logger.info(`document idle at ${Date.now()-this._init_timestamp} ms`),this.event_manager.send_event(new a.DocumentReady),this.idle.emit())}clear(){this._push_all_models_freeze();try{for(;this._roots.length>0;)this.remove_root(this._roots[0])}finally{this._pop_all_models_freeze()}}interactive_start(e,t=null){null==this._interactive_plot&&(this._interactive_plot=e,this._interactive_plot.trigger_event(new a.LODStart)),this._interactive_finalize=t,this._interactive_timestamp=Date.now()}interactive_stop(){null!=this._interactive_plot&&(this._interactive_plot.trigger_event(new a.LODEnd),null!=this._interactive_finalize&&this._interactive_finalize()),this._interactive_plot=null,this._interactive_timestamp=null,this._interactive_finalize=null}interactive_duration(){return null==this._interactive_timestamp?-1:Date.now()-this._interactive_timestamp}destructively_move(e){if(e===this)throw new Error(\"Attempted to overwrite a document with itself\");e.clear();const t=(0,g.copy)(this._roots);this.clear();for(const e of t)if(null!=e.document)throw new Error(`Somehow we didn't detach ${e}`);if(0!=this._all_models.size)throw new Error(`this._all_models still had stuff in it: ${this._all_models}`);for(const s of t)e.add_root(s);e.set_title(this._title)}_push_all_models_freeze(){this._all_models_freeze_count+=1}_pop_all_models_freeze(){this._all_models_freeze_count-=1,0===this._all_models_freeze_count&&this._recompute_all_models()}_invalidate_all_models(){_.logger.debug(\"invalidating document models\"),0===this._all_models_freeze_count&&this._recompute_all_models()}_recompute_all_models(){let e=new Set;for(const t of this._roots)e=p.union(e,t.references());const t=new Set(this._all_models.values()),s=p.difference(t,e),o=p.difference(e,t),n=new Map;for(const t of e)n.set(t.id,t);for(const e of s)e.detach_document();for(const e of o)e.attach_document(this);this._all_models=n}roots(){return this._roots}add_root(e,t){if(_.logger.debug(`Adding root: ${e}`),!(0,g.includes)(this._roots,e)){this._push_all_models_freeze();try{this._roots.push(e)}finally{this._pop_all_models_freeze()}this._trigger_on_change(new z.RootAddedEvent(this,e,t))}}remove_root(e,t){const s=this._roots.indexOf(e);if(!(s<0)){this._push_all_models_freeze();try{this._roots.splice(s,1)}finally{this._pop_all_models_freeze()}this._trigger_on_change(new z.RootRemovedEvent(this,e,t))}}title(){return this._title}set_title(e,t){e!==this._title&&(this._title=e,this._trigger_on_change(new z.TitleChangedEvent(this,e,t)))}get_model_by_id(e){var t;return null!==(t=this._all_models.get(e))&&void 0!==t?t:null}get_model_by_name(e){const t=[];for(const s of this._all_models.values())s instanceof M.Model&&s.name==e&&t.push(s);switch(t.length){case 0:return null;case 1:return t[0];default:throw new Error(`Multiple models are named '${e}'`)}}on_message(e,t){const s=this._message_callbacks.get(e);null==s?this._message_callbacks.set(e,new Set([t])):s.add(t)}remove_on_message(e,t){var s;null===(s=this._message_callbacks.get(e))||void 0===s||s.delete(t)}_trigger_on_message(e,t){const s=this._message_callbacks.get(e);if(null!=s)for(const e of s)e(t)}on_change(e,t=!1){this._callbacks.has(e)||this._callbacks.set(e,t)}remove_on_change(e){this._callbacks.delete(e)}_trigger_on_change(e){for(const[t,s]of this._callbacks)if(!s&&e instanceof z.DocumentEventBatch)for(const s of e.events)t(s);else t(e)}_notify_change(e,t,s,o,n){this._trigger_on_change(new z.ModelChangedEvent(this,e,t,s,o,null==n?void 0:n.setter_id,null==n?void 0:n.hint))}static _instantiate_object(e,t,s,o){const n=Object.assign(Object.assign({},s),{id:e,__deferred__:!0});return new(o.get(t))(n)}static _instantiate_references_json(e,t,s){var o;const n=new Map;for(const i of e){const e=i.id,r=i.type,l=null!==(o=i.attributes)&&void 0!==o?o:{};let _=t.get(e);null==_&&(_=E._instantiate_object(e,r,l,s),null!=i.subtype&&_.set_subtype(i.subtype)),n.set(_.id,_)}return n}static _resolve_refs(e,t,s,o){function n(e){var i;if((0,f.is_ref)(e)){const o=null!==(i=t.get(e.id))&&void 0!==i?i:s.get(e.id);if(null!=o)return o;throw new Error(`reference ${JSON.stringify(e)} isn't known (not in Document?)`)}if((0,u.is_NDArray_ref)(e)){const{buffer:t,dtype:s,shape:n}=(0,u.decode_NDArray)(e,o);return(0,m.ndarray)(t,{dtype:s,shape:n})}return(0,b.isArray)(e)?function(e){const t=[];for(const s of e)t.push(n(s));return t}(e):(0,b.isPlainObject)(e)?function(e){const t={};for(const[s,o]of(0,v.entries)(e))t[s]=n(o);return t}(e):e}return n(e)}static _initialize_references_json(e,t,s,o){const n=new Map;for(const{id:i,attributes:r}of e){const e=!t.has(i),l=e?s.get(i):t.get(i),_=E._resolve_refs(r,t,s,o);l.setv(_,{silent:!0}),n.set(i,{instance:l,is_new:e})}const i=[],r=new Set;function l(e){if(e instanceof c.HasProps){if(n.has(e.id)&&!r.has(e.id)){r.add(e.id);const{instance:t,is_new:s}=n.get(e.id),{attributes:o}=t;for(const e of(0,v.values)(o))l(e);s&&(t.finalize(),i.push(t))}}else if((0,b.isArray)(e))for(const t of e)l(t);else if((0,b.isPlainObject)(e))for(const t of(0,v.values)(e))l(t)}for(const e of n.values())l(e.instance);for(const e of i)e.connect_signals()}static _event_for_attribute_change(e,t,s,o,n){if(o.get_model_by_id(e.id).property(t).syncable){const i={kind:\"ModelChanged\",model:{id:e.id},attr:t,new:s};return c.HasProps._json_record_references(o,s,n,{recursive:!0}),i}return null}static _events_to_sync_objects(e,t,s,o){const n=Object.keys(e.attributes),i=Object.keys(t.attributes),r=(0,g.difference)(n,i),l=(0,g.difference)(i,n),a=(0,g.intersection)(n,i),c=[];for(const e of r)_.logger.warn(`Server sent key ${e} but we don't seem to have it in our JSON`);for(const n of l){const i=t.attributes[n];c.push(E._event_for_attribute_change(e,n,i,s,o))}for(const n of a){const i=e.attributes[n],r=t.attributes[n];null==i&&null==r||(null==i||null==r?c.push(E._event_for_attribute_change(e,n,r,s,o)):\"data\"==n||(0,w.is_equal)(i,r)||c.push(E._event_for_attribute_change(e,n,r,s,o)))}return c.filter((e=>null!=e))}static _compute_patch_since_json(e,t){const s=t.to_json(!1);function o(e){const t=new Map;for(const s of e.roots.references)t.set(s.id,s);return t}const n=o(e),i=new Map,r=[];for(const t of e.roots.root_ids)i.set(t,n.get(t)),r.push(t);const l=o(s),_=new Map,a=[];for(const e of s.roots.root_ids)_.set(e,l.get(e)),a.push(e);if(r.sort(),a.sort(),(0,g.difference)(r,a).length>0||(0,g.difference)(a,r).length>0)throw new Error(\"Not implemented: computing add/remove of document roots\");const c=new Set;let h=[];for(const e of t._all_models.keys())if(n.has(e)){const s=E._events_to_sync_objects(n.get(e),l.get(e),t,c);h=h.concat(s)}const f=new d.Serializer({include_defaults:!1});return f.to_serializable([...c]),{references:[...f.definitions],events:h}}to_json_string(e=!0){return JSON.stringify(this.to_json(e))}to_json(e=!0){const t=new d.Serializer({include_defaults:e}),s=t.to_serializable(this._roots);return{version:l.version,title:this._title,roots:{root_ids:s.map((e=>e.id)),references:[...t.definitions]}}}static from_json_string(e){const t=JSON.parse(e);return E.from_json(t)}static from_json(e){_.logger.debug(\"Creating Document from JSON\");const t=e.version,s=-1!==t.indexOf(\"+\")||-1!==t.indexOf(\"-\"),o=`Library versions: JS (${l.version}) / Python (${t})`;s||l.version.replace(/-(dev|rc)\\./,\"$1\")==t?_.logger.debug(o):(_.logger.warn(\"JS/Python version mismatch\"),_.logger.warn(o));const n=new r.ModelResolver;null!=e.defs&&(0,j.resolve_defs)(e.defs,n);const i=e.roots,a=i.root_ids,c=i.references,d=E._instantiate_references_json(c,new Map,n);E._initialize_references_json(c,new Map,d,new Map);const h=new E({resolver:n});h._push_all_models_freeze();for(const e of a){const t=d.get(e);null!=t&&h.add_root(t)}return h._pop_all_models_freeze(),h.set_title(e.title),h}replace_with_json(e){E.from_json(e).destructively_move(this)}create_json_patch_string(e){return JSON.stringify(this.create_json_patch(e))}create_json_patch(e){for(const t of e)if(t.document!=this)throw new Error(\"Cannot create a patch using events from a different document\");const t=new d.Serializer,s=t.to_serializable(e);for(const e of this._all_models.values())t.remove_def(e);return{events:s,references:[...t.definitions]}}apply_json_patch(e,t=new Map,s){const o=e.references,n=e.events,i=E._instantiate_references_json(o,this._all_models,this._resolver);t instanceof Map||(t=new Map(t));for(const e of n)switch(e.kind){case\"RootAdded\":case\"RootRemoved\":case\"ModelChanged\":{const t=e.model.id,s=this._all_models.get(t);if(null!=s)i.set(t,s);else if(!i.has(t))throw _.logger.warn(`Got an event for unknown model ${e.model}\"`),new Error(\"event model wasn't known\");break}}const r=new Map(this._all_models),l=new Map;for(const[e,t]of i)r.has(e)||l.set(e,t);E._initialize_references_json(o,r,l,t);for(const e of n)switch(e.kind){case\"MessageSent\":{const{msg_type:s,msg_data:o}=e;let n;if(void 0===o){if(1!=t.size)throw new Error(\"expected exactly one buffer\");{const[[,e]]=t;n=e}}else n=E._resolve_refs(o,r,l,t);this._trigger_on_message(s,n);break}case\"ModelChanged\":{const o=e.model.id,n=this._all_models.get(o);if(null==n)throw new Error(`Cannot apply patch to ${o} which is not in the document`);const i=e.attr,_=E._resolve_refs(e.new,r,l,t);n.setv({[i]:_},{setter_id:s});break}case\"ColumnDataChanged\":{const o=e.column_source.id,n=this._all_models.get(o);if(null==n)throw new Error(`Cannot stream to ${o} which is not in the document`);const i=E._resolve_refs(e.new,new Map,new Map,t);if(null!=e.cols)for(const e in n.data)e in i||(i[e]=n.data[e]);n.setv({data:i},{setter_id:s,check_eq:!1});break}case\"ColumnsStreamed\":{const t=e.column_source.id,o=this._all_models.get(t);if(null==o)throw new Error(`Cannot stream to ${t} which is not in the document`);if(!(o instanceof k.ColumnDataSource))throw new Error(\"Cannot stream to non-ColumnDataSource\");const n=e.data,i=e.rollover;o.stream(n,i,s);break}case\"ColumnsPatched\":{const t=e.column_source.id,o=this._all_models.get(t);if(null==o)throw new Error(`Cannot patch ${t} which is not in the document`);if(!(o instanceof k.ColumnDataSource))throw new Error(\"Cannot patch non-ColumnDataSource\");const n=e.patches;o.patch(n,s);break}case\"RootAdded\":{const t=e.model.id,o=i.get(t);this.add_root(o,s);break}case\"RootRemoved\":{const t=e.model.id,o=i.get(t);this.remove_root(o,s);break}case\"TitleChanged\":this.set_title(e.title,s);break;default:throw new Error(`Unknown patch event ${JSON.stringify(e)}`)}}}s.Document=E,E.__name__=\"Document\"},\n", + " function _(e,o,s,r,t){r();const l=e(1),i=e(8),d=e(13),n=e(14);s.overrides={};const a=new Map;s.Models=e=>{const o=s.Models.get(e);if(null!=o)return o;throw new Error(`Model '${e}' does not exist. This could be due to a widget or a custom model not being registered before first usage.`)},s.Models.get=e=>{var o;return null!==(o=s.overrides[e])&&void 0!==o?o:a.get(e)},s.Models.register=(e,o)=>{s.overrides[e]=o},s.Models.unregister=e=>{delete s.overrides[e]},s.Models.register_models=(e,o=!1,s)=>{var r;if(null!=e)for(const t of(0,i.isArray)(e)?e:(0,d.values)(e))if(r=t,(0,i.isObject)(r)&&r.prototype instanceof n.HasProps){const e=t.__qualified__;o||!a.has(e)?a.set(e,t):null!=s?s(e):console.warn(`Model '${e}' was already registered`)}},s.register_models=s.Models.register_models,s.Models.registered_names=()=>[...a.keys()];class _{constructor(){this._known_models=new Map}get(e,o){var r;const t=null!==(r=s.Models.get(e))&&void 0!==r?r:this._known_models.get(e);if(null!=t)return t;if(void 0!==o)return o;throw new Error(`Model '${e}' does not exist. This could be due to a widget or a custom model not being registered before first usage.`)}register(e){const o=e.__qualified__;null==this.get(o,null)?this._known_models.set(o,e):console.warn(`Model '${o}' was already registered with this resolver`)}}s.ModelResolver=_,_.__name__=\"ModelResolver\";const g=(0,l.__importStar)(e(38));(0,s.register_models)(g);const u=(0,l.__importStar)(e(392));(0,s.register_models)(u)},\n", + " function _(n,t,r,e,i){e();\n", + " // (c) 2009-2015 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors\n", + " // Underscore may be freely distributed under the MIT license.\n", + " const o=n(9),u=Object.prototype.toString;function c(n){return!0===n||!1===n||\"[object Boolean]\"===u.call(n)}function f(n){return\"[object Number]\"===u.call(n)}function l(n){return\"[object String]\"===u.call(n)}function s(n){return\"symbol\"==typeof n}function a(n){const t=typeof n;return\"function\"===t||\"object\"===t&&!!n}function b(n){return a(n)&&void 0!==n[Symbol.iterator]}r.isBoolean=c,r.isNumber=f,r.isInteger=function(n){return f(n)&&Number.isInteger(n)},r.isString=l,r.isSymbol=s,r.isPrimitive=function(n){return null===n||c(n)||f(n)||l(n)||s(n)},r.isFunction=function(n){return\"[object Function]\"===u.call(n)},r.isArray=function(n){return Array.isArray(n)},r.isArrayOf=function(n,t){return(0,o.every)(n,t)},r.isArrayableOf=function(n,t){for(let r=0,e=n.length;r0,\"'step' must be a positive number\"),null==t&&(t=n,n=0);const{max:r,ceil:o,abs:i}=Math,c=n<=t?e:-e,f=r(o(i(t-n)/e),0),s=new Array(f);for(let t=0;t=0?t:n.length+t]},e.zip=function(...n){if(0==n.length)return[];const t=(0,c.min)(n.map((n=>n.length))),e=n.length,r=new Array(t);for(let o=0;on.length))),r=Array(e);for(let n=0;nn[t]))},e.argmax=function(n){return(0,c.max_by)(m(n.length),(t=>n[t]))},e.sort_by=function(n,t){const e=n.map(((n,e)=>({value:n,index:e,key:t(n)})));return e.sort(((n,t)=>{const e=n.key,r=t.key;if(e!==r){if(e>r||void 0===e)return 1;if(en.value))},e.uniq=function(n){const t=new Set;for(const e of n)t.add(e);return[...t]},e.uniq_by=function(n,t){const e=[],r=[];for(const o of n){const n=t(o);l(r,n)||(r.push(n),e.push(o))}return e},e.union=function(...n){const t=new Set;for(const e of n)for(const n of e)t.add(n);return[...t]},e.intersection=function(n,...t){const e=[];n:for(const r of n)if(!l(e,r)){for(const n of t)if(!l(n,r))continue n;e.push(r)}return e},e.difference=function(n,...t){const e=a(t);return n.filter((n=>!l(e,n)))},e.remove_at=function(n,t){const e=s(n);return e.splice(t,1),e},e.remove_by=function(n,t){for(let e=0;e2*a;)n-=2*a;return n}function c(n,t){return u(n-t)}function f(){return Math.random()}function i(n){switch(n){case\"deg\":return a/180;case\"rad\":return 1;case\"grad\":return a/200;case\"turn\":return 2*a}}r.angle_norm=u,r.angle_dist=c,r.angle_between=function(n,t,r,e=!1){const o=c(t,r);if(0==o)return!1;if(o==2*a)return!0;const f=u(n),i=c(t,f)<=o&&c(f,r)<=o;return e?!i:i},r.random=f,r.randomIn=function(n,t){return null==t&&(t=n,n=0),n+Math.floor(Math.random()*(t-n+1))},r.atan2=function(n,t){return Math.atan2(t[1]-n[1],t[0]-n[0])},r.radians=function(n){return n*(a/180)},r.degrees=function(n){return n/(a/180)},r.resolve_angle=function(n,t){return-i(t)*n},r.to_radians_coeff=i,r.rnorm=function(n,t){let r,e;for(;r=f(),e=f(),e=(2*e-1)*Math.sqrt(1/Math.E*2),!(-4*r*r*Math.log(r)>=e*e););let o=e/r;return o=n+t*o,o},r.clamp=function(n,t,r){return nr?r:n},r.log=function(n,t=Math.E){return Math.log(n)/Math.log(t)},r.float32_epsilon=1.1920928955078125e-7},\n", + " function _(r,n,e,o,s){o();class t extends Error{}e.AssertionError=t,t.__name__=\"AssertionError\",e.assert=function(r,n){if(!(!0===r||!1!==r&&r()))throw new t(null!=n?n:\"Assertion failed\")},e.unreachable=function(){throw new Error(\"unreachable code\")}},\n", + " function _(n,t,e,r,o){r();const i=n(10);function l(n,t,e,...r){const o=n.length;t<0&&(t+=o),t<0?t=0:t>o&&(t=o),null==e||e>o-t?e=o-t:e<0&&(e=0);const i=o-e+r.length,l=new n.constructor(i);let u=0;for(;u0?0:r-1;for(;o>=0&&ot[t.length-1])return t.length;let e=0,r=t.length-1;for(;r-e!=1;){const o=e+Math.floor((r-e)/2);n>=t[o]?e=o:r=o}return e}e.is_empty=function(n){return 0==n.length},e.copy=function(n){return Array.isArray(n)?n.slice():new n.constructor(n)},e.splice=l,e.head=u,e.insert=function(n,t,e){return l(n,e,0,t)},e.append=function(n,t){return l(n,n.length,0,t)},e.prepend=function(n,t){return l(n,0,0,t)},e.indexOf=function(n,t){for(let e=0,r=n.length;ee&&(e=t);return e},e.minmax=function(n){let t,e=1/0,r=-1/0;for(let o=0,i=n.length;or&&(r=t));return[e,r]},e.minmax2=function(n,t){let e,r,o=1/0,i=-1/0,l=1/0,u=-1/0;const c=Math.min(n.length,t.length);for(let f=0;fi&&(i=e),ru&&(u=r));return[o,i,l,u]},e.min_by=function(n,t){if(0==n.length)throw new Error(\"min_by() called with an empty array\");let e=n[0],r=t(e);for(let o=1,i=n.length;or&&(e=i,r=l)}return e},e.sum=function(n){let t=0;for(let e=0,r=n.length;et[r]=n+e),0),t},e.every=function(n,t){for(let e=0,r=n.length;e(n-t)/r))}},\n", + " function _(t,e,n,c,o){c();const s=t(9),{hasOwnProperty:r}=Object.prototype;function i(t){return Object.keys(t).length}function u(t){return 0==i(t)}n.keys=Object.keys,n.values=Object.values,n.entries=Object.entries,n.extend=Object.assign,n.clone=function(t){return Object.assign({},t)},n.merge=function(t,e){const n=Object.create(Object.prototype),c=(0,s.concat)([Object.keys(t),Object.keys(e)]);for(const o of c){const c=r.call(t,o)?t[o]:[],i=r.call(e,o)?e[o]:[];n[o]=(0,s.union)(c,i)}return n},n.size=i,n.is_empty=u,n.isEmpty=u,n.to_object=function(t){const e={};for(const[n,c]of t)e[n]=c;return e}},\n", + " function _(e,t,s,n,r){n();const i=e(1);var o;const c=e(15),a=e(17),_=(0,i.__importStar)(e(18)),h=(0,i.__importStar)(e(21)),u=e(34),l=e(13),f=e(8),p=e(26),d=e(30),g=e(35),y=e(26),v=e(36),m=e(37),b=(0,i.__importStar)(e(21));class w extends((0,c.Signalable)()){constructor(e={}){var t,s;super(),this._subtype=void 0,this.document=null,this.destroyed=new c.Signal0(this,\"destroyed\"),this.change=new c.Signal0(this,\"change\"),this.transformchange=new c.Signal0(this,\"transformchange\"),this.exprchange=new c.Signal0(this,\"exprchange\"),this.properties={},this._watchers=new WeakMap,this._pending=!1,this._changing=!1;const n=e instanceof Map?e.get.bind(e):t=>e[t];this.id=null!==(t=n(\"id\"))&&void 0!==t?t:(0,u.uniqueId)();for(const[e,{type:t,default_value:s,options:r}]of(0,l.entries)(this._props)){let i;t instanceof _.PropertyAlias?Object.defineProperty(this.properties,e,{get:()=>this.properties[t.attr],configurable:!1,enumerable:!1}):(i=t instanceof h.Kind?new _.PrimitiveProperty(this,e,t,s,n(e),r):new t(this,e,h.Any,s,n(e),r),this.properties[e]=i)}null!==(s=n(\"__deferred__\"))&&void 0!==s&&s||(this.finalize(),this.connect_signals())}get is_syncable(){return!0}set type(e){console.warn(\"prototype.type = 'ModelName' is deprecated, use static __name__ instead\"),this.constructor.__name__=e}get type(){return this.constructor.__qualified__}static get __qualified__(){const{__module__:e,__name__:t}=this;return null!=e?`${e}.${t}`:t}static get[Symbol.toStringTag](){return this.__name__}static _fix_default(e,t){if(void 0===e||(0,f.isFunction)(e))return e;if((0,f.isPrimitive)(e))return()=>e;{const t=new m.Cloner;return()=>t.clone(e)}}static define(e){for(const[t,s]of(0,l.entries)((0,f.isFunction)(e)?e(b):e)){if(null!=this.prototype._props[t])throw new Error(`attempted to redefine property '${this.prototype.type}.${t}'`);if(null!=this.prototype[t])throw new Error(`attempted to redefine attribute '${this.prototype.type}.${t}'`);Object.defineProperty(this.prototype,t,{get(){return this.properties[t].get_value()},set(e){return this.setv({[t]:e}),this},configurable:!1,enumerable:!0});const[e,n,r={}]=s,i={type:e,default_value:this._fix_default(n,t),options:r},o=Object.assign({},this.prototype._props);o[t]=i,this.prototype._props=o}}static internal(e){const t={};for(const[s,n]of(0,l.entries)((0,f.isFunction)(e)?e(b):e)){const[e,r,i={}]=n;t[s]=[e,r,Object.assign(Object.assign({},i),{internal:!0})]}this.define(t)}static mixins(e){function t(e,t){const s={};for(const[n,r]of(0,l.entries)(t))s[e+n]=r;return s}const s={},n=[];for(const r of(0,f.isArray)(e)?e:[e])if((0,f.isArray)(r)){const[e,i]=r;(0,l.extend)(s,t(e,i)),n.push([e,i])}else{const e=r;(0,l.extend)(s,e),n.push([\"\",e])}this.define(s),this.prototype._mixins=[...this.prototype._mixins,...n]}static override(e){for(const[t,s]of(0,l.entries)(e)){const e=this._fix_default(s,t),n=this.prototype._props[t];if(null==n)throw new Error(`attempted to override nonexistent '${this.prototype.type}.${t}'`);const r=Object.assign({},this.prototype._props);r[t]=Object.assign(Object.assign({},n),{default_value:e}),this.prototype._props=r}}toString(){return`${this.type}(${this.id})`}property(e){const t=this.properties[e];if(null!=t)return t;throw new Error(`unknown property ${this.type}.${e}`)}get attributes(){const e={};for(const t of this)e[t.attr]=t.get_value();return e}[m.clone](e){const t=new Map;for(const s of this)s.dirty&&t.set(s.attr,e.clone(s.get_value()));return new this.constructor(t)}[y.equals](e,t){for(const s of this){const n=e.property(s.attr);if(!t.eq(s.get_value(),n.get_value()))return!1}return!0}[v.pretty](e){const t=e.token,s=[];for(const n of this)if(n.dirty){const r=n.get_value();s.push(`${n.attr}${t(\":\")} ${e.to_string(r)}`)}return`${this.constructor.__qualified__}${t(\"(\")}${t(\"{\")}${s.join(`${t(\",\")} `)}${t(\"}\")}${t(\")\")}`}[d.serialize](e){const t=this.ref();e.add_ref(this,t);const s=this.struct();for(const t of this)t.syncable&&(e.include_defaults||t.dirty)&&(s.attributes[t.attr]=e.to_serializable(t.get_value()));return e.add_def(this,s),t}finalize(){for(const e of this){if(!(e instanceof _.VectorSpec||e instanceof _.ScalarSpec))continue;const t=e.get_value();if(null!=t){const{transform:e,expr:s}=t;null!=e&&this.connect(e.change,(()=>this.transformchange.emit())),null!=s&&this.connect(s.change,(()=>this.exprchange.emit()))}}this.initialize()}initialize(){}connect_signals(){}disconnect_signals(){c.Signal.disconnectReceiver(this)}destroy(){this.disconnect_signals(),this.destroyed.emit()}clone(){return(new m.Cloner).clone(this)}changed_for(e){const t=this._watchers.get(e);return this._watchers.set(e,!1),null==t||t}_setv(e,t){const s=t.check_eq,n=[],r=this._changing;this._changing=!0;for(const[t,r]of e)!1!==s&&(0,p.is_equal)(t.get_value(),r)||(t.set_value(r),n.push(t));n.length>0&&(this._watchers=new WeakMap,this._pending=!0);for(const e of n)e.change.emit();if(!r){if(!t.no_change)for(;this._pending;)this._pending=!1,this.change.emit();this._pending=!1,this._changing=!1}}setv(e,t={}){const s=(0,l.entries)(e);if(0==s.length)return;if(!0===t.silent){this._watchers=new WeakMap;for(const[e,t]of s)this.properties[e].set_value(t);return}const n=new Map,r=new Map;for(const[e,t]of s){const s=this.properties[e];n.set(s,t),r.set(s,s.get_value())}this._setv(n,t);const{document:i}=this;if(null!=i){const e=[];for(const[t,s]of r)e.push([t,s,t.get_value()]);for(const[,t,s]of e)if(this._needs_invalidate(t,s)){i._invalidate_all_models();break}this._push_changes(e,t)}}getv(e){return this.property(e).get_value()}ref(){return{id:this.id}}struct(){const e={type:this.type,id:this.id,attributes:{}};return null!=this._subtype&&(e.subtype=this._subtype),e}set_subtype(e){this._subtype=e}*[Symbol.iterator](){yield*(0,l.values)(this.properties)}*syncable_properties(){for(const e of this)e.syncable&&(yield e)}serializable_attributes(){const e={};for(const t of this.syncable_properties())e[t.attr]=t.get_value();return e}static _json_record_references(e,t,s,n){const{recursive:r}=n;if((0,a.is_ref)(t)){const n=e.get_model_by_id(t.id);null==n||s.has(n)||w._value_record_references(n,s,{recursive:r})}else if((0,f.isArray)(t))for(const n of t)w._json_record_references(e,n,s,{recursive:r});else if((0,f.isPlainObject)(t))for(const n of(0,l.values)(t))w._json_record_references(e,n,s,{recursive:r})}static _value_record_references(e,t,s){const{recursive:n}=s;if(e instanceof w){if(!t.has(e)&&(t.add(e),n))for(const s of e.syncable_properties()){const e=s.get_value();w._value_record_references(e,t,{recursive:n})}}else if((0,f.isArray)(e))for(const s of e)w._value_record_references(s,t,{recursive:n});else if((0,f.isPlainObject)(e))for(const s of(0,l.values)(e))w._value_record_references(s,t,{recursive:n})}references(){const e=new Set;return w._value_record_references(this,e,{recursive:!0}),e}_doc_attached(){}_doc_detached(){}attach_document(e){if(null!=this.document&&this.document!=e)throw new Error(\"models must be owned by only a single document\");this.document=e,this._doc_attached()}detach_document(){this._doc_detached(),this.document=null}_needs_invalidate(e,t){const s=new Set;w._value_record_references(t,s,{recursive:!1});const n=new Set;w._value_record_references(e,n,{recursive:!1});for(const e of s)if(!n.has(e))return!0;for(const e of n)if(!s.has(e))return!0;return!1}_push_changes(e,t={}){if(!this.is_syncable)return;const{document:s}=this;if(null==s)return;const{setter_id:n}=t,r=[];for(const[t,i,o]of e)t.syncable&&r.push(new g.ModelChangedEvent(s,this,t.attr,i,o,n));if(0!=r.length){let e;1==r.length?[e]=r:e=new g.DocumentEventBatch(s,r,n),s._trigger_on_change(e)}}on_change(e,t){for(const s of(0,f.isArray)(e)?e:[e])this.connect(s.change,t)}}s.HasProps=w,(o=w).prototype._props={},o.prototype._mixins=[]},\n", + " function _(n,t,e,l,s){l();const i=n(16),o=n(9);class c{constructor(n,t){this.sender=n,this.name=t}connect(n,t=null){u.has(this.sender)||u.set(this.sender,[]);const e=u.get(this.sender);if(null!=g(e,this,n,t))return!1;const l=null!=t?t:n;a.has(l)||a.set(l,[]);const s=a.get(l),i={signal:this,slot:n,context:t};return e.push(i),s.push(i),!0}disconnect(n,t=null){const e=u.get(this.sender);if(null==e||0===e.length)return!1;const l=g(e,this,n,t);if(null==l)return!1;const s=null!=t?t:n,i=a.get(s);return l.signal=null,d(e),d(i),!0}emit(n){var t;const e=null!==(t=u.get(this.sender))&&void 0!==t?t:[];for(const{signal:t,slot:l,context:s}of e)t===this&&l.call(s,n,this.sender)}}e.Signal=c,c.__name__=\"Signal\";class r extends c{emit(){super.emit(void 0)}}e.Signal0=r,r.__name__=\"Signal0\",function(n){function t(n,t){const e=u.get(n);if(null==e||0===e.length)return;const l=a.get(t);if(null!=l&&0!==l.length){for(const t of l){if(null==t.signal)return;t.signal.sender===n&&(t.signal=null)}d(e),d(l)}}function e(n){var t;const e=u.get(n);if(null!=e&&0!==e.length){for(const n of e){if(null==n.signal)return;const e=null!==(t=n.context)&&void 0!==t?t:n.slot;n.signal=null,d(a.get(e))}d(e)}}function l(n,t,e){const l=a.get(n);if(null!=l&&0!==l.length){for(const n of l){if(null==n.signal)return;if(null!=t&&n.slot!=t)continue;const l=n.signal.sender;null!=e&&e.has(l)||(n.signal=null,d(u.get(l)))}d(l)}}function s(n){const t=u.get(n);if(null!=t&&0!==t.length){for(const n of t)n.signal=null;d(t)}const e=a.get(n);if(null!=e&&0!==e.length){for(const n of e)n.signal=null;d(e)}}n.disconnect_between=t,n.disconnect_sender=e,n.disconnect_receiver=l,n.disconnect_all=s,n.disconnectBetween=t,n.disconnectSender=e,n.disconnectReceiver=l,n.disconnectAll=s}(c||(e.Signal=c={})),e.Signalable=function(){return class{connect(n,t){return n.connect(t,this)}disconnect(n,t){return n.disconnect(t,this)}}};const u=new WeakMap,a=new WeakMap;function g(n,t,e,l){return(0,o.find)(n,(n=>n.signal===t&&n.slot===e&&n.context===l))}const f=new Set;function d(n){0===f.size&&(async()=>{await(0,i.defer)(),function(){for(const n of f)(0,o.remove_by)(n,(n=>null==n.signal));f.clear()}()})(),f.add(n)}},\n", + " function _(e,n,t,s,o){s();const r=new MessageChannel,a=new Map;r.port1.onmessage=e=>{const n=e.data,t=a.get(n);if(null!=t)try{t()}finally{a.delete(n)}};let i=1;t.defer=function(){return new Promise((e=>{const n=i++;a.set(n,e),r.port2.postMessage(n)}))},t.wait=function(e){return new Promise((n=>setTimeout(n,e)))}},\n", + " function _(n,t,i,e,c){e();const r=n(8),s=n(13);i.is_ref=function(n){if((0,r.isPlainObject)(n)){const t=(0,s.keys)(n);return 1==t.length&&\"id\"==t[0]}return!1}},\n", + " function _(e,t,n,r,a){r(),n.YCoordinateSeqSeqSeqSpec=n.XCoordinateSeqSeqSeqSpec=n.YCoordinateSeqSpec=n.XCoordinateSeqSpec=n.YCoordinateSpec=n.XCoordinateSpec=n.CoordinateSeqSeqSeqSpec=n.CoordinateSeqSpec=n.CoordinateSpec=n.BaseCoordinateSpec=n.NumberUnitsSpec=n.UnitsSpec=n.DataSpec=n.VectorSpec=n.TextBaselineScalar=n.TextAlignScalar=n.FontStyleScalar=n.FontSizeScalar=n.FontScalar=n.LineDashScalar=n.LineCapScalar=n.LineJoinScalar=n.ArrayScalar=n.NullStringScalar=n.StringScalar=n.NumberScalar=n.ColorScalar=n.AnyScalar=n.ScalarSpec=n.VerticalAlign=n.UpdateMode=n.TooltipAttachment=n.TickLabelOrientation=n.TextureRepetition=n.TextBaseline=n.TextAlign=n.TapBehavior=n.StepMode=n.StartEnd=n.SpatialUnits=n.Sort=n.SizingMode=n.Side=n.RoundingFunction=n.ResetPolicy=n.RenderMode=n.RenderLevel=n.RadiusDimension=n.PointPolicy=n.Place=void 0,n.TextBaselineSpec=n.TextAlignSpec=n.FontStyleSpec=n.FontSizeSpec=n.FontSpec=n.LineDashSpec=n.LineCapSpec=n.LineJoinSpec=n.MarkerSpec=n.ArraySpec=n.NullStringSpec=n.StringSpec=n.AnySpec=n.NDArraySpec=n.ColorSpec=n.ScreenSizeSpec=n.NumberSpec=n.IntSpec=n.BooleanSpec=n.NullDistanceSpec=n.DistanceSpec=n.AngleSpec=void 0;const i=e(1),s=e(15),l=e(19),o=(0,i.__importStar)(e(20)),c=e(24),_=e(9),u=e(12),d=e(10),S=e(22),p=e(27),m=e(8),h=e(28),v=e(29),y=e(33);function x(e){try{return JSON.stringify(e)}catch(t){return e.toString()}}function g(e){return(0,m.isPlainObject)(e)&&(void 0===e.value?0:1)+(void 0===e.field?0:1)+(void 0===e.expr?0:1)==1}a(\"Uniform\",y.Uniform),a(\"UniformScalar\",y.UniformScalar),a(\"UniformVector\",y.UniformVector),n.isSpec=g;class f{constructor(e,t,n,r,a,i={}){var l;let o;if(this.obj=e,this.attr=t,this.kind=n,this.default_value=r,this._dirty=!1,this.change=new s.Signal0(this.obj,\"change\"),this.internal=null!==(l=i.internal)&&void 0!==l&&l,this.convert=i.convert,this.on_update=i.on_update,void 0!==a)o=a,this._dirty=!0;else{const t=this._default_override();if(void 0!==t)o=t;else{if(void 0===r)return void(this.spec={value:null});o=r(e)}}this._update(o)}get is_value(){return void 0!==this.spec.value}get syncable(){return!this.internal}get_value(){return this.spec.value}set_value(e){this._update(e),this._dirty=!0}_default_override(){}get dirty(){return this._dirty}_update(e){var t;if(this.validate(e),null!=this.convert){const t=this.convert(e);void 0!==t&&(e=t)}this.spec={value:e},null===(t=this.on_update)||void 0===t||t.call(this,e,this.obj)}toString(){return`Prop(${this.obj}.${this.attr}, spec: ${x(this.spec)})`}normalize(e){return e}validate(e){if(!this.valid(e))throw new Error(`${this.obj}.${this.attr} given invalid value: ${x(e)}`)}valid(e){return this.kind.valid(e)}_value(e=!0){if(!this.is_value)throw new Error(\"attempted to retrieve property value for property without value specification\");let t=this.normalize([this.spec.value])[0];return null!=this.spec.transform&&e&&(t=this.spec.transform.compute(t)),t}}n.Property=f,f.__name__=\"Property\";class A{constructor(e){this.attr=e}}n.PropertyAlias=A,A.__name__=\"PropertyAlias\",n.Alias=function(e){return new A(e)};class C extends f{}n.PrimitiveProperty=C,C.__name__=\"PrimitiveProperty\";class T extends f{}n.Any=T,T.__name__=\"Any\";class L extends f{valid(e){return(0,m.isArray)(e)||(0,m.isTypedArray)(e)}}n.Array=L,L.__name__=\"Array\";class w extends f{valid(e){return(0,m.isBoolean)(e)}}n.Boolean=w,w.__name__=\"Boolean\";class P extends f{valid(e){return(0,S.is_Color)(e)}}n.Color=P,P.__name__=\"Color\";class b extends f{}n.Instance=b,b.__name__=\"Instance\";class q extends f{valid(e){return(0,m.isNumber)(e)}}n.Number=q,q.__name__=\"Number\";class N extends q{valid(e){return(0,m.isNumber)(e)&&(0|e)==e}}n.Int=N,N.__name__=\"Int\";class z extends q{}n.Angle=z,z.__name__=\"Angle\";class B extends q{valid(e){return(0,m.isNumber)(e)&&0<=e&&e<=1}}n.Percent=B,B.__name__=\"Percent\";class F extends f{valid(e){return(0,m.isString)(e)}}n.String=F,F.__name__=\"String\";class D extends f{valid(e){return null===e||(0,m.isString)(e)}}n.NullString=D,D.__name__=\"NullString\";class U extends F{}n.FontSize=U,U.__name__=\"FontSize\";class M extends F{_default_override(){return h.settings.dev?\"Bokeh\":void 0}}n.Font=M,M.__name__=\"Font\";class R extends f{valid(e){return(0,m.isString)(e)&&(0,_.includes)(this.enum_values,e)}}function k(e){return class extends R{get enum_values(){return[...e]}}}n.EnumProperty=R,R.__name__=\"EnumProperty\",n.Enum=k;class O extends R{get enum_values(){return[...o.Direction]}normalize(e){const t=new Uint8Array(e.length);for(let n=0;n=0}}n.ScreenSizeSpec=fe,fe.__name__=\"ScreenSizeSpec\";class Ae extends ne{materialize(e){return(0,S.encode_rgba)((0,S.color2rgba)(e))}v_materialize(e){if(!(0,v.is_NDArray)(e)){const t=e.length,n=new c.RGBAArray(4*t);let r=0;for(const t of e){const[e,a,i,s]=(0,S.color2rgba)(t);n[r++]=e,n[r++]=a,n[r++]=i,n[r++]=s}return new c.ColorArray(n.buffer)}if(\"uint32\"==e.dtype&&1==e.dimension)return(0,p.to_big_endian)(e);if(\"uint8\"==e.dtype&&1==e.dimension){const[t]=e.shape,n=new c.RGBAArray(4*t);let r=0;for(const t of e)n[r++]=t,n[r++]=t,n[r++]=t,n[r++]=255;return new c.ColorArray(n.buffer)}if(\"uint8\"==e.dtype&&2==e.dimension){const[t,n]=e.shape;if(4==n)return new c.ColorArray(e.buffer);if(3==n){const r=new c.RGBAArray(4*t);for(let a=0,i=0;a0){let o=r[e];return null==o&&(r[e]=o=new v(e,l)),o}throw new TypeError(\"Logger.get() expects a non-empty string name and an optional log-level\")}get level(){return this.get_level()}get_level(){return this._log_level}set_level(e){if(e instanceof i)this._log_level=e;else{if(!(0,s.isString)(e)||null==v.log_levels[e])throw new Error(\"Logger.set_level() expects a log-level object or a string name of a log-level\");this._log_level=v.log_levels[e]}const l=`[${this._name}]`;for(const[e,o]of(0,g.entries)(v.log_levels))o.level\",\"*\"),t.HTTPMethod=(0,a.Enum)(\"POST\",\"GET\"),t.HexTileOrientation=(0,a.Enum)(\"pointytop\",\"flattop\"),t.HoverMode=(0,a.Enum)(\"mouse\",\"hline\",\"vline\"),t.LatLon=(0,a.Enum)(\"lat\",\"lon\"),t.LegendClickPolicy=(0,a.Enum)(\"none\",\"hide\",\"mute\"),t.LegendLocation=t.Anchor,t.LineCap=(0,a.Enum)(\"butt\",\"round\",\"square\"),t.LineJoin=(0,a.Enum)(\"miter\",\"round\",\"bevel\"),t.LineDash=(0,a.Enum)(\"solid\",\"dashed\",\"dotted\",\"dotdash\",\"dashdot\"),t.LinePolicy=(0,a.Enum)(\"prev\",\"next\",\"nearest\",\"interp\",\"none\"),t.Location=(0,a.Enum)(\"above\",\"below\",\"left\",\"right\"),t.Logo=(0,a.Enum)(\"normal\",\"grey\"),t.MarkerType=(0,a.Enum)(\"asterisk\",\"circle\",\"circle_cross\",\"circle_dot\",\"circle_x\",\"circle_y\",\"cross\",\"dash\",\"diamond\",\"diamond_cross\",\"diamond_dot\",\"dot\",\"hex\",\"hex_dot\",\"inverted_triangle\",\"plus\",\"square\",\"square_cross\",\"square_dot\",\"square_pin\",\"square_x\",\"star\",\"star_dot\",\"triangle\",\"triangle_dot\",\"triangle_pin\",\"x\",\"y\"),t.MutedPolicy=(0,a.Enum)(\"show\",\"ignore\"),t.Orientation=(0,a.Enum)(\"vertical\",\"horizontal\"),t.OutputBackend=(0,a.Enum)(\"canvas\",\"svg\",\"webgl\"),t.PaddingUnits=(0,a.Enum)(\"percent\",\"absolute\"),t.Place=(0,a.Enum)(\"above\",\"below\",\"left\",\"right\",\"center\"),t.PointPolicy=(0,a.Enum)(\"snap_to_data\",\"follow_mouse\",\"none\"),t.RadiusDimension=(0,a.Enum)(\"x\",\"y\",\"max\",\"min\"),t.RenderLevel=(0,a.Enum)(\"image\",\"underlay\",\"glyph\",\"guide\",\"annotation\",\"overlay\"),t.RenderMode=(0,a.Enum)(\"canvas\",\"css\"),t.ResetPolicy=(0,a.Enum)(\"standard\",\"event_only\"),t.RoundingFunction=(0,a.Enum)(\"round\",\"nearest\",\"floor\",\"rounddown\",\"ceil\",\"roundup\"),t.SelectionMode=(0,a.Enum)(\"replace\",\"append\",\"intersect\",\"subtract\"),t.Side=(0,a.Enum)(\"above\",\"below\",\"left\",\"right\"),t.SizingMode=(0,a.Enum)(\"stretch_width\",\"stretch_height\",\"stretch_both\",\"scale_width\",\"scale_height\",\"scale_both\",\"fixed\"),t.Sort=(0,a.Enum)(\"ascending\",\"descending\"),t.SpatialUnits=(0,a.Enum)(\"screen\",\"data\"),t.StartEnd=(0,a.Enum)(\"start\",\"end\"),t.StepMode=(0,a.Enum)(\"after\",\"before\",\"center\"),t.TapBehavior=(0,a.Enum)(\"select\",\"inspect\"),t.TextAlign=(0,a.Enum)(\"left\",\"right\",\"center\"),t.TextBaseline=(0,a.Enum)(\"top\",\"middle\",\"bottom\",\"alphabetic\",\"hanging\",\"ideographic\"),t.TextureRepetition=(0,a.Enum)(\"repeat\",\"repeat_x\",\"repeat_y\",\"no_repeat\"),t.TickLabelOrientation=(0,a.Enum)(\"vertical\",\"horizontal\",\"parallel\",\"normal\"),t.TooltipAttachment=(0,a.Enum)(\"horizontal\",\"vertical\",\"left\",\"right\",\"above\",\"below\"),t.UpdateMode=(0,a.Enum)(\"replace\",\"append\"),t.VerticalAlign=(0,a.Enum)(\"top\",\"middle\",\"bottom\")},\n", + " function _(e,n,t,s,r){s();const i=(0,e(1).__importStar)(e(8)),a=e(22),l=e(13),_=window.Map,{hasOwnProperty:u}=Object.prototype;class d{}t.Kind=d,d.__name__=\"Kind\",function(e){class n extends d{valid(e){return!0}}n.__name__=\"Any\",e.Any=n;class t extends d{valid(e){return!0}}t.__name__=\"Unknown\",e.Unknown=t;class s extends d{valid(e){return i.isBoolean(e)}}s.__name__=\"Boolean\",e.Boolean=s;class r extends d{constructor(e){super(),this.obj_type=e}valid(e){return!0}}r.__name__=\"Ref\",e.Ref=r;class c extends d{valid(e){return!0}}c.__name__=\"AnyRef\",e.AnyRef=c;class o extends d{valid(e){return i.isNumber(e)}}o.__name__=\"Number\",e.Number=o;class p extends o{valid(e){return super.valid(e)&&i.isInteger(e)}}p.__name__=\"Int\",e.Int=p;class y extends o{valid(e){return super.valid(e)&&0<=e&&e<=1}}y.__name__=\"Percent\",e.Percent=y;class m extends d{constructor(e){super(),this.types=e,this.types=e}valid(e){return this.types.some((n=>n.valid(e)))}}m.__name__=\"Or\",e.Or=m;class v extends d{constructor(e){super(),this.types=e,this.types=e}valid(e){if(!i.isArray(e))return!1;for(let n=0;nthis.item_type.valid(e)))}}f.__name__=\"Array\",e.Array=f;class K extends d{valid(e){return null===e}}K.__name__=\"Null\",e.Null=K;class b extends d{constructor(e){super(),this.base_type=e}valid(e){return null===e||this.base_type.valid(e)}}b.__name__=\"Nullable\",e.Nullable=b;class A extends d{constructor(e){super(),this.base_type=e}valid(e){return void 0===e||this.base_type.valid(e)}}A.__name__=\"Opt\",e.Opt=A;class x extends d{valid(e){return i.isString(e)}}x.__name__=\"String\",e.String=x;class S extends d{constructor(e){super(),this.values=new Set(e)}valid(e){return this.values.has(e)}*[Symbol.iterator](){yield*this.values}}S.__name__=\"Enum\",e.Enum=S;class N extends d{constructor(e){super(),this.item_type=e}valid(e){if(!i.isPlainObject(e))return!1;for(const n in e)if(u.call(e,n)){const t=e[n];if(!this.item_type.valid(t))return!1}return!0}}N.__name__=\"Dict\",e.Dict=N;class O extends d{constructor(e,n){super(),this.key_type=e,this.item_type=n}valid(e){if(!(e instanceof _))return!1;for(const[n,t]of e.entries())if(!this.key_type.valid(n)||!this.item_type.valid(t))return!1;return!0}}O.__name__=\"Map\",e.Map=O;class g extends d{valid(e){return(0,a.is_Color)(e)}}g.__name__=\"Color\",e.Color=g;class P extends d{valid(e){return i.isFunction(e)}}P.__name__=\"Function\",e.Function=P}(t.Kinds||(t.Kinds={})),t.Any=new t.Kinds.Any,t.Unknown=new t.Kinds.Unknown,t.Boolean=new t.Kinds.Boolean,t.Number=new t.Kinds.Number,t.Int=new t.Kinds.Int,t.String=new t.Kinds.String,t.Null=new t.Kinds.Null;t.Nullable=e=>new t.Kinds.Nullable(e);t.Opt=e=>new t.Kinds.Opt(e);t.Or=(...e)=>new t.Kinds.Or(e);t.Tuple=(...e)=>new t.Kinds.Tuple(e);t.Struct=e=>new t.Kinds.Struct(e),t.Arrayable=new t.Kinds.Arrayable;t.Array=e=>new t.Kinds.Array(e);t.Dict=e=>new t.Kinds.Dict(e);t.Map=(e,n)=>new t.Kinds.Map(e,n);t.Enum=(...e)=>new t.Kinds.Enum(e);t.Ref=e=>new t.Kinds.Ref(e);t.AnyRef=()=>new t.Kinds.AnyRef;t.Function=()=>new t.Kinds.Function,t.Percent=new t.Kinds.Percent,t.Alpha=t.Percent,t.Color=new t.Kinds.Color,t.Auto=(0,t.Enum)(\"auto\"),t.FontSize=t.String,t.Font=t.String,t.Angle=t.Number},\n", + " function _(n,t,r,e,s){e();const u=n(23),c=n(10),l=n(8),{round:i}=Math;function o(n){return(0,c.clamp)(i(n),0,255)}function a(){return[0,0,0,0]}function f(n){return[n>>24&255,n>>16&255,n>>8&255,255&n]}function d(n,t){var r;let e,s,u,c;return null==n?[e,s,u,c]=[0,0,0,0]:(0,l.isInteger)(n)?[e,s,u,c]=f(n):(0,l.isString)(n)?[e,s,u,c]=null!==(r=_(n))&&void 0!==r?r:[0,0,0,0]:([e,s,u,c=1]=n,c=o(255*c)),255==c&&null!=t&&(c=o(255*t)),[e,s,u,c]}r.transparent=a,r.encode_rgba=function([n,t,r,e]){return n<<24|t<<16|r<<8|e},r.decode_rgba=f,r.compose_alpha=function(n,t){return 255==(255&n)?4294967040&n|o(255*t):n},r.color2rgba=d;const h={0:\"0\",1:\"1\",2:\"2\",3:\"3\",4:\"4\",5:\"5\",6:\"6\",7:\"7\",8:\"8\",9:\"9\",10:\"a\",11:\"b\",12:\"c\",13:\"d\",14:\"e\",15:\"f\"};function g(n){return h[n>>4]+h[15&n]}r.color2css=function(n,t){const[r,e,s,u]=d(n,t);return`rgba(${r}, ${e}, ${s}, ${u/255})`},r.color2hex=function(n,t){const[r,e,s,u]=d(n,t),c=`#${g(r)}${g(e)}${g(s)}`;return 255==u?c:`${c}${g(u)}`},r.color2hexrgb=function(n){const[t,r,e]=d(n);return`#${g(t)}${g(r)}${g(e)}`};const b=/^rgba?\\(\\s*([^\\s,]+?)\\s+([^\\s,]+?)\\s+([^\\s,]+?)(?:\\s*\\/\\s*([^\\s,]+?))?\\s*\\)$/,$=/^rgba?\\(\\s*([^\\s,]+?)\\s*,\\s*([^\\s,]+?)\\s*,\\s*([^\\s,]+?)(?:\\s*,\\s*([^\\s,]+?))?\\s*\\)$/,m=(()=>{const n=document.createElement(\"canvas\");n.width=1,n.height=1;const t=n.getContext(\"2d\"),r=t.createLinearGradient(0,0,1,1);return n=>{t.fillStyle=r,t.fillStyle=n;const e=t.fillStyle;return e!=r?e:null}})();function _(n){var t;if(!(n=n.trim().toLowerCase()))return null;if(\"transparent\"==n)return[0,0,0,0];if((0,u.is_named_color)(n))return f(u.named_colors[n]);if(\"#\"==n[0]){const t=Number(`0x${n.substr(1)}`);if(isNaN(t))return null;switch(n.length-1){case 3:{const n=t>>8&15,r=t>>4&15,e=t>>0&15;return[n<<4|n,r<<4|r,e<<4|e,255]}case 4:{const n=t>>12&15,r=t>>8&15,e=t>>4&15,s=t>>0&15;return[n<<4|n,r<<4|r,e<<4|e,s<<4|s]}case 6:return[t>>16&255,t>>8&255,t>>0&255,255];case 8:return[t>>24&255,t>>16&255,t>>8&255,t>>0&255]}}else if(n.startsWith(\"rgb\")){const r=null!==(t=n.match(b))&&void 0!==t?t:n.match($);if(null!=r){let[,n,t,e,s=\"1\"]=r;const u=n.endsWith(\"%\"),c=t.endsWith(\"%\"),l=e.endsWith(\"%\"),i=s.endsWith(\"%\");if(!(u&&c&&l)&&(u||c||l))return null;u&&(n=n.slice(0,-1)),c&&(t=t.slice(0,-1)),l&&(e=e.slice(0,-1)),i&&(s=s.slice(0,-1));let a=Number(n),f=Number(t),d=Number(e),h=Number(s);return isNaN(a+f+d+h)?null:(u&&(a=a/100*255),c&&(f=f/100*255),l&&(d=d/100*255),h=255*(i?h/100:h),a=o(a),f=o(f),d=o(d),h=o(h),[a,f,d,h])}}else{const t=m(n);if(null!=t)return _(t)}return null}r.css4_parse=_,r.is_Color=function(n){return!!(0,l.isInteger)(n)||(!(!(0,l.isString)(n)||null==_(n))||!(!(0,l.isArray)(n)||3!=n.length&&4!=n.length))},r.is_dark=function([n,t,r]){return 1-(.299*n+.587*t+.114*r)/255>=.6}},\n", + " function _(e,r,l,a,i){a();l.named_colors={aliceblue:4042850303,antiquewhite:4209760255,aqua:16777215,aquamarine:2147472639,azure:4043309055,beige:4126530815,bisque:4293182719,black:255,blanchedalmond:4293643775,blue:65535,blueviolet:2318131967,brown:2771004159,burlywood:3736635391,cadetblue:1604231423,chartreuse:2147418367,chocolate:3530104575,coral:4286533887,cornflowerblue:1687547391,cornsilk:4294499583,crimson:3692313855,cyan:16777215,darkblue:35839,darkcyan:9145343,darkgoldenrod:3095792639,darkgray:2846468607,darkgreen:6553855,darkgrey:2846468607,darkkhaki:3182914559,darkmagenta:2332068863,darkolivegreen:1433087999,darkorange:4287365375,darkorchid:2570243327,darkred:2332033279,darksalmon:3918953215,darkseagreen:2411499519,darkslateblue:1211993087,darkslategray:793726975,darkslategrey:793726975,darkturquoise:13554175,darkviolet:2483082239,deeppink:4279538687,deepskyblue:12582911,dimgray:1768516095,dimgrey:1768516095,dodgerblue:512819199,firebrick:2988581631,floralwhite:4294635775,forestgreen:579543807,fuchsia:4278255615,gainsboro:3705462015,ghostwhite:4177068031,gold:4292280575,goldenrod:3668254975,gray:2155905279,green:8388863,greenyellow:2919182335,grey:2155905279,honeydew:4043305215,hotpink:4285117695,indianred:3445382399,indigo:1258324735,ivory:4294963455,khaki:4041641215,lavender:3873897215,lavenderblush:4293981695,lawngreen:2096890111,lemonchiffon:4294626815,lightblue:2916673279,lightcoral:4034953471,lightcyan:3774873599,lightgoldenrodyellow:4210742015,lightgray:3553874943,lightgreen:2431553791,lightgrey:3553874943,lightpink:4290167295,lightsalmon:4288707327,lightseagreen:548580095,lightskyblue:2278488831,lightslategray:2005441023,lightslategrey:2005441023,lightsteelblue:2965692159,lightyellow:4294959359,lime:16711935,limegreen:852308735,linen:4210091775,magenta:4278255615,maroon:2147483903,mediumaquamarine:1724754687,mediumblue:52735,mediumorchid:3126187007,mediumpurple:2473647103,mediumseagreen:1018393087,mediumslateblue:2070474495,mediumspringgreen:16423679,mediumturquoise:1221709055,mediumvioletred:3340076543,midnightblue:421097727,mintcream:4127193855,mistyrose:4293190143,moccasin:4293178879,navajowhite:4292783615,navy:33023,oldlace:4260751103,olive:2155872511,olivedrab:1804477439,orange:4289003775,orangered:4282712319,orchid:3664828159,palegoldenrod:4008225535,palegreen:2566625535,paleturquoise:2951671551,palevioletred:3681588223,papayawhip:4293907967,peachpuff:4292524543,peru:3448061951,pink:4290825215,plum:3718307327,powderblue:2967529215,purple:2147516671,rebeccapurple:1714657791,red:4278190335,rosybrown:3163525119,royalblue:1097458175,saddlebrown:2336560127,salmon:4202722047,sandybrown:4104413439,seagreen:780883967,seashell:4294307583,sienna:2689740287,silver:3233857791,skyblue:2278484991,slateblue:1784335871,slategray:1887473919,slategrey:1887473919,snow:4294638335,springgreen:16744447,steelblue:1182971135,tan:3535047935,teal:8421631,thistle:3636451583,tomato:4284696575,turquoise:1088475391,violet:4001558271,wheat:4125012991,white:4294967295,whitesmoke:4126537215,yellow:4294902015,yellowgreen:2597139199},l.is_named_color=function(e){return e in l.named_colors}},\n", + " function _(r,t,n,a,o){a(),n.GeneratorFunction=Object.getPrototypeOf((function*(){})).constructor,n.ColorArray=Uint32Array,n.RGBAArray=Uint8ClampedArray,n.infer_type=function(r,t){return r instanceof Float64Array||r instanceof Array||t instanceof Float64Array||t instanceof Array?Float64Array:Float32Array},n.ScreenArray=Float32Array,n.to_screen=function(r){return r instanceof Float32Array?r:Float32Array.from(r)},o(\"Indices\",r(25).BitSet)},\n", + " function _(t,s,r,e,i){var n;e();const o=t(26),a=t(11);class _{constructor(t,s=0){this.size=t,this[n]=\"BitSet\",this._count=null,this._nwords=Math.ceil(t/32),0==s||1==s?(this._array=new Uint32Array(this._nwords),1==s&&this._array.fill(4294967295)):((0,a.assert)(s.length==this._nwords,\"Initializer size mismatch\"),this._array=s)}clone(){return new _(this.size,new Uint32Array(this._array))}[(n=Symbol.toStringTag,o.equals)](t,s){if(!s.eq(this.size,t.size))return!1;const{_nwords:r}=this,e=this.size%r,i=0==e?r:r-1;for(let s=0;s>>5,r=31&t;return!!(this._array[s]>>r&1)}set(t,s=!0){this._check_bounds(t),this._count=null;const r=t>>>5,e=31&t;s?this._array[r]|=1<>>t&1&&(e+=1)}return e}*ones(){const{_array:t,_nwords:s,size:r}=this;for(let e=0,i=0;i>>t&1&&(yield e);else e+=32}}*zeros(){const{_array:t,_nwords:s,size:r}=this;for(let e=0,i=0;i>>t&1||(yield e);else e+=32}}_check_size(t){(0,a.assert)(this.size==t.size,\"Size mismatch\")}add(t){this._check_size(t);for(let s=0;s{if(a(t)&&a(e))return t[r.equals](e,this);switch(n){case\"[object Array]\":case\"[object Uint8Array]\":case\"[object Int8Array]\":case\"[object Uint16Array]\":case\"[object Int16Array]\":case\"[object Uint32Array]\":case\"[object Int32Array]\":case\"[object Float32Array]\":case\"[object Float64Array]\":return this.arrays(t,e);case\"[object Map]\":return this.maps(t,e);case\"[object Set]\":return this.sets(t,e);case\"[object Object]\":if(t.constructor==e.constructor&&(null==t.constructor||t.constructor===Object))return this.objects(t,e);case\"[object Function]\":if(t.constructor==e.constructor&&t.constructor===Function)return this.eq(`${t}`,`${e}`)}if(t instanceof Node)return this.nodes(t,e);throw Error(`can't compare objects of type ${n}`)})();return s.pop(),o.pop(),u}numbers(t,e){return Object.is(t,e)}arrays(t,e){const{length:r}=t;if(r!=e.length)return!1;for(let n=0;n{const n=navigator.userAgent;return n.includes(\"MSIE\")||n.includes(\"Trident\")||n.includes(\"Edge\")})(),e.is_mobile=\"undefined\"!=typeof window&&(\"ontouchstart\"in window||navigator.maxTouchPoints>0),e.is_little_endian=(()=>{const n=new ArrayBuffer(4),i=new Uint8Array(n);new Uint32Array(n)[1]=168496141;let e=!0;return 10==i[4]&&11==i[5]&&12==i[6]&&13==i[7]&&(e=!1),e})(),e.BYTE_ORDER=e.is_little_endian?\"little\":\"big\",e.to_big_endian=function(n){if(e.is_little_endian){const i=new Uint32Array(n.length),e=new DataView(i.buffer);let t=0;for(const i of n)e.setUint32(t,i),t+=4;return i}return n}},\n", + " function _(e,t,r,s,_){s();class i{constructor(){this._dev=!1,this._wireframe=!1,this._force_webgl=!1}set dev(e){this._dev=e}get dev(){return this._dev}set wireframe(e){this._wireframe=e}get wireframe(){return this._wireframe}set force_webgl(e){this._force_webgl=e}get force_webgl(){return this._force_webgl}}r.Settings=i,i.__name__=\"Settings\",r.settings=new i},\n", + " function _(e,s,t,i,r){var a,n,l,h,u,o,p,c;i();const y=e(8),_=e(11),A=e(26),q=e(30),d=e(31),z=Symbol(\"__ndarray__\");class D extends Uint8Array{constructor(e,s){super(e),this[a]=!0,this.dtype=\"uint8\",this.shape=null!=s?s:x(e)?e.shape:[this.length],this.dimension=this.shape.length,null==this[A.equals]&&(this[A.equals]=(e,s)=>D.prototype[A.equals].call(this,e,s)),null==this[q.serialize]&&(this[q.serialize]=e=>D.prototype[q.serialize].call(this,e))}[(a=z,A.equals)](e,s){return s.eq(this.shape,e.shape)&&s.arrays(this,e)}[q.serialize](e){return(0,d.encode_NDArray)(this)}}t.Uint8NDArray=D,D.__name__=\"Uint8NDArray\";class N extends Int8Array{constructor(e,s){super(e),this[n]=!0,this.dtype=\"int8\",this.shape=null!=s?s:x(e)?e.shape:[this.length],this.dimension=this.shape.length,null==this[A.equals]&&(this[A.equals]=(e,s)=>N.prototype[A.equals].call(this,e,s)),null==this[q.serialize]&&(this[q.serialize]=e=>N.prototype[q.serialize].call(this,e))}[(n=z,A.equals)](e,s){return s.eq(this.shape,e.shape)&&s.arrays(this,e)}[q.serialize](e){return(0,d.encode_NDArray)(this)}}t.Int8NDArray=N,N.__name__=\"Int8NDArray\";class f extends Uint16Array{constructor(e,s){super(e),this[l]=!0,this.dtype=\"uint16\",this.shape=null!=s?s:x(e)?e.shape:[this.length],this.dimension=this.shape.length,null==this[A.equals]&&(this[A.equals]=(e,s)=>f.prototype[A.equals].call(this,e,s)),null==this[q.serialize]&&(this[q.serialize]=e=>f.prototype[q.serialize].call(this,e))}[(l=z,A.equals)](e,s){return s.eq(this.shape,e.shape)&&s.arrays(this,e)}[q.serialize](e){return(0,d.encode_NDArray)(this)}}t.Uint16NDArray=f,f.__name__=\"Uint16NDArray\";class m extends Int16Array{constructor(e,s){super(e),this[h]=!0,this.dtype=\"int16\",this.shape=null!=s?s:x(e)?e.shape:[this.length],this.dimension=this.shape.length,null==this[A.equals]&&(this[A.equals]=(e,s)=>m.prototype[A.equals].call(this,e,s)),null==this[q.serialize]&&(this[q.serialize]=e=>m.prototype[q.serialize].call(this,e))}[(h=z,A.equals)](e,s){return s.eq(this.shape,e.shape)&&s.arrays(this,e)}[q.serialize](e){return(0,d.encode_NDArray)(this)}}t.Int16NDArray=m,m.__name__=\"Int16NDArray\";class g extends Uint32Array{constructor(e,s){super(e),this[u]=!0,this.dtype=\"uint32\",this.shape=null!=s?s:x(e)?e.shape:[this.length],this.dimension=this.shape.length,null==this[A.equals]&&(this[A.equals]=(e,s)=>g.prototype[A.equals].call(this,e,s)),null==this[q.serialize]&&(this[q.serialize]=e=>g.prototype[q.serialize].call(this,e))}[(u=z,A.equals)](e,s){return s.eq(this.shape,e.shape)&&s.arrays(this,e)}[q.serialize](e){return(0,d.encode_NDArray)(this)}}t.Uint32NDArray=g,g.__name__=\"Uint32NDArray\";class I extends Int32Array{constructor(e,s){super(e),this[o]=!0,this.dtype=\"int32\",this.shape=null!=s?s:x(e)?e.shape:[this.length],this.dimension=this.shape.length,null==this[A.equals]&&(this[A.equals]=(e,s)=>I.prototype[A.equals].call(this,e,s)),null==this[q.serialize]&&(this[q.serialize]=e=>I.prototype[q.serialize].call(this,e))}[(o=z,A.equals)](e,s){return s.eq(this.shape,e.shape)&&s.arrays(this,e)}[q.serialize](e){return(0,d.encode_NDArray)(this)}}t.Int32NDArray=I,I.__name__=\"Int32NDArray\";class U extends Float32Array{constructor(e,s){super(e),this[p]=!0,this.dtype=\"float32\",this.shape=null!=s?s:x(e)?e.shape:[this.length],this.dimension=this.shape.length,null==this[A.equals]&&(this[A.equals]=(e,s)=>U.prototype[A.equals].call(this,e,s)),null==this[q.serialize]&&(this[q.serialize]=e=>U.prototype[q.serialize].call(this,e))}[(p=z,A.equals)](e,s){return s.eq(this.shape,e.shape)&&s.arrays(this,e)}[q.serialize](e){return(0,d.encode_NDArray)(this)}}t.Float32NDArray=U,U.__name__=\"Float32NDArray\";class w extends Float64Array{constructor(e,s){super(e),this[c]=!0,this.dtype=\"float64\",this.shape=null!=s?s:x(e)?e.shape:[this.length],this.dimension=this.shape.length,null==this[A.equals]&&(this[A.equals]=(e,s)=>w.prototype[A.equals].call(this,e,s)),null==this[q.serialize]&&(this[q.serialize]=e=>w.prototype[q.serialize].call(this,e))}[(c=z,A.equals)](e,s){return s.eq(this.shape,e.shape)&&s.arrays(this,e)}[q.serialize](e){return(0,d.encode_NDArray)(this)}}function x(e){return(0,y.isObject)(e)&&void 0!==e[z]}t.Float64NDArray=w,w.__name__=\"Float64NDArray\",t.is_NDArray=x,t.ndarray=function(e,s={}){let{dtype:t}=s;null==t&&(t=e instanceof ArrayBuffer||(0,y.isArray)(e)?\"float64\":(()=>{switch(!0){case e instanceof Uint8Array:return\"uint8\";case e instanceof Int8Array:return\"int8\";case e instanceof Uint16Array:return\"uint16\";case e instanceof Int16Array:return\"int16\";case e instanceof Uint32Array:return\"uint32\";case e instanceof Int32Array:return\"int32\";case e instanceof Float32Array:return\"float32\";case e instanceof Float64Array:return\"float64\";default:(0,_.unreachable)()}})());const{shape:i}=s;switch(t){case\"uint8\":return new D(e,i);case\"int8\":return new N(e,i);case\"uint16\":return new f(e,i);case\"int16\":return new m(e,i);case\"uint32\":return new g(e,i);case\"int32\":return new I(e,i);case\"float32\":return new U(e,i);case\"float64\":return new w(e,i)}}},\n", + " function _(e,r,t,i,s){i();const n=e(11),a=e(13),l=e(8);t.serialize=Symbol(\"serialize\");class o extends Error{}t.SerializationError=o,o.__name__=\"SerializationError\";class f{constructor(e){var r;this._references=new Map,this._definitions=new Map,this._refmap=new Map,this.include_defaults=null===(r=null==e?void 0:e.include_defaults)||void 0===r||r}get_ref(e){return this._references.get(e)}add_ref(e,r){(0,n.assert)(!this._references.has(e)),this._references.set(e,r)}add_def(e,r){const t=this.get_ref(e);(0,n.assert)(null!=t),this._definitions.set(e,r),this._refmap.set(t,r)}get objects(){return new Set(this._references.keys())}get references(){return new Set(this._references.values())}get definitions(){return new Set(this._definitions.values())}resolve_ref(e){return this._refmap.get(e)}remove_ref(e){return this._references.delete(e)}remove_def(e){return this._definitions.delete(e)}to_serializable(e){const r=this.get_ref(e);if(null!=r)return r;if(function(e){return(0,l.isObject)(e)&&void 0!==e[t.serialize]}(e))return e[t.serialize](this);if((0,l.isArray)(e)||(0,l.isTypedArray)(e)){const r=e.length,t=new Array(r);for(let i=0;i(0,s.buffer_to_base64)(_.buffer)};return Object.assign({__ndarray__:e},r)}}},\n", + " function _(t,n,e,r,o){r(),e.buffer_to_base64=function(t){const n=new Uint8Array(t),e=Array.from(n).map((t=>String.fromCharCode(t)));return btoa(e.join(\"\"))},e.base64_to_buffer=function(t){const n=atob(t),e=n.length,r=new Uint8Array(e);for(let t=0,o=e;t\"'`])/g,(t=>{switch(t){case\"&\":return\"&\";case\"<\":return\"<\";case\">\":return\">\";case'\"':return\""\";case\"'\":return\"'\";case\"`\":return\"`\";default:return t}}))},r.unescape=function(t){return t.replace(/&(amp|lt|gt|quot|#x27|#x60);/g,((t,e)=>{switch(e){case\"amp\":return\"&\";case\"lt\":return\"<\";case\"gt\":return\">\";case\"quot\":return'\"';case\"#x27\":return\"'\";case\"#x60\":return\"`\";default:return e}}))},r.use_strict=function(t){return`'use strict';\\n${t}`},r.to_fixed=function(t,e){return t.toFixed(e).replace(/(\\.[0-9]*?)0+$/,\"$1\").replace(/\\.$/,\"\")}},\n", + " function _(e,t,s,n,o){n();const i=e(30);class r{constructor(e){this.document=e}}s.DocumentEvent=r,r.__name__=\"DocumentEvent\";class a extends r{constructor(e,t,s){super(e),this.events=t,this.setter_id=s}}s.DocumentEventBatch=a,a.__name__=\"DocumentEventBatch\";class d extends r{}s.DocumentChangedEvent=d,d.__name__=\"DocumentChangedEvent\";class l extends d{constructor(e,t,s){super(e),this.msg_type=t,this.msg_data=s}[i.serialize](e){const t=this.msg_data,s=e.to_serializable(t);return{kind:\"MessageSent\",msg_type:this.msg_type,msg_data:s}}}s.MessageSentEvent=l,l.__name__=\"MessageSentEvent\";class _ extends d{constructor(e,t,s,n,o,i,r){super(e),this.model=t,this.attr=s,this.old=n,this.new_=o,this.setter_id=i,this.hint=r}[i.serialize](e){if(null!=this.hint)return e.to_serializable(this.hint);const t=this.new_,s=e.to_serializable(t);return this.model!=t&&e.remove_def(this.model),{kind:\"ModelChanged\",model:this.model.ref(),attr:this.attr,new:s}}}s.ModelChangedEvent=_,_.__name__=\"ModelChangedEvent\";class c extends d{constructor(e,t,s){super(e),this.column_source=t,this.patches=s}[i.serialize](e){return{kind:\"ColumnsPatched\",column_source:this.column_source,patches:this.patches}}}s.ColumnsPatchedEvent=c,c.__name__=\"ColumnsPatchedEvent\";class h extends d{constructor(e,t,s,n){super(e),this.column_source=t,this.data=s,this.rollover=n}[i.serialize](e){return{kind:\"ColumnsStreamed\",column_source:this.column_source,data:this.data,rollover:this.rollover}}}s.ColumnsStreamedEvent=h,h.__name__=\"ColumnsStreamedEvent\";class m extends d{constructor(e,t,s){super(e),this.title=t,this.setter_id=s}[i.serialize](e){return{kind:\"TitleChanged\",title:this.title}}}s.TitleChangedEvent=m,m.__name__=\"TitleChangedEvent\";class u extends d{constructor(e,t,s){super(e),this.model=t,this.setter_id=s}[i.serialize](e){return{kind:\"RootAdded\",model:e.to_serializable(this.model)}}}s.RootAddedEvent=u,u.__name__=\"RootAddedEvent\";class v extends d{constructor(e,t,s){super(e),this.model=t,this.setter_id=s}[i.serialize](e){return{kind:\"RootRemoved\",model:this.model.ref()}}}s.RootRemovedEvent=v,v.__name__=\"RootRemovedEvent\"},\n", + " function _(t,i,r,n,s){n();const e=t(8),o=t(13);r.pretty=Symbol(\"pretty\");class c{constructor(t){this.visited=new Set,this.precision=null==t?void 0:t.precision}to_string(t){if((0,e.isObject)(t)){if(this.visited.has(t))return\"\";this.visited.add(t)}return function(t){return(0,e.isObject)(t)&&void 0!==t[r.pretty]}(t)?t[r.pretty](this):(0,e.isBoolean)(t)?this.boolean(t):(0,e.isNumber)(t)?this.number(t):(0,e.isString)(t)?this.string(t):(0,e.isArray)(t)?this.array(t):(0,e.isIterable)(t)?this.iterable(t):(0,e.isPlainObject)(t)?this.object(t):(0,e.isSymbol)(t)?this.symbol(t):`${t}`}token(t){return t}boolean(t){return`${t}`}number(t){return null!=this.precision?t.toFixed(this.precision):`${t}`}string(t){return`\"${t.replace(/'/g,\"\\\\'\")}\"`}symbol(t){return t.toString()}array(t){const i=this.token,r=[];for(const i of t)r.push(this.to_string(i));return`${i(\"[\")}${r.join(`${i(\",\")} `)}${i(\"]\")}`}iterable(t){var i;const r=this.token,n=null!==(i=Object(t)[Symbol.toStringTag])&&void 0!==i?i:\"Object\",s=this.array(t);return`${n}${r(\"(\")}${s}${r(\")\")}`}object(t){const i=this.token,r=[];for(const[n,s]of(0,o.entries)(t))r.push(`${n}${i(\":\")} ${this.to_string(s)}`);return`${i(\"{\")}${r.join(`${i(\",\")} `)}${i(\"}\")}`}}r.Printer=c,c.__name__=\"Printer\",r.to_string=function(t,i){return new c(i).to_string(t)}},\n", + " function _(n,o,r,e,t){e();const l=n(13),i=n(8);function c(n){return(0,i.isObject)(n)&&void 0!==n[r.clone]}r.clone=Symbol(\"clone\"),r.is_Cloneable=c;class s extends Error{}r.CloningError=s,s.__name__=\"CloningError\";class a{constructor(){}clone(n){if(c(n))return n[r.clone](this);if((0,i.isArray)(n)){const o=n.length,r=new Array(o);for(let e=0;e{null!=this.layout&&(this.layout.visible=this.model.visible,this.plot_view.request_layout())}))}get needs_clip(){return null==this.layout}serializable_state(){const t=super.serializable_state();return null==this.layout?t:Object.assign(Object.assign({},t),{bbox:this.layout.bbox.box})}}i.AnnotationView=r,r.__name__=\"AnnotationView\";class a extends l.Renderer{constructor(t){super(t)}}i.Annotation=a,o=a,a.__name__=\"Annotation\",o.override({level:\"annotation\"})},\n", + " function _(e,i,t,n,s){n();const r=e(1);var o,a;const _=e(42),l=(0,r.__importStar)(e(45)),d=e(20),h=e(53),u=e(54);class c extends h.Model{constructor(e){super(e)}}t.RendererGroup=c,o=c,c.__name__=\"RendererGroup\",o.define((({Boolean:e})=>({visible:[e,!0]})));class p extends _.View{get coordinates(){const{_coordinates:e}=this;return null!=e?e:this._coordinates=this._initialize_coordinates()}initialize(){super.initialize(),this.visuals=new l.Visuals(this),this.needs_webgl_blit=!1}connect_signals(){super.connect_signals();const{x_range_name:e,y_range_name:i}=this.model.properties;this.on_change([e,i],(()=>this._initialize_coordinates()));const{group:t}=this.model;null!=t&&this.on_change(t.properties.visible,(()=>{this.model.visible=t.visible}))}_initialize_coordinates(){const{coordinates:e}=this.model,{frame:i}=this.plot_view;if(null!=e)return e.get_transform(i);{const{x_range_name:e,y_range_name:t}=this.model,n=i.x_scales.get(e),s=i.y_scales.get(t);return new u.CoordinateTransform(n,s)}}get plot_view(){return this.parent}get plot_model(){return this.parent.model}get layer(){const{overlays:e,primary:i}=this.canvas;return\"overlay\"==this.model.level?e:i}get canvas(){return this.plot_view.canvas_view}request_render(){this.request_paint()}request_paint(){this.plot_view.request_paint(this)}request_layout(){this.plot_view.request_layout()}notify_finished(){this.plot_view.notify_finished()}notify_finished_after_paint(){this.plot_view.notify_finished_after_paint()}get needs_clip(){return!1}get has_webgl(){return!1}render(){this.model.visible&&this._render(),this._has_finished=!0}renderer_view(e){}}t.RendererView=p,p.__name__=\"RendererView\";class g extends h.Model{constructor(e){super(e)}}t.Renderer=g,a=g,g.__name__=\"Renderer\",a.define((({Boolean:e,String:i,Ref:t,Nullable:n})=>({group:[n(t(c)),null],level:[d.RenderLevel,\"image\"],visible:[e,!0],x_range_name:[i,\"default\"],y_range_name:[i,\"default\"],coordinates:[n(t(u.CoordinateMapping)),null]})))},\n", + " function _(t,e,s,i,n){i();const o=t(1),h=t(15),r=t(43),l=t(8),_=(0,o.__importDefault)(t(44));class d{constructor(t){this.removed=new h.Signal0(this,\"removed\"),this._ready=Promise.resolve(void 0),this._slots=new WeakMap,this._idle_notified=!1;const{model:e,parent:s}=t;this.model=e,this.parent=s,this.root=null==s?this:s.root,this.removed.emit()}get ready(){return this._ready}connect(t,e){let s=this._slots.get(e);return null==s&&(s=(t,s)=>{const i=Promise.resolve(e.call(this,t,s));this._ready=this._ready.then((()=>i))},this._slots.set(e,s)),t.connect(s,this)}disconnect(t,e){return t.disconnect(e,this)}initialize(){this._has_finished=!1,this.is_root&&(this._stylesheet=r.stylesheet);for(const t of this.styles())this.stylesheet.append(t)}async lazy_initialize(){}remove(){this.disconnect_signals(),this.removed.emit()}toString(){return`${this.model.type}View(${this.model.id})`}serializable_state(){return{type:this.model.type}}get is_root(){return null==this.parent}has_finished(){return this._has_finished}get is_idle(){return this.has_finished()}connect_signals(){}disconnect_signals(){h.Signal.disconnect_receiver(this)}on_change(t,e){for(const s of(0,l.isArray)(t)?t:[t])this.connect(s.change,e)}cursor(t,e){return null}get stylesheet(){return this.is_root?this._stylesheet:this.root.stylesheet}styles(){return[_.default]}notify_finished(){this.is_root?!this._idle_notified&&this.has_finished()&&null!=this.model.document&&(this._idle_notified=!0,this.model.document.notify_idle(this.model)):this.root.notify_finished()}}s.View=d,d.__name__=\"View\"},\n", + " function _(t,e,n,i,o){i();const s=t(8),l=t(13),r=t=>(e={},...n)=>{const i=document.createElement(t);i.classList.add(\"bk\"),(0,s.isPlainObject)(e)||(n=[e,...n],e={});for(let[t,n]of(0,l.entries)(e))if(null!=n&&(!(0,s.isBoolean)(n)||n))if(\"class\"===t&&((0,s.isString)(n)&&(n=n.split(/\\s+/)),(0,s.isArray)(n)))for(const t of n)null!=t&&i.classList.add(t);else if(\"style\"===t&&(0,s.isPlainObject)(n))for(const[t,e]of(0,l.entries)(n))i.style[t]=e;else if(\"data\"===t&&(0,s.isPlainObject)(n))for(const[t,e]of(0,l.entries)(n))i.dataset[t]=e;else i.setAttribute(t,n);function o(t){if((0,s.isString)(t))i.appendChild(document.createTextNode(t));else if(t instanceof Node)i.appendChild(t);else if(t instanceof NodeList||t instanceof HTMLCollection)for(const e of t)i.appendChild(e);else if(null!=t&&!1!==t)throw new Error(`expected a DOM element, string, false or null, got ${JSON.stringify(t)}`)}for(const t of n)if((0,s.isArray)(t))for(const e of t)o(e);else o(t);return i};function a(t){const e=t.parentNode;null!=e&&e.removeChild(t)}function c(t,...e){const n=t.firstChild;for(const i of e)t.insertBefore(i,n)}function d(t,e){var n,i,o;const s=Element.prototype;return(null!==(o=null!==(i=null!==(n=s.matches)&&void 0!==n?n:s.webkitMatchesSelector)&&void 0!==i?i:s.mozMatchesSelector)&&void 0!==o?o:s.msMatchesSelector).call(t,e)}function h(t){return parseFloat(t)||0}function f(t){const e=getComputedStyle(t);return{border:{top:h(e.borderTopWidth),bottom:h(e.borderBottomWidth),left:h(e.borderLeftWidth),right:h(e.borderRightWidth)},margin:{top:h(e.marginTop),bottom:h(e.marginBottom),left:h(e.marginLeft),right:h(e.marginRight)},padding:{top:h(e.paddingTop),bottom:h(e.paddingBottom),left:h(e.paddingLeft),right:h(e.paddingRight)}}}function u(t){const e=t.getBoundingClientRect();return{width:Math.ceil(e.width),height:Math.ceil(e.height)}}n.createElement=function(t,e,...n){return r(t)(e,...n)},n.div=r(\"div\"),n.span=r(\"span\"),n.canvas=r(\"canvas\"),n.link=r(\"link\"),n.style=r(\"style\"),n.a=r(\"a\"),n.p=r(\"p\"),n.i=r(\"i\"),n.pre=r(\"pre\"),n.button=r(\"button\"),n.label=r(\"label\"),n.input=r(\"input\"),n.select=r(\"select\"),n.option=r(\"option\"),n.optgroup=r(\"optgroup\"),n.textarea=r(\"textarea\"),n.createSVGElement=function(t,e,...n){const i=document.createElementNS(\"http://www.w3.org/2000/svg\",t);for(const[t,n]of(0,l.entries)(null!=e?e:{}))null==n||(0,s.isBoolean)(n)&&!n||i.setAttribute(t,n);function o(t){if((0,s.isString)(t))i.appendChild(document.createTextNode(t));else if(t instanceof Node)i.appendChild(t);else if(t instanceof NodeList||t instanceof HTMLCollection)for(const e of t)i.appendChild(e);else if(null!=t&&!1!==t)throw new Error(`expected a DOM element, string, false or null, got ${JSON.stringify(t)}`)}for(const t of n)if((0,s.isArray)(t))for(const e of t)o(e);else o(t);return i},n.nbsp=function(){return document.createTextNode(\"\\xa0\")},n.append=function(t,...e){for(const n of e)t.appendChild(n)},n.remove=a,n.removeElement=a,n.replaceWith=function(t,e){const n=t.parentNode;null!=n&&n.replaceChild(e,t)},n.prepend=c,n.empty=function(t,e=!1){let n;for(;n=t.firstChild;)t.removeChild(n);if(e&&t instanceof Element)for(const e of t.attributes)t.removeAttributeNode(e)},n.display=function(t){t.style.display=\"\"},n.undisplay=function(t){t.style.display=\"none\"},n.show=function(t){t.style.visibility=\"\"},n.hide=function(t){t.style.visibility=\"hidden\"},n.offset=function(t){const e=t.getBoundingClientRect();return{top:e.top+window.pageYOffset-document.documentElement.clientTop,left:e.left+window.pageXOffset-document.documentElement.clientLeft}},n.matches=d,n.parent=function(t,e){let n=t;for(;n=n.parentElement;)if(d(n,e))return n;return null},n.extents=f,n.size=u,n.scroll_size=function(t){return{width:Math.ceil(t.scrollWidth),height:Math.ceil(t.scrollHeight)}},n.outer_size=function(t){const{margin:{left:e,right:n,top:i,bottom:o}}=f(t),{width:s,height:l}=u(t);return{width:Math.ceil(s+e+n),height:Math.ceil(l+i+o)}},n.content_size=function(t){const{left:e,top:n}=t.getBoundingClientRect(),{padding:i}=f(t);let o=0,s=0;for(const l of t.children){const t=l.getBoundingClientRect();o=Math.max(o,Math.ceil(t.left-e-i.left+t.width)),s=Math.max(s,Math.ceil(t.top-n-i.top+t.height))}return{width:o,height:s}},n.position=function(t,e,n){const{style:i}=t;if(i.left=`${e.x}px`,i.top=`${e.y}px`,i.width=`${e.width}px`,i.height=`${e.height}px`,null==n)i.margin=\"\";else{const{top:t,right:e,bottom:o,left:s}=n;i.margin=`${t}px ${e}px ${o}px ${s}px`}},n.children=function(t){return Array.from(t.children)};class p{constructor(t){this.el=t,this.classList=t.classList}get values(){const t=[];for(let e=0;e{document.addEventListener(\"DOMContentLoaded\",(()=>t()),{once:!0})}))}},\n", + " function _(o,i,t,e,r){e(),t.root=\"bk-root\",t.default=\".bk-root{position:relative;width:auto;height:auto;box-sizing:border-box;font-family:Helvetica, Arial, sans-serif;font-size:13px;}.bk-root .bk,.bk-root .bk:before,.bk-root .bk:after{box-sizing:inherit;margin:0;border:0;padding:0;background-image:none;font-family:inherit;font-size:100%;line-height:1.42857143;}.bk-root pre.bk{font-family:Courier, monospace;}\"},\n", + " function _(e,t,r,a,c){a();const n=e(1),l=e(46);c(\"Line\",l.Line),c(\"LineScalar\",l.LineScalar),c(\"LineVector\",l.LineVector);const i=e(49);c(\"Fill\",i.Fill),c(\"FillScalar\",i.FillScalar),c(\"FillVector\",i.FillVector);const s=e(50);c(\"Text\",s.Text),c(\"TextScalar\",s.TextScalar),c(\"TextVector\",s.TextVector);const o=e(51);c(\"Hatch\",o.Hatch),c(\"HatchScalar\",o.HatchScalar),c(\"HatchVector\",o.HatchVector);const u=(0,n.__importStar)(e(48)),V=e(47);c(\"VisualProperties\",V.VisualProperties),c(\"VisualUniforms\",V.VisualUniforms);class h{constructor(e){this._visuals=[];for(const[t,r]of e.model._mixins){const a=(()=>{switch(r){case u.Line:return new l.Line(e,t);case u.LineScalar:return new l.LineScalar(e,t);case u.LineVector:return new l.LineVector(e,t);case u.Fill:return new i.Fill(e,t);case u.FillScalar:return new i.FillScalar(e,t);case u.FillVector:return new i.FillVector(e,t);case u.Text:return new s.Text(e,t);case u.TextScalar:return new s.TextScalar(e,t);case u.TextVector:return new s.TextVector(e,t);case u.Hatch:return new o.Hatch(e,t);case u.HatchScalar:return new o.HatchScalar(e,t);case u.HatchVector:return new o.HatchVector(e,t);default:throw new Error(\"unknown visual\")}})();a instanceof V.VisualProperties&&a.update(),this._visuals.push(a),Object.defineProperty(this,t+a.type,{get:()=>a,configurable:!1,enumerable:!0})}}*[Symbol.iterator](){yield*this._visuals}}r.Visuals=h,h.__name__=\"Visuals\"},\n", + " function _(e,t,i,l,s){l();const a=e(1),n=e(47),h=(0,a.__importStar)(e(48)),o=e(22),_=e(8);function r(e){if((0,_.isArray)(e))return e;switch(e){case\"solid\":return[];case\"dashed\":return[6];case\"dotted\":return[2,4];case\"dotdash\":return[2,4,6,4];case\"dashdot\":return[6,4,2,4];default:return e.split(\" \").map(Number).filter(_.isInteger)}}i.resolve_line_dash=r;class u extends n.VisualProperties{get doit(){const e=this.line_color.get_value(),t=this.line_alpha.get_value(),i=this.line_width.get_value();return!(null==e||0==t||0==i)}apply(e){const{doit:t}=this;return t&&(this.set_value(e),e.stroke()),t}values(){return{color:this.line_color.get_value(),alpha:this.line_alpha.get_value(),width:this.line_width.get_value(),join:this.line_join.get_value(),cap:this.line_cap.get_value(),dash:this.line_dash.get_value(),offset:this.line_dash_offset.get_value()}}set_value(e){const t=this.line_color.get_value(),i=this.line_alpha.get_value();e.strokeStyle=(0,o.color2css)(t,i),e.lineWidth=this.line_width.get_value(),e.lineJoin=this.line_join.get_value(),e.lineCap=this.line_cap.get_value(),e.lineDash=r(this.line_dash.get_value()),e.lineDashOffset=this.line_dash_offset.get_value()}}i.Line=u,u.__name__=\"Line\";class c extends n.VisualUniforms{get doit(){const e=this.line_color.value,t=this.line_alpha.value,i=this.line_width.value;return!(0==e||0==t||0==i)}apply(e){const{doit:t}=this;return t&&(this.set_value(e),e.stroke()),t}values(){return{color:this.line_color.value,alpha:this.line_alpha.value,width:this.line_width.value,join:this.line_join.value,cap:this.line_cap.value,dash:this.line_dash.value,offset:this.line_dash_offset.value}}set_value(e){const t=this.line_color.value,i=this.line_alpha.value;e.strokeStyle=(0,o.color2css)(t,i),e.lineWidth=this.line_width.value,e.lineJoin=this.line_join.value,e.lineCap=this.line_cap.value,e.lineDash=r(this.line_dash.value),e.lineDashOffset=this.line_dash_offset.value}}i.LineScalar=c,c.__name__=\"LineScalar\";class d extends n.VisualUniforms{get doit(){const{line_color:e}=this;if(e.is_Scalar()&&0==e.value)return!1;const{line_alpha:t}=this;if(t.is_Scalar()&&0==t.value)return!1;const{line_width:i}=this;return!i.is_Scalar()||0!=i.value}apply(e,t){const{doit:i}=this;return i&&(this.set_vectorize(e,t),e.stroke()),i}values(e){return{color:this.line_color.get(e),alpha:this.line_alpha.get(e),width:this.line_width.get(e),join:this.line_join.get(e),cap:this.line_cap.get(e),dash:this.line_dash.get(e),offset:this.line_dash_offset.get(e)}}set_vectorize(e,t){const i=this.line_color.get(t),l=this.line_alpha.get(t),s=this.line_width.get(t),a=this.line_join.get(t),n=this.line_cap.get(t),h=this.line_dash.get(t),_=this.line_dash_offset.get(t);e.strokeStyle=(0,o.color2css)(i,l),e.lineWidth=s,e.lineJoin=a,e.lineCap=n,e.lineDash=r(h),e.lineDashOffset=_}}i.LineVector=d,d.__name__=\"LineVector\",u.prototype.type=\"line\",u.prototype.attrs=Object.keys(h.Line),c.prototype.type=\"line\",c.prototype.attrs=Object.keys(h.LineScalar),d.prototype.type=\"line\",d.prototype.attrs=Object.keys(h.LineVector)},\n", + " function _(t,s,o,i,r){i();class e{constructor(t,s=\"\"){this.obj=t,this.prefix=s;const o=this;this._props=[];for(const i of this.attrs){const r=t.model.properties[s+i];r.change.connect((()=>this.update())),o[i]=r,this._props.push(r)}}*[Symbol.iterator](){yield*this._props}update(){}}o.VisualProperties=e,e.__name__=\"VisualProperties\";class p{constructor(t,s=\"\"){this.obj=t,this.prefix=s;for(const o of this.attrs)Object.defineProperty(this,o,{get:()=>t[s+o]})}*[Symbol.iterator](){for(const t of this.attrs)yield this.obj.model.properties[this.prefix+t]}update(){}}o.VisualUniforms=p,p.__name__=\"VisualUniforms\"},\n", + " function _(e,l,t,a,c){a();const r=e(1),o=(0,r.__importStar)(e(18)),n=e(20),i=(0,r.__importStar)(e(21)),_=e(13);t.Line={line_color:[i.Nullable(i.Color),\"black\"],line_alpha:[i.Alpha,1],line_width:[i.Number,1],line_join:[n.LineJoin,\"bevel\"],line_cap:[n.LineCap,\"butt\"],line_dash:[i.Or(n.LineDash,i.Array(i.Number)),[]],line_dash_offset:[i.Number,0]},t.Fill={fill_color:[i.Nullable(i.Color),\"gray\"],fill_alpha:[i.Alpha,1]},t.Hatch={hatch_color:[i.Nullable(i.Color),\"black\"],hatch_alpha:[i.Alpha,1],hatch_scale:[i.Number,12],hatch_pattern:[i.Nullable(i.Or(n.HatchPatternType,i.String)),null],hatch_weight:[i.Number,1],hatch_extra:[i.Dict(i.AnyRef()),{}]},t.Text={text_color:[i.Nullable(i.Color),\"#444444\"],text_alpha:[i.Alpha,1],text_font:[o.Font,\"helvetica\"],text_font_size:[i.FontSize,\"16px\"],text_font_style:[n.FontStyle,\"normal\"],text_align:[n.TextAlign,\"left\"],text_baseline:[n.TextBaseline,\"bottom\"],text_line_height:[i.Number,1.2]},t.LineScalar={line_color:[o.ColorScalar,\"black\"],line_alpha:[o.NumberScalar,1],line_width:[o.NumberScalar,1],line_join:[o.LineJoinScalar,\"bevel\"],line_cap:[o.LineCapScalar,\"butt\"],line_dash:[o.LineDashScalar,[]],line_dash_offset:[o.NumberScalar,0]},t.FillScalar={fill_color:[o.ColorScalar,\"gray\"],fill_alpha:[o.NumberScalar,1]},t.HatchScalar={hatch_color:[o.ColorScalar,\"black\"],hatch_alpha:[o.NumberScalar,1],hatch_scale:[o.NumberScalar,12],hatch_pattern:[o.NullStringScalar,null],hatch_weight:[o.NumberScalar,1],hatch_extra:[o.AnyScalar,{}]},t.TextScalar={text_color:[o.ColorScalar,\"#444444\"],text_alpha:[o.NumberScalar,1],text_font:[o.FontScalar,\"helvetica\"],text_font_size:[o.FontSizeScalar,\"16px\"],text_font_style:[o.FontStyleScalar,\"normal\"],text_align:[o.TextAlignScalar,\"left\"],text_baseline:[o.TextBaselineScalar,\"bottom\"],text_line_height:[o.NumberScalar,1.2]},t.LineVector={line_color:[o.ColorSpec,\"black\"],line_alpha:[o.NumberSpec,1],line_width:[o.NumberSpec,1],line_join:[o.LineJoinSpec,\"bevel\"],line_cap:[o.LineCapSpec,\"butt\"],line_dash:[o.LineDashSpec,[]],line_dash_offset:[o.NumberSpec,0]},t.FillVector={fill_color:[o.ColorSpec,\"gray\"],fill_alpha:[o.NumberSpec,1]},t.HatchVector={hatch_color:[o.ColorSpec,\"black\"],hatch_alpha:[o.NumberSpec,1],hatch_scale:[o.NumberSpec,12],hatch_pattern:[o.NullStringSpec,null],hatch_weight:[o.NumberSpec,1],hatch_extra:[o.AnyScalar,{}]},t.TextVector={text_color:[o.ColorSpec,\"#444444\"],text_alpha:[o.NumberSpec,1],text_font:[o.FontSpec,\"helvetica\"],text_font_size:[o.FontSizeSpec,\"16px\"],text_font_style:[o.FontStyleSpec,\"normal\"],text_align:[o.TextAlignSpec,\"left\"],text_baseline:[o.TextBaselineSpec,\"bottom\"],text_line_height:[o.NumberSpec,1.2]},t.attrs_of=function(e,l,t,a=!1){const c={};for(const r of(0,_.keys)(t)){const t=`${l}${r}`,o=e[t];c[a?t:r]=o}return c}},\n", + " function _(l,t,e,i,s){i();const a=l(1),o=l(47),r=(0,a.__importStar)(l(48)),_=l(22);class c extends o.VisualProperties{get doit(){const l=this.fill_color.get_value(),t=this.fill_alpha.get_value();return!(null==l||0==t)}apply(l,t){const{doit:e}=this;return e&&(this.set_value(l),l.fill(t)),e}values(){return{color:this.fill_color.get_value(),alpha:this.fill_alpha.get_value()}}set_value(l){const t=this.fill_color.get_value(),e=this.fill_alpha.get_value();l.fillStyle=(0,_.color2css)(t,e)}}e.Fill=c,c.__name__=\"Fill\";class h extends o.VisualUniforms{get doit(){const l=this.fill_color.value,t=this.fill_alpha.value;return!(0==l||0==t)}apply(l,t){const{doit:e}=this;return e&&(this.set_value(l),l.fill(t)),e}values(){return{color:this.fill_color.value,alpha:this.fill_alpha.value}}set_value(l){const t=this.fill_color.value,e=this.fill_alpha.value;l.fillStyle=(0,_.color2css)(t,e)}}e.FillScalar=h,h.__name__=\"FillScalar\";class u extends o.VisualUniforms{get doit(){const{fill_color:l}=this;if(l.is_Scalar()&&0==l.value)return!1;const{fill_alpha:t}=this;return!t.is_Scalar()||0!=t.value}apply(l,t,e){const{doit:i}=this;return i&&(this.set_vectorize(l,t),l.fill(e)),i}values(l){return{color:this.fill_color.get(l),alpha:this.fill_alpha.get(l)}}set_vectorize(l,t){const e=this.fill_color.get(t),i=this.fill_alpha.get(t);l.fillStyle=(0,_.color2css)(e,i)}}e.FillVector=u,u.__name__=\"FillVector\",c.prototype.type=\"fill\",c.prototype.attrs=Object.keys(r.Fill),h.prototype.type=\"fill\",h.prototype.attrs=Object.keys(r.FillScalar),u.prototype.type=\"fill\",u.prototype.attrs=Object.keys(r.FillVector)},\n", + " function _(t,e,l,s,_){s();const i=t(1),a=t(47),o=(0,i.__importStar)(t(48)),n=t(22);class h extends a.VisualProperties{get doit(){const t=this.text_color.get_value(),e=this.text_alpha.get_value();return!(null==t||0==e)}values(){return{color:this.text_color.get_value(),alpha:this.text_alpha.get_value(),font:this.text_font.get_value(),font_size:this.text_font_size.get_value(),font_style:this.text_font_style.get_value(),align:this.text_align.get_value(),baseline:this.text_baseline.get_value(),line_height:this.text_line_height.get_value()}}set_value(t){const e=this.text_color.get_value(),l=this.text_alpha.get_value();t.fillStyle=(0,n.color2css)(e,l),t.font=this.font_value(),t.textAlign=this.text_align.get_value(),t.textBaseline=this.text_baseline.get_value()}font_value(){return`${this.text_font_style.get_value()} ${this.text_font_size.get_value()} ${this.text_font.get_value()}`}}l.Text=h,h.__name__=\"Text\";class x extends a.VisualUniforms{get doit(){const t=this.text_color.value,e=this.text_alpha.value;return!(0==t||0==e)}values(){return{color:this.text_color.value,alpha:this.text_alpha.value,font:this.text_font.value,font_size:this.text_font_size.value,font_style:this.text_font_style.value,align:this.text_align.value,baseline:this.text_baseline.value,line_height:this.text_line_height.value}}set_value(t){const e=this.text_color.value,l=this.text_alpha.value,s=this.font_value(),_=this.text_align.value,i=this.text_baseline.value;t.fillStyle=(0,n.color2css)(e,l),t.font=s,t.textAlign=_,t.textBaseline=i}font_value(){return`${this.text_font_style.value} ${this.text_font_size.value} ${this.text_font.value}`}}l.TextScalar=x,x.__name__=\"TextScalar\";class u extends a.VisualUniforms{values(t){return{color:this.text_color.get(t),alpha:this.text_alpha.get(t),font:this.text_font.get(t),font_size:this.text_font_size.get(t),font_style:this.text_font_style.get(t),align:this.text_align.get(t),baseline:this.text_baseline.get(t),line_height:this.text_line_height.get(t)}}get doit(){const{text_color:t}=this;if(t.is_Scalar()&&0==t.value)return!1;const{text_alpha:e}=this;return!e.is_Scalar()||0!=e.value}set_vectorize(t,e){const l=this.text_color.get(e),s=this.text_alpha.get(e),_=this.font_value(e),i=this.text_align.get(e),a=this.text_baseline.get(e);t.fillStyle=(0,n.color2css)(l,s),t.font=_,t.textAlign=i,t.textBaseline=a}font_value(t){return`${this.text_font_style.get(t)} ${this.text_font_size.get(t)} ${this.text_font.get(t)}`}}l.TextVector=u,u.__name__=\"TextVector\",h.prototype.type=\"text\",h.prototype.attrs=Object.keys(o.Text),x.prototype.type=\"text\",x.prototype.attrs=Object.keys(o.TextScalar),u.prototype.type=\"text\",u.prototype.attrs=Object.keys(o.TextVector)},\n", + " function _(t,e,a,r,i){r();const h=t(1),s=t(47),n=t(52),c=(0,h.__importStar)(t(18)),_=(0,h.__importStar)(t(48));class l extends s.VisualProperties{constructor(){super(...arguments),this._update_iteration=0}update(){if(this._update_iteration++,this._hatch_image=null,!this.doit)return;const t=this.hatch_color.get_value(),e=this.hatch_alpha.get_value(),a=this.hatch_scale.get_value(),r=this.hatch_pattern.get_value(),i=this.hatch_weight.get_value(),h=t=>{this._hatch_image=t},s=this.hatch_extra.get_value()[r];if(null!=s){const r=s.get_pattern(t,e,a,i);if(r instanceof Promise){const{_update_iteration:t}=this;r.then((e=>{this._update_iteration==t&&(h(e),this.obj.request_render())}))}else h(r)}else{const s=this.obj.canvas.create_layer(),c=(0,n.get_pattern)(s,r,t,e,a,i);h(c)}}get doit(){const t=this.hatch_color.get_value(),e=this.hatch_alpha.get_value(),a=this.hatch_pattern.get_value();return!(null==t||0==e||\" \"==a||\"blank\"==a||null==a)}apply(t,e){const{doit:a}=this;return a&&(this.set_value(t),t.layer.undo_transform((()=>t.fill(e)))),a}set_value(t){const e=this.pattern(t);t.fillStyle=null!=e?e:\"transparent\"}pattern(t){const e=this._hatch_image;return null==e?null:t.createPattern(e,this.repetition())}repetition(){const t=this.hatch_pattern.get_value(),e=this.hatch_extra.get_value()[t];if(null==e)return\"repeat\";switch(e.repetition){case\"repeat\":return\"repeat\";case\"repeat_x\":return\"repeat-x\";case\"repeat_y\":return\"repeat-y\";case\"no_repeat\":return\"no-repeat\"}}}a.Hatch=l,l.__name__=\"Hatch\";class o extends s.VisualUniforms{constructor(){super(...arguments),this._static_doit=!1,this._update_iteration=0}_compute_static_doit(){const t=this.hatch_color.value,e=this.hatch_alpha.value,a=this.hatch_pattern.value;return!(null==t||0==e||\" \"==a||\"blank\"==a||null==a)}update(){this._update_iteration++;const t=this.hatch_color.length;if(this._hatch_image=new c.UniformScalar(null,t),this._static_doit=this._compute_static_doit(),!this._static_doit)return;const e=this.hatch_color.value,a=this.hatch_alpha.value,r=this.hatch_scale.value,i=this.hatch_pattern.value,h=this.hatch_weight.value,s=e=>{this._hatch_image=new c.UniformScalar(e,t)},_=this.hatch_extra.value[i];if(null!=_){const t=_.get_pattern(e,a,r,h);if(t instanceof Promise){const{_update_iteration:e}=this;t.then((t=>{this._update_iteration==e&&(s(t),this.obj.request_render())}))}else s(t)}else{const t=this.obj.canvas.create_layer(),c=(0,n.get_pattern)(t,i,e,a,r,h);s(c)}}get doit(){return this._static_doit}apply(t,e){const{doit:a}=this;return a&&(this.set_value(t),t.layer.undo_transform((()=>t.fill(e)))),a}set_value(t){var e;t.fillStyle=null!==(e=this.pattern(t))&&void 0!==e?e:\"transparent\"}pattern(t){const e=this._hatch_image.value;return null==e?null:t.createPattern(e,this.repetition())}repetition(){const t=this.hatch_pattern.value,e=this.hatch_extra.value[t];if(null==e)return\"repeat\";switch(e.repetition){case\"repeat\":return\"repeat\";case\"repeat_x\":return\"repeat-x\";case\"repeat_y\":return\"repeat-y\";case\"no_repeat\":return\"no-repeat\"}}}a.HatchScalar=o,o.__name__=\"HatchScalar\";class u extends s.VisualUniforms{constructor(){super(...arguments),this._static_doit=!1,this._update_iteration=0}_compute_static_doit(){const{hatch_color:t}=this;if(t.is_Scalar()&&0==t.value)return!1;const{hatch_alpha:e}=this;if(e.is_Scalar()&&0==e.value)return!1;const{hatch_pattern:a}=this;if(a.is_Scalar()){const t=a.value;if(\" \"==t||\"blank\"==t||null==t)return!1}return!0}update(){this._update_iteration++;const t=this.hatch_color.length;if(this._hatch_image=new c.UniformScalar(null,t),this._static_doit=this._compute_static_doit(),!this._static_doit)return;const e=(t,e,a,r,i,h)=>{const s=this.hatch_extra.value[t];if(null!=s){const t=s.get_pattern(e,a,r,i);if(t instanceof Promise){const{_update_iteration:e}=this;t.then((t=>{this._update_iteration==e&&(h(t),this.obj.request_render())}))}else h(t)}else{const s=this.obj.canvas.create_layer(),c=(0,n.get_pattern)(s,t,e,a,r,i);h(c)}};if(this.hatch_color.is_Scalar()&&this.hatch_alpha.is_Scalar()&&this.hatch_scale.is_Scalar()&&this.hatch_pattern.is_Scalar()&&this.hatch_weight.is_Scalar()){const a=this.hatch_color.value,r=this.hatch_alpha.value,i=this.hatch_scale.value;e(this.hatch_pattern.value,a,r,i,this.hatch_weight.value,(e=>{this._hatch_image=new c.UniformScalar(e,t)}))}else{const a=new Array(t);a.fill(null),this._hatch_image=new c.UniformVector(a);for(let r=0;r{a[r]=t}))}}}get doit(){return this._static_doit}apply(t,e,a){const{doit:r}=this;return r&&(this.set_vectorize(t,e),t.layer.undo_transform((()=>t.fill(a)))),r}set_vectorize(t,e){var a;t.fillStyle=null!==(a=this.pattern(t,e))&&void 0!==a?a:\"transparent\"}pattern(t,e){const a=this._hatch_image.get(e);return null==a?null:t.createPattern(a,this.repetition(e))}repetition(t){const e=this.hatch_pattern.get(t),a=this.hatch_extra.value[e];if(null==a)return\"repeat\";switch(a.repetition){case\"repeat\":return\"repeat\";case\"repeat_x\":return\"repeat-x\";case\"repeat_y\":return\"repeat-y\";case\"no_repeat\":return\"no-repeat\"}}}a.HatchVector=u,u.__name__=\"HatchVector\",l.prototype.type=\"hatch\",l.prototype.attrs=Object.keys(_.Hatch),o.prototype.type=\"hatch\",o.prototype.attrs=Object.keys(_.HatchScalar),u.prototype.type=\"hatch\",u.prototype.attrs=Object.keys(_.HatchVector)},\n", + " function _(e,o,a,s,r){s();const i=e(22);function l(e,o,a){e.moveTo(0,a+.5),e.lineTo(o,a+.5),e.stroke()}function n(e,o,a){e.moveTo(a+.5,0),e.lineTo(a+.5,o),e.stroke()}function t(e,o){e.moveTo(0,o),e.lineTo(o,0),e.stroke(),e.moveTo(0,0),e.lineTo(o,o),e.stroke()}a.hatch_aliases={\" \":\"blank\",\".\":\"dot\",o:\"ring\",\"-\":\"horizontal_line\",\"|\":\"vertical_line\",\"+\":\"cross\",'\"':\"horizontal_dash\",\":\":\"vertical_dash\",\"@\":\"spiral\",\"/\":\"right_diagonal_line\",\"\\\\\":\"left_diagonal_line\",x:\"diagonal_cross\",\",\":\"right_diagonal_dash\",\"`\":\"left_diagonal_dash\",v:\"horizontal_wave\",\">\":\"vertical_wave\",\"*\":\"criss_cross\"},a.get_pattern=function(e,o,s,r,c,k){return e.resize(c,c),e.prepare(),function(e,o,s,r,c,k){var _;const T=c,v=T/2,h=v/2,d=(0,i.color2css)(s,r);switch(e.strokeStyle=d,e.fillStyle=d,e.lineCap=\"square\",e.lineWidth=k,null!==(_=a.hatch_aliases[o])&&void 0!==_?_:o){case\"blank\":break;case\"dot\":e.arc(v,v,v/2,0,2*Math.PI,!0),e.fill();break;case\"ring\":e.arc(v,v,v/2,0,2*Math.PI,!0),e.stroke();break;case\"horizontal_line\":l(e,T,v);break;case\"vertical_line\":n(e,T,v);break;case\"cross\":l(e,T,v),n(e,T,v);break;case\"horizontal_dash\":l(e,v,v);break;case\"vertical_dash\":n(e,v,v);break;case\"spiral\":{const o=T/30;e.moveTo(v,v);for(let a=0;a<360;a++){const s=.1*a,r=v+o*s*Math.cos(s),i=v+o*s*Math.sin(s);e.lineTo(r,i)}e.stroke();break}case\"right_diagonal_line\":e.moveTo(.5-h,T),e.lineTo(h+.5,0),e.stroke(),e.moveTo(h+.5,T),e.lineTo(3*h+.5,0),e.stroke(),e.moveTo(3*h+.5,T),e.lineTo(5*h+.5,0),e.stroke(),e.stroke();break;case\"left_diagonal_line\":e.moveTo(h+.5,T),e.lineTo(.5-h,0),e.stroke(),e.moveTo(3*h+.5,T),e.lineTo(h+.5,0),e.stroke(),e.moveTo(5*h+.5,T),e.lineTo(3*h+.5,0),e.stroke(),e.stroke();break;case\"diagonal_cross\":t(e,T);break;case\"right_diagonal_dash\":e.moveTo(h+.5,3*h+.5),e.lineTo(3*h+.5,h+.5),e.stroke();break;case\"left_diagonal_dash\":e.moveTo(h+.5,h+.5),e.lineTo(3*h+.5,3*h+.5),e.stroke();break;case\"horizontal_wave\":e.moveTo(0,h),e.lineTo(v,3*h),e.lineTo(T,h),e.stroke();break;case\"vertical_wave\":e.moveTo(h,0),e.lineTo(3*h,v),e.lineTo(h,T),e.stroke();break;case\"criss_cross\":t(e,T),l(e,T,v),n(e,T,v)}}(e.ctx,o,s,r,c,k),e.canvas}},\n", + " function _(e,t,s,n,c){var a;n();const i=e(14),r=e(8),l=e(13),o=e(26),_=e(19);class h extends i.HasProps{constructor(e){super(e)}get is_syncable(){return this.syncable}[o.equals](e,t){return t.eq(this.id,e.id)&&super[o.equals](e,t)}initialize(){super.initialize(),this._js_callbacks=new Map}connect_signals(){super.connect_signals(),this._update_property_callbacks(),this.connect(this.properties.js_property_callbacks.change,(()=>this._update_property_callbacks())),this.connect(this.properties.js_event_callbacks.change,(()=>this._update_event_callbacks())),this.connect(this.properties.subscribed_events.change,(()=>this._update_event_callbacks()))}_process_event(e){var t;for(const s of null!==(t=this.js_event_callbacks[e.event_name])&&void 0!==t?t:[])s.execute(e);null!=this.document&&this.subscribed_events.some((t=>t==e.event_name))&&this.document.event_manager.send_event(e)}trigger_event(e){null!=this.document&&(e.origin=this,this.document.event_manager.trigger(e))}_update_event_callbacks(){null!=this.document?this.document.event_manager.subscribed_models.add(this):_.logger.warn(\"WARNING: Document not defined for updating event callbacks\")}_update_property_callbacks(){const e=e=>{const[t,s=null]=e.split(\":\");return null!=s?this.properties[s][t]:this[t]};for(const[t,s]of this._js_callbacks){const n=e(t);for(const e of s)this.disconnect(n,e)}this._js_callbacks.clear();for(const[t,s]of(0,l.entries)(this.js_property_callbacks)){const n=s.map((e=>()=>e.execute(this)));this._js_callbacks.set(t,n);const c=e(t);for(const e of n)this.connect(c,e)}}_doc_attached(){(0,l.isEmpty)(this.js_event_callbacks)&&0==this.subscribed_events.length||this._update_event_callbacks()}_doc_detached(){this.document.event_manager.subscribed_models.delete(this)}select(e){if((0,r.isString)(e))return[...this.references()].filter((t=>t instanceof h&&t.name===e));if(e.prototype instanceof i.HasProps)return[...this.references()].filter((t=>t instanceof e));throw new Error(\"invalid selector\")}select_one(e){const t=this.select(e);switch(t.length){case 0:return null;case 1:return t[0];default:throw new Error(\"found more than one object matching given selector\")}}}s.Model=h,a=h,h.__name__=\"Model\",a.define((({Any:e,Unknown:t,Boolean:s,String:n,Array:c,Dict:a,Nullable:i})=>({tags:[c(t),[]],name:[i(n),null],js_property_callbacks:[a(c(e)),{}],js_event_callbacks:[a(c(e)),{}],subscribed_events:[c(n),[]],syncable:[s,!0]})))},\n", + " function _(e,t,s,a,r){var c,n;a();const _=e(12),o=e(53),i=e(55),l=e(59),u=e(61),g=e(62),h=e(57),p=e(63),m=e(67);class x{constructor(e,t){this.x_scale=e,this.y_scale=t,this.x_source=this.x_scale.source_range,this.y_source=this.y_scale.source_range,this.ranges=[this.x_source,this.y_source],this.scales=[this.x_scale,this.y_scale]}map_to_screen(e,t){return[this.x_scale.v_compute(e),this.y_scale.v_compute(t)]}map_from_screen(e,t){return[this.x_scale.v_invert(e),this.y_scale.v_invert(t)]}}s.CoordinateTransform=x,x.__name__=\"CoordinateTransform\";class y extends o.Model{constructor(e){super(e)}get x_ranges(){return new Map([[\"default\",this.x_source]])}get y_ranges(){return new Map([[\"default\",this.y_source]])}_get_scale(e,t,s){if(e instanceof m.FactorRange!=t instanceof g.CategoricalScale)throw new Error(`Range ${e.type} is incompatible is Scale ${t.type}`);t instanceof u.LogScale&&e instanceof p.DataRange1d&&(e.scale_hint=\"log\");const a=t.clone();return a.setv({source_range:e,target_range:s}),a}get_transform(e){const{x_source:t,x_scale:s,x_target:a}=this,r=this._get_scale(t,s,a),{y_source:c,y_scale:n,y_target:_}=this,o=this._get_scale(c,n,_),i=new v({source_scale:r,source_range:r.source_range,target_scale:e.x_scale,target_range:e.x_target}),l=new v({source_scale:o,source_range:o.source_range,target_scale:e.y_scale,target_range:e.y_target});return new x(i,l)}}s.CoordinateMapping=y,c=y,y.__name__=\"CoordinateMapping\",c.define((({Ref:e})=>({x_source:[e(h.Range),()=>new p.DataRange1d],y_source:[e(h.Range),()=>new p.DataRange1d],x_scale:[e(i.Scale),()=>new l.LinearScale],y_scale:[e(i.Scale),()=>new l.LinearScale],x_target:[e(h.Range)],y_target:[e(h.Range)]})));class v extends i.Scale{constructor(e){super(e)}get s_compute(){const e=this.source_scale.s_compute,t=this.target_scale.s_compute;return s=>t(e(s))}get s_invert(){const e=this.source_scale.s_invert,t=this.target_scale.s_invert;return s=>e(t(s))}compute(e){return this.s_compute(e)}v_compute(e){const{s_compute:t}=this;return(0,_.map)(e,t)}invert(e){return this.s_invert(e)}v_invert(e){const{s_invert:t}=this;return(0,_.map)(e,t)}}s.CompositeScale=v,n=v,v.__name__=\"CompositeScale\",n.internal((({Ref:e})=>({source_scale:[e(i.Scale)],target_scale:[e(i.Scale)]})))},\n", + " function _(e,t,r,n,s){var _;n();const a=e(56),c=e(57),o=e(58),i=e(24);class u extends a.Transform{constructor(e){super(e)}compute(e){return this.s_compute(e)}v_compute(e){const t=new i.ScreenArray(e.length),{s_compute:r}=this;for(let n=0;n({source_range:[e(c.Range)],target_range:[e(o.Range1d)]})))},\n", + " function _(n,s,o,r,c){r();const e=n(53);class t extends e.Model{constructor(n){super(n)}}o.Transform=t,t.__name__=\"Transform\"},\n", + " function _(e,t,n,i,s){var r;i();const a=e(53);class l extends a.Model{constructor(e){super(e),this.have_updated_interactively=!1}get is_reversed(){return this.start>this.end}get is_valid(){return isFinite(this.min)&&isFinite(this.max)}get span(){return Math.abs(this.end-this.start)}}n.Range=l,r=l,l.__name__=\"Range\",r.define((({Number:e,Tuple:t,Or:n,Auto:i,Nullable:s})=>({bounds:[s(n(t(s(e),s(e)),i)),null],min_interval:[s(e),null],max_interval:[s(e),null]}))),r.internal((({Array:e,AnyRef:t})=>({plots:[e(t()),[]]})))},\n", + " function _(t,e,s,n,r){var a;n();const i=t(57);class _ extends i.Range{constructor(t){super(t)}_set_auto_bounds(){if(\"auto\"==this.bounds){const t=Math.min(this._reset_start,this._reset_end),e=Math.max(this._reset_start,this._reset_end);this.setv({bounds:[t,e]},{silent:!0})}}initialize(){super.initialize(),this._set_auto_bounds()}get min(){return Math.min(this.start,this.end)}get max(){return Math.max(this.start,this.end)}reset(){this._set_auto_bounds();const{_reset_start:t,_reset_end:e}=this;this.start!=t||this.end!=e?this.setv({start:t,end:e}):this.change.emit()}map(t){return new _({start:t(this.start),end:t(this.end)})}widen(t){let{start:e,end:s}=this;return this.is_reversed?(e+=t,s-=t):(e-=t,s+=t),new _({start:e,end:s})}}s.Range1d=_,a=_,_.__name__=\"Range1d\",a.define((({Number:t,Nullable:e})=>({start:[t,0],end:[t,1],reset_start:[e(t),null,{on_update(t,e){e._reset_start=null!=t?t:e.start}}],reset_end:[e(t),null,{on_update(t,e){e._reset_end=null!=t?t:e.end}}]})))},\n", + " function _(t,e,n,r,s){r();const a=t(60);class _ extends a.ContinuousScale{constructor(t){super(t)}get s_compute(){const[t,e]=this._linear_compute_state();return n=>t*n+e}get s_invert(){const[t,e]=this._linear_compute_state();return n=>(n-e)/t}_linear_compute_state(){const t=this.source_range.start,e=this.source_range.end,n=this.target_range.start,r=(this.target_range.end-n)/(e-t);return[r,-r*t+n]}}n.LinearScale=_,_.__name__=\"LinearScale\"},\n", + " function _(n,c,o,s,e){s();const t=n(55);class u extends t.Scale{constructor(n){super(n)}}o.ContinuousScale=u,u.__name__=\"ContinuousScale\"},\n", + " function _(t,e,a,o,s){o();const r=t(60);class n extends r.ContinuousScale{constructor(t){super(t)}get s_compute(){const[t,e,a,o]=this._compute_state();return s=>{if(0==a)return 0;{const r=(Math.log(s)-o)/a;return isFinite(r)?r*t+e:NaN}}}get s_invert(){const[t,e,a,o]=this._compute_state();return s=>{const r=(s-e)/t;return Math.exp(a*r+o)}}_get_safe_factor(t,e){let a=t<0?0:t,o=e<0?0:e;if(a==o)if(0==a)[a,o]=[1,10];else{const t=Math.log(a)/Math.log(10);a=10**Math.floor(t),o=Math.ceil(t)!=Math.floor(t)?10**Math.ceil(t):10**(Math.ceil(t)+1)}return[a,o]}_compute_state(){const t=this.source_range.start,e=this.source_range.end,a=this.target_range.start,o=this.target_range.end-a,[s,r]=this._get_safe_factor(t,e);let n,c;0==s?(n=Math.log(r),c=0):(n=Math.log(r)-Math.log(s),c=Math.log(s));return[o,a,n,c]}}a.LogScale=n,n.__name__=\"LogScale\"},\n", + " function _(t,e,c,a,s){a();const n=t(55),r=t(59),{_linear_compute_state:o}=r.LinearScale.prototype;class l extends n.Scale{constructor(t){super(t)}get s_compute(){const[t,e]=o.call(this),c=this.source_range;return a=>t*c.synthetic(a)+e}get s_invert(){const[t,e]=o.call(this);return c=>(c-e)/t}}c.CategoricalScale=l,l.__name__=\"CategoricalScale\"},\n", + " function _(t,i,n,e,a){e();const s=t(1);var l;const _=t(64),o=t(20),r=t(9),h=t(19),d=(0,s.__importStar)(t(65)),u=t(66);class g extends _.DataRange{constructor(t){super(t),this.have_updated_interactively=!1}initialize(){super.initialize(),this._initial_start=this.start,this._initial_end=this.end,this._initial_range_padding=this.range_padding,this._initial_range_padding_units=this.range_padding_units,this._initial_follow=this.follow,this._initial_follow_interval=this.follow_interval,this._initial_default_span=this.default_span,this._plot_bounds=new Map}get min(){return Math.min(this.start,this.end)}get max(){return Math.max(this.start,this.end)}computed_renderers(){const{renderers:t,names:i}=this,n=(0,r.concat)(this.plots.map((t=>t.data_renderers)));return(0,u.compute_renderers)(0==t.length?\"auto\":t,n,i)}_compute_plot_bounds(t,i){let n=d.empty();for(const e of t){const t=i.get(e);null==t||!e.visible&&this.only_visible||(n=d.union(n,t))}return n}adjust_bounds_for_aspect(t,i){const n=d.empty();let e=t.x1-t.x0;e<=0&&(e=1);let a=t.y1-t.y0;a<=0&&(a=1);const s=.5*(t.x1+t.x0),l=.5*(t.y1+t.y0);return el&&(\"start\"==this.follow?a=e+s*l:\"end\"==this.follow&&(e=a-s*l)),[e,a]}update(t,i,n,e){if(this.have_updated_interactively)return;const a=this.computed_renderers();let s=this._compute_plot_bounds(a,t);null!=e&&(s=this.adjust_bounds_for_aspect(s,e)),this._plot_bounds.set(n,s);const[l,_]=this._compute_min_max(this._plot_bounds.entries(),i);let[o,r]=this._compute_range(l,_);null!=this._initial_start&&(\"log\"==this.scale_hint?this._initial_start>0&&(o=this._initial_start):o=this._initial_start),null!=this._initial_end&&(\"log\"==this.scale_hint?this._initial_end>0&&(r=this._initial_end):r=this._initial_end);let h=!1;\"auto\"==this.bounds&&(this.setv({bounds:[o,r]},{silent:!0}),h=!0);const[d,u]=[this.start,this.end];if(o!=d||r!=u){const t={};o!=d&&(t.start=o),r!=u&&(t.end=r),this.setv(t),h=!1}h&&this.change.emit()}reset(){this.have_updated_interactively=!1,this.setv({range_padding:this._initial_range_padding,range_padding_units:this._initial_range_padding_units,follow:this._initial_follow,follow_interval:this._initial_follow_interval,default_span:this._initial_default_span},{silent:!0}),this.change.emit()}}n.DataRange1d=g,l=g,g.__name__=\"DataRange1d\",l.define((({Boolean:t,Number:i,Nullable:n})=>({start:[i],end:[i],range_padding:[i,.1],range_padding_units:[o.PaddingUnits,\"percent\"],flipped:[t,!1],follow:[n(o.StartEnd),null],follow_interval:[n(i),null],default_span:[i,2],only_visible:[t,!1]}))),l.internal((({Enum:t})=>({scale_hint:[t(\"log\",\"auto\"),\"auto\"]})))},\n", + " function _(e,n,a,r,s){var t;r();const c=e(57);class _ extends c.Range{constructor(e){super(e)}}a.DataRange=_,t=_,_.__name__=\"DataRange\",t.define((({String:e,Array:n,AnyRef:a})=>({names:[n(e),[]],renderers:[n(a()),[]]})))},\n", + " function _(t,i,e,h,r){h();const s=t(24),n=t(26),{min:x,max:y}=Math;e.empty=function(){return{x0:1/0,y0:1/0,x1:-1/0,y1:-1/0}},e.positive_x=function(){return{x0:Number.MIN_VALUE,y0:-1/0,x1:1/0,y1:1/0}},e.positive_y=function(){return{x0:-1/0,y0:Number.MIN_VALUE,x1:1/0,y1:1/0}},e.union=function(t,i){return{x0:x(t.x0,i.x0),x1:y(t.x1,i.x1),y0:x(t.y0,i.y0),y1:y(t.y1,i.y1)}};class o{constructor(t){if(null==t)this.x0=0,this.y0=0,this.x1=0,this.y1=0;else if(\"x0\"in t){const{x0:i,y0:e,x1:h,y1:r}=t;if(!(i<=h&&e<=r))throw new Error(`invalid bbox {x0: ${i}, y0: ${e}, x1: ${h}, y1: ${r}}`);this.x0=i,this.y0=e,this.x1=h,this.y1=r}else if(\"x\"in t){const{x:i,y:e,width:h,height:r}=t;if(!(h>=0&&r>=0))throw new Error(`invalid bbox {x: ${i}, y: ${e}, width: ${h}, height: ${r}}`);this.x0=i,this.y0=e,this.x1=i+h,this.y1=e+r}else{let i,e,h,r;if(\"width\"in t)if(\"left\"in t)i=t.left,e=i+t.width;else if(\"right\"in t)e=t.right,i=e-t.width;else{const h=t.width/2;i=t.hcenter-h,e=t.hcenter+h}else i=t.left,e=t.right;if(\"height\"in t)if(\"top\"in t)h=t.top,r=h+t.height;else if(\"bottom\"in t)r=t.bottom,h=r-t.height;else{const i=t.height/2;h=t.vcenter-i,r=t.vcenter+i}else h=t.top,r=t.bottom;if(!(i<=e&&h<=r))throw new Error(`invalid bbox {left: ${i}, top: ${h}, right: ${e}, bottom: ${r}}`);this.x0=i,this.y0=h,this.x1=e,this.y1=r}}static from_rect({left:t,right:i,top:e,bottom:h}){return new o({x0:Math.min(t,i),y0:Math.min(e,h),x1:Math.max(t,i),y1:Math.max(e,h)})}equals(t){return this.x0==t.x0&&this.y0==t.y0&&this.x1==t.x1&&this.y1==t.y1}[n.equals](t,i){return i.eq(this.x0,t.x0)&&i.eq(this.y0,t.y0)&&i.eq(this.x1,t.x1)&&i.eq(this.y1,t.y1)}toString(){return`BBox({left: ${this.left}, top: ${this.top}, width: ${this.width}, height: ${this.height}})`}get left(){return this.x0}get top(){return this.y0}get right(){return this.x1}get bottom(){return this.y1}get p0(){return[this.x0,this.y0]}get p1(){return[this.x1,this.y1]}get x(){return this.x0}get y(){return this.y0}get width(){return this.x1-this.x0}get height(){return this.y1-this.y0}get size(){return{width:this.width,height:this.height}}get rect(){const{x0:t,y0:i,x1:e,y1:h}=this;return{p0:{x:t,y:i},p1:{x:e,y:i},p2:{x:e,y:h},p3:{x:t,y:h}}}get box(){const{x:t,y:i,width:e,height:h}=this;return{x:t,y:i,width:e,height:h}}get h_range(){return{start:this.x0,end:this.x1}}get v_range(){return{start:this.y0,end:this.y1}}get ranges(){return[this.h_range,this.v_range]}get aspect(){return this.width/this.height}get hcenter(){return(this.left+this.right)/2}get vcenter(){return(this.top+this.bottom)/2}get area(){return this.width*this.height}relative(){const{width:t,height:i}=this;return new o({x:0,y:0,width:t,height:i})}translate(t,i){const{x:e,y:h,width:r,height:s}=this;return new o({x:t+e,y:i+h,width:r,height:s})}relativize(t,i){return[t-this.x,i-this.y]}contains(t,i){return this.x0<=t&&t<=this.x1&&this.y0<=i&&i<=this.y1}clip(t,i){return tthis.x1&&(t=this.x1),ithis.y1&&(i=this.y1),[t,i]}grow_by(t){return new o({left:this.left-t,right:this.right+t,top:this.top-t,bottom:this.bottom+t})}shrink_by(t){return new o({left:this.left+t,right:this.right-t,top:this.top+t,bottom:this.bottom-t})}union(t){return new o({x0:x(this.x0,t.x0),y0:x(this.y0,t.y0),x1:y(this.x1,t.x1),y1:y(this.y1,t.y1)})}intersection(t){return this.intersects(t)?new o({x0:y(this.x0,t.x0),y0:y(this.y0,t.y0),x1:x(this.x1,t.x1),y1:x(this.y1,t.y1)}):null}intersects(t){return!(t.x1this.x1||t.y1this.y1)}get xview(){return{compute:t=>this.left+t,v_compute:t=>{const i=new s.ScreenArray(t.length),e=this.left;for(let h=0;hthis.bottom-t,v_compute:t=>{const i=new s.ScreenArray(t.length),e=this.bottom;for(let h=0;h0&&(r=r.filter((n=>(0,l.includes)(t,n.name)))),r}},\n", + " function _(t,n,e,i,s){var r;i();const a=t(57),o=t(20),g=t(21),p=t(24),c=t(9),l=t(8),u=t(11);function h(t,n,e=0){const i=new Map;for(let s=0;sa.get(t).value)));r.set(t,{value:l/s,mapping:a}),o+=s+n+p}return[r,(a.size-1)*n+g]}function _(t,n,e,i,s=0){var r;const a=new Map,o=new Map;for(const[n,e,i]of t){const t=null!==(r=o.get(n))&&void 0!==r?r:[];o.set(n,[...t,[e,i]])}let g=s,p=0;for(const[t,s]of o){const r=s.length,[o,l]=d(s,e,i,g);p+=l;const u=(0,c.sum)(s.map((([t])=>o.get(t).value)));a.set(t,{value:u/r,mapping:o}),g+=r+n+l}return[a,(o.size-1)*n+p]}e.Factor=(0,g.Or)(g.String,(0,g.Tuple)(g.String,g.String),(0,g.Tuple)(g.String,g.String,g.String)),e.FactorSeq=(0,g.Or)((0,g.Array)(g.String),(0,g.Array)((0,g.Tuple)(g.String,g.String)),(0,g.Array)((0,g.Tuple)(g.String,g.String,g.String))),e.map_one_level=h,e.map_two_levels=d,e.map_three_levels=_;class f extends a.Range{constructor(t){super(t)}get min(){return this.start}get max(){return this.end}initialize(){super.initialize(),this._init(!0)}connect_signals(){super.connect_signals(),this.connect(this.properties.factors.change,(()=>this.reset())),this.connect(this.properties.factor_padding.change,(()=>this.reset())),this.connect(this.properties.group_padding.change,(()=>this.reset())),this.connect(this.properties.subgroup_padding.change,(()=>this.reset())),this.connect(this.properties.range_padding.change,(()=>this.reset())),this.connect(this.properties.range_padding_units.change,(()=>this.reset()))}reset(){this._init(!1),this.change.emit()}_lookup(t){switch(t.length){case 1:{const[n]=t,e=this._mapping.get(n);return null!=e?e.value:NaN}case 2:{const[n,e]=t,i=this._mapping.get(n);if(null!=i){const t=i.mapping.get(e);if(null!=t)return t.value}return NaN}case 3:{const[n,e,i]=t,s=this._mapping.get(n);if(null!=s){const t=s.mapping.get(e);if(null!=t){const n=t.mapping.get(i);if(null!=n)return n.value}}return NaN}default:(0,u.unreachable)()}}synthetic(t){if((0,l.isNumber)(t))return t;if((0,l.isString)(t))return this._lookup([t]);let n=0;const e=t[t.length-1];return(0,l.isNumber)(e)&&(n=e,t=t.slice(0,-1)),this._lookup(t)+n}v_synthetic(t){const n=t.length,e=new p.ScreenArray(n);for(let i=0;i{if((0,c.every)(this.factors,l.isString)){const t=this.factors,[n,e]=h(t,this.factor_padding);return{levels:1,mapping:n,tops:null,mids:null,inside_padding:e}}if((0,c.every)(this.factors,(t=>(0,l.isArray)(t)&&2==t.length&&(0,l.isString)(t[0])&&(0,l.isString)(t[1])))){const t=this.factors,[n,e]=d(t,this.group_padding,this.factor_padding),i=[...n.keys()];return{levels:2,mapping:n,tops:i,mids:null,inside_padding:e}}if((0,c.every)(this.factors,(t=>(0,l.isArray)(t)&&3==t.length&&(0,l.isString)(t[0])&&(0,l.isString)(t[1])&&(0,l.isString)(t[2])))){const t=this.factors,[n,e]=_(t,this.group_padding,this.subgroup_padding,this.factor_padding),i=[...n.keys()],s=[];for(const[t,e]of n)for(const n of e.mapping.keys())s.push([t,n]);return{levels:3,mapping:n,tops:i,mids:s,inside_padding:e}}(0,u.unreachable)()})();this._mapping=e,this.tops=i,this.mids=s;let a=0,o=this.factors.length+r;if(\"percent\"==this.range_padding_units){const t=(o-a)*this.range_padding/2;a-=t,o+=t}else a-=this.range_padding,o+=this.range_padding;this.setv({start:a,end:o,levels:n},{silent:t}),\"auto\"==this.bounds&&this.setv({bounds:[a,o]},{silent:!0})}}e.FactorRange=f,r=f,f.__name__=\"FactorRange\",r.define((({Number:t})=>({factors:[e.FactorSeq,[]],factor_padding:[t,0],subgroup_padding:[t,.8],group_padding:[t,1.4],range_padding:[t,0],range_padding_units:[o.PaddingUnits,\"percent\"],start:[t],end:[t]}))),r.internal((({Number:t,String:n,Array:e,Tuple:i,Nullable:s})=>({levels:[t],mids:[s(e(i(n,n))),null],tops:[s(e(n)),null]})))},\n", + " function _(t,e,s,a,i){a();const n=t(1);var _;const r=t(69),o=t(112),l=t(48),d=t(20),h=t(24),c=t(113),u=(0,n.__importStar)(t(18)),v=t(10);class p extends r.DataAnnotationView{async lazy_initialize(){await super.lazy_initialize();const{start:t,end:e}=this.model;null!=t&&(this.start=await(0,c.build_view)(t,{parent:this})),null!=e&&(this.end=await(0,c.build_view)(e,{parent:this}))}set_data(t){var e,s;super.set_data(t),null===(e=this.start)||void 0===e||e.set_data(t),null===(s=this.end)||void 0===s||s.set_data(t)}remove(){var t,e;null===(t=this.start)||void 0===t||t.remove(),null===(e=this.end)||void 0===e||e.remove(),super.remove()}map_data(){const{frame:t}=this.plot_view;\"data\"==this.model.start_units?(this._sx_start=this.coordinates.x_scale.v_compute(this._x_start),this._sy_start=this.coordinates.y_scale.v_compute(this._y_start)):(this._sx_start=t.bbox.xview.v_compute(this._x_start),this._sy_start=t.bbox.yview.v_compute(this._y_start)),\"data\"==this.model.end_units?(this._sx_end=this.coordinates.x_scale.v_compute(this._x_end),this._sy_end=this.coordinates.y_scale.v_compute(this._y_end)):(this._sx_end=t.bbox.xview.v_compute(this._x_end),this._sy_end=t.bbox.yview.v_compute(this._y_end));const{_sx_start:e,_sy_start:s,_sx_end:a,_sy_end:i}=this,n=e.length,_=this._angles=new h.ScreenArray(n);for(let t=0;t({x_start:[u.XCoordinateSpec,{field:\"x_start\"}],y_start:[u.YCoordinateSpec,{field:\"y_start\"}],start_units:[d.SpatialUnits,\"data\"],start:[e(t(o.ArrowHead)),null],x_end:[u.XCoordinateSpec,{field:\"x_end\"}],y_end:[u.YCoordinateSpec,{field:\"y_end\"}],end_units:[d.SpatialUnits,\"data\"],end:[e(t(o.ArrowHead)),()=>new o.OpenHead]})))},\n", + " function _(t,e,n,s,a){s();const o=t(1);var i;const c=t(40),r=t(70),_=t(75),l=t(78),h=(0,o.__importStar)(t(18));class d extends c.AnnotationView{constructor(){super(...arguments),this._initial_set_data=!1}connect_signals(){super.connect_signals();const t=()=>{this.set_data(this.model.source),this._rerender()};this.connect(this.model.change,t),this.connect(this.model.source.streaming,t),this.connect(this.model.source.patching,t),this.connect(this.model.source.change,t)}_rerender(){this.request_render()}set_data(t){const e=this;for(const n of this.model)if(n instanceof h.VectorSpec||n instanceof h.ScalarSpec)if(n instanceof h.BaseCoordinateSpec){const s=n.array(t);e[`_${n.attr}`]=s}else{const s=n.uniform(t);e[`${n.attr}`]=s}this.plot_model.use_map&&(null!=e._x&&l.inplace.project_xy(e._x,e._y),null!=e._xs&&l.inplace.project_xsys(e._xs,e._ys));for(const t of this.visuals)t.update()}_render(){this._initial_set_data||(this.set_data(this.model.source),this._initial_set_data=!0),this.map_data(),this.paint(this.layer.ctx)}}n.DataAnnotationView=d,d.__name__=\"DataAnnotationView\";class u extends c.Annotation{constructor(t){super(t)}}n.DataAnnotation=u,i=u,u.__name__=\"DataAnnotation\",i.define((({Ref:t})=>({source:[t(r.ColumnarDataSource),()=>new _.ColumnDataSource]})))},\n", + " function _(t,e,n,s,a){var i;s();const r=t(71),l=t(15),c=t(19),o=t(73),h=t(8),u=t(9),g=t(13),d=t(72),_=t(74),m=t(29);class w extends r.DataSource{constructor(t){super(t),this.selection_manager=new o.SelectionManager(this)}get_array(t){let e=this.data[t];return null==e?this.data[t]=e=[]:(0,h.isArray)(e)||(this.data[t]=e=Array.from(e)),e}initialize(){super.initialize(),this._select=new l.Signal0(this,\"select\"),this.inspect=new l.Signal(this,\"inspect\"),this.streaming=new l.Signal0(this,\"streaming\"),this.patching=new l.Signal(this,\"patching\")}get_column(t){const e=this.data[t];return null!=e?e:null}columns(){return(0,g.keys)(this.data)}get_length(t=!0){const e=(0,u.uniq)((0,g.values)(this.data).map((t=>(0,m.is_NDArray)(t)?t.shape[0]:t.length)));switch(e.length){case 0:return null;case 1:return e[0];default:{const n=\"data source has columns of inconsistent lengths\";if(t)return c.logger.warn(n),e.sort()[0];throw new Error(n)}}}get length(){var t;return null!==(t=this.get_length())&&void 0!==t?t:0}clear(){const t={};for(const e of this.columns())t[e]=new this.data[e].constructor(0);this.data=t}}n.ColumnarDataSource=w,i=w,w.__name__=\"ColumnarDataSource\",i.define((({Ref:t})=>({selection_policy:[t(_.SelectionPolicy),()=>new _.UnionRenderers]}))),i.internal((({AnyRef:t})=>({inspected:[t(),()=>new d.Selection]})))},\n", + " function _(e,c,n,t,o){var a;t();const s=e(53),r=e(72);class l extends s.Model{constructor(e){super(e)}}n.DataSource=l,a=l,l.__name__=\"DataSource\",a.define((({Ref:e})=>({selected:[e(r.Selection),()=>new r.Selection]})))},\n", + " function _(i,e,s,t,n){var l;t();const c=i(53),d=i(9),h=i(13);class _ extends c.Model{constructor(i){super(i)}get_view(){return this.view}get selected_glyph(){return this.selected_glyphs.length>0?this.selected_glyphs[0]:null}add_to_selected_glyphs(i){this.selected_glyphs.push(i)}update(i,e=!0,s=\"replace\"){switch(s){case\"replace\":this.indices=i.indices,this.line_indices=i.line_indices,this.multiline_indices=i.multiline_indices,this.image_indices=i.image_indices,this.view=i.view,this.selected_glyphs=i.selected_glyphs;break;case\"append\":this.update_through_union(i);break;case\"intersect\":this.update_through_intersection(i);break;case\"subtract\":this.update_through_subtraction(i)}}clear(){this.indices=[],this.line_indices=[],this.multiline_indices={},this.image_indices=[],this.view=null,this.selected_glyphs=[]}map(i){return new _(Object.assign(Object.assign({},this.attributes),{indices:this.indices.map(i),multiline_indices:(0,h.to_object)((0,h.entries)(this.multiline_indices).map((([e,s])=>[i(Number(e)),s]))),image_indices:this.image_indices.map((e=>Object.assign(Object.assign({},e),{index:i(e.index)})))}))}is_empty(){return 0==this.indices.length&&0==this.line_indices.length&&0==this.image_indices.length}update_through_union(i){this.indices=(0,d.union)(this.indices,i.indices),this.selected_glyphs=(0,d.union)(i.selected_glyphs,this.selected_glyphs),this.line_indices=(0,d.union)(i.line_indices,this.line_indices),this.view=i.view,this.multiline_indices=(0,h.merge)(i.multiline_indices,this.multiline_indices)}update_through_intersection(i){this.indices=(0,d.intersection)(this.indices,i.indices),this.selected_glyphs=(0,d.union)(i.selected_glyphs,this.selected_glyphs),this.line_indices=(0,d.union)(i.line_indices,this.line_indices),this.view=i.view,this.multiline_indices=(0,h.merge)(i.multiline_indices,this.multiline_indices)}update_through_subtraction(i){this.indices=(0,d.difference)(this.indices,i.indices),this.selected_glyphs=(0,d.union)(i.selected_glyphs,this.selected_glyphs),this.line_indices=(0,d.union)(i.line_indices,this.line_indices),this.view=i.view,this.multiline_indices=(0,h.merge)(i.multiline_indices,this.multiline_indices)}}s.Selection=_,l=_,_.__name__=\"Selection\",l.define((({Int:i,Array:e,Dict:s})=>({indices:[e(i),[]],line_indices:[e(i),[]],multiline_indices:[s(e(i)),{}]}))),l.internal((({Int:i,Array:e,AnyRef:s,Struct:t,Nullable:n})=>({selected_glyphs:[e(s()),[]],view:[n(s()),null],image_indices:[e(t({index:i,dim1:i,dim2:i,flat_index:i})),[]]})))},\n", + " function _(e,t,o,s,c){s();const n=e(72);function i(e){return\"GlyphRenderer\"==e.model.type}function l(e){return\"GraphRenderer\"==e.model.type}class r{constructor(e){this.source=e,this.inspectors=new Map}select(e,t,o,s=\"replace\"){const c=[],n=[];for(const t of e)i(t)?c.push(t):l(t)&&n.push(t);let r=!1;for(const e of n){const c=e.model.selection_policy.hit_test(t,e);r=r||e.model.selection_policy.do_selection(c,e.model,o,s)}if(c.length>0){const e=this.source.selection_policy.hit_test(t,c);r=r||this.source.selection_policy.do_selection(e,this.source,o,s)}return r}inspect(e,t){let o=!1;if(i(e)){const s=e.hit_test(t);if(null!=s){o=!s.is_empty();const c=this.get_or_create_inspector(e.model);c.update(s,!0,\"replace\"),this.source.setv({inspected:c},{silent:!0}),this.source.inspect.emit([e.model,{geometry:t}])}}else if(l(e)){const s=e.model.inspection_policy.hit_test(t,e);o=o||e.model.inspection_policy.do_inspection(s,t,e,!1,\"replace\")}return o}clear(e){this.source.selected.clear(),null!=e&&this.get_or_create_inspector(e.model).clear()}get_or_create_inspector(e){let t=this.inspectors.get(e);return null==t&&(t=new n.Selection,this.inspectors.set(e,t)),t}}o.SelectionManager=r,r.__name__=\"SelectionManager\"},\n", + " function _(e,t,n,s,o){s();const r=e(53);class c extends r.Model{do_selection(e,t,n,s){return null!=e&&(t.selected.update(e,n,s),t._select.emit(),!t.selected.is_empty())}}n.SelectionPolicy=c,c.__name__=\"SelectionPolicy\";class l extends c{hit_test(e,t){const n=[];for(const s of t){const t=s.hit_test(e);null!=t&&n.push(t)}if(n.length>0){const e=n[0];for(const t of n)e.update_through_intersection(t);return e}return null}}n.IntersectRenderers=l,l.__name__=\"IntersectRenderers\";class _ extends c{hit_test(e,t){const n=[];for(const s of t){const t=s.hit_test(e);null!=t&&n.push(t)}if(n.length>0){const e=n[0];for(const t of n)e.update_through_union(t);return e}return null}}n.UnionRenderers=_,_.__name__=\"UnionRenderers\"},\n", + " function _(t,n,e,s,o){s();const r=t(1);var l;const c=t(70),i=t(8),a=t(13),u=(0,r.__importStar)(t(76)),h=t(77),d=t(35);function f(t,n,e){if((0,i.isArray)(t)){const s=t.concat(n);return null!=e&&s.length>e?s.slice(-e):s}if((0,i.isTypedArray)(t)){const s=t.length+n.length;if(null!=e&&s>e){const o=s-e,r=t.length;let l;t.length({data:[t(n),{}]})))},\n", + " function _(t,n,o,e,c){e(),o.concat=function(t,...n){let o=t.length;for(const t of n)o+=t.length;const e=new t.constructor(o);e.set(t,0);let c=t.length;for(const t of n)e.set(t,c),c+=t.length;return e}},\n", + " function _(n,o,t,e,f){function c(...n){const o=new Set;for(const t of n)for(const n of t)o.add(n);return o}e(),t.union=c,t.intersection=function(n,...o){const t=new Set;n:for(const e of n){for(const n of o)if(!n.has(e))continue n;t.add(e)}return t},t.difference=function(n,...o){const t=new Set(n);for(const n of c(...o))t.delete(n);return t}},\n", + " function _(n,t,e,o,r){o();const c=n(1),l=(0,c.__importDefault)(n(79)),i=(0,c.__importDefault)(n(80)),u=n(24),a=new i.default(\"GOOGLE\"),s=new i.default(\"WGS84\"),f=(0,l.default)(s,a);e.wgs84_mercator={compute:(n,t)=>isFinite(n)&&isFinite(t)?f.forward([n,t]):[NaN,NaN],invert:(n,t)=>isFinite(n)&&isFinite(t)?f.inverse([n,t]):[NaN,NaN]};const _={lon:[-20026376.39,20026376.39],lat:[-20048966.1,20048966.1]},p={lon:[-180,180],lat:[-85.06,85.06]},{min:g,max:h}=Math;function m(n,t){const o=g(n.length,t.length),r=(0,u.infer_type)(n,t),c=new r(o),l=new r(o);return e.inplace.project_xy(n,t,c,l),[c,l]}e.clip_mercator=function(n,t,e){const[o,r]=_[e];return[h(n,o),g(t,r)]},e.in_bounds=function(n,t){const[e,o]=p[t];return e2?void 0!==e.name&&\"geocent\"===e.name||void 0!==n.name&&\"geocent\"===n.name?\"number\"==typeof o.z?[o.x,o.y,o.z].concat(t.splice(3)):[o.x,o.y,t[2]].concat(t.splice(3)):[o.x,o.y].concat(t.splice(2)):[o.x,o.y]):(a=(0,c.default)(e,n,t,r),2===(i=Object.keys(t)).length||i.forEach((function(r){if(void 0!==e.name&&\"geocent\"===e.name||void 0!==n.name&&\"geocent\"===n.name){if(\"x\"===r||\"y\"===r||\"z\"===r)return}else if(\"x\"===r||\"y\"===r)return;a[r]=t[r]})),a)}function l(e){return e instanceof i.default?e:e.oProj?e.oProj:(0,i.default)(e)}t.default=function(e,n,t){e=l(e);var r,o=!1;return void 0===n?(n=e,e=u,o=!0):(void 0!==n.x||Array.isArray(n))&&(t=n,n=e,e=u,o=!0),n=l(n),t?f(e,n,t):(r={forward:function(t,r){return f(e,n,t,r)},inverse:function(t,r){return f(n,e,t,r)}},o&&(r.oProj=n),r)}},\n", + " function _(t,e,a,s,i){s();const l=t(1),u=(0,l.__importDefault)(t(81)),r=(0,l.__importDefault)(t(92)),d=(0,l.__importDefault)(t(93)),o=t(101),f=(0,l.__importDefault)(t(103)),p=(0,l.__importDefault)(t(104)),m=(0,l.__importDefault)(t(88)),n=t(105);function h(t,e){if(!(this instanceof h))return new h(t);e=e||function(t){if(t)throw t};var a=(0,u.default)(t);if(\"object\"==typeof a){var s=h.projections.get(a.projName);if(s){if(a.datumCode&&\"none\"!==a.datumCode){var i=(0,m.default)(f.default,a.datumCode);i&&(a.datum_params=a.datum_params||(i.towgs84?i.towgs84.split(\",\"):null),a.ellps=i.ellipse,a.datumName=i.datumName?i.datumName:a.datumCode)}a.k0=a.k0||1,a.axis=a.axis||\"enu\",a.ellps=a.ellps||\"wgs84\",a.lat1=a.lat1||a.lat0;var l=(0,o.sphere)(a.a,a.b,a.rf,a.ellps,a.sphere),d=(0,o.eccentricity)(l.a,l.b,l.rf,a.R_A),_=(0,n.getNadgrids)(a.nadgrids),c=a.datum||(0,p.default)(a.datumCode,a.datum_params,l.a,l.b,d.es,d.ep2,_);(0,r.default)(this,a),(0,r.default)(this,s),this.a=l.a,this.b=l.b,this.rf=l.rf,this.sphere=l.sphere,this.es=d.es,this.e=d.e,this.ep2=d.ep2,this.datum=c,this.init(),e(null,this)}else e(t)}else e(t)}h.projections=d.default,h.projections.start(),a.default=h},\n", + " function _(t,r,n,u,e){u();const f=t(1),i=(0,f.__importDefault)(t(82)),a=(0,f.__importDefault)(t(89)),o=(0,f.__importDefault)(t(84)),l=(0,f.__importDefault)(t(88));var C=[\"PROJECTEDCRS\",\"PROJCRS\",\"GEOGCS\",\"GEOCCS\",\"PROJCS\",\"LOCAL_CS\",\"GEODCRS\",\"GEODETICCRS\",\"GEODETICDATUM\",\"ENGCRS\",\"ENGINEERINGCRS\"];var d=[\"3857\",\"900913\",\"3785\",\"102113\"];n.default=function(t){if(!function(t){return\"string\"==typeof t}(t))return t;if(function(t){return t in i.default}(t))return i.default[t];if(function(t){return C.some((function(r){return t.indexOf(r)>-1}))}(t)){var r=(0,a.default)(t);if(function(t){var r=(0,l.default)(t,\"authority\");if(r){var n=(0,l.default)(r,\"epsg\");return n&&d.indexOf(n)>-1}}(r))return i.default[\"EPSG:3857\"];var n=function(t){var r=(0,l.default)(t,\"extension\");if(r)return(0,l.default)(r,\"proj4\")}(r);return n?(0,o.default)(n):r}return function(t){return\"+\"===t[0]}(t)?(0,o.default)(t):void 0}},\n", + " function _(t,r,i,e,n){e();const f=t(1),a=(0,f.__importDefault)(t(83)),l=(0,f.__importDefault)(t(84)),u=(0,f.__importDefault)(t(89));function o(t){var r=this;if(2===arguments.length){var i=arguments[1];\"string\"==typeof i?\"+\"===i.charAt(0)?o[t]=(0,l.default)(arguments[1]):o[t]=(0,u.default)(arguments[1]):o[t]=i}else if(1===arguments.length){if(Array.isArray(t))return t.map((function(t){Array.isArray(t)?o.apply(r,t):o(t)}));if(\"string\"==typeof t){if(t in o)return o[t]}else\"EPSG\"in t?o[\"EPSG:\"+t.EPSG]=t:\"ESRI\"in t?o[\"ESRI:\"+t.ESRI]=t:\"IAU2000\"in t?o[\"IAU2000:\"+t.IAU2000]=t:console.log(t);return}}(0,a.default)(o),i.default=o},\n", + " function _(t,l,G,S,e){S(),G.default=function(t){t(\"EPSG:4326\",\"+title=WGS 84 (long/lat) +proj=longlat +ellps=WGS84 +datum=WGS84 +units=degrees\"),t(\"EPSG:4269\",\"+title=NAD83 (long/lat) +proj=longlat +a=6378137.0 +b=6356752.31414036 +ellps=GRS80 +datum=NAD83 +units=degrees\"),t(\"EPSG:3857\",\"+title=WGS 84 / Pseudo-Mercator +proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0 +k=1.0 +units=m +nadgrids=@null +no_defs\"),t.WGS84=t[\"EPSG:4326\"],t[\"EPSG:3785\"]=t[\"EPSG:3857\"],t.GOOGLE=t[\"EPSG:3857\"],t[\"EPSG:900913\"]=t[\"EPSG:3857\"],t[\"EPSG:102113\"]=t[\"EPSG:3857\"]}},\n", + " function _(t,n,o,a,u){a();const e=t(1),r=t(85),i=(0,e.__importDefault)(t(86)),f=(0,e.__importDefault)(t(87)),l=(0,e.__importDefault)(t(88));o.default=function(t){var n,o,a,u={},e=t.split(\"+\").map((function(t){return t.trim()})).filter((function(t){return t})).reduce((function(t,n){var o=n.split(\"=\");return o.push(!0),t[o[0].toLowerCase()]=o[1],t}),{}),c={proj:\"projName\",datum:\"datumCode\",rf:function(t){u.rf=parseFloat(t)},lat_0:function(t){u.lat0=t*r.D2R},lat_1:function(t){u.lat1=t*r.D2R},lat_2:function(t){u.lat2=t*r.D2R},lat_ts:function(t){u.lat_ts=t*r.D2R},lon_0:function(t){u.long0=t*r.D2R},lon_1:function(t){u.long1=t*r.D2R},lon_2:function(t){u.long2=t*r.D2R},alpha:function(t){u.alpha=parseFloat(t)*r.D2R},gamma:function(t){u.rectified_grid_angle=parseFloat(t)},lonc:function(t){u.longc=t*r.D2R},x_0:function(t){u.x0=parseFloat(t)},y_0:function(t){u.y0=parseFloat(t)},k_0:function(t){u.k0=parseFloat(t)},k:function(t){u.k0=parseFloat(t)},a:function(t){u.a=parseFloat(t)},b:function(t){u.b=parseFloat(t)},r_a:function(){u.R_A=!0},zone:function(t){u.zone=parseInt(t,10)},south:function(){u.utmSouth=!0},towgs84:function(t){u.datum_params=t.split(\",\").map((function(t){return parseFloat(t)}))},to_meter:function(t){u.to_meter=parseFloat(t)},units:function(t){u.units=t;var n=(0,l.default)(f.default,t);n&&(u.to_meter=n.to_meter)},from_greenwich:function(t){u.from_greenwich=t*r.D2R},pm:function(t){var n=(0,l.default)(i.default,t);u.from_greenwich=(n||parseFloat(t))*r.D2R},nadgrids:function(t){\"@null\"===t?u.datumCode=\"none\":u.nadgrids=t},axis:function(t){var n=\"ewnsud\";3===t.length&&-1!==n.indexOf(t.substr(0,1))&&-1!==n.indexOf(t.substr(1,1))&&-1!==n.indexOf(t.substr(2,1))&&(u.axis=t)},approx:function(){u.approx=!0}};for(n in e)o=e[n],n in c?\"function\"==typeof(a=c[n])?a(o):u[a]=o:u[n]=o;return\"string\"==typeof u.datumCode&&\"WGS84\"!==u.datumCode&&(u.datumCode=u.datumCode.toLowerCase()),u}},\n", + " function _(S,_,P,R,I){R(),P.PJD_3PARAM=1,P.PJD_7PARAM=2,P.PJD_GRIDSHIFT=3,P.PJD_WGS84=4,P.PJD_NODATUM=5,P.SRS_WGS84_SEMIMAJOR=6378137,P.SRS_WGS84_SEMIMINOR=6356752.314,P.SRS_WGS84_ESQUARED=.0066943799901413165,P.SEC_TO_RAD=484813681109536e-20,P.HALF_PI=Math.PI/2,P.SIXTH=.16666666666666666,P.RA4=.04722222222222222,P.RA6=.022156084656084655,P.EPSLN=1e-10,P.D2R=.017453292519943295,P.R2D=57.29577951308232,P.FORTPI=Math.PI/4,P.TWO_PI=2*Math.PI,P.SPI=3.14159265359},\n", + " function _(o,r,a,e,s){e();var n={};a.default=n,n.greenwich=0,n.lisbon=-9.131906111111,n.paris=2.337229166667,n.bogota=-74.080916666667,n.madrid=-3.687938888889,n.rome=12.452333333333,n.bern=7.439583333333,n.jakarta=106.807719444444,n.ferro=-17.666666666667,n.brussels=4.367975,n.stockholm=18.058277777778,n.athens=23.7163375,n.oslo=10.722916666667},\n", + " function _(t,e,f,o,u){o(),f.default={ft:{to_meter:.3048},\"us-ft\":{to_meter:1200/3937}}},\n", + " function _(e,r,t,a,n){a();var o=/[\\s_\\-\\/\\(\\)]/g;t.default=function(e,r){if(e[r])return e[r];for(var t,a=Object.keys(e),n=r.toLowerCase().replace(o,\"\"),f=-1;++f0?90:-90),e.lat_ts=e.lat1)}(n),n}},\n", + " function _(t,e,r,i,s){i(),r.default=function(t){return new d(t).output()};var h=/\\s/,o=/[A-Za-z]/,n=/[A-Za-z84]/,a=/[,\\]]/,u=/[\\d\\.E\\-\\+]/;function d(t){if(\"string\"!=typeof t)throw new Error(\"not a string\");this.text=t.trim(),this.level=0,this.place=0,this.root=null,this.stack=[],this.currentObject=null,this.state=1}d.prototype.readCharicter=function(){var t=this.text[this.place++];if(4!==this.state)for(;h.test(t);){if(this.place>=this.text.length)return;t=this.text[this.place++]}switch(this.state){case 1:return this.neutral(t);case 2:return this.keyword(t);case 4:return this.quoted(t);case 5:return this.afterquote(t);case 3:return this.number(t);case-1:return}},d.prototype.afterquote=function(t){if('\"'===t)return this.word+='\"',void(this.state=4);if(a.test(t))return this.word=this.word.trim(),void this.afterItem(t);throw new Error(\"havn't handled \\\"\"+t+'\" in afterquote yet, index '+this.place)},d.prototype.afterItem=function(t){return\",\"===t?(null!==this.word&&this.currentObject.push(this.word),this.word=null,void(this.state=1)):\"]\"===t?(this.level--,null!==this.word&&(this.currentObject.push(this.word),this.word=null),this.state=1,this.currentObject=this.stack.pop(),void(this.currentObject||(this.state=-1))):void 0},d.prototype.number=function(t){if(!u.test(t)){if(a.test(t))return this.word=parseFloat(this.word),void this.afterItem(t);throw new Error(\"havn't handled \\\"\"+t+'\" in number yet, index '+this.place)}this.word+=t},d.prototype.quoted=function(t){'\"'!==t?this.word+=t:this.state=5},d.prototype.keyword=function(t){if(n.test(t))this.word+=t;else{if(\"[\"===t){var e=[];return e.push(this.word),this.level++,null===this.root?this.root=e:this.currentObject.push(e),this.stack.push(this.currentObject),this.currentObject=e,void(this.state=1)}if(!a.test(t))throw new Error(\"havn't handled \\\"\"+t+'\" in keyword yet, index '+this.place);this.afterItem(t)}},d.prototype.neutral=function(t){if(o.test(t))return this.word=t,void(this.state=2);if('\"'===t)return this.word=\"\",void(this.state=4);if(u.test(t))return this.word=t,void(this.state=3);if(!a.test(t))throw new Error(\"havn't handled \\\"\"+t+'\" in neutral yet, index '+this.place);this.afterItem(t)},d.prototype.output=function(){for(;this.place90&&a*o.R2D<-90&&h*o.R2D>180&&h*o.R2D<-180)return null;if(Math.abs(Math.abs(a)-o.HALF_PI)<=o.EPSLN)return null;if(this.sphere)i=this.x0+this.a*this.k0*(0,n.default)(h-this.long0),s=this.y0+this.a*this.k0*Math.log(Math.tan(o.FORTPI+.5*a));else{var e=Math.sin(a),r=(0,l.default)(this.e,a,e);i=this.x0+this.a*this.k0*(0,n.default)(h-this.long0),s=this.y0-this.a*this.k0*Math.log(r)}return t.x=i,t.y=s,t}function M(t){var i,s,h=t.x-this.x0,a=t.y-this.y0;if(this.sphere)s=o.HALF_PI-2*Math.atan(Math.exp(-a/(this.a*this.k0)));else{var e=Math.exp(-a/(this.a*this.k0));if(-9999===(s=(0,u.default)(this.e,e)))return null}return i=(0,n.default)(this.long0+h/(this.a*this.k0)),t.x=i,t.y=s,t}s.init=f,s.forward=_,s.inverse=M,s.names=[\"Mercator\",\"Popular Visualisation Pseudo Mercator\",\"Mercator_1SP\",\"Mercator_Auxiliary_Sphere\",\"merc\"],s.default={init:f,forward:_,inverse:M,names:s.names}},\n", + " function _(t,n,r,u,a){u(),r.default=function(t,n,r){var u=t*n;return r/Math.sqrt(1-u*u)}},\n", + " function _(t,n,u,a,f){a();const e=t(1),o=t(85),_=(0,e.__importDefault)(t(97));u.default=function(t){return Math.abs(t)<=o.SPI?t:t-(0,_.default)(t)*o.TWO_PI}},\n", + " function _(n,t,u,f,c){f(),u.default=function(n){return n<0?-1:1}},\n", + " function _(t,n,a,o,u){o();const c=t(85);a.default=function(t,n,a){var o=t*a,u=.5*t;return o=Math.pow((1-o)/(1+o),u),Math.tan(.5*(c.HALF_PI-n))/o}},\n", + " function _(t,a,n,r,f){r();const h=t(85);n.default=function(t,a){for(var n,r,f=.5*t,o=h.HALF_PI-2*Math.atan(a),u=0;u<=15;u++)if(n=t*Math.sin(o),o+=r=h.HALF_PI-2*Math.atan(a*Math.pow((1-n)/(1+n),f))-o,Math.abs(r)<=1e-10)return o;return-9999}},\n", + " function _(n,i,e,t,r){function a(){}function f(n){return n}t(),e.init=a,e.forward=f,e.inverse=f,e.names=[\"longlat\",\"identity\"],e.default={init:a,forward:f,inverse:f,names:e.names}},\n", + " function _(t,r,e,a,n){a();const f=t(1),i=t(85),u=(0,f.__importStar)(t(102)),c=(0,f.__importDefault)(t(88));e.eccentricity=function(t,r,e,a){var n=t*t,f=r*r,u=(n-f)/n,c=0;return a?(n=(t*=1-u*(i.SIXTH+u*(i.RA4+u*i.RA6)))*t,u=0):c=Math.sqrt(u),{es:u,e:c,ep2:(n-f)/f}},e.sphere=function(t,r,e,a,n){if(!t){var f=(0,c.default)(u.default,a);f||(f=u.WGS84),t=f.a,r=f.b,e=f.rf}return e&&!r&&(r=(1-1/e)*t),(0===e||Math.abs(t-r)3&&(0===s.datum_params[3]&&0===s.datum_params[4]&&0===s.datum_params[5]&&0===s.datum_params[6]||(s.datum_type=d.PJD_7PARAM,s.datum_params[3]*=d.SEC_TO_RAD,s.datum_params[4]*=d.SEC_TO_RAD,s.datum_params[5]*=d.SEC_TO_RAD,s.datum_params[6]=s.datum_params[6]/1e6+1))),r&&(s.datum_type=d.PJD_GRIDSHIFT,s.grids=r),s.a=_,s.b=t,s.es=u,s.ep2=p,s}},\n", + " function _(t,e,n,r,i){r();var u={};function l(t){if(0===t.length)return null;var e=\"@\"===t[0];return e&&(t=t.slice(1)),\"null\"===t?{name:\"null\",mandatory:!e,grid:null,isNull:!0}:{name:t,mandatory:!e,grid:u[t]||null,isNull:!1}}function o(t){return t/3600*Math.PI/180}function a(t,e,n){return String.fromCharCode.apply(null,new Uint8Array(t.buffer.slice(e,n)))}function d(t){return t.map((function(t){return[o(t.longitudeShift),o(t.latitudeShift)]}))}function g(t,e,n){return{name:a(t,e+8,e+16).trim(),parent:a(t,e+24,e+24+8).trim(),lowerLatitude:t.getFloat64(e+72,n),upperLatitude:t.getFloat64(e+88,n),lowerLongitude:t.getFloat64(e+104,n),upperLongitude:t.getFloat64(e+120,n),latitudeInterval:t.getFloat64(e+136,n),longitudeInterval:t.getFloat64(e+152,n),gridNodeCount:t.getInt32(e+168,n)}}function s(t,e,n,r){for(var i=e+176,u=[],l=0;l1&&console.log(\"Only single NTv2 subgrids are currently supported, subsequent sub grids are ignored\");var l=function(t,e,n){for(var r=176,i=[],u=0;ua.y||f>a.x||N1e-12&&Math.abs(n.y)>1e-12);if(d<0)return console.log(\"Inverse grid shift iterator failed to converge.\"),a;a.x=(0,u.default)(l.x+t.ll[0]),a.y=l.y+t.ll[1]}else isNaN(l.x)||(a.x=r.x+l.x,a.y=r.y+l.y);return a}function f(r,e){var t,a={x:r.x/e.del[0],y:r.y/e.del[1]},i=Math.floor(a.x),l=Math.floor(a.y),n=a.x-1*i,o=a.y-1*l,u={x:Number.NaN,y:Number.NaN};if(i<0||i>=e.lim[0])return u;if(l<0||l>=e.lim[1])return u;t=l*e.lim[0]+i;var d=e.cvs[t][0],s=e.cvs[t][1];t++;var y=e.cvs[t][0],f=e.cvs[t][1];t+=e.lim[0];var x=e.cvs[t][0],m=e.cvs[t][1];t--;var N=e.cvs[t][0],c=e.cvs[t][1],_=n*o,g=n*(1-o),v=(1-n)*(1-o),S=(1-n)*o;return u.x=v*d+g*y+S*N+_*x,u.y=v*s+g*f+S*c+_*m,u}t.default=function(r,e,t){if((0,o.compareDatums)(r,e))return t;if(r.datum_type===n.PJD_NODATUM||e.datum_type===n.PJD_NODATUM)return t;var a=r.a,i=r.es;if(r.datum_type===n.PJD_GRIDSHIFT){if(0!==s(r,!1,t))return;a=n.SRS_WGS84_SEMIMAJOR,i=n.SRS_WGS84_ESQUARED}var l=e.a,u=e.b,y=e.es;if(e.datum_type===n.PJD_GRIDSHIFT&&(l=n.SRS_WGS84_SEMIMAJOR,u=n.SRS_WGS84_SEMIMINOR,y=n.SRS_WGS84_ESQUARED),i===y&&a===l&&!d(r.datum_type)&&!d(e.datum_type))return t;if(t=(0,o.geodeticToGeocentric)(t,i,a),d(r.datum_type)&&(t=(0,o.geocentricToWgs84)(t,r.datum_type,r.datum_params)),d(e.datum_type)&&(t=(0,o.geocentricFromWgs84)(t,e.datum_type,e.datum_params)),t=(0,o.geocentricToGeodetic)(t,y,l,u),e.datum_type===n.PJD_GRIDSHIFT&&0!==s(e,!0,t))return;return t},t.applyGridShift=s},\n", + " function _(a,t,r,m,s){m();const u=a(85);r.compareDatums=function(a,t){return a.datum_type===t.datum_type&&(!(a.a!==t.a||Math.abs(a.es-t.es)>5e-11)&&(a.datum_type===u.PJD_3PARAM?a.datum_params[0]===t.datum_params[0]&&a.datum_params[1]===t.datum_params[1]&&a.datum_params[2]===t.datum_params[2]:a.datum_type!==u.PJD_7PARAM||a.datum_params[0]===t.datum_params[0]&&a.datum_params[1]===t.datum_params[1]&&a.datum_params[2]===t.datum_params[2]&&a.datum_params[3]===t.datum_params[3]&&a.datum_params[4]===t.datum_params[4]&&a.datum_params[5]===t.datum_params[5]&&a.datum_params[6]===t.datum_params[6]))},r.geodeticToGeocentric=function(a,t,r){var m,s,_,e,n=a.x,d=a.y,i=a.z?a.z:0;if(d<-u.HALF_PI&&d>-1.001*u.HALF_PI)d=-u.HALF_PI;else if(d>u.HALF_PI&&d<1.001*u.HALF_PI)d=u.HALF_PI;else{if(d<-u.HALF_PI)return{x:-1/0,y:-1/0,z:a.z};if(d>u.HALF_PI)return{x:1/0,y:1/0,z:a.z}}return n>Math.PI&&(n-=2*Math.PI),s=Math.sin(d),e=Math.cos(d),_=s*s,{x:((m=r/Math.sqrt(1-t*_))+i)*e*Math.cos(n),y:(m+i)*e*Math.sin(n),z:(m*(1-t)+i)*s}},r.geocentricToGeodetic=function(a,t,r,m){var s,_,e,n,d,i,p,P,y,z,M,o,A,c,x,h=1e-12,f=a.x,I=a.y,F=a.z?a.z:0;if(s=Math.sqrt(f*f+I*I),_=Math.sqrt(f*f+I*I+F*F),s/r1e-24&&A<30);return{x:c,y:Math.atan(M/Math.abs(z)),z:x}},r.geocentricToWgs84=function(a,t,r){if(t===u.PJD_3PARAM)return{x:a.x+r[0],y:a.y+r[1],z:a.z+r[2]};if(t===u.PJD_7PARAM){var m=r[0],s=r[1],_=r[2],e=r[3],n=r[4],d=r[5],i=r[6];return{x:i*(a.x-d*a.y+n*a.z)+m,y:i*(d*a.x+a.y-e*a.z)+s,z:i*(-n*a.x+e*a.y+a.z)+_}}},r.geocentricFromWgs84=function(a,t,r){if(t===u.PJD_3PARAM)return{x:a.x-r[0],y:a.y-r[1],z:a.z-r[2]};if(t===u.PJD_7PARAM){var m=r[0],s=r[1],_=r[2],e=r[3],n=r[4],d=r[5],i=r[6],p=(a.x-m)/i,P=(a.y-s)/i,y=(a.z-_)/i;return{x:p+d*P-n*y,y:-d*p+P+e*y,z:n*p-e*P+y}}}},\n", + " function _(e,a,i,r,s){r(),i.default=function(e,a,i){var r,s,n,c=i.x,d=i.y,f=i.z||0,u={};for(n=0;n<3;n++)if(!a||2!==n||void 0!==i.z)switch(0===n?(r=c,s=-1!==\"ew\".indexOf(e.axis[n])?\"x\":\"y\"):1===n?(r=d,s=-1!==\"ns\".indexOf(e.axis[n])?\"y\":\"x\"):(r=f,s=\"z\"),e.axis[n]){case\"e\":u[s]=r;break;case\"w\":u[s]=-r;break;case\"n\":u[s]=r;break;case\"s\":u[s]=-r;break;case\"u\":void 0!==i[s]&&(u.z=r);break;case\"d\":void 0!==i[s]&&(u.z=-r);break;default:return null}return u}},\n", + " function _(n,t,e,u,f){u(),e.default=function(n){var t={x:n[0],y:n[1]};return n.length>2&&(t.z=n[2]),n.length>3&&(t.m=n[3]),t}},\n", + " function _(e,i,n,t,r){function o(e){if(\"function\"==typeof Number.isFinite){if(Number.isFinite(e))return;throw new TypeError(\"coordinates must be finite numbers\")}if(\"number\"!=typeof e||e!=e||!isFinite(e))throw new TypeError(\"coordinates must be finite numbers\")}t(),n.default=function(e){o(e.x),o(e.y)}},\n", + " function _(e,i,s,t,o){t();const n=e(1);var l,a,r,_,c;const d=e(53),v=e(42),u=(0,n.__importStar)(e(45)),h=e(48),m=(0,n.__importStar)(e(18));class T extends v.View{initialize(){super.initialize(),this.visuals=new u.Visuals(this)}request_render(){this.parent.request_render()}get canvas(){return this.parent.canvas}set_data(e){const i=this;for(const s of this.model){if(!(s instanceof m.VectorSpec||s instanceof m.ScalarSpec))continue;const t=s.uniform(e);i[`${s.attr}`]=t}}}s.ArrowHeadView=T,T.__name__=\"ArrowHeadView\";class p extends d.Model{constructor(e){super(e)}}s.ArrowHead=p,l=p,p.__name__=\"ArrowHead\",l.define((()=>({size:[m.NumberSpec,25]})));class V extends T{clip(e,i){this.visuals.line.set_vectorize(e,i);const s=this.size.get(i);e.moveTo(.5*s,s),e.lineTo(.5*s,-2),e.lineTo(-.5*s,-2),e.lineTo(-.5*s,s),e.lineTo(0,0),e.lineTo(.5*s,s)}render(e,i){if(this.visuals.line.doit){this.visuals.line.set_vectorize(e,i);const s=this.size.get(i);e.beginPath(),e.moveTo(.5*s,s),e.lineTo(0,0),e.lineTo(-.5*s,s),e.stroke()}}}s.OpenHeadView=V,V.__name__=\"OpenHeadView\";class f extends p{constructor(e){super(e)}}s.OpenHead=f,a=f,f.__name__=\"OpenHead\",a.prototype.default_view=V,a.mixins(h.LineVector);class w extends T{clip(e,i){this.visuals.line.set_vectorize(e,i);const s=this.size.get(i);e.moveTo(.5*s,s),e.lineTo(.5*s,-2),e.lineTo(-.5*s,-2),e.lineTo(-.5*s,s),e.lineTo(.5*s,s)}render(e,i){this.visuals.fill.doit&&(this.visuals.fill.set_vectorize(e,i),this._normal(e,i),e.fill()),this.visuals.line.doit&&(this.visuals.line.set_vectorize(e,i),this._normal(e,i),e.stroke())}_normal(e,i){const s=this.size.get(i);e.beginPath(),e.moveTo(.5*s,s),e.lineTo(0,0),e.lineTo(-.5*s,s),e.closePath()}}s.NormalHeadView=w,w.__name__=\"NormalHeadView\";class H extends p{constructor(e){super(e)}}s.NormalHead=H,r=H,H.__name__=\"NormalHead\",r.prototype.default_view=w,r.mixins([h.LineVector,h.FillVector]),r.override({fill_color:\"black\"});class z extends T{clip(e,i){this.visuals.line.set_vectorize(e,i);const s=this.size.get(i);e.moveTo(.5*s,s),e.lineTo(.5*s,-2),e.lineTo(-.5*s,-2),e.lineTo(-.5*s,s),e.lineTo(0,.5*s),e.lineTo(.5*s,s)}render(e,i){this.visuals.fill.doit&&(this.visuals.fill.set_vectorize(e,i),this._vee(e,i),e.fill()),this.visuals.line.doit&&(this.visuals.line.set_vectorize(e,i),this._vee(e,i),e.stroke())}_vee(e,i){const s=this.size.get(i);e.beginPath(),e.moveTo(.5*s,s),e.lineTo(0,0),e.lineTo(-.5*s,s),e.lineTo(0,.5*s),e.closePath()}}s.VeeHeadView=z,z.__name__=\"VeeHeadView\";class x extends p{constructor(e){super(e)}}s.VeeHead=x,_=x,x.__name__=\"VeeHead\",_.prototype.default_view=z,_.mixins([h.LineVector,h.FillVector]),_.override({fill_color:\"black\"});class g extends T{render(e,i){if(this.visuals.line.doit){this.visuals.line.set_vectorize(e,i);const s=this.size.get(i);e.beginPath(),e.moveTo(.5*s,0),e.lineTo(-.5*s,0),e.stroke()}}clip(e,i){}}s.TeeHeadView=g,g.__name__=\"TeeHeadView\";class b extends p{constructor(e){super(e)}}s.TeeHead=b,c=b,b.__name__=\"TeeHead\",c.prototype.default_view=g,c.mixins(h.LineVector)},\n", + " function _(n,e,t,i,o){i();const s=n(9);async function c(n,e,t){const i=new n(Object.assign(Object.assign({},t),{model:e}));return i.initialize(),await i.lazy_initialize(),i}t.build_view=async function(n,e={parent:null},t=(n=>n.default_view)){const i=await c(t(n),n,e);return i.connect_signals(),i},t.build_views=async function(n,e,t={parent:null},i=(n=>n.default_view)){const o=(0,s.difference)([...n.keys()],e);for(const e of o)n.get(e).remove(),n.delete(e);const a=[],f=e.filter((e=>!n.has(e)));for(const e of f){const o=await c(i(e),e,t);n.set(e,o),a.push(o)}for(const n of a)n.connect_signals();return a},t.remove_views=function(n){for(const[e,t]of n)t.remove(),n.delete(e)}},\n", + " function _(e,s,_,i,l){i();const t=e(1);var o;const r=e(115),p=(0,t.__importStar)(e(48));class h extends r.UpperLowerView{paint(e){e.beginPath(),e.moveTo(this._lower_sx[0],this._lower_sy[0]);for(let s=0,_=this._lower_sx.length;s<_;s++)e.lineTo(this._lower_sx[s],this._lower_sy[s]);for(let s=this._upper_sx.length-1;s>=0;s--)e.lineTo(this._upper_sx[s],this._upper_sy[s]);e.closePath(),this.visuals.fill.apply(e),e.beginPath(),e.moveTo(this._lower_sx[0],this._lower_sy[0]);for(let s=0,_=this._lower_sx.length;s<_;s++)e.lineTo(this._lower_sx[s],this._lower_sy[s]);this.visuals.line.apply(e),e.beginPath(),e.moveTo(this._upper_sx[0],this._upper_sy[0]);for(let s=0,_=this._upper_sx.length;s<_;s++)e.lineTo(this._upper_sx[s],this._upper_sy[s]);this.visuals.line.apply(e)}}_.BandView=h,h.__name__=\"BandView\";class n extends r.UpperLower{constructor(e){super(e)}}_.Band=n,o=n,n.__name__=\"Band\",o.prototype.default_view=h,o.mixins([p.Line,p.Fill]),o.override({fill_color:\"#fff9ba\",fill_alpha:.4,line_color:\"#cccccc\",line_alpha:.3})},\n", + " function _(e,t,i,s,o){s();const r=e(1);var n;const p=e(69),a=e(20),_=(0,r.__importStar)(e(18));class h extends p.DataAnnotationView{map_data(){const{frame:e}=this.plot_view,t=this.model.dimension,i=this.coordinates.x_scale,s=this.coordinates.y_scale,o=\"height\"==t?s:i,r=\"height\"==t?i:s,n=\"height\"==t?e.bbox.yview:e.bbox.xview,p=\"height\"==t?e.bbox.xview:e.bbox.yview;let a,_,h;a=\"data\"==this.model.properties.lower.units?o.v_compute(this._lower):n.v_compute(this._lower),_=\"data\"==this.model.properties.upper.units?o.v_compute(this._upper):n.v_compute(this._upper),h=\"data\"==this.model.properties.base.units?r.v_compute(this._base):p.v_compute(this._base);const[d,c]=\"height\"==t?[1,0]:[0,1],u=[a,h],l=[_,h];this._lower_sx=u[d],this._lower_sy=u[c],this._upper_sx=l[d],this._upper_sy=l[c]}}i.UpperLowerView=h,h.__name__=\"UpperLowerView\";class d extends _.CoordinateSpec{get dimension(){return\"width\"==this.obj.dimension?\"x\":\"y\"}get units(){var e;return null!==(e=this.spec.units)&&void 0!==e?e:\"data\"}}i.XOrYCoordinateSpec=d,d.__name__=\"XOrYCoordinateSpec\";class c extends p.DataAnnotation{constructor(e){super(e)}}i.UpperLower=c,n=c,c.__name__=\"UpperLower\",n.define((()=>({dimension:[a.Dimension,\"height\"],lower:[d,{field:\"lower\"}],upper:[d,{field:\"upper\"}],base:[d,{field:\"base\"}]})))},\n", + " function _(t,o,i,n,e){n();const s=t(1);var l;const r=t(40),a=(0,s.__importStar)(t(48)),c=t(20),h=t(65);i.EDGE_TOLERANCE=2.5;class b extends r.AnnotationView{constructor(){super(...arguments),this.bbox=new h.BBox}connect_signals(){super.connect_signals(),this.connect(this.model.change,(()=>this.request_render()))}_render(){const{left:t,right:o,top:i,bottom:n}=this.model;if(null==t&&null==o&&null==i&&null==n)return;const{frame:e}=this.plot_view,s=this.coordinates.x_scale,l=this.coordinates.y_scale,r=(t,o,i,n,e)=>{let s;return s=null!=t?this.model.screen?t:\"data\"==o?i.compute(t):n.compute(t):e,s};this.bbox=h.BBox.from_rect({left:r(t,this.model.left_units,s,e.bbox.xview,e.bbox.left),right:r(o,this.model.right_units,s,e.bbox.xview,e.bbox.right),top:r(i,this.model.top_units,l,e.bbox.yview,e.bbox.top),bottom:r(n,this.model.bottom_units,l,e.bbox.yview,e.bbox.bottom)}),this._paint_box()}_paint_box(){const{ctx:t}=this.layer;t.save();const{left:o,top:i,width:n,height:e}=this.bbox;t.beginPath(),t.rect(o,i,n,e),this.visuals.fill.apply(t),this.visuals.hatch.apply(t),this.visuals.line.apply(t),t.restore()}interactive_bbox(){const t=this.model.line_width+i.EDGE_TOLERANCE;return this.bbox.grow_by(t)}interactive_hit(t,o){if(null==this.model.in_cursor)return!1;return this.interactive_bbox().contains(t,o)}cursor(t,o){const{left:i,right:n,bottom:e,top:s}=this.bbox;return Math.abs(t-i)<3||Math.abs(t-n)<3?this.model.ew_cursor:Math.abs(o-e)<3||Math.abs(o-s)<3?this.model.ns_cursor:this.bbox.contains(t,o)?this.model.in_cursor:null}}i.BoxAnnotationView=b,b.__name__=\"BoxAnnotationView\";class u extends r.Annotation{constructor(t){super(t)}update({left:t,right:o,top:i,bottom:n}){this.setv({left:t,right:o,top:i,bottom:n,screen:!0})}}i.BoxAnnotation=u,l=u,u.__name__=\"BoxAnnotation\",l.prototype.default_view=b,l.mixins([a.Line,a.Fill,a.Hatch]),l.define((({Number:t,Nullable:o})=>({top:[o(t),null],top_units:[c.SpatialUnits,\"data\"],bottom:[o(t),null],bottom_units:[c.SpatialUnits,\"data\"],left:[o(t),null],left_units:[c.SpatialUnits,\"data\"],right:[o(t),null],right_units:[c.SpatialUnits,\"data\"],render_mode:[c.RenderMode,\"canvas\"]}))),l.internal((({Boolean:t,String:o,Nullable:i})=>({screen:[t,!1],ew_cursor:[i(o),null],ns_cursor:[i(o),null],in_cursor:[i(o),null]}))),l.override({fill_color:\"#fff9ba\",fill_alpha:.4,line_color:\"#cccccc\",line_alpha:.3})},\n", + " function _(t,e,i,o,n){o();const a=t(1);var r;const s=t(40),l=t(118),_=t(126),c=t(127),h=t(130),u=t(168),p=t(131),m=t(192),g=t(132),d=t(173),f=t(172),w=t(196),b=t(204),v=t(206),x=t(133),y=t(20),k=(0,a.__importStar)(t(48)),z=t(9),j=t(207),C=t(208),L=t(211),B=t(123),S=t(11),M=t(113),T=t(65),A=t(8);class O extends s.AnnotationView{get orientation(){return this._orientation}initialize(){super.initialize();const{ticker:t,formatter:e,color_mapper:i}=this.model;this._ticker=\"auto\"!=t?t:(()=>{switch(!0){case i instanceof w.LogColorMapper:return new u.LogTicker;case i instanceof w.ScanningColorMapper:return new u.BinnedTicker({mapper:i});case i instanceof w.CategoricalColorMapper:return new u.CategoricalTicker;default:return new u.BasicTicker}})(),this._formatter=\"auto\"!=e?e:(()=>{switch(!0){case this._ticker instanceof u.LogTicker:return new m.LogTickFormatter;case i instanceof w.CategoricalColorMapper:return new m.CategoricalTickFormatter;default:return new m.BasicTickFormatter}})(),this._major_range=(()=>{if(i instanceof w.CategoricalColorMapper){const{factors:t}=i;return new v.FactorRange({factors:t})}if(i instanceof f.ContinuousColorMapper){const{min:t,max:e}=i.metrics;return new v.Range1d({start:t,end:e})}(0,S.unreachable)()})(),this._major_scale=(()=>{if(i instanceof w.LinearColorMapper)return new b.LinearScale;if(i instanceof w.LogColorMapper)return new b.LogScale;if(i instanceof w.ScanningColorMapper){const{binning:t}=i.metrics;return new b.LinearInterpolationScale({binning:t})}if(i instanceof w.CategoricalColorMapper)return new b.CategoricalScale;(0,S.unreachable)()})(),this._minor_range=new v.Range1d({start:0,end:1}),this._minor_scale=new b.LinearScale;const o=k.attrs_of(this.model,\"major_label_\",k.Text,!0),n=k.attrs_of(this.model,\"major_tick_\",k.Line,!0),a=k.attrs_of(this.model,\"minor_tick_\",k.Line,!0),r=k.attrs_of(this.model,\"title_\",k.Text),s=i instanceof w.CategoricalColorMapper?c.CategoricalAxis:i instanceof w.LogColorMapper?c.LogAxis:c.LinearAxis;this._axis=new s(Object.assign(Object.assign(Object.assign({ticker:this._ticker,formatter:this._formatter,major_tick_in:this.model.major_tick_in,major_tick_out:this.model.major_tick_out,minor_tick_in:this.model.minor_tick_in,minor_tick_out:this.model.minor_tick_out,major_label_standoff:this.model.label_standoff,major_label_overrides:this.model.major_label_overrides,major_label_policy:this.model.major_label_policy,axis_line_color:null},o),n),a));const{title:_}=this.model;_&&(this._title=new l.Title(Object.assign({text:_,standoff:this.model.title_standoff},r)))}async lazy_initialize(){await super.lazy_initialize();const t=this,e={get parent(){return t.parent},get root(){return t.root},get frame(){return t._frame},get canvas_view(){return t.parent.canvas_view},request_layout(){t.parent.request_layout()}};this._axis_view=await(0,M.build_view)(this._axis,{parent:e}),null!=this._title&&(this._title_view=await(0,M.build_view)(this._title,{parent:e}))}remove(){var t;null===(t=this._title_view)||void 0===t||t.remove(),this._axis_view.remove(),super.remove()}connect_signals(){super.connect_signals(),this.connect(this._ticker.change,(()=>this.request_render())),this.connect(this._formatter.change,(()=>this.request_render())),this.connect(this.model.color_mapper.metrics_change,(()=>{const t=this._major_range,e=this._major_scale,{color_mapper:i}=this.model;if(i instanceof f.ContinuousColorMapper&&t instanceof v.Range1d){const{min:e,max:o}=i.metrics;t.setv({start:e,end:o})}if(i instanceof w.ScanningColorMapper&&e instanceof b.LinearInterpolationScale){const{binning:t}=i.metrics;e.binning=t}this._set_canvas_image(),this.plot_view.request_layout()}))}_set_canvas_image(){const{orientation:t}=this,e=(()=>{const{palette:e}=this.model.color_mapper;return\"vertical\"==t?(0,z.reversed)(e):e})(),[i,o]=\"vertical\"==t?[1,e.length]:[e.length,1],n=this._image=document.createElement(\"canvas\");n.width=i,n.height=o;const a=n.getContext(\"2d\"),r=a.getImageData(0,0,i,o),s=new w.LinearColorMapper({palette:e}).rgba_mapper.v_compute((0,z.range)(0,e.length));r.data.set(s),a.putImageData(r,0,0)}update_layout(){const{location:t,width:e,height:i,padding:o,margin:n}=this.model,[a,r]=(()=>{if(!(0,A.isString)(t))return[\"end\",\"start\"];switch(t){case\"top_left\":return[\"start\",\"start\"];case\"top\":case\"top_center\":return[\"start\",\"center\"];case\"top_right\":return[\"start\",\"end\"];case\"bottom_left\":return[\"end\",\"start\"];case\"bottom\":case\"bottom_center\":return[\"end\",\"center\"];case\"bottom_right\":return[\"end\",\"end\"];case\"left\":case\"center_left\":return[\"center\",\"start\"];case\"center\":case\"center_center\":return[\"center\",\"center\"];case\"right\":case\"center_right\":return[\"center\",\"end\"]}})(),s=this._orientation=(()=>{const{orientation:t}=this.model;return\"auto\"==t?null!=this.panel?this.panel.is_horizontal?\"horizontal\":\"vertical\":\"start\"==r||\"end\"==r||\"center\"==r&&\"center\"==a?\"vertical\":\"horizontal\":t})(),l=new C.NodeLayout,c=new C.VStack,h=new C.VStack,u=new C.HStack,p=new C.HStack;l.absolute=!0,c.absolute=!0,h.absolute=!0,u.absolute=!0,p.absolute=!0;const[m,g,d,f]=(()=>\"horizontal\"==s?[this._major_scale,this._minor_scale,this._major_range,this._minor_range]:[this._minor_scale,this._major_scale,this._minor_range,this._major_range])();this._frame=new _.CartesianFrame(m,g,d,f),l.on_resize((t=>this._frame.set_geometry(t)));const w=new L.BorderLayout;this._inner_layout=w,w.absolute=!0,w.center_panel=l,w.top_panel=c,w.bottom_panel=h,w.left_panel=u,w.right_panel=p;const b={left:o,right:o,top:o,bottom:o},v=(()=>{if(null==this.panel){if((0,A.isString)(t))return{left:n,right:n,top:n,bottom:n};{const[e,i]=t;return{left:e,right:n,top:n,bottom:i}}}if(!(0,A.isString)(t)){const[e,i]=t;return w.fixup_geometry=(t,o)=>{const n=t,a=this.layout.bbox,{width:r,height:s}=t;if(t=new T.BBox({left:a.left+e,bottom:a.bottom-i,width:r,height:s}),null!=o){const e=t.left-n.left,i=t.top-n.top,{left:a,top:r,width:s,height:l}=o;o=new T.BBox({left:a+e,top:r+i,width:s,height:l})}return[t,o]},{left:e,right:0,top:0,bottom:i}}w.fixup_geometry=(t,e)=>{const i=t;if(\"horizontal\"==s){const{top:e,width:i,height:o}=t;if(\"end\"==r){const{right:n}=this.layout.bbox;t=new T.BBox({right:n,top:e,width:i,height:o})}else if(\"center\"==r){const{hcenter:n}=this.layout.bbox;t=new T.BBox({hcenter:Math.round(n),top:e,width:i,height:o})}}else{const{left:e,width:i,height:o}=t;if(\"end\"==a){const{bottom:n}=this.layout.bbox;t=new T.BBox({left:e,bottom:n,width:i,height:o})}else if(\"center\"==a){const{vcenter:n}=this.layout.bbox;t=new T.BBox({left:e,vcenter:Math.round(n),width:i,height:o})}}if(null!=e){const o=t.left-i.left,n=t.top-i.top,{left:a,top:r,width:s,height:l}=e;e=new T.BBox({left:a+o,top:r+n,width:s,height:l})}return[t,e]}})();let x,y,k,z;if(w.padding=b,null!=this.panel?(x=\"max\",y=void 0,k=void 0,z=void 0):\"auto\"==(\"horizontal\"==s?e:i)?(x=\"fixed\",y=25*this.model.color_mapper.palette.length,k={percent:.3},z={percent:.8}):(x=\"fit\",y=void 0),\"horizontal\"==s){const t=\"auto\"==e?void 0:e,o=\"auto\"==i?25:i;w.set_sizing({width_policy:x,height_policy:\"min\",width:y,min_width:k,max_width:z,halign:r,valign:a,margin:v}),w.center_panel.set_sizing({width_policy:\"auto\"==e?\"fit\":\"fixed\",height_policy:\"fixed\",width:t,height:o})}else{const t=\"auto\"==e?25:e,o=\"auto\"==i?void 0:i;w.set_sizing({width_policy:\"min\",height_policy:x,height:y,min_height:k,max_height:z,halign:r,valign:a,margin:v}),w.center_panel.set_sizing({width_policy:\"fixed\",height_policy:\"auto\"==i?\"fit\":\"fixed\",width:t,height:o})}c.set_sizing({width_policy:\"fit\",height_policy:\"min\"}),h.set_sizing({width_policy:\"fit\",height_policy:\"min\"}),u.set_sizing({width_policy:\"min\",height_policy:\"fit\"}),p.set_sizing({width_policy:\"min\",height_policy:\"fit\"});const{_title_view:S}=this;null!=S&&(\"horizontal\"==s?(S.panel=new B.Panel(\"above\"),S.update_layout(),c.children.push(S.layout)):(S.panel=new B.Panel(\"left\"),S.update_layout(),u.children.push(S.layout)));const{panel:M}=this,O=null!=M&&s==M.orientation?M.side:\"horizontal\"==s?\"below\":\"right\",R=(()=>{switch(O){case\"above\":return c;case\"below\":return h;case\"left\":return u;case\"right\":return p}})(),{_axis_view:F}=this;if(F.panel=new B.Panel(O),F.update_layout(),R.children.push(F.layout),null!=this.panel){const t=new j.Grid([{layout:w,row:0,col:0}]);t.absolute=!0,\"horizontal\"==s?t.set_sizing({width_policy:\"max\",height_policy:\"min\"}):t.set_sizing({width_policy:\"min\",height_policy:\"max\"}),this.layout=t}else this.layout=this._inner_layout;const{visible:I}=this.model;this.layout.sizing.visible=I,this._set_canvas_image()}_render(){var t;const{ctx:e}=this.layer;e.save(),this._paint_bbox(e,this._inner_layout.bbox),this._paint_image(e,this._inner_layout.center_panel.bbox),null===(t=this._title_view)||void 0===t||t.render(),this._axis_view.render(),e.restore()}_paint_bbox(t,e){const{x:i,y:o}=e;let{width:n,height:a}=e;i+n>=this.parent.canvas_view.bbox.width&&(n-=1),o+a>=this.parent.canvas_view.bbox.height&&(a-=1),t.save(),this.visuals.background_fill.doit&&(this.visuals.background_fill.set_value(t),t.fillRect(i,o,n,a)),this.visuals.border_line.doit&&(this.visuals.border_line.set_value(t),t.strokeRect(i,o,n,a)),t.restore()}_paint_image(t,e){const{x:i,y:o,width:n,height:a}=e;t.save(),t.setImageSmoothingEnabled(!1),t.globalAlpha=this.model.scale_alpha,t.drawImage(this._image,i,o,n,a),this.visuals.bar_line.doit&&(this.visuals.bar_line.set_value(t),t.strokeRect(i,o,n,a)),t.restore()}serializable_state(){const t=super.serializable_state(),{children:e=[]}=t,i=(0,a.__rest)(t,[\"children\"]);return null!=this._title_view&&e.push(this._title_view.serializable_state()),e.push(this._axis_view.serializable_state()),Object.assign(Object.assign({},i),{children:e})}}i.ColorBarView=O,O.__name__=\"ColorBarView\";class R extends s.Annotation{constructor(t){super(t)}}i.ColorBar=R,r=R,R.__name__=\"ColorBar\",r.prototype.default_view=O,r.mixins([[\"major_label_\",k.Text],[\"title_\",k.Text],[\"major_tick_\",k.Line],[\"minor_tick_\",k.Line],[\"border_\",k.Line],[\"bar_\",k.Line],[\"background_\",k.Fill]]),r.define((({Alpha:t,Number:e,String:i,Tuple:o,Dict:n,Or:a,Ref:r,Auto:s,Nullable:l})=>({location:[a(y.Anchor,o(e,e)),\"top_right\"],orientation:[a(y.Orientation,s),\"auto\"],title:[l(i),null],title_standoff:[e,2],width:[a(e,s),\"auto\"],height:[a(e,s),\"auto\"],scale_alpha:[t,1],ticker:[a(r(h.Ticker),s),\"auto\"],formatter:[a(r(p.TickFormatter),s),\"auto\"],major_label_overrides:[n(a(i,r(x.BaseText))),{}],major_label_policy:[r(g.LabelingPolicy),()=>new g.NoOverlap],color_mapper:[r(d.ColorMapper)],label_standoff:[e,5],margin:[e,30],padding:[e,10],major_tick_in:[e,5],major_tick_out:[e,0],minor_tick_in:[e,0],minor_tick_out:[e,0]}))),r.override({background_fill_color:\"#ffffff\",background_fill_alpha:.95,bar_line_color:null,border_line_color:null,major_label_text_font_size:\"11px\",major_tick_line_color:\"#ffffff\",minor_tick_line_color:null,title_text_font_size:\"13px\",title_text_font_style:\"italic\"})},\n", + " function _(t,e,i,s,l){s();const o=t(1);var a;const n=t(119),r=t(20),c=t(120),h=(0,o.__importStar)(t(48));class _ extends n.TextAnnotationView{_get_location(){const t=this.model.offset,e=this.model.standoff/2;let i,s;const{bbox:l}=this.layout;switch(this.panel.side){case\"above\":case\"below\":switch(this.model.vertical_align){case\"top\":s=l.top+e;break;case\"middle\":s=l.vcenter;break;case\"bottom\":s=l.bottom-e}switch(this.model.align){case\"left\":i=l.left+t;break;case\"center\":i=l.hcenter;break;case\"right\":i=l.right-t}break;case\"left\":switch(this.model.vertical_align){case\"top\":i=l.left+e;break;case\"middle\":i=l.hcenter;break;case\"bottom\":i=l.right-e}switch(this.model.align){case\"left\":s=l.bottom-t;break;case\"center\":s=l.vcenter;break;case\"right\":s=l.top+t}break;case\"right\":switch(this.model.vertical_align){case\"top\":i=l.right-e;break;case\"middle\":i=l.hcenter;break;case\"bottom\":i=l.left+e}switch(this.model.align){case\"left\":s=l.top+t;break;case\"center\":s=l.vcenter;break;case\"right\":s=l.bottom-t}}return[i,s]}_render(){const{text:t}=this.model;if(null==t||0==t.length)return;this.model.text_baseline=this.model.vertical_align,this.model.text_align=this.model.align;const[e,i]=this._get_location(),s=this.panel.get_label_angle_heuristic(\"parallel\");(\"canvas\"==this.model.render_mode?this._canvas_text.bind(this):this._css_text.bind(this))(this.layer.ctx,t,e,i,s)}_get_size(){const{text:t}=this.model,e=new c.TextBox({text:t});e.visuals=this.visuals.text.values();const{width:i,height:s}=e.size();return{width:i,height:0==s?0:2+s+this.model.standoff}}}i.TitleView=_,_.__name__=\"TitleView\";class d extends n.TextAnnotation{constructor(t){super(t)}}i.Title=d,a=d,d.__name__=\"Title\",a.prototype.default_view=_,a.mixins([h.Text,[\"border_\",h.Line],[\"background_\",h.Fill]]),a.define((({Number:t,String:e})=>({text:[e,\"\"],vertical_align:[r.VerticalAlign,\"bottom\"],align:[r.TextAlign,\"left\"],offset:[t,0],standoff:[t,10]}))),a.prototype._props.text_align.options.internal=!0,a.prototype._props.text_baseline.options.internal=!0,a.override({text_font_size:\"13px\",text_font_style:\"bold\",text_line_height:1,background_fill_color:null,border_line_color:null})},\n", + " function _(e,t,s,i,l){var n;i();const o=e(40),a=e(43),r=e(20),d=e(120),u=e(123),c=e(11);class h extends o.AnnotationView{update_layout(){const{panel:e}=this;this.layout=null!=e?new u.SideLayout(e,(()=>this.get_size()),!0):void 0}initialize(){super.initialize(),\"css\"==this.model.render_mode&&(this.el=(0,a.div)(),this.plot_view.canvas_view.add_overlay(this.el))}remove(){null!=this.el&&(0,a.remove)(this.el),super.remove()}connect_signals(){super.connect_signals(),\"css\"==this.model.render_mode?this.connect(this.model.change,(()=>this.render())):this.connect(this.model.change,(()=>this.request_render()))}render(){this.model.visible||\"css\"!=this.model.render_mode||(0,a.undisplay)(this.el),super.render()}_canvas_text(e,t,s,i,l){const n=new d.TextBox({text:t});n.angle=l,n.position={sx:s,sy:i},n.visuals=this.visuals.text.values();const{background_fill:o,border_line:a}=this.visuals;if(o.doit||a.doit){const{p0:t,p1:s,p2:i,p3:l}=n.rect();e.beginPath(),e.moveTo(t.x,t.y),e.lineTo(s.x,s.y),e.lineTo(i.x,i.y),e.lineTo(l.x,l.y),e.closePath(),this.visuals.background_fill.apply(e),this.visuals.border_line.apply(e)}this.visuals.text.doit&&n.paint(e)}_css_text(e,t,s,i,l){const{el:n}=this;(0,c.assert)(null!=n),(0,a.undisplay)(n),n.textContent=t,this.visuals.text.set_value(e),n.style.position=\"absolute\",n.style.left=`${s}px`,n.style.top=`${i}px`,n.style.color=e.fillStyle,n.style.font=e.font,n.style.lineHeight=\"normal\",n.style.whiteSpace=\"pre\";const[o,r]=(()=>{switch(this.visuals.text.text_align.get_value()){case\"left\":return[\"left\",\"0%\"];case\"center\":return[\"center\",\"-50%\"];case\"right\":return[\"right\",\"-100%\"]}})(),[d,u]=(()=>{switch(this.visuals.text.text_baseline.get_value()){case\"top\":return[\"top\",\"0%\"];case\"middle\":return[\"center\",\"-50%\"];case\"bottom\":return[\"bottom\",\"-100%\"];default:return[\"center\",\"-50%\"]}})();let h=`translate(${r}, ${u})`;l&&(h+=`rotate(${l}rad)`),n.style.transformOrigin=`${o} ${d}`,n.style.transform=h,this.layout,this.visuals.background_fill.doit&&(this.visuals.background_fill.set_value(e),n.style.backgroundColor=e.fillStyle),this.visuals.border_line.doit&&(this.visuals.border_line.set_value(e),n.style.borderStyle=e.lineDash.length<2?\"solid\":\"dashed\",n.style.borderWidth=`${e.lineWidth}px`,n.style.borderColor=e.strokeStyle),(0,a.display)(n)}}s.TextAnnotationView=h,h.__name__=\"TextAnnotationView\";class _ extends o.Annotation{constructor(e){super(e)}}s.TextAnnotation=_,n=_,_.__name__=\"TextAnnotation\",n.define((()=>({render_mode:[r.RenderMode,\"canvas\"]})))},\n", + " function _(t,e,s,i,n){i();const h=t(65),o=t(121),r=t(9),a=t(8),c=t(122),_=t(22);s.text_width=(()=>{const t=document.createElement(\"canvas\").getContext(\"2d\");let e=\"\";return(s,i)=>(i!=e&&(e=i,t.font=i),t.measureText(s).width)})();class l{constructor(){this._position={sx:0,sy:0},this.font_size_scale=1,this.align=\"left\",this._base_font_size=13,this._x_anchor=\"left\",this._y_anchor=\"center\"}set base_font_size(t){null!=t&&(this._base_font_size=t)}get base_font_size(){return this._base_font_size}set position(t){this._position=t}get position(){return this._position}infer_text_height(){return\"ascent_descent\"}bbox(){const{p0:t,p1:e,p2:s,p3:i}=this.rect(),n=Math.min(t.x,e.x,s.x,i.x),o=Math.min(t.y,e.y,s.y,i.y),r=Math.max(t.x,e.x,s.x,i.x),a=Math.max(t.y,e.y,s.y,i.y);return new h.BBox({left:n,right:r,top:o,bottom:a})}size(){const{width:t,height:e}=this._size(),{angle:s}=this;if(s){const i=Math.cos(Math.abs(s)),n=Math.sin(Math.abs(s));return{width:Math.abs(t*i+e*n),height:Math.abs(t*n+e*i)}}return{width:t,height:e}}rect(){const t=this._rect(),{angle:e}=this;if(e){const{sx:s,sy:i}=this.position,n=new c.AffineTransform;return n.translate(s,i),n.rotate(e),n.translate(-s,-i),n.apply_rect(t)}return t}paint_rect(t){const{p0:e,p1:s,p2:i,p3:n}=this.rect();t.save(),t.strokeStyle=\"red\",t.lineWidth=1,t.beginPath();const{round:h}=Math;t.moveTo(h(e.x),h(e.y)),t.lineTo(h(s.x),h(s.y)),t.lineTo(h(i.x),h(i.y)),t.lineTo(h(n.x),h(n.y)),t.closePath(),t.stroke(),t.restore()}paint_bbox(t){const{x:e,y:s,width:i,height:n}=this.bbox();t.save(),t.strokeStyle=\"blue\",t.lineWidth=1,t.beginPath();const{round:h}=Math;t.moveTo(h(e),h(s)),t.lineTo(h(e),h(s+n)),t.lineTo(h(e+i),h(s+n)),t.lineTo(h(e+i),h(s)),t.closePath(),t.stroke(),t.restore()}}s.GraphicsBox=l,l.__name__=\"GraphicsBox\";class x extends l{constructor({text:t}){super(),this.text=t}set visuals(t){const e=t.color,s=t.alpha,i=t.font_style;let n=t.font_size;const h=t.font,{font_size_scale:r,base_font_size:a}=this,c=(0,o.parse_css_font_size)(n);if(null!=c){let{value:t,unit:e}=c;t*=r,\"em\"==e&&a&&(t*=a,e=\"px\"),n=`${t}${e}`}const l=`${i} ${n} ${h}`;this.font=l,this.color=(0,_.color2css)(e,s),this.line_height=t.line_height;const x=t.align;this._x_anchor=x;const u=t.baseline;this._y_anchor=(()=>{switch(u){case\"top\":return\"top\";case\"middle\":return\"center\";case\"bottom\":return\"bottom\";default:return\"baseline\"}})()}infer_text_height(){if(this.text.includes(\"\\n\"))return\"ascent_descent\";{function t(t){for(const e of new Set(t))if(!(\"0\"<=e&&e<=\"9\"))switch(e){case\",\":case\".\":case\"+\":case\"-\":case\"\\u2212\":case\"e\":continue;default:return!1}return!0}return t(this.text)?\"cap\":\"ascent_descent\"}}_text_line(t){var e;const s=null!==(e=this.text_height_metric)&&void 0!==e?e:this.infer_text_height(),i=(()=>{switch(s){case\"x\":case\"x_descent\":return t.x_height;case\"cap\":case\"cap_descent\":return t.cap_height;case\"ascent\":case\"ascent_descent\":return t.ascent}})(),n=(()=>{switch(s){case\"x\":case\"cap\":case\"ascent\":return 0;case\"x_descent\":case\"cap_descent\":case\"ascent_descent\":return t.descent}})();return{height:i+n,ascent:i,descent:n}}get nlines(){return this.text.split(\"\\n\").length}_size(){var t,e;const{font:i}=this,n=(0,o.font_metrics)(i),h=(this.line_height-1)*n.height,a=\"\"==this.text,c=this.text.split(\"\\n\"),_=c.length,l=c.map((t=>(0,s.text_width)(t,i))),x=this._text_line(n).height*_,u=\"%\"==(null===(t=this.width)||void 0===t?void 0:t.unit)?this.width.value:1,p=\"%\"==(null===(e=this.height)||void 0===e?void 0:e.unit)?this.height.value:1;return{width:(0,r.max)(l)*u,height:a?0:(x+h*(_-1))*p,metrics:n}}_computed_position(t,e,s){const{width:i,height:n}=t,{sx:h,sy:o,x_anchor:r=this._x_anchor,y_anchor:c=this._y_anchor}=this.position;return{x:h-(()=>{if((0,a.isNumber)(r))return r*i;switch(r){case\"left\":return 0;case\"center\":return.5*i;case\"right\":return i}})(),y:o-(()=>{var t;if((0,a.isNumber)(c))return c*n;switch(c){case\"top\":return 0;case\"center\":return.5*n;case\"bottom\":return n;case\"baseline\":if(1!=s)return.5*n;switch(null!==(t=this.text_height_metric)&&void 0!==t?t:this.infer_text_height()){case\"x\":case\"x_descent\":return e.x_height;case\"cap\":case\"cap_descent\":return e.cap_height;case\"ascent\":case\"ascent_descent\":return e.ascent}}})()}}_rect(){const{width:t,height:e,metrics:s}=this._size(),i=this.text.split(\"\\n\").length,{x:n,y:o}=this._computed_position({width:t,height:e},s,i);return new h.BBox({x:n,y:o,width:t,height:e}).rect}paint(t){var e,i;const{font:n}=this,h=(0,o.font_metrics)(n),a=(this.line_height-1)*h.height,c=this.text.split(\"\\n\"),_=c.length,l=c.map((t=>(0,s.text_width)(t,n))),x=this._text_line(h),u=x.height*_,p=\"%\"==(null===(e=this.width)||void 0===e?void 0:e.unit)?this.width.value:1,f=\"%\"==(null===(i=this.height)||void 0===i?void 0:i.unit)?this.height.value:1,g=(0,r.max)(l)*p,d=(u+a*(_-1))*f;t.save(),t.fillStyle=this.color,t.font=this.font,t.textAlign=\"left\",t.textBaseline=\"alphabetic\";const{sx:b,sy:m}=this.position,{align:y}=this,{angle:w}=this;w&&(t.translate(b,m),t.rotate(w),t.translate(-b,-m));let{x:v,y:z}=this._computed_position({width:g,height:d},h,_);if(\"justify\"==y)for(let e=0;e<_;e++){let i=v;const h=c[e].split(\" \"),o=h.length,_=h.map((t=>(0,s.text_width)(t,n))),l=(g-(0,r.sum)(_))/(o-1);for(let e=0;e{switch(y){case\"left\":return 0;case\"center\":return.5*(g-l[e]);case\"right\":return g-l[e]}})();t.fillStyle=this.color,t.fillText(c[e],s,z+x.ascent),z+=x.height+a}t.restore()}}s.TextBox=x,x.__name__=\"TextBox\";class u extends l{constructor(t,e){super(),this.base=t,this.expo=e}get children(){return[this.base,this.expo]}set base_font_size(t){super.base_font_size=t,this.base.base_font_size=t,this.expo.base_font_size=t}set position(t){this._position=t;const e=this.base.size(),s=this.expo.size(),i=this._shift_scale()*e.height,n=Math.max(e.height,i+s.height);this.base.position={sx:0,x_anchor:\"left\",sy:n,y_anchor:\"bottom\"},this.expo.position={sx:e.width,x_anchor:\"left\",sy:i,y_anchor:\"bottom\"}}get position(){return this._position}set visuals(t){this.expo.font_size_scale=.7,this.base.visuals=t,this.expo.visuals=t}_shift_scale(){if(this.base instanceof x&&1==this.base.nlines){const{x_height:t,cap_height:e}=(0,o.font_metrics)(this.base.font);return t/e}return 2/3}infer_text_height(){return this.base.infer_text_height()}_rect(){const t=this.base.bbox(),e=this.expo.bbox(),s=t.union(e),{x:i,y:n}=this._computed_position();return s.translate(i,n).rect}_size(){const t=this.base.size(),e=this.expo.size();return{width:t.width+e.width,height:Math.max(t.height,this._shift_scale()*t.height+e.height)}}paint(t){t.save();const{angle:e}=this;if(e){const{sx:s,sy:i}=this.position;t.translate(s,i),t.rotate(e),t.translate(-s,-i)}const{x:s,y:i}=this._computed_position();t.translate(s,i),this.base.paint(t),this.expo.paint(t),t.restore()}paint_bbox(t){super.paint_bbox(t);const{x:e,y:s}=this._computed_position();t.save(),t.translate(e,s);for(const e of this.children)e.paint_bbox(t);t.restore()}_computed_position(){const{width:t,height:e}=this._size(),{sx:s,sy:i,x_anchor:n=this._x_anchor,y_anchor:h=this._y_anchor}=this.position;return{x:s-(()=>{if((0,a.isNumber)(n))return n*t;switch(n){case\"left\":return 0;case\"center\":return.5*t;case\"right\":return t}})(),y:i-(()=>{if((0,a.isNumber)(h))return h*e;switch(h){case\"top\":return 0;case\"center\":return.5*e;case\"bottom\":return e;case\"baseline\":return.5*e}})()}}}s.BaseExpo=u,u.__name__=\"BaseExpo\";class p{constructor(t){this.items=t}set base_font_size(t){for(const e of this.items)e.base_font_size=t}get length(){return this.items.length}set visuals(t){for(const e of this.items)e.visuals=t;const e={x:0,cap:1,ascent:2,x_descent:3,cap_descent:4,ascent_descent:5},s=(0,r.max_by)(this.items.map((t=>t.infer_text_height())),(t=>e[t]));for(const t of this.items)t.text_height_metric=s}set angle(t){for(const e of this.items)e.angle=t}max_size(){let t=0,e=0;for(const s of this.items){const i=s.size();t=Math.max(t,i.width),e=Math.max(e,i.height)}return{width:t,height:e}}}s.GraphicsBoxes=p,p.__name__=\"GraphicsBoxes\"},\n", + " function _(t,e,n,r,l){r();const a=t(11),c=(()=>{try{return\"undefined\"!=typeof OffscreenCanvas&&null!=new OffscreenCanvas(0,0).getContext(\"2d\")}catch(t){return!1}})()?(t,e)=>new OffscreenCanvas(t,e):(t,e)=>{const n=document.createElement(\"canvas\");return n.width=t,n.height=e,n},o=(()=>{const t=c(0,0).getContext(\"2d\");return e=>{t.font=e;const n=t.measureText(\"M\"),r=t.measureText(\"x\"),l=t.measureText(\"\\xc5\\u015ag|\"),c=l.fontBoundingBoxAscent,o=l.fontBoundingBoxDescent;if(null!=c&&null!=o)return{height:c+o,ascent:c,descent:o,cap_height:n.actualBoundingBoxAscent,x_height:r.actualBoundingBoxAscent};const s=l.actualBoundingBoxAscent,u=l.actualBoundingBoxDescent;if(null!=s&&null!=u)return{height:s+u,ascent:s,descent:u,cap_height:n.actualBoundingBoxAscent,x_height:r.actualBoundingBoxAscent};(0,a.unreachable)()}})(),s=(()=>{const t=c(0,0).getContext(\"2d\");return(e,n)=>{t.font=n;const r=t.measureText(e),l=r.actualBoundingBoxAscent,c=r.actualBoundingBoxDescent;if(null!=l&&null!=c)return{width:r.width,height:l+c,ascent:l,descent:c};(0,a.unreachable)()}})(),u=(()=>{const t=document.createElement(\"canvas\"),e=t.getContext(\"2d\");let n=-1,r=-1;return(l,a=1)=>{e.font=l;const{width:c}=e.measureText(\"M\"),o=c*a,s=Math.ceil(o),u=Math.ceil(2*o),i=Math.ceil(1.5*o);n{let e=0;for(let n=0;n<=i;n++)for(let r=0;r{let e=t.length-4;for(let n=u;n>=i;n--)for(let r=0;r{const t=document.createElement(\"canvas\"),e=t.getContext(\"2d\");let n=-1,r=-1;return(l,a,c=1)=>{e.font=a;const{width:o}=e.measureText(\"M\"),s=o*c,u=Math.ceil(s),i=Math.ceil(2*s),f=Math.ceil(1.5*s);(n{let e=0;for(let n=0;n<=f;n++)for(let r=0;r{let e=t.length-4;for(let n=i;n>=f;n--)for(let r=0;r{try{return o(\"normal 10px sans-serif\"),o}catch(t){return u}})(),h=(()=>{try{return s(\"A\",\"normal 10px sans-serif\"),s}catch(t){return i}})(),g=new Map;function d(t){let e=g.get(t);return null==e&&(e={font:f(t),glyphs:new Map},g.set(t,e)),e.font}n.font_metrics=d,n.glyph_metrics=function(t,e){let n=g.get(e);null==n&&(d(e),n=g.get(e));let r=n.glyphs.get(t);return null==r&&(r=h(t,e),n.glyphs.set(t,r)),r},n.parse_css_font_size=function(t){const e=t.match(/^\\s*(\\d+(\\.\\d+)?)(\\w+)\\s*$/);if(null!=e){const[,t,,n]=e,r=Number(t);if(isFinite(r))return{value:r,unit:n}}return null}},\n", + " function _(t,s,r,n,i){n();const{sin:e,cos:a}=Math;class h{constructor(t=1,s=0,r=0,n=1,i=0,e=0){this.a=t,this.b=s,this.c=r,this.d=n,this.e=i,this.f=e}toString(){const{a:t,b:s,c:r,d:n,e:i,f:e}=this;return`matrix(${t}, ${s}, ${r}, ${n}, ${i}, ${e})`}static from_DOMMatrix(t){const{a:s,b:r,c:n,d:i,e,f:a}=t;return new h(s,r,n,i,e,a)}to_DOMMatrix(){const{a:t,b:s,c:r,d:n,e:i,f:e}=this;return new DOMMatrix([t,s,r,n,i,e])}clone(){const{a:t,b:s,c:r,d:n,e:i,f:e}=this;return new h(t,s,r,n,i,e)}get is_identity(){const{a:t,b:s,c:r,d:n,e:i,f:e}=this;return 1==t&&0==s&&0==r&&1==n&&0==i&&0==e}apply_point(t){const[s,r]=this.apply(t.x,t.y);return{x:s,y:r}}apply_rect(t){return{p0:this.apply_point(t.p0),p1:this.apply_point(t.p1),p2:this.apply_point(t.p2),p3:this.apply_point(t.p3)}}apply(t,s){const{a:r,b:n,c:i,d:e,e:a,f:h}=this;return[r*t+i*s+a,n*t+e*s+h]}iv_apply(t,s){const{a:r,b:n,c:i,d:e,e:a,f:h}=this,c=t.length;for(let o=0;o{const h={max:4,fit:3,min:2,fixed:1};return h[i]>h[t]};if(\"fixed\"!=n&&\"fixed\"!=s)if(n==s){const n=t,s=_(t/e),r=_(h*e),g=h;Math.abs(i.width-n)+Math.abs(i.height-s)<=Math.abs(i.width-r)+Math.abs(i.height-g)?(t=n,h=s):(t=r,h=g)}else r(n,s)?h=_(t/e):t=_(h*e);else\"fixed\"==n?h=_(t/e):\"fixed\"==s&&(t=_(h*e))}return{width:t,height:h}}measure(i){if(!this.sizing.visible)return{width:0,height:0};const t=i=>\"fixed\"==this.sizing.width_policy&&null!=this.sizing.width?this.sizing.width:i,h=i=>\"fixed\"==this.sizing.height_policy&&null!=this.sizing.height?this.sizing.height:i,e=new s.Sizeable(i).shrink_by(this.sizing.margin).map(t,h),n=this._measure(e),r=this.clip_size(n,e),g=t(r.width),l=h(r.height),a=this.apply_aspect(e,{width:g,height:l});return Object.assign(Object.assign({},n),a)}compute(i={}){const t=this.measure({width:null!=i.width&&this.is_width_expanding()?i.width:1/0,height:null!=i.height&&this.is_height_expanding()?i.height:1/0}),{width:h,height:e}=t,n=new r.BBox({left:0,top:0,width:h,height:e});let s;if(null!=t.inner){const{left:i,top:n,right:g,bottom:l}=t.inner;s=new r.BBox({left:i,top:n,right:h-g,bottom:e-l})}this.set_geometry(n,s)}get xview(){return this.bbox.xview}get yview(){return this.bbox.yview}clip_size(i,t){function h(i,t,h,e){return null==h?h=0:(0,g.isNumber)(h)||(h=Math.round(h.percent*t)),null==e?e=1/0:(0,g.isNumber)(e)||(e=Math.round(e.percent*t)),a(h,l(i,e))}return{width:h(i.width,t.width,this.sizing.min_width,this.sizing.max_width),height:h(i.height,t.height,this.sizing.min_height,this.sizing.max_height)}}has_size_changed(){const{_dirty:i}=this;return this._dirty=!1,i}}h.Layoutable=o,o.__name__=\"Layoutable\";class d extends o{_measure(i){const{width_policy:t,height_policy:h}=this.sizing;return{width:(()=>{const{width:h}=this.sizing;if(i.width==1/0)return null!=h?h:0;switch(t){case\"fixed\":return null!=h?h:0;case\"min\":return null!=h?l(i.width,h):0;case\"fit\":return null!=h?l(i.width,h):i.width;case\"max\":return null!=h?a(i.width,h):i.width}})(),height:(()=>{const{height:t}=this.sizing;if(i.height==1/0)return null!=t?t:0;switch(h){case\"fixed\":return null!=t?t:0;case\"min\":return null!=t?l(i.height,t):0;case\"fit\":return null!=t?l(i.height,t):i.height;case\"max\":return null!=t?a(i.height,t):i.height}})()}}}h.LayoutItem=d,d.__name__=\"LayoutItem\";class u extends o{_measure(i){const t=this._content_size(),h=i.bounded_to(this.sizing.size).bounded_to(t);return{width:(()=>{switch(this.sizing.width_policy){case\"fixed\":return null!=this.sizing.width?this.sizing.width:t.width;case\"min\":return t.width;case\"fit\":return h.width;case\"max\":return Math.max(t.width,h.width)}})(),height:(()=>{switch(this.sizing.height_policy){case\"fixed\":return null!=this.sizing.height?this.sizing.height:t.height;case\"min\":return t.height;case\"fit\":return h.height;case\"max\":return Math.max(t.height,h.height)}})()}}}h.ContentLayoutable=u,u.__name__=\"ContentLayoutable\"},\n", + " function _(e,t,s,a,_){a();const r=e(62),n=e(61),g=e(58),i=e(63),c=e(67),h=e(65),l=e(13),o=e(11);class x{constructor(e,t,s,a,_={},r={},n={},g={}){this.in_x_scale=e,this.in_y_scale=t,this.x_range=s,this.y_range=a,this.extra_x_ranges=_,this.extra_y_ranges=r,this.extra_x_scales=n,this.extra_y_scales=g,this._bbox=new h.BBox,(0,o.assert)(null==e.source_range&&null==e.target_range),(0,o.assert)(null==t.source_range&&null==t.target_range),this._configure_scales()}get bbox(){return this._bbox}_get_ranges(e,t){return new Map((0,l.entries)(Object.assign(Object.assign({},t),{default:e})))}_get_scales(e,t,s,a){var _;const g=new Map((0,l.entries)(Object.assign(Object.assign({},t),{default:e}))),h=new Map;for(const[t,l]of s){if(l instanceof c.FactorRange!=e instanceof r.CategoricalScale)throw new Error(`Range ${l.type} is incompatible is Scale ${e.type}`);e instanceof n.LogScale&&l instanceof i.DataRange1d&&(l.scale_hint=\"log\");const s=(null!==(_=g.get(t))&&void 0!==_?_:e).clone();s.setv({source_range:l,target_range:a}),h.set(t,s)}return h}_configure_frame_ranges(){const{bbox:e}=this;this._x_target=new g.Range1d({start:e.left,end:e.right}),this._y_target=new g.Range1d({start:e.bottom,end:e.top})}_configure_scales(){this._configure_frame_ranges(),this._x_ranges=this._get_ranges(this.x_range,this.extra_x_ranges),this._y_ranges=this._get_ranges(this.y_range,this.extra_y_ranges),this._x_scales=this._get_scales(this.in_x_scale,this.extra_x_scales,this._x_ranges,this._x_target),this._y_scales=this._get_scales(this.in_y_scale,this.extra_y_scales,this._y_ranges,this._y_target)}_update_scales(){this._configure_frame_ranges();for(const[,e]of this._x_scales)e.target_range=this._x_target;for(const[,e]of this._y_scales)e.target_range=this._y_target}set_geometry(e){this._bbox=e,this._update_scales()}get x_target(){return this._x_target}get y_target(){return this._y_target}get x_ranges(){return this._x_ranges}get y_ranges(){return this._y_ranges}get x_scales(){return this._x_scales}get y_scales(){return this._y_scales}get x_scale(){return this._x_scales.get(\"default\")}get y_scale(){return this._y_scales.get(\"default\")}get xscales(){return(0,l.to_object)(this.x_scales)}get yscales(){return(0,l.to_object)(this.y_scales)}}s.CartesianFrame=x,x.__name__=\"CartesianFrame\"},\n", + " function _(i,s,x,A,o){A(),o(\"Axis\",i(128).Axis),o(\"CategoricalAxis\",i(140).CategoricalAxis),o(\"ContinuousAxis\",i(143).ContinuousAxis),o(\"DatetimeAxis\",i(144).DatetimeAxis),o(\"LinearAxis\",i(145).LinearAxis),o(\"LogAxis\",i(162).LogAxis),o(\"MercatorAxis\",i(165).MercatorAxis)},\n", + " function _(t,e,i,s,a){s();const o=t(1);var l;const n=t(129),_=t(130),r=t(131),h=t(132),c=(0,o.__importStar)(t(48)),b=t(20),u=t(24),m=t(123),d=t(9),x=t(13),f=t(8),g=t(120),p=t(67),v=t(133),w=t(113),j=t(11),k=t(8),y=t(134),{abs:z}=Math;class M extends n.GuideRendererView{constructor(){super(...arguments),this._axis_label_view=null,this._major_label_views=new Map}async lazy_initialize(){await super.lazy_initialize(),await this._init_axis_label(),await this._init_major_labels()}async _init_axis_label(){const{axis_label:t}=this.model;if(null!=t){const e=(0,k.isString)(t)?(0,y.parse_delimited_string)(t):t;this._axis_label_view=await(0,w.build_view)(e,{parent:this})}else this._axis_label_view=null}async _init_major_labels(){const{major_label_overrides:t}=this.model;for(const[e,i]of(0,x.entries)(t)){const t=(0,k.isString)(i)?(0,y.parse_delimited_string)(i):i;this._major_label_views.set(e,await(0,w.build_view)(t,{parent:this}))}}update_layout(){this.layout=new m.SideLayout(this.panel,(()=>this.get_size()),!0),this.layout.on_resize((()=>this._coordinates=void 0))}get_size(){const{visible:t,fixed_location:e}=this.model;if(t&&null==e&&this.is_renderable){const{extents:t}=this;return{width:0,height:Math.round(t.tick+t.tick_label+t.axis_label)}}return{width:0,height:0}}get is_renderable(){const[t,e]=this.ranges;return t.is_valid&&e.is_valid}_render(){var t;if(!this.is_renderable)return;const{tick_coords:e,extents:i}=this,s=this.layer.ctx;s.save(),this._draw_rule(s,i),this._draw_major_ticks(s,i,e),this._draw_minor_ticks(s,i,e),this._draw_major_labels(s,i,e),this._draw_axis_label(s,i,e),null===(t=this._paint)||void 0===t||t.call(this,s,i,e),s.restore()}connect_signals(){super.connect_signals();const{axis_label:t,major_label_overrides:e}=this.model.properties;this.on_change(t,(async()=>{var t;null===(t=this._axis_label_view)||void 0===t||t.remove(),await this._init_axis_label()})),this.on_change(e,(async()=>{for(const t of this._major_label_views.values())t.remove();await this._init_major_labels()})),this.connect(this.model.change,(()=>this.plot_view.request_layout()))}get needs_clip(){return null!=this.model.fixed_location}_draw_rule(t,e){if(!this.visuals.axis_line.doit)return;const[i,s]=this.rule_coords,[a,o]=this.coordinates.map_to_screen(i,s),[l,n]=this.normals,[_,r]=this.offsets;this.visuals.axis_line.set_value(t),t.beginPath();for(let e=0;e0?s+i+3:0}_draw_axis_label(t,e,i){if(null==this._axis_label_view||null!=this.model.fixed_location)return;const[s,a]=(()=>{const{bbox:t}=this.layout;switch(this.panel.side){case\"above\":return[t.hcenter,t.bottom];case\"below\":return[t.hcenter,t.top];case\"left\":return[t.right,t.vcenter];case\"right\":return[t.left,t.vcenter]}})(),[o,l]=this.normals,n=e.tick+e.tick_label+this.model.axis_label_standoff,{vertical_align:_,align:r}=this.panel.get_label_text_heuristics(\"parallel\"),h={sx:s+o*n,sy:a+l*n,x_anchor:r,y_anchor:_},c=this._axis_label_view.graphics();c.visuals=this.visuals.axis_label_text.values(),c.angle=this.panel.get_label_angle_heuristic(\"parallel\"),this.plot_view.base_font_size&&(c.base_font_size=this.plot_view.base_font_size),c.position=h,c.align=r,c.paint(t)}_draw_ticks(t,e,i,s,a){if(!a.doit)return;const[o,l]=e,[n,_]=this.coordinates.map_to_screen(o,l),[r,h]=this.normals,[c,b]=this.offsets,[u,m]=[r*(c-i),h*(b-i)],[d,x]=[r*(c+s),h*(b+s)];a.set_value(t),t.beginPath();for(let e=0;et.bbox())),M=(()=>{const[t]=this.ranges;return t.is_reversed?0==this.dimension?(t,e)=>z[t].left-z[e].right:(t,e)=>z[e].top-z[t].bottom:0==this.dimension?(t,e)=>z[e].left-z[t].right:(t,e)=>z[t].top-z[e].bottom})(),{major_label_policy:O}=this.model,T=O.filter(k,z,M),A=[...T.ones()];if(0!=A.length){const t=this.parent.canvas_view.bbox,e=e=>{const i=z[e];if(i.left<0){const t=-i.left,{position:s}=y[e];y[e].position=Object.assign(Object.assign({},s),{sx:s.sx+t})}else if(i.right>t.width){const s=i.right-t.width,{position:a}=y[e];y[e].position=Object.assign(Object.assign({},a),{sx:a.sx-s})}},i=e=>{const i=z[e];if(i.top<0){const t=-i.top,{position:s}=y[e];y[e].position=Object.assign(Object.assign({},s),{sy:s.sy+t})}else if(i.bottom>t.height){const s=i.bottom-t.height,{position:a}=y[e];y[e].position=Object.assign(Object.assign({},a),{sy:a.sy-s})}},s=A[0],a=A[A.length-1];0==this.dimension?(e(s),e(a)):(i(s),i(a))}for(const e of T){y[e].paint(t)}}_tick_extent(){return this.model.major_tick_out}_tick_label_extents(){const t=this.tick_coords.major,e=this.compute_labels(t[this.dimension]),i=this.model.major_label_orientation,s=this.model.major_label_standoff,a=this.visuals.major_label_text;return[this._oriented_labels_extent(e,i,s,a)]}get extents(){const t=this._tick_label_extents();return{tick:this._tick_extent(),tick_labels:t,tick_label:(0,d.sum)(t),axis_label:this._axis_label_extent()}}_oriented_labels_extent(t,e,i,s){if(0==t.length||!s.doit)return 0;const a=this.panel.get_label_angle_heuristic(e);t.visuals=s.values(),t.angle=a,t.base_font_size=this.plot_view.base_font_size;const o=t.max_size(),l=0==this.dimension?o.height:o.width;return l>0?i+l+3:0}get normals(){return this.panel.normals}get dimension(){return this.panel.dimension}compute_labels(t){const e=this.model.formatter.format_graphics(t,this),{_major_label_views:i}=this,s=new Set;for(let a=0;az(l-n)?(t=r(_(a,o),l),s=_(r(a,o),n)):(t=_(a,o),s=r(a,o)),[t,s]}}get rule_coords(){const t=this.dimension,e=(t+1)%2,[i]=this.ranges,[s,a]=this.computed_bounds,o=[new Array(2),new Array(2)];return o[t][0]=Math.max(s,i.min),o[t][1]=Math.min(a,i.max),o[t][0]>o[t][1]&&(o[t][0]=o[t][1]=NaN),o[e][0]=this.loc,o[e][1]=this.loc,o}get tick_coords(){const t=this.dimension,e=(t+1)%2,[i]=this.ranges,[s,a]=this.computed_bounds,o=this.model.ticker.get_ticks(s,a,i,this.loc),l=o.major,n=o.minor,_=[[],[]],r=[[],[]],[h,c]=[i.min,i.max];for(let i=0;ic||(_[t].push(l[i]),_[e].push(this.loc));for(let i=0;ic||(r[t].push(n[i]),r[e].push(this.loc));return{major:_,minor:r}}get loc(){const{fixed_location:t}=this.model;if(null!=t){if((0,f.isNumber)(t))return t;const[,e]=this.ranges;if(e instanceof p.FactorRange)return e.synthetic(t);(0,j.unreachable)()}const[,e]=this.ranges;switch(this.panel.side){case\"left\":case\"below\":return e.start;case\"right\":case\"above\":return e.end}}serializable_state(){return Object.assign(Object.assign({},super.serializable_state()),{bbox:this.layout.bbox.box})}remove(){var t;null===(t=this._axis_label_view)||void 0===t||t.remove();for(const t of this._major_label_views.values())t.remove();super.remove()}has_finished(){if(!super.has_finished())return!1;if(null!=this._axis_label_view&&!this._axis_label_view.has_finished())return!1;for(const t of this._major_label_views.values())if(!t.has_finished())return!1;return!0}}i.AxisView=M,M.__name__=\"AxisView\";class O extends n.GuideRenderer{constructor(t){super(t)}}i.Axis=O,l=O,O.__name__=\"Axis\",l.prototype.default_view=M,l.mixins([[\"axis_\",c.Line],[\"major_tick_\",c.Line],[\"minor_tick_\",c.Line],[\"major_label_\",c.Text],[\"axis_label_\",c.Text]]),l.define((({Any:t,Int:e,Number:i,String:s,Ref:a,Dict:o,Tuple:l,Or:n,Nullable:c,Auto:u})=>({bounds:[n(l(i,i),u),\"auto\"],ticker:[a(_.Ticker)],formatter:[a(r.TickFormatter)],axis_label:[c(n(s,a(v.BaseText))),null],axis_label_standoff:[e,5],major_label_standoff:[e,5],major_label_orientation:[n(b.TickLabelOrientation,i),\"horizontal\"],major_label_overrides:[o(n(s,a(v.BaseText))),{}],major_label_policy:[a(h.LabelingPolicy),()=>new h.AllLabels],major_tick_in:[i,2],major_tick_out:[i,6],minor_tick_in:[i,0],minor_tick_out:[i,4],fixed_location:[c(n(i,t)),null]}))),l.override({axis_line_color:\"black\",major_tick_line_color:\"black\",minor_tick_line_color:\"black\",major_label_text_font_size:\"11px\",major_label_text_align:\"center\",major_label_text_baseline:\"alphabetic\",axis_label_text_font_size:\"13px\",axis_label_text_font_style:\"italic\"})},\n", + " function _(e,r,d,n,i){var s;n();const _=e(41);class u extends _.RendererView{}d.GuideRendererView=u,u.__name__=\"GuideRendererView\";class c extends _.Renderer{constructor(e){super(e)}}d.GuideRenderer=c,s=c,c.__name__=\"GuideRenderer\",s.override({level:\"guide\"})},\n", + " function _(c,e,n,s,o){s();const r=c(53);class t extends r.Model{constructor(c){super(c)}}n.Ticker=t,t.__name__=\"Ticker\"},\n", + " function _(t,o,r,e,c){e();const n=t(53),a=t(120);class m extends n.Model{constructor(t){super(t)}format_graphics(t,o){return this.doFormat(t,o).map((t=>new a.TextBox({text:t})))}compute(t,o){return this.doFormat([t],null!=o?o:{loc:0})[0]}v_compute(t,o){return this.doFormat(t,null!=o?o:{loc:0})}}r.TickFormatter=m,m.__name__=\"TickFormatter\"},\n", + " function _(e,n,s,t,i){var c,r;t();const l=e(53),o=e(13),a=e(34),u=e(8),d=e(24);class _ extends l.Model{constructor(e){super(e)}}s.LabelingPolicy=_,_.__name__=\"LabelingPolicy\";class f extends _{constructor(e){super(e)}filter(e,n,s){return e}}s.AllLabels=f,f.__name__=\"AllLabels\";class m extends _{constructor(e){super(e)}filter(e,n,s){const{min_distance:t}=this;let i=null;for(const n of e)null!=i&&s(i,n)({min_distance:[e,5]})));class b extends _{constructor(e){super(e)}get names(){return(0,o.keys)(this.args)}get values(){return(0,o.values)(this.args)}get func(){const e=(0,a.use_strict)(this.code);return new d.GeneratorFunction(\"indices\",\"bboxes\",\"distance\",...this.names,e)}filter(e,n,s){const t=Object.create(null),i=this.func.call(t,e,n,s,...this.values);let c=i.next();if(c.done&&void 0!==c.value){const{value:n}=c;return n instanceof d.Indices?n:void 0===n?e:(0,u.isIterable)(n)?d.Indices.from_indices(e.size,n):d.Indices.all_unset(e.size)}{const n=[];do{n.push(c.value),c=i.next()}while(!c.done);return d.Indices.from_indices(e.size,n)}}}s.CustomLabelingPolicy=b,r=b,b.__name__=\"CustomLabelingPolicy\",r.define((({Unknown:e,String:n,Dict:s})=>({args:[s(e),{}],code:[n,\"\"]})))},\n", + " function _(e,s,t,n,a){var _;n();const x=e(53),c=e(42);class i extends c.View{}t.BaseTextView=i,i.__name__=\"BaseTextView\";class o extends x.Model{constructor(e){super(e)}}t.BaseText=o,_=o,o.__name__=\"BaseText\",_.define((({String:e})=>({text:[e]})))},\n", + " function _(n,e,t,i,r){i();const s=n(135),l=n(139),d=[{start:\"$$\",end:\"$$\",inline:!1},{start:\"\\\\[\",end:\"\\\\]\",inline:!1},{start:\"\\\\(\",end:\"\\\\)\",inline:!0}];t.parse_delimited_string=function(n){for(const e of d){const t=n.indexOf(e.start),i=t+e.start.length;if(0==t){const t=n.indexOf(e.end,i),r=t;if(t==n.length-e.end.length)return new s.TeX({text:n.slice(i,r),inline:e.inline});break}}return new l.PlainText({text:n})}},\n", + " function _(t,e,s,i,n){var o,r,a;i();const h=t(8),_=t(136),l=t(22),c=t(120),d=t(121),u=t(122),g=t(65),p=t(133),x=t(137);class m extends p.BaseTextView{constructor(){super(...arguments),this._position={sx:0,sy:0},this.align=\"left\",this._x_anchor=\"left\",this._y_anchor=\"center\",this._base_font_size=13,this.font_size_scale=1,this.svg_image=null}graphics(){return this}infer_text_height(){return\"ascent_descent\"}set base_font_size(t){null!=t&&(this._base_font_size=t)}get base_font_size(){return this._base_font_size}get has_image_loaded(){return null!=this.svg_image}_rect(){const{width:t,height:e}=this._size(),{x:s,y:i}=this._computed_position();return new g.BBox({x:s,y:i,width:t,height:e}).rect}set position(t){this._position=t}get position(){return this._position}get text(){return this.model.text}get provider(){return x.default_provider}async lazy_initialize(){await super.lazy_initialize(),\"not_started\"==this.provider.status&&await this.provider.fetch(),\"not_started\"!=this.provider.status&&\"loading\"!=this.provider.status||this.provider.ready.connect((()=>this.load_image())),\"loaded\"==this.provider.status&&await this.load_image()}connect_signals(){super.connect_signals(),this.on_change(this.model.properties.text,(()=>this.load_image()))}set visuals(t){const e=t.color,s=t.alpha,i=t.font_style;let n=t.font_size;const o=t.font,{font_size_scale:r,_base_font_size:a}=this,h=(0,d.parse_css_font_size)(n);if(null!=h){let{value:t,unit:e}=h;t*=r,\"em\"==e&&a&&(t*=a,e=\"px\"),n=`${t}${e}`}const _=`${i} ${n} ${o}`;this.font=_,this.color=(0,l.color2css)(e,s)}_computed_position(){const{width:t,height:e}=this._size(),{sx:s,sy:i,x_anchor:n=this._x_anchor,y_anchor:o=this._y_anchor}=this.position;return{x:s-(()=>{if((0,h.isNumber)(n))return n*t;switch(n){case\"left\":return 0;case\"center\":return.5*t;case\"right\":return t}})(),y:i-(()=>{if((0,h.isNumber)(o))return o*e;switch(o){case\"top\":return 0;case\"center\":return.5*e;case\"bottom\":return e;case\"baseline\":return.5*e}})()}}size(){const{width:t,height:e}=this._size(),{angle:s}=this;if(s){const i=Math.cos(Math.abs(s)),n=Math.sin(Math.abs(s));return{width:Math.abs(t*i+e*n),height:Math.abs(t*n+e*i)}}return{width:t,height:e}}get_text_dimensions(){return{width:(0,c.text_width)(this.model.text,this.font),height:(0,d.font_metrics)(this.font).height}}get_image_dimensions(){var t,e,s,i;const n=parseFloat(null!==(e=null===(t=this.svg_element.getAttribute(\"height\"))||void 0===t?void 0:t.replace(/([A-z])/g,\"\"))&&void 0!==e?e:\"0\"),o=parseFloat(null!==(i=null===(s=this.svg_element.getAttribute(\"width\"))||void 0===s?void 0:s.replace(/([A-z])/g,\"\"))&&void 0!==i?i:\"0\");return{width:(0,d.font_metrics)(this.font).x_height*o,height:(0,d.font_metrics)(this.font).x_height*n}}_size(){return this.has_image_loaded?this.get_image_dimensions():this.get_text_dimensions()}bbox(){const{p0:t,p1:e,p2:s,p3:i}=this.rect(),n=Math.min(t.x,e.x,s.x,i.x),o=Math.min(t.y,e.y,s.y,i.y),r=Math.max(t.x,e.x,s.x,i.x),a=Math.max(t.y,e.y,s.y,i.y);return new g.BBox({left:n,right:r,top:o,bottom:a})}rect(){const t=this._rect(),{angle:e}=this;if(e){const{sx:s,sy:i}=this.position,n=new u.AffineTransform;return n.translate(s,i),n.rotate(e),n.translate(-s,-i),n.apply_rect(t)}return t}paint_rect(t){const{p0:e,p1:s,p2:i,p3:n}=this.rect();t.save(),t.strokeStyle=\"red\",t.lineWidth=1,t.beginPath();const{round:o}=Math;t.moveTo(o(e.x),o(e.y)),t.lineTo(o(s.x),o(s.y)),t.lineTo(o(i.x),o(i.y)),t.lineTo(o(n.x),o(n.y)),t.closePath(),t.stroke(),t.restore()}paint_bbox(t){const{x:e,y:s,width:i,height:n}=this.bbox();t.save(),t.strokeStyle=\"blue\",t.lineWidth=1,t.beginPath();const{round:o}=Math;t.moveTo(o(e),o(s)),t.lineTo(o(e),o(s+n)),t.lineTo(o(e+i),o(s+n)),t.lineTo(o(e+i),o(s)),t.closePath(),t.stroke(),t.restore()}async load_image(){if(null==this.provider.MathJax)return null;const t=this._process_text(this.model.text);if(null==t)return this._has_finished=!0,null;const e=t.children[0];this.svg_element=e,e.setAttribute(\"font\",this.font),e.setAttribute(\"stroke\",this.color);const s=e.outerHTML,i=new Blob([s],{type:\"image/svg+xml\"}),n=URL.createObjectURL(i);try{this.svg_image=await(0,_.load_image)(n)}finally{URL.revokeObjectURL(n)}return this.parent.request_layout(),this.svg_image}paint(t){t.save();const{sx:e,sy:s}=this.position;this.angle&&(t.translate(e,s),t.rotate(this.angle),t.translate(-e,-s));const{x:i,y:n}=this._computed_position();if(null!=this.svg_image){const{width:e,height:s}=this.get_image_dimensions();t.drawImage(this.svg_image,i,n,e,s)}else t.fillStyle=this.color,t.font=this.font,t.textAlign=\"left\",t.textBaseline=\"alphabetic\",t.fillText(this.model.text,i,n+(0,d.font_metrics)(this.font).ascent);t.restore(),this._has_finished||\"failed\"!=this.provider.status&&!this.has_image_loaded||(this._has_finished=!0,this.parent.notify_finished_after_paint())}}s.MathTextView=m,m.__name__=\"MathTextView\";class f extends p.BaseText{constructor(t){super(t)}}s.MathText=f,f.__name__=\"MathText\";class v extends m{_process_text(t){}}s.AsciiView=v,v.__name__=\"AsciiView\";class y extends f{constructor(t){super(t)}}s.Ascii=y,o=y,y.__name__=\"Ascii\",o.prototype.default_view=v;class w extends m{_process_text(t){var e;return null===(e=this.provider.MathJax)||void 0===e?void 0:e.mathml2svg(t.trim())}}s.MathMLView=w,w.__name__=\"MathMLView\";class b extends f{constructor(t){super(t)}}s.MathML=b,r=b,b.__name__=\"MathML\",r.prototype.default_view=w;class M extends m{_process_text(t){var e;return null===(e=this.provider.MathJax)||void 0===e?void 0:e.tex2svg(t,void 0,this.model.macros)}}s.TeXView=M,M.__name__=\"TeXView\";class T extends f{constructor(t){super(t)}}s.TeX=T,a=T,T.__name__=\"TeX\",a.prototype.default_view=M,a.define((({Boolean:t,Number:e,String:s,Dict:i,Tuple:n,Or:o})=>({macros:[i(o(s,n(s,e))),{}],inline:[t,!1]})))},\n", + " function _(i,e,t,s,o){s();const a=i(19);t.load_image=async function(i,e){return new n(i,e).promise};class n{constructor(i,e={}){this._image=new Image,this._finished=!1;const{attempts:t=1,timeout:s=1}=e;this.promise=new Promise(((o,n)=>{this._image.crossOrigin=\"anonymous\";let r=0;this._image.onerror=()=>{if(++r==t){const s=`unable to load ${i} image after ${t} attempts`;if(a.logger.warn(s),null==this._image.crossOrigin)return void(null!=e.failed&&e.failed());a.logger.warn(`attempting to load ${i} without a cross origin policy`),this._image.crossOrigin=null,r=0}setTimeout((()=>this._image.src=i),s)},this._image.onload=()=>{this._finished=!0,null!=e.loaded&&e.loaded(this._image),o(this._image)},this._image.src=i}))}get finished(){return this._finished}get image(){if(this._finished)return this._image;throw new Error(\"not loaded yet\")}}t.ImageLoader=n,n.__name__=\"ImageLoader\"},\n", + " function _(t,e,a,s,n){var r=this&&this.__createBinding||(Object.create?function(t,e,a,s){void 0===s&&(s=a),Object.defineProperty(t,s,{enumerable:!0,get:function(){return e[a]}})}:function(t,e,a,s){void 0===s&&(s=a),t[s]=e[a]}),i=this&&this.__setModuleDefault||(Object.create?function(t,e){Object.defineProperty(t,\"default\",{enumerable:!0,value:e})}:function(t,e){t.default=e}),d=this&&this.__importStar||function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var a in t)\"default\"!==a&&Object.prototype.hasOwnProperty.call(t,a)&&r(e,t,a);return i(e,t),e};s();const o=t(15),u=t(138);class c{constructor(){this.ready=new o.Signal0(this,\"ready\"),this.status=\"not_started\"}}a.MathJaxProvider=c,c.__name__=\"MathJaxProvider\";class h extends c{get MathJax(){return null}async fetch(){this.status=\"failed\"}}a.NoProvider=h,h.__name__=\"NoProvider\";class l extends c{get MathJax(){return\"undefined\"!=typeof MathJax?MathJax:null}async fetch(){const t=document.createElement(\"script\");t.src=\"https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-svg.js\",t.onload=()=>{this.status=\"loaded\",this.ready.emit()},t.onerror=()=>{this.status=\"failed\"},this.status=\"loading\",document.head.appendChild(t)}}a.CDNProvider=l,l.__name__=\"CDNProvider\";class _ extends c{get MathJax(){return this._mathjax}async fetch(){this.status=\"loading\";try{const e=await(0,u.load_module)(Promise.resolve().then((()=>d(t(519)))));this._mathjax=e,this.status=\"loaded\",this.ready.emit()}catch(t){this.status=\"failed\"}}}a.BundleProvider=_,_.__name__=\"BundleProvider\",a.default_provider=new _},\n", + " function _(n,r,o,t,c){t(),o.load_module=async function(n){try{return await n}catch(n){if((r=n)instanceof Error&&\"code\"in r&&\"MODULE_NOT_FOUND\"===n.code)return null;throw n}var r}},\n", + " function _(e,t,i,n,s){var a;n();const x=e(133),_=e(120);class l extends x.BaseTextView{initialize(){super.initialize(),this._has_finished=!0}graphics(){return new _.TextBox({text:this.model.text})}}i.PlainTextView=l,l.__name__=\"PlainTextView\";class r extends x.BaseText{constructor(e){super(e)}}i.PlainText=r,a=r,r.__name__=\"PlainText\",a.prototype.default_view=l},\n", + " function _(t,s,o,e,i){e();const r=t(1);var a;const l=t(128),_=t(141),n=t(142),p=(0,r.__importStar)(t(48)),c=t(20),h=t(120),m=t(8);class u extends l.AxisView{_paint(t,s,o){this._draw_group_separators(t,s,o)}_draw_group_separators(t,s,o){const[e]=this.ranges,[i,r]=this.computed_bounds;if(!e.tops||e.tops.length<2||!this.visuals.separator_line.doit)return;const a=this.dimension,l=(a+1)%2,_=[[],[]];let n=0;for(let t=0;ti&&pnew h.GraphicsBoxes(t.map((t=>(0,m.isString)(t)?new h.TextBox({text:t}):t))),_=t=>l(this.model.formatter.doFormat(t,this));if(1==t.levels){const t=_(i.major);a.push([t,r.major,this.model.major_label_orientation,this.visuals.major_label_text])}else if(2==t.levels){const t=_(i.major.map((t=>t[1])));a.push([t,r.major,this.model.major_label_orientation,this.visuals.major_label_text]),a.push([l(i.tops),r.tops,this.model.group_label_orientation,this.visuals.group_text])}else if(3==t.levels){const t=_(i.major.map((t=>t[2]))),s=i.mids.map((t=>t[1]));a.push([t,r.major,this.model.major_label_orientation,this.visuals.major_label_text]),a.push([l(s),r.mids,this.model.subgroup_label_orientation,this.visuals.subgroup_text]),a.push([l(i.tops),r.tops,this.model.group_label_orientation,this.visuals.group_text])}return a}get tick_coords(){const t=this.dimension,s=(t+1)%2,[o]=this.ranges,[e,i]=this.computed_bounds,r=this.model.ticker.get_ticks(e,i,o,this.loc),a={major:[[],[]],mids:[[],[]],tops:[[],[]],minor:[[],[]]};return a.major[t]=r.major,a.major[s]=r.major.map((()=>this.loc)),3==o.levels&&(a.mids[t]=r.mids,a.mids[s]=r.mids.map((()=>this.loc))),o.levels>1&&(a.tops[t]=r.tops,a.tops[s]=r.tops.map((()=>this.loc))),a}}o.CategoricalAxisView=u,u.__name__=\"CategoricalAxisView\";class d extends l.Axis{constructor(t){super(t)}}o.CategoricalAxis=d,a=d,d.__name__=\"CategoricalAxis\",a.prototype.default_view=u,a.mixins([[\"separator_\",p.Line],[\"group_\",p.Text],[\"subgroup_\",p.Text]]),a.define((({Number:t,Or:s})=>({group_label_orientation:[s(c.TickLabelOrientation,t),\"parallel\"],subgroup_label_orientation:[s(c.TickLabelOrientation,t),\"parallel\"]}))),a.override({ticker:()=>new _.CategoricalTicker,formatter:()=>new n.CategoricalTickFormatter,separator_line_color:\"lightgrey\",separator_line_width:2,group_text_font_style:\"bold\",group_text_font_size:\"11px\",group_text_color:\"grey\",subgroup_text_font_style:\"bold\",subgroup_text_font_size:\"11px\"})},\n", + " function _(t,c,o,s,e){s();const r=t(130);class i extends r.Ticker{constructor(t){super(t)}get_ticks(t,c,o,s){var e,r;return{major:this._collect(o.factors,o,t,c),minor:[],tops:this._collect(null!==(e=o.tops)&&void 0!==e?e:[],o,t,c),mids:this._collect(null!==(r=o.mids)&&void 0!==r?r:[],o,t,c)}}_collect(t,c,o,s){const e=[];for(const r of t){const t=c.synthetic(r);t>o&&tnew _.DatetimeTicker,formatter:()=>new m.DatetimeTickFormatter})},\n", + " function _(e,i,s,n,r){var t;n();const a=e(143),o=e(146),c=e(147);class _ extends a.ContinuousAxisView{}s.LinearAxisView=_,_.__name__=\"LinearAxisView\";class u extends a.ContinuousAxis{constructor(e){super(e)}}s.LinearAxis=u,t=u,u.__name__=\"LinearAxis\",t.prototype.default_view=_,t.override({ticker:()=>new c.BasicTicker,formatter:()=>new o.BasicTickFormatter})},\n", + " function _(i,t,e,n,o){var r;n();const s=i(131),c=i(34);function _(i){let t=\"\";for(const e of i)t+=\"-\"==e?\"\\u2212\":e;return t}e.unicode_replace=_;class a extends s.TickFormatter{constructor(i){super(i),this.last_precision=3}get scientific_limit_low(){return 10**this.power_limit_low}get scientific_limit_high(){return 10**this.power_limit_high}_need_sci(i){if(!this.use_scientific)return!1;const{scientific_limit_high:t}=this,{scientific_limit_low:e}=this,n=i.length<2?0:Math.abs(i[1]-i[0])/1e4;for(const o of i){const i=Math.abs(o);if(!(i<=n)&&(i>=t||i<=e))return!0}return!1}_format_with_precision(i,t,e){return t?i.map((i=>_(i.toExponential(e)))):i.map((i=>_((0,c.to_fixed)(i,e))))}_auto_precision(i,t){const e=new Array(i.length),n=this.last_precision<=15;i:for(let o=this.last_precision;n?o<=15:o>=1;n?o++:o--){if(t){e[0]=i[0].toExponential(o);for(let t=1;t({precision:[n(t,e),\"auto\"],use_scientific:[i,!0],power_limit_high:[t,5],power_limit_low:[t,-3]})))},\n", + " function _(c,e,s,i,n){i();const r=c(148);class t extends r.AdaptiveTicker{constructor(c){super(c)}}s.BasicTicker=t,t.__name__=\"BasicTicker\"},\n", + " function _(t,i,a,s,e){var n;s();const r=t(149),_=t(9),l=t(10);class h extends r.ContinuousTicker{constructor(t){super(t)}get_min_interval(){return this.min_interval}get_max_interval(){var t;return null!==(t=this.max_interval)&&void 0!==t?t:1/0}initialize(){super.initialize();const t=(0,_.nth)(this.mantissas,-1)/this.base,i=(0,_.nth)(this.mantissas,0)*this.base;this.extended_mantissas=[t,...this.mantissas,i],this.base_factor=0===this.get_min_interval()?1:this.get_min_interval()}get_interval(t,i,a){const s=i-t,e=this.get_ideal_interval(t,i,a),n=Math.floor((0,l.log)(e/this.base_factor,this.base)),r=this.base**n*this.base_factor,h=this.extended_mantissas,m=h.map((t=>Math.abs(a-s/(t*r)))),v=h[(0,_.argmin)(m)]*r;return(0,l.clamp)(v,this.get_min_interval(),this.get_max_interval())}}a.AdaptiveTicker=h,n=h,h.__name__=\"AdaptiveTicker\",n.define((({Number:t,Array:i,Nullable:a})=>({base:[t,10],mantissas:[i(t),[1,2,5]],min_interval:[t,0],max_interval:[a(t),null]})))},\n", + " function _(t,n,i,s,e){var o;s();const r=t(130),c=t(9);class _ extends r.Ticker{constructor(t){super(t)}get_ticks(t,n,i,s){return this.get_ticks_no_defaults(t,n,s,this.desired_num_ticks)}get_ticks_no_defaults(t,n,i,s){const e=this.get_interval(t,n,s),o=Math.floor(t/e),r=Math.ceil(n/e);let _;_=isFinite(o)&&isFinite(r)?(0,c.range)(o,r+1):[];const u=_.map((t=>t*e)).filter((i=>t<=i&&i<=n)),a=this.num_minor_ticks,f=[];if(a>0&&u.length>0){const i=e/a,s=(0,c.range)(0,a).map((t=>t*i));for(const i of s.slice(1)){const s=u[0]-i;t<=s&&s<=n&&f.push(s)}for(const i of u)for(const e of s){const s=i+e;t<=s&&s<=n&&f.push(s)}}return{major:u,minor:f}}get_ideal_interval(t,n,i){return(n-t)/i}}i.ContinuousTicker=_,o=_,_.__name__=\"ContinuousTicker\",o.define((({Int:t})=>({num_minor_ticks:[t,5],desired_num_ticks:[t,6]})))},\n", + " function _(s,t,e,n,i){n();var r;const o=(0,s(1).__importDefault)(s(151)),a=s(131),c=s(19),u=s(152),m=s(9),h=s(8);function d(s){return(0,o.default)(s,\"%Y %m %d %H %M %S\").split(/\\s+/).map((s=>parseInt(s,10)))}function l(s,t){if((0,h.isFunction)(t))return t(s);{const e=(0,u.sprintf)(\"$1%06d\",function(s){return Math.round(s/1e3%1*1e6)}(s));return-1==(t=t.replace(/((^|[^%])(%%)*)%f/,e)).indexOf(\"%\")?t:(0,o.default)(s,t)}}const f=[\"microseconds\",\"milliseconds\",\"seconds\",\"minsec\",\"minutes\",\"hourmin\",\"hours\",\"days\",\"months\",\"years\"];class _ extends a.TickFormatter{constructor(s){super(s),this.strip_leading_zeros=!0}initialize(){super.initialize(),this._update_width_formats()}_update_width_formats(){const s=+(0,o.default)(new Date),t=function(t){const e=t.map((t=>l(s,t).length)),n=(0,m.sort_by)((0,m.zip)(e,t),(([s])=>s));return(0,m.unzip)(n)};this._width_formats={microseconds:t(this.microseconds),milliseconds:t(this.milliseconds),seconds:t(this.seconds),minsec:t(this.minsec),minutes:t(this.minutes),hourmin:t(this.hourmin),hours:t(this.hours),days:t(this.days),months:t(this.months),years:t(this.years)}}_get_resolution_str(s,t){const e=1.1*s;switch(!1){case!(e<.001):return\"microseconds\";case!(e<1):return\"milliseconds\";case!(e<60):return t>=60?\"minsec\":\"seconds\";case!(e<3600):return t>=3600?\"hourmin\":\"minutes\";case!(e<86400):return\"hours\";case!(e<2678400):return\"days\";case!(e<31536e3):return\"months\";default:return\"years\"}}doFormat(s,t){if(0==s.length)return[];const e=Math.abs(s[s.length-1]-s[0])/1e3,n=e/(s.length-1),i=this._get_resolution_str(n,e),[,[r]]=this._width_formats[i],o=[],a=f.indexOf(i),u={};for(const s of f)u[s]=0;u.seconds=5,u.minsec=4,u.minutes=4,u.hourmin=3,u.hours=3;for(const t of s){let s,e;try{e=d(t),s=l(t,r)}catch(s){c.logger.warn(`unable to format tick for timestamp value ${t}`),c.logger.warn(` - ${s}`),o.push(\"ERR\");continue}let n=!1,m=a;for(;0==e[u[f[m]]];){let r;if(m+=1,m==f.length)break;if((\"minsec\"==i||\"hourmin\"==i)&&!n){if(\"minsec\"==i&&0==e[4]&&0!=e[5]||\"hourmin\"==i&&0==e[3]&&0!=e[4]){r=this._width_formats[f[a-1]][1][0],s=l(t,r);break}n=!0}r=this._width_formats[f[m]][1][0],s=l(t,r)}if(this.strip_leading_zeros){let t=s.replace(/^0+/g,\"\");t!=s&&isNaN(parseInt(t))&&(t=`0${t}`),o.push(t)}else o.push(s)}return o}}e.DatetimeTickFormatter=_,r=_,_.__name__=\"DatetimeTickFormatter\",r.define((({String:s,Array:t})=>({microseconds:[t(s),[\"%fus\"]],milliseconds:[t(s),[\"%3Nms\",\"%S.%3Ns\"]],seconds:[t(s),[\"%Ss\"]],minsec:[t(s),[\":%M:%S\"]],minutes:[t(s),[\":%M\",\"%Mm\"]],hourmin:[t(s),[\"%H:%M\"]],hours:[t(s),[\"%Hh\",\"%H:%M\"]],days:[t(s),[\"%m/%d\",\"%a%d\"]],months:[t(s),[\"%m/%Y\",\"%b %Y\"]],years:[t(s),[\"%Y\"]]})))},\n", + " function _(e,t,n,r,o){!function(e){\"object\"==typeof t&&t.exports?t.exports=e():\"function\"==typeof define?define(e):this.tz=e()}((function(){function e(e,t,n){var r,o=t.day[1];do{r=new Date(Date.UTC(n,t.month,Math.abs(o++)))}while(t.day[0]<7&&r.getUTCDay()!=t.day[0]);return(r={clock:t.clock,sort:r.getTime(),rule:t,save:6e4*t.save,offset:e.offset})[r.clock]=r.sort+6e4*t.time,r.posix?r.wallclock=r[r.clock]+(e.offset+t.saved):r.posix=r[r.clock]-(e.offset+t.saved),r}function t(t,n,r){var o,a,u,i,l,s,c,f=t[t.zone],h=[],T=new Date(r).getUTCFullYear(),g=1;for(o=1,a=f.length;o=T-g;--c)for(o=0,a=s.length;o=h[o][n]&&h[o][h[o].clock]>u[h[o].clock]&&(i=h[o])}return i&&((l=/^(.*)\\/(.*)$/.exec(u.format))?i.abbrev=l[i.save?2:1]:i.abbrev=u.format.replace(/%s/,i.rule.letter)),i||u}function n(e,n){return\"UTC\"==e.zone?n:(e.entry=t(e,\"posix\",n),n+e.entry.offset+e.entry.save)}function r(e,n){return\"UTC\"==e.zone?n:(e.entry=r=t(e,\"wallclock\",n),0<(o=n-r.wallclock)&&o9)t+=s*l[c-10];else{if(a=new Date(n(e,t)),c<7)for(;s;)a.setUTCDate(a.getUTCDate()+i),a.getUTCDay()==c&&(s-=i);else 7==c?a.setUTCFullYear(a.getUTCFullYear()+s):8==c?a.setUTCMonth(a.getUTCMonth()+s):a.setUTCDate(a.getUTCDate()+s);null==(t=r(e,a.getTime()))&&(t=r(e,a.getTime()+864e5*i)-864e5*i)}return t}var a={clock:function(){return+new Date},zone:\"UTC\",entry:{abbrev:\"UTC\",offset:0,save:0},UTC:1,z:function(e,t,n,r){var o,a,u=this.entry.offset+this.entry.save,i=Math.abs(u/1e3),l=[],s=3600;for(o=0;o<3;o++)l.push((\"0\"+Math.floor(i/s)).slice(-2)),i%=s,s/=60;return\"^\"!=n||u?(\"^\"==n&&(r=3),3==r?(a=(a=l.join(\":\")).replace(/:00$/,\"\"),\"^\"!=n&&(a=a.replace(/:00$/,\"\"))):r?(a=l.slice(0,r+1).join(\":\"),\"^\"==n&&(a=a.replace(/:00$/,\"\"))):a=l.slice(0,2).join(\"\"),a=(a=(u<0?\"-\":\"+\")+a).replace(/([-+])(0)/,{_:\" $1\",\"-\":\"$1\"}[n]||\"$1$2\")):\"Z\"},\"%\":function(e){return\"%\"},n:function(e){return\"\\n\"},t:function(e){return\"\\t\"},U:function(e){return s(e,0)},W:function(e){return s(e,1)},V:function(e){return c(e)[0]},G:function(e){return c(e)[1]},g:function(e){return c(e)[1]%100},j:function(e){return Math.floor((e.getTime()-Date.UTC(e.getUTCFullYear(),0))/864e5)+1},s:function(e){return Math.floor(e.getTime()/1e3)},C:function(e){return Math.floor(e.getUTCFullYear()/100)},N:function(e){return e.getTime()%1e3*1e6},m:function(e){return e.getUTCMonth()+1},Y:function(e){return e.getUTCFullYear()},y:function(e){return e.getUTCFullYear()%100},H:function(e){return e.getUTCHours()},M:function(e){return e.getUTCMinutes()},S:function(e){return e.getUTCSeconds()},e:function(e){return e.getUTCDate()},d:function(e){return e.getUTCDate()},u:function(e){return e.getUTCDay()||7},w:function(e){return e.getUTCDay()},l:function(e){return e.getUTCHours()%12||12},I:function(e){return e.getUTCHours()%12||12},k:function(e){return e.getUTCHours()},Z:function(e){return this.entry.abbrev},a:function(e){return this[this.locale].day.abbrev[e.getUTCDay()]},A:function(e){return this[this.locale].day.full[e.getUTCDay()]},h:function(e){return this[this.locale].month.abbrev[e.getUTCMonth()]},b:function(e){return this[this.locale].month.abbrev[e.getUTCMonth()]},B:function(e){return this[this.locale].month.full[e.getUTCMonth()]},P:function(e){return this[this.locale].meridiem[Math.floor(e.getUTCHours()/12)].toLowerCase()},p:function(e){return this[this.locale].meridiem[Math.floor(e.getUTCHours()/12)]},R:function(e,t){return this.convert([t,\"%H:%M\"])},T:function(e,t){return this.convert([t,\"%H:%M:%S\"])},D:function(e,t){return this.convert([t,\"%m/%d/%y\"])},F:function(e,t){return this.convert([t,\"%Y-%m-%d\"])},x:function(e,t){return this.convert([t,this[this.locale].date])},r:function(e,t){return this.convert([t,this[this.locale].time12||\"%I:%M:%S\"])},X:function(e,t){return this.convert([t,this[this.locale].time24])},c:function(e,t){return this.convert([t,this[this.locale].dateTime])},convert:function(e){if(!e.length)return\"1.0.23\";var t,a,u,l,s,c=Object.create(this),f=[];for(t=0;t=o?Math.floor((n-o)/7)+1:0}function c(e){var t,n,r;return n=e.getUTCFullYear(),t=new Date(Date.UTC(n,0)).getUTCDay(),(r=s(e,1)+(t>1&&t<=4?1:0))?53!=r||4==t||3==t&&29==new Date(n,1,29).getDate()?[r,e.getUTCFullYear()]:[1,e.getUTCFullYear()+1]:(n=e.getUTCFullYear()-1,[r=4==(t=new Date(Date.UTC(n,0)).getUTCDay())||3==t&&29==new Date(n,1,29).getDate()?53:52,e.getUTCFullYear()-1])}return u=u.toLowerCase().split(\"|\"),\"delmHMSUWVgCIky\".replace(/./g,(function(e){a[e].pad=2})),a.N.pad=9,a.j.pad=3,a.k.style=\"_\",a.l.style=\"_\",a.e.style=\"_\",function(){return a.convert(arguments)}}))},\n", + " function _(r,t,n,e,i){e();const u=r(1),a=(0,u.__importStar)(r(153)),f=r(154),o=(0,u.__importDefault)(r(151)),l=r(21),s=r(8);function c(r,...t){return(0,f.sprintf)(r,...t)}function m(r,t,n){if((0,s.isNumber)(r)){return c((()=>{switch(!1){case Math.floor(r)!=r:return\"%d\";case!(Math.abs(r)>.1&&Math.abs(r)<1e3):return\"%0.3f\";default:return\"%0.3e\"}})(),r)}return`${r}`}function _(r,t,e){if(null==t)return m;if(null!=e&&r in e){const t=e[r];if((0,s.isString)(t)){if(t in n.DEFAULT_FORMATTERS)return n.DEFAULT_FORMATTERS[t];throw new Error(`Unknown tooltip field formatter type '${t}'`)}return function(r,n,e){return t.format(r,n,e)}}return n.DEFAULT_FORMATTERS.numeral}function p(r,t,n){const e=t.get_column(r);if(null==e)return null;if((0,s.isNumber)(n))return e[n];const i=e[n.index];if((0,s.isTypedArray)(i)||(0,s.isArray)(i)){if((0,s.isArray)(i[0])){return i[n.dim2][n.dim1]}return i[n.flat_index]}return i}function d(r,t,n,e){if(\"$\"==r[0]){return function(r,t){if(r in t)return t[r];throw new Error(`Unknown special variable '$${r}'`)}(r.substring(1),e)}return p(r.substring(1).replace(/[{}]/g,\"\"),t,n)}n.FormatterType=(0,l.Enum)(\"numeral\",\"printf\",\"datetime\"),n.DEFAULT_FORMATTERS={numeral:(r,t,n)=>a.format(r,t),datetime:(r,t,n)=>(0,o.default)(r,t),printf:(r,t,n)=>c(t,r)},n.sprintf=c,n.basic_formatter=m,n.get_formatter=_,n._get_column_value=p,n.get_value=d,n.replace_placeholders=function(r,t,n,e,i={},u){let a,f;if((0,s.isString)(r)?(a=r,f=!1):(a=r.html,f=!0),a=a.replace(/@\\$name/g,(r=>`@{${i.name}}`)),a=a.replace(/((?:\\$\\w+)|(?:@\\w+)|(?:@{(?:[^{}]+)}))(?:{([^{}]+)})?/g,((r,a,o)=>{const l=d(a,t,n,i);if(null==l)return u?u(\"???\"):\"???\";if(\"safe\"==o)return f=!0,`${l}`;const s=`${_(a,o,e)(l,o,i)}`;return u?u(s):s})),f){return[...(new DOMParser).parseFromString(a,\"text/html\").body.childNodes]}return a}},\n", + " function _(e,n,t,r,i){\n", + " /*!\n", + " * numbro.js\n", + " * version : 1.6.2\n", + " * author : Företagsplatsen AB\n", + " * license : MIT\n", + " * http://www.foretagsplatsen.se\n", + " */\n", + " var a,o={},l=o,u=\"en-US\",c=null,s=\"0,0\";void 0!==n&&n.exports;function f(e){this._value=e}function d(e){var n,t=\"\";for(n=0;n-1?function(e,n){var t,r,i,a;return t=(a=e.toString()).split(\"e\")[0],i=a.split(\"e\")[1],a=t.split(\".\")[0]+(r=t.split(\".\")[1]||\"\")+d(i-r.length),n>0&&(a+=\".\"+d(n)),a}(e,n):(t(e*o)/o).toFixed(n),r&&(i=new RegExp(\"0{1,\"+r+\"}$\"),a=a.replace(i,\"\")),a}function p(e,n,t){var r;return r=n.indexOf(\"$\")>-1?function(e,n,t){var r,i,a=n,l=a.indexOf(\"$\"),c=a.indexOf(\"(\"),s=a.indexOf(\"+\"),f=a.indexOf(\"-\"),d=\"\",h=\"\";-1===a.indexOf(\"$\")?\"infix\"===o[u].currency.position?(h=o[u].currency.symbol,o[u].currency.spaceSeparated&&(h=\" \"+h+\" \")):o[u].currency.spaceSeparated&&(d=\" \"):a.indexOf(\" $\")>-1?(d=\" \",a=a.replace(\" $\",\"\")):a.indexOf(\"$ \")>-1?(d=\" \",a=a.replace(\"$ \",\"\")):a=a.replace(\"$\",\"\");if(i=m(e,a,t,h),-1===n.indexOf(\"$\"))switch(o[u].currency.position){case\"postfix\":i.indexOf(\")\")>-1?((i=i.split(\"\")).splice(-1,0,d+o[u].currency.symbol),i=i.join(\"\")):i=i+d+o[u].currency.symbol;break;case\"infix\":break;case\"prefix\":i.indexOf(\"(\")>-1||i.indexOf(\"-\")>-1?(i=i.split(\"\"),r=Math.max(c,f)+1,i.splice(r,0,o[u].currency.symbol+d),i=i.join(\"\")):i=o[u].currency.symbol+d+i;break;default:throw Error('Currency position should be among [\"prefix\", \"infix\", \"postfix\"]')}else l<=1?i.indexOf(\"(\")>-1||i.indexOf(\"+\")>-1||i.indexOf(\"-\")>-1?(r=1,(l-1?((i=i.split(\"\")).splice(-1,0,d+o[u].currency.symbol),i=i.join(\"\")):i=i+d+o[u].currency.symbol;return i}(e,n,t):n.indexOf(\"%\")>-1?function(e,n,t){var r,i=\"\";e*=100,n.indexOf(\" %\")>-1?(i=\" \",n=n.replace(\" %\",\"\")):n=n.replace(\"%\",\"\");(r=m(e,n,t)).indexOf(\")\")>-1?((r=r.split(\"\")).splice(-1,0,i+\"%\"),r=r.join(\"\")):r=r+i+\"%\";return r}(e,n,t):n.indexOf(\":\")>-1?function(e){var n=Math.floor(e/60/60),t=Math.floor((e-60*n*60)/60),r=Math.round(e-60*n*60-60*t);return n+\":\"+(t<10?\"0\"+t:t)+\":\"+(r<10?\"0\"+r:r)}(e):m(e,n,t),r}function m(e,n,t,r){var i,a,l,s,f,d,p,m,x,g,O,b,w,y,M,v,$,B=!1,E=!1,F=!1,k=\"\",U=!1,N=!1,S=!1,j=!1,D=!1,C=\"\",L=\"\",T=Math.abs(e),K=[\"B\",\"KiB\",\"MiB\",\"GiB\",\"TiB\",\"PiB\",\"EiB\",\"ZiB\",\"YiB\"],G=[\"B\",\"KB\",\"MB\",\"GB\",\"TB\",\"PB\",\"EB\",\"ZB\",\"YB\"],I=\"\",P=!1,R=!1;if(0===e&&null!==c)return c;if(!isFinite(e))return\"\"+e;if(0===n.indexOf(\"{\")){var W=n.indexOf(\"}\");if(-1===W)throw Error('Format should also contain a \"}\"');b=n.slice(1,W),n=n.slice(W+1)}else b=\"\";if(n.indexOf(\"}\")===n.length-1){var Y=n.indexOf(\"{\");if(-1===Y)throw Error('Format should also contain a \"{\"');w=n.slice(Y+1,-1),n=n.slice(0,Y+1)}else w=\"\";if(v=null===($=-1===n.indexOf(\".\")?n.match(/([0-9]+).*/):n.match(/([0-9]+)\\..*/))?-1:$[1].length,-1!==n.indexOf(\"-\")&&(P=!0),n.indexOf(\"(\")>-1?(B=!0,n=n.slice(1,-1)):n.indexOf(\"+\")>-1&&(E=!0,n=n.replace(/\\+/g,\"\")),n.indexOf(\"a\")>-1){if(g=n.split(\".\")[0].match(/[0-9]+/g)||[\"0\"],g=parseInt(g[0],10),U=n.indexOf(\"aK\")>=0,N=n.indexOf(\"aM\")>=0,S=n.indexOf(\"aB\")>=0,j=n.indexOf(\"aT\")>=0,D=U||N||S||j,n.indexOf(\" a\")>-1?(k=\" \",n=n.replace(\" a\",\"\")):n=n.replace(\"a\",\"\"),p=0===(p=(f=Math.floor(Math.log(T)/Math.LN10)+1)%3)?3:p,g&&0!==T&&(d=Math.floor(Math.log(T)/Math.LN10)+1-g,m=3*~~((Math.min(g,f)-p)/3),T/=Math.pow(10,m),-1===n.indexOf(\".\")&&g>3))for(n+=\"[.]\",M=(M=0===d?0:3*~~(d/3)-d)<0?M+3:M,i=0;i=Math.pow(10,12)&&!D||j?(k+=o[u].abbreviations.trillion,e/=Math.pow(10,12)):T=Math.pow(10,9)&&!D||S?(k+=o[u].abbreviations.billion,e/=Math.pow(10,9)):T=Math.pow(10,6)&&!D||N?(k+=o[u].abbreviations.million,e/=Math.pow(10,6)):(T=Math.pow(10,3)&&!D||U)&&(k+=o[u].abbreviations.thousand,e/=Math.pow(10,3)))}if(n.indexOf(\"b\")>-1)for(n.indexOf(\" b\")>-1?(C=\" \",n=n.replace(\" b\",\"\")):n=n.replace(\"b\",\"\"),s=0;s<=K.length;s++)if(a=Math.pow(1024,s),l=Math.pow(1024,s+1),e>=a&&e0&&(e/=a);break}if(n.indexOf(\"d\")>-1)for(n.indexOf(\" d\")>-1?(C=\" \",n=n.replace(\" d\",\"\")):n=n.replace(\"d\",\"\"),s=0;s<=G.length;s++)if(a=Math.pow(1e3,s),l=Math.pow(1e3,s+1),e>=a&&e0&&(e/=a);break}if(n.indexOf(\"o\")>-1&&(n.indexOf(\" o\")>-1?(L=\" \",n=n.replace(\" o\",\"\")):n=n.replace(\"o\",\"\"),o[u].ordinal&&(L+=o[u].ordinal(e))),n.indexOf(\"[.]\")>-1&&(F=!0,n=n.replace(\"[.]\",\".\")),x=e.toString().split(\".\")[0],O=n.split(\".\")[1],y=n.indexOf(\",\"),O){if(x=(I=-1!==O.indexOf(\"*\")?h(e,e.toString().split(\".\")[1].length,t):O.indexOf(\"[\")>-1?h(e,(O=(O=O.replace(\"]\",\"\")).split(\"[\"))[0].length+O[1].length,t,O[1].length):h(e,O.length,t)).split(\".\")[0],I.split(\".\")[1].length)I=(r?k+r:o[u].delimiters.decimal)+I.split(\".\")[1];else I=\"\";F&&0===Number(I.slice(1))&&(I=\"\")}else x=h(e,null,t);return x.indexOf(\"-\")>-1&&(x=x.slice(1),R=!0),x.length-1&&(x=x.toString().replace(/(\\d)(?=(\\d{3})+(?!\\d))/g,\"$1\"+o[u].delimiters.thousands)),0===n.indexOf(\".\")&&(x=\"\"),b+(n.indexOf(\"(\")2)&&(o.length<2?!!o[0].match(/^\\d+.*\\d$/)&&!o[0].match(u):1===o[0].length?!!o[0].match(/^\\d+$/)&&!o[0].match(u)&&!!o[1].match(/^\\d+$/):!!o[0].match(/^\\d+.*\\d$/)&&!o[0].match(u)&&!!o[1].match(/^\\d+$/)))))},n.exports={format:function(e,n,t,r){return null!=t&&t!==a.culture()&&a.setCulture(t),p(Number(e),null!=n?n:s,null==r?Math.round:r)}}},\n", + " function _(e,n,t,r,i){!function(){\"use strict\";var e={not_string:/[^s]/,not_bool:/[^t]/,not_type:/[^T]/,not_primitive:/[^v]/,number:/[diefg]/,numeric_arg:/[bcdiefguxX]/,json:/[j]/,not_json:/[^j]/,text:/^[^\\x25]+/,modulo:/^\\x25{2}/,placeholder:/^\\x25(?:([1-9]\\d*)\\$|\\(([^)]+)\\))?(\\+)?(0|'[^$])?(-)?(\\d+)?(?:\\.(\\d+))?([b-gijostTuvxX])/,key:/^([a-z_][a-z_\\d]*)/i,key_access:/^\\.([a-z_][a-z_\\d]*)/i,index_access:/^\\[(\\d+)\\]/,sign:/^[+-]/};function n(e){return i(a(e),arguments)}function r(e,t){return n.apply(null,[e].concat(t||[]))}function i(t,r){var i,s,a,o,p,c,l,u,f,d=1,g=t.length,y=\"\";for(s=0;s=0),o.type){case\"b\":i=parseInt(i,10).toString(2);break;case\"c\":i=String.fromCharCode(parseInt(i,10));break;case\"d\":case\"i\":i=parseInt(i,10);break;case\"j\":i=JSON.stringify(i,null,o.width?parseInt(o.width):0);break;case\"e\":i=o.precision?parseFloat(i).toExponential(o.precision):parseFloat(i).toExponential();break;case\"f\":i=o.precision?parseFloat(i).toFixed(o.precision):parseFloat(i);break;case\"g\":i=o.precision?String(Number(i.toPrecision(o.precision))):parseFloat(i);break;case\"o\":i=(parseInt(i,10)>>>0).toString(8);break;case\"s\":i=String(i),i=o.precision?i.substring(0,o.precision):i;break;case\"t\":i=String(!!i),i=o.precision?i.substring(0,o.precision):i;break;case\"T\":i=Object.prototype.toString.call(i).slice(8,-1).toLowerCase(),i=o.precision?i.substring(0,o.precision):i;break;case\"u\":i=parseInt(i,10)>>>0;break;case\"v\":i=i.valueOf(),i=o.precision?i.substring(0,o.precision):i;break;case\"x\":i=(parseInt(i,10)>>>0).toString(16);break;case\"X\":i=(parseInt(i,10)>>>0).toString(16).toUpperCase()}e.json.test(o.type)?y+=i:(!e.number.test(o.type)||u&&!o.sign?f=\"\":(f=u?\"+\":\"-\",i=i.toString().replace(e.sign,\"\")),c=o.pad_char?\"0\"===o.pad_char?\"0\":o.pad_char.charAt(1):\" \",l=o.width-(f+i).length,p=o.width&&l>0?c.repeat(l):\"\",y+=o.align?f+i+p:\"0\"===c?f+p+i:p+f+i)}return y}var s=Object.create(null);function a(n){if(s[n])return s[n];for(var t,r=n,i=[],a=0;r;){if(null!==(t=e.text.exec(r)))i.push(t[0]);else if(null!==(t=e.modulo.exec(r)))i.push(\"%\");else{if(null===(t=e.placeholder.exec(r)))throw new SyntaxError(\"[sprintf] unexpected placeholder\");if(t[2]){a|=1;var o=[],p=t[2],c=[];if(null===(c=e.key.exec(p)))throw new SyntaxError(\"[sprintf] failed to parse named argument key\");for(o.push(c[1]);\"\"!==(p=p.substring(c[0].length));)if(null!==(c=e.key_access.exec(p)))o.push(c[1]);else{if(null===(c=e.index_access.exec(p)))throw new SyntaxError(\"[sprintf] failed to parse named argument key\");o.push(c[1])}t[2]=o}else a|=2;if(3===a)throw new Error(\"[sprintf] mixing positional and named placeholders is not (yet) supported\");i.push({placeholder:t[0],param_no:t[1],keys:t[2],sign:t[3],pad_char:t[4],align:t[5],width:t[6],precision:t[7],type:t[8]})}r=r.substring(t[0].length)}return s[n]=i}void 0!==t&&(t.sprintf=n,t.vsprintf=r),\"undefined\"!=typeof window&&(window.sprintf=n,window.vsprintf=r,\"function\"==typeof define&&define.amd&&define((function(){return{sprintf:n,vsprintf:r}})))}()},\n", + " function _(e,n,i,a,s){var r;a();const t=e(9),c=e(148),m=e(156),_=e(157),k=e(160),o=e(161),T=e(159);class w extends m.CompositeTicker{constructor(e){super(e)}}i.DatetimeTicker=w,r=w,w.__name__=\"DatetimeTicker\",r.override({num_minor_ticks:0,tickers:()=>[new c.AdaptiveTicker({mantissas:[1,2,5],base:10,min_interval:0,max_interval:500*T.ONE_MILLI,num_minor_ticks:0}),new c.AdaptiveTicker({mantissas:[1,2,5,10,15,20,30],base:60,min_interval:T.ONE_SECOND,max_interval:30*T.ONE_MINUTE,num_minor_ticks:0}),new c.AdaptiveTicker({mantissas:[1,2,4,6,8,12],base:24,min_interval:T.ONE_HOUR,max_interval:12*T.ONE_HOUR,num_minor_ticks:0}),new _.DaysTicker({days:(0,t.range)(1,32)}),new _.DaysTicker({days:(0,t.range)(1,31,3)}),new _.DaysTicker({days:[1,8,15,22]}),new _.DaysTicker({days:[1,15]}),new k.MonthsTicker({months:(0,t.range)(0,12,1)}),new k.MonthsTicker({months:(0,t.range)(0,12,2)}),new k.MonthsTicker({months:(0,t.range)(0,12,4)}),new k.MonthsTicker({months:(0,t.range)(0,12,6)}),new o.YearsTicker({})]})},\n", + " function _(t,e,i,r,s){var n;r();const _=t(149),a=t(9);class l extends _.ContinuousTicker{constructor(t){super(t)}get min_intervals(){return this.tickers.map((t=>t.get_min_interval()))}get max_intervals(){return this.tickers.map((t=>t.get_max_interval()))}get_min_interval(){return this.min_intervals[0]}get_max_interval(){return this.max_intervals[0]}get_best_ticker(t,e,i){const r=e-t,s=this.get_ideal_interval(t,e,i),n=[(0,a.sorted_index)(this.min_intervals,s)-1,(0,a.sorted_index)(this.max_intervals,s)],_=[this.min_intervals[n[0]],this.max_intervals[n[1]]].map((t=>Math.abs(i-r/t)));let l;if((0,a.is_empty)(_.filter((t=>!isNaN(t)))))l=this.tickers[0];else{const t=n[(0,a.argmin)(_)];l=this.tickers[t]}return l}get_interval(t,e,i){return this.get_best_ticker(t,e,i).get_interval(t,e,i)}get_ticks_no_defaults(t,e,i,r){return this.get_best_ticker(t,e,r).get_ticks_no_defaults(t,e,i,r)}}i.CompositeTicker=l,n=l,l.__name__=\"CompositeTicker\",n.define((({Array:t,Ref:e})=>({tickers:[t(e(_.ContinuousTicker)),[]]})))},\n", + " function _(t,e,n,s,o){var a;s();const i=t(158),r=t(159),c=t(9);class _ extends i.SingleIntervalTicker{constructor(t){super(t)}initialize(){super.initialize();const t=this.days;t.length>1?this.interval=(t[1]-t[0])*r.ONE_DAY:this.interval=31*r.ONE_DAY}get_ticks_no_defaults(t,e,n,s){const o=function(t,e){const n=(0,r.last_month_no_later_than)(new Date(t)),s=(0,r.last_month_no_later_than)(new Date(e));s.setUTCMonth(s.getUTCMonth()+1);const o=[],a=n;for(;o.push((0,r.copy_date)(a)),a.setUTCMonth(a.getUTCMonth()+1),!(a>s););return o}(t,e),a=this.days,i=this.interval,_=(0,c.concat)(o.map((t=>((t,e)=>{const n=t.getUTCMonth(),s=[];for(const o of a){const a=(0,r.copy_date)(t);a.setUTCDate(o),new Date(a.getTime()+e/2).getUTCMonth()==n&&s.push(a)}return s})(t,i))));return{major:_.map((t=>t.getTime())).filter((n=>t<=n&&n<=e)),minor:[]}}}n.DaysTicker=_,a=_,_.__name__=\"DaysTicker\",a.define((({Int:t,Array:e})=>({days:[e(t),[]]}))),a.override({num_minor_ticks:0})},\n", + " function _(e,n,t,r,i){var a;r();const l=e(149);class s extends l.ContinuousTicker{constructor(e){super(e)}get_interval(e,n,t){return this.interval}get_min_interval(){return this.interval}get_max_interval(){return this.interval}}t.SingleIntervalTicker=s,a=s,s.__name__=\"SingleIntervalTicker\",a.define((({Number:e})=>({interval:[e]})))},\n", + " function _(t,n,e,_,E){function N(t){return new Date(t.getTime())}function O(t){const n=N(t);return n.setUTCDate(1),n.setUTCHours(0),n.setUTCMinutes(0),n.setUTCSeconds(0),n.setUTCMilliseconds(0),n}_(),e.ONE_MILLI=1,e.ONE_SECOND=1e3,e.ONE_MINUTE=60*e.ONE_SECOND,e.ONE_HOUR=60*e.ONE_MINUTE,e.ONE_DAY=24*e.ONE_HOUR,e.ONE_MONTH=30*e.ONE_DAY,e.ONE_YEAR=365*e.ONE_DAY,e.copy_date=N,e.last_month_no_later_than=O,e.last_year_no_later_than=function(t){const n=O(t);return n.setUTCMonth(0),n}},\n", + " function _(t,e,n,a,r){var s;a();const i=t(158),o=t(159),l=t(9);class _ extends i.SingleIntervalTicker{constructor(t){super(t)}initialize(){super.initialize();const t=this.months;t.length>1?this.interval=(t[1]-t[0])*o.ONE_MONTH:this.interval=12*o.ONE_MONTH}get_ticks_no_defaults(t,e,n,a){const r=function(t,e){const n=(0,o.last_year_no_later_than)(new Date(t)),a=(0,o.last_year_no_later_than)(new Date(e));a.setUTCFullYear(a.getUTCFullYear()+1);const r=[],s=n;for(;r.push((0,o.copy_date)(s)),s.setUTCFullYear(s.getUTCFullYear()+1),!(s>a););return r}(t,e),s=this.months;return{major:(0,l.concat)(r.map((t=>s.map((e=>{const n=(0,o.copy_date)(t);return n.setUTCMonth(e),n}))))).map((t=>t.getTime())).filter((n=>t<=n&&n<=e)),minor:[]}}}n.MonthsTicker=_,s=_,_.__name__=\"MonthsTicker\",s.define((({Int:t,Array:e})=>({months:[e(t),[]]})))},\n", + " function _(e,t,a,i,r){i();const n=e(147),_=e(158),s=e(159);class c extends _.SingleIntervalTicker{constructor(e){super(e)}initialize(){super.initialize(),this.interval=s.ONE_YEAR,this.basic_ticker=new n.BasicTicker({num_minor_ticks:0})}get_ticks_no_defaults(e,t,a,i){const r=(0,s.last_year_no_later_than)(new Date(e)).getUTCFullYear(),n=(0,s.last_year_no_later_than)(new Date(t)).getUTCFullYear();return{major:this.basic_ticker.get_ticks_no_defaults(r,n,a,i).major.map((e=>Date.UTC(e,0,1))).filter((a=>e<=a&&a<=t)),minor:[]}}}a.YearsTicker=c,c.__name__=\"YearsTicker\"},\n", + " function _(e,o,i,s,t){var n;s();const r=e(143),_=e(163),c=e(164);class a extends r.ContinuousAxisView{}i.LogAxisView=a,a.__name__=\"LogAxisView\";class u extends r.ContinuousAxis{constructor(e){super(e)}}i.LogAxis=u,n=u,u.__name__=\"LogAxis\",n.prototype.default_view=a,n.override({ticker:()=>new c.LogTicker,formatter:()=>new _.LogTickFormatter})},\n", + " function _(e,t,n,o,r){var i;o();const a=e(131),s=e(146),c=e(164),l=e(120),{abs:u,log:x,round:_}=Math;class p extends a.TickFormatter{constructor(e){super(e)}initialize(){super.initialize(),this.basic_formatter=new s.BasicTickFormatter}format_graphics(e,t){var n,o;if(0==e.length)return[];const r=null!==(o=null===(n=this.ticker)||void 0===n?void 0:n.base)&&void 0!==o?o:10,i=this._exponents(e,r);return null==i?this.basic_formatter.format_graphics(e,t):i.map((e=>{if(u(e)u(e)({ticker:[n(t(c.LogTicker)),null],min_exponent:[e,0]})))},\n", + " function _(t,o,e,s,n){var r;s();const i=t(148),a=t(9);class c extends i.AdaptiveTicker{constructor(t){super(t)}get_ticks_no_defaults(t,o,e,s){const n=this.num_minor_ticks,r=[],i=this.base,c=Math.log(t)/Math.log(i),f=Math.log(o)/Math.log(i),l=f-c;let h;if(isFinite(l))if(l<2){const e=this.get_interval(t,o,s),i=Math.floor(t/e),c=Math.ceil(o/e);if(h=(0,a.range)(i,c+1).filter((t=>0!=t)).map((t=>t*e)).filter((e=>t<=e&&e<=o)),n>0&&h.length>0){const t=e/n,o=(0,a.range)(0,n).map((o=>o*t));for(const t of o.slice(1))r.push(h[0]-t);for(const t of h)for(const e of o)r.push(t+e)}}else{const t=Math.ceil(.999999*c),o=Math.floor(1.000001*f),e=Math.ceil((o-t)/9);if(h=(0,a.range)(t-1,o+1,e).map((t=>i**t)),n>0&&h.length>0){const t=i**e/n,o=(0,a.range)(1,n+1).map((o=>o*t));for(const t of o)r.push(h[0]/t);r.push(h[0]);for(const t of h)for(const e of o)r.push(t*e)}}else h=[];return{major:h.filter((e=>t<=e&&e<=o)),minor:r.filter((e=>t<=e&&e<=o))}}}e.LogTicker=c,r=c,c.__name__=\"LogTicker\",r.override({mantissas:[1,5]})},\n", + " function _(e,r,t,i,a){var o;i();const s=e(128),c=e(145),n=e(166),_=e(167);class x extends s.AxisView{}t.MercatorAxisView=x,x.__name__=\"MercatorAxisView\";class d extends c.LinearAxis{constructor(e){super(e)}}t.MercatorAxis=d,o=d,d.__name__=\"MercatorAxis\",o.prototype.default_view=x,o.override({ticker:()=>new _.MercatorTicker({dimension:\"lat\"}),formatter:()=>new n.MercatorTickFormatter({dimension:\"lat\"})})},\n", + " function _(r,t,e,o,n){var i;o();const c=r(146),s=r(20),a=r(78);class l extends c.BasicTickFormatter{constructor(r){super(r)}doFormat(r,t){if(null==this.dimension)throw new Error(\"MercatorTickFormatter.dimension not configured\");if(0==r.length)return[];const e=r.length,o=new Array(e);if(\"lon\"==this.dimension)for(let n=0;n({dimension:[r(s.LatLon),null]})))},\n", + " function _(t,o,n,s,r){var e;s();const i=t(147),c=t(20),_=t(78);class a extends i.BasicTicker{constructor(t){super(t)}get_ticks_no_defaults(t,o,n,s){if(null==this.dimension)throw new Error(`${this}.dimension wasn't configured`);return[t,o]=(0,_.clip_mercator)(t,o,this.dimension),\"lon\"==this.dimension?this._get_ticks_lon(t,o,n,s):this._get_ticks_lat(t,o,n,s)}_get_ticks_lon(t,o,n,s){const[r]=_.wgs84_mercator.invert(t,n),[e,i]=_.wgs84_mercator.invert(o,n),c=super.get_ticks_no_defaults(r,e,n,s),a=[];for(const t of c.major)if((0,_.in_bounds)(t,\"lon\")){const[o]=_.wgs84_mercator.compute(t,i);a.push(o)}const m=[];for(const t of c.minor)if((0,_.in_bounds)(t,\"lon\")){const[o]=_.wgs84_mercator.compute(t,i);m.push(o)}return{major:a,minor:m}}_get_ticks_lat(t,o,n,s){const[,r]=_.wgs84_mercator.invert(n,t),[e,i]=_.wgs84_mercator.invert(n,o),c=super.get_ticks_no_defaults(r,i,n,s),a=[];for(const t of c.major)if((0,_.in_bounds)(t,\"lat\")){const[,o]=_.wgs84_mercator.compute(e,t);a.push(o)}const m=[];for(const t of c.minor)if((0,_.in_bounds)(t,\"lat\")){const[,o]=_.wgs84_mercator.compute(e,t);m.push(o)}return{major:a,minor:m}}}n.MercatorTicker=a,e=a,a.__name__=\"MercatorTicker\",e.define((({Nullable:t})=>({dimension:[t(c.LatLon),null]})))},\n", + " function _(e,i,r,c,k){c(),k(\"AdaptiveTicker\",e(148).AdaptiveTicker),k(\"BasicTicker\",e(147).BasicTicker),k(\"CategoricalTicker\",e(141).CategoricalTicker),k(\"CompositeTicker\",e(156).CompositeTicker),k(\"ContinuousTicker\",e(149).ContinuousTicker),k(\"DatetimeTicker\",e(155).DatetimeTicker),k(\"DaysTicker\",e(157).DaysTicker),k(\"FixedTicker\",e(169).FixedTicker),k(\"LogTicker\",e(164).LogTicker),k(\"MercatorTicker\",e(167).MercatorTicker),k(\"MonthsTicker\",e(160).MonthsTicker),k(\"SingleIntervalTicker\",e(158).SingleIntervalTicker),k(\"Ticker\",e(130).Ticker),k(\"YearsTicker\",e(161).YearsTicker),k(\"BinnedTicker\",e(170).BinnedTicker)},\n", + " function _(r,t,e,i,n){var s;i();const _=r(149);class c extends _.ContinuousTicker{constructor(r){super(r)}get_ticks_no_defaults(r,t,e,i){return{major:this.ticks,minor:this.minor_ticks}}get_interval(r,t,e){return 0}get_min_interval(){return 0}get_max_interval(){return 0}}e.FixedTicker=c,s=c,c.__name__=\"FixedTicker\",s.define((({Number:r,Array:t})=>({ticks:[t(r),[]],minor_ticks:[t(r),[]]})))},\n", + " function _(e,n,t,r,i){var o;r();const a=e(130),s=e(171),c=e(12);class m extends a.Ticker{constructor(e){super(e)}get_ticks(e,n,t,r){const{binning:i}=this.mapper.metrics,o=Math.max(0,(0,c.left_edge_index)(e,i)),a=Math.min((0,c.left_edge_index)(n,i)+1,i.length-1),s=[];for(let e=o;e<=a;e++)s.push(i[e]);const{num_major_ticks:m}=this,_=[],h=\"auto\"==m?s.length:m,l=Math.max(1,Math.floor(s.length/h));for(let e=0;e({mapper:[n(s.ScanningColorMapper)],num_major_ticks:[t(e,r),8]})))},\n", + " function _(n,e,i,r,o){r();const t=n(172),a=n(12);class c extends t.ContinuousColorMapper{constructor(n){super(n)}cmap(n,e,i,r,o){if(no.binning[o.binning.length-1])return r;return e[(0,a.left_edge_index)(n,o.binning)]}}i.ScanningColorMapper=c,c.__name__=\"ScanningColorMapper\"},\n", + " function _(t,e,o,n,s){var l;n();const c=t(173),i=t(175),a=t(9),h=t(8);class r extends c.ColorMapper{constructor(t){super(t),this._scan_data=null}connect_signals(){super.connect_signals();const t=()=>{for(const[t]of this.domain)this.connect(t.view.change,(()=>this.update_data())),this.connect(t.data_source.selected.change,(()=>this.update_data()))};this.connect(this.properties.domain.change,(()=>t())),t()}update_data(){const{domain:t,palette:e}=this,o=[...this._collect(t)];this._scan_data=this.scan(o,e.length),this.metrics_change.emit(),this.change.emit()}get metrics(){return null==this._scan_data&&this.update_data(),this._scan_data}*_collect(t){for(const[e,o]of t)for(const t of(0,h.isArray)(o)?o:[o]){let o=e.data_source.get_column(t);o=e.view.indices.select(o);const n=e.view.masked,s=e.data_source.selected.indices;let l;if(null!=n&&s.length>0?l=(0,a.intersection)([...n],s):null!=n?l=[...n]:s.length>0&&(l=s),null!=l&&(o=(0,a.map)(l,(t=>o[t]))),o.length>0&&!(0,h.isNumber)(o[0]))for(const t of o)yield*t;else yield*o}}_v_compute(t,e,o,n){const{nan_color:s}=n;let{low_color:l,high_color:c}=n;null==l&&(l=o[0]),null==c&&(c=o[o.length-1]);const{domain:i}=this,h=(0,a.is_empty)(i)?t:[...this._collect(i)];this._scan_data=this.scan(h,o.length),this.metrics_change.emit();for(let n=0,i=t.length;n({high:[a(t),null],low:[a(t),null],high_color:[a(n),null],low_color:[a(n),null],domain:[c(l(o(i.GlyphRenderer),s(e,c(e)))),[]]})))},\n", + " function _(e,r,t,n,o){var a;n();const c=e(174),i=e(15),_=e(24),l=e(22),s=e(27);function p(e){return(0,l.encode_rgba)((0,l.color2rgba)(e))}function u(e){const r=new Uint32Array(e.length);for(let t=0,n=e.length;te))),r}get rgba_mapper(){const e=this,r=u(this.palette),t=this._colors(p);return{v_compute(n){const o=new _.ColorArray(n.length);return e._v_compute(n,o,r,t),new Uint8ClampedArray((0,s.to_big_endian)(o).buffer)}}}_colors(e){return{nan_color:e(this.nan_color)}}}t.ColorMapper=h,a=h,h.__name__=\"ColorMapper\",a.define((({Color:e,Array:r})=>({palette:[r(e)],nan_color:[e,\"gray\"]})))},\n", + " function _(r,e,n,s,o){s();const p=r(56);class t extends p.Transform{constructor(r){super(r)}compute(r){throw new Error(\"mapping single values is not supported\")}}n.Mapper=t,t.__name__=\"Mapper\"},\n", + " function _(e,t,i,s,l){var h;s();const n=e(176),o=e(177),a=e(186),c=e(187),_=e(189),r=e(179),d=e(70),p=e(190),g=e(24),u=e(12),y=e(13),m=e(113),v=e(67),f={fill:{},line:{}},w={fill:{fill_alpha:.3,fill_color:\"grey\"},line:{line_alpha:.3,line_color:\"grey\"}},b={fill:{fill_alpha:.2},line:{}},V={fill:{fill_alpha:.2},line:{}};class x extends n.DataRendererView{get glyph_view(){return this.glyph}async lazy_initialize(){var e;await super.lazy_initialize();const t=this.model.glyph;this.glyph=await this.build_glyph_view(t);const i=\"fill\"in this.glyph.visuals,s=\"line\"in this.glyph.visuals,l=Object.assign({},t.attributes);function h(e){const h=(0,y.clone)(l);return i&&(0,y.extend)(h,e.fill),s&&(0,y.extend)(h,e.line),new t.constructor(h)}function n(e,t){return t instanceof r.Glyph?t:h(\"auto\"==t?e:{fill:{},line:{}})}delete l.id;let{selection_glyph:o,nonselection_glyph:a,hover_glyph:c,muted_glyph:_}=this.model;o=n(f,o),this.selection_glyph=await this.build_glyph_view(o),a=n(b,a),this.nonselection_glyph=await this.build_glyph_view(a),null!=c&&(this.hover_glyph=await this.build_glyph_view(c)),_=n(V,_),this.muted_glyph=await this.build_glyph_view(_);const d=n(w,\"auto\");this.decimated_glyph=await this.build_glyph_view(d),this.selection_glyph.set_base(this.glyph),this.nonselection_glyph.set_base(this.glyph),null===(e=this.hover_glyph)||void 0===e||e.set_base(this.glyph),this.muted_glyph.set_base(this.glyph),this.decimated_glyph.set_base(this.glyph),this.set_data()}async build_glyph_view(e){return(0,m.build_view)(e,{parent:this})}remove(){var e;this.glyph.remove(),this.selection_glyph.remove(),this.nonselection_glyph.remove(),null===(e=this.hover_glyph)||void 0===e||e.remove(),this.muted_glyph.remove(),this.decimated_glyph.remove(),super.remove()}connect_signals(){super.connect_signals();const e=()=>this.request_render(),t=()=>this.update_data();this.connect(this.model.change,e),this.connect(this.glyph.model.change,t),this.connect(this.selection_glyph.model.change,t),this.connect(this.nonselection_glyph.model.change,t),null!=this.hover_glyph&&this.connect(this.hover_glyph.model.change,t),this.connect(this.muted_glyph.model.change,t),this.connect(this.decimated_glyph.model.change,t),this.connect(this.model.data_source.change,t),this.connect(this.model.data_source.streaming,t),this.connect(this.model.data_source.patching,(e=>this.update_data(e))),this.connect(this.model.data_source.selected.change,e),this.connect(this.model.data_source._select,e),null!=this.hover_glyph&&this.connect(this.model.data_source.inspect,e),this.connect(this.model.properties.view.change,t),this.connect(this.model.view.properties.indices.change,t),this.connect(this.model.view.properties.masked.change,(()=>this.set_visuals())),this.connect(this.model.properties.visible.change,(()=>this.plot_view.invalidate_dataranges=!0));const{x_ranges:i,y_ranges:s}=this.plot_view.frame;for(const[,e]of i)e instanceof v.FactorRange&&this.connect(e.change,t);for(const[,e]of s)e instanceof v.FactorRange&&this.connect(e.change,t);const{transformchange:l,exprchange:h}=this.model.glyph;this.connect(l,t),this.connect(h,t)}_update_masked_indices(){const e=this.glyph.mask_data();return this.model.view.masked=e,e}update_data(e){this.set_data(e),this.request_render()}set_data(e){const t=this.model.data_source;this.all_indices=this.model.view.indices;const{all_indices:i}=this;this.glyph.set_data(t,i,e),this.set_visuals(),this._update_masked_indices();const{lod_factor:s}=this.plot_model,l=this.all_indices.count;this.decimated=new g.Indices(l);for(let e=0;e!n||n.is_empty()?[]:n.selected_glyph?this.model.view.convert_indices_from_subset(i):n.indices.length>0?n.indices:Object.keys(n.multiline_indices).map((e=>parseInt(e))))()),d=(0,u.filter)(i,(e=>r.has(t[e]))),{lod_threshold:p}=this.plot_model;let g,y,m;if(null!=this.model.document&&this.model.document.interactive_duration()>0&&!e&&null!=p&&t.length>p?(i=[...this.decimated],g=this.decimated_glyph,y=this.decimated_glyph,m=this.selection_glyph):(g=this.model.muted?this.muted_glyph:this.glyph,y=this.nonselection_glyph,m=this.selection_glyph),null!=this.hover_glyph&&d.length){const e=new Set(i);for(const t of d)e.delete(t);i=[...e]}if(h.length){const e={};for(const t of h)e[t]=!0;const l=new Array,n=new Array;if(this.glyph instanceof o.LineView)for(const i of t)null!=e[i]?l.push(i):n.push(i);else for(const s of i)null!=e[t[s]]?l.push(s):n.push(s);y.render(s,n),m.render(s,l),null!=this.hover_glyph&&(this.glyph instanceof o.LineView?this.hover_glyph.render(s,this.model.view.convert_indices_from_subset(d)):this.hover_glyph.render(s,d))}else if(this.glyph instanceof o.LineView)this.hover_glyph&&d.length?this.hover_glyph.render(s,this.model.view.convert_indices_from_subset(d)):g.render(s,t);else if(this.glyph instanceof a.PatchView||this.glyph instanceof c.HAreaView||this.glyph instanceof _.VAreaView)if(0==n.selected_glyphs.length||null==this.hover_glyph)g.render(s,t);else for(const e of n.selected_glyphs)e==this.glyph.model&&this.hover_glyph.render(s,t);else g.render(s,i),this.hover_glyph&&d.length&&this.hover_glyph.render(s,d);s.restore()}draw_legend(e,t,i,s,l,h,n,o){0!=this.glyph.data_size&&(null==o&&(o=this.model.get_reference_point(h,n)),this.glyph.draw_legend_for_index(e,{x0:t,x1:i,y0:s,y1:l},o))}hit_test(e){if(!this.model.visible)return null;const t=this.glyph.hit_test(e);return null==t?null:this.model.view.convert_selection_from_subset(t)}}i.GlyphRendererView=x,x.__name__=\"GlyphRendererView\";class G extends n.DataRenderer{constructor(e){super(e)}initialize(){super.initialize(),this.view.source!=this.data_source&&(this.view.source=this.data_source,this.view.compute_indices())}get_reference_point(e,t){if(null!=e){const i=this.data_source.get_column(e);if(null!=i)for(const[e,s]of Object.entries(this.view.indices_map))if(i[parseInt(e)]==t)return s}return 0}get_selection_manager(){return this.data_source.selection_manager}}i.GlyphRenderer=G,h=G,G.__name__=\"GlyphRenderer\",h.prototype.default_view=x,h.define((({Boolean:e,Auto:t,Or:i,Ref:s,Null:l,Nullable:h})=>({data_source:[s(d.ColumnarDataSource)],view:[s(p.CDSView),e=>new p.CDSView({source:e.data_source})],glyph:[s(r.Glyph)],hover_glyph:[h(s(r.Glyph)),null],nonselection_glyph:[i(s(r.Glyph),t,l),\"auto\"],selection_glyph:[i(s(r.Glyph),t,l),\"auto\"],muted_glyph:[i(s(r.Glyph),t,l),\"auto\"],muted:[e,!1]})))},\n", + " function _(e,r,t,a,n){var s;a();const c=e(41);class _ extends c.RendererView{get xscale(){return this.coordinates.x_scale}get yscale(){return this.coordinates.y_scale}}t.DataRendererView=_,_.__name__=\"DataRendererView\";class i extends c.Renderer{constructor(e){super(e)}get selection_manager(){return this.get_selection_manager()}}t.DataRenderer=i,s=i,i.__name__=\"DataRenderer\",s.override({level:\"glyph\"})},\n", + " function _(e,t,i,s,n){s();const l=e(1);var _;const r=e(178),o=e(184),a=(0,l.__importStar)(e(48)),h=(0,l.__importStar)(e(185)),c=e(72);class d extends r.XYGlyphView{async lazy_initialize(){await super.lazy_initialize();const{webgl:t}=this.renderer.plot_view.canvas_view;if(null==t?void 0:t.regl_wrapper.has_webgl){const{LineGL:i}=await Promise.resolve().then((()=>(0,l.__importStar)(e(426))));this.glglyph=new i(t.regl_wrapper,this)}}_render(e,t,i){const{sx:s,sy:n}=null!=i?i:this;let l=null;const _=e=>null!=l&&e-l!=1;let r=!0;e.beginPath();for(const i of t){const t=s[i],o=n[i];isFinite(t+o)?r||_(i)?(e.moveTo(t,o),r=!1):e.lineTo(t,o):r=!0,l=i}this.visuals.line.set_value(e),e.stroke()}_hit_point(e){const t=new c.Selection,i={x:e.sx,y:e.sy};let s=9999;const n=Math.max(2,this.line_width.value/2);for(let e=0,l=this.sx.length-1;e({x:[c.XCoordinateSpec,{field:\"x\"}],y:[c.YCoordinateSpec,{field:\"y\"}]})))},\n", + " function _(e,t,s,i,n){i();const r=e(1),a=(0,r.__importStar)(e(18)),o=(0,r.__importStar)(e(65)),_=(0,r.__importStar)(e(45)),l=e(42),c=e(53),h=e(19),d=e(24),u=e(8),f=e(180),p=e(12),g=e(26),y=e(181),x=e(67),v=e(72),{abs:b,ceil:m}=Math;class w extends l.View{constructor(){super(...arguments),this._index=null,this._data_size=null,this._nohit_warned=new Set}get renderer(){return this.parent}get has_webgl(){return null!=this.glglyph}get index(){const{_index:e}=this;if(null!=e)return e;throw new Error(`${this}.index_data() wasn't called`)}get data_size(){const{_data_size:e}=this;if(null!=e)return e;throw new Error(`${this}.set_data() wasn't called`)}initialize(){super.initialize(),this.visuals=new _.Visuals(this)}request_render(){this.parent.request_render()}get canvas(){return this.renderer.parent.canvas_view}render(e,t,s){var i;null!=this.glglyph&&(this.renderer.needs_webgl_blit=this.glglyph.render(e,t,null!==(i=this.base)&&void 0!==i?i:this),this.renderer.needs_webgl_blit)||this._render(e,t,null!=s?s:this.base)}has_finished(){return!0}notify_finished(){this.renderer.notify_finished()}_bounds(e){return e}bounds(){return this._bounds(this.index.bbox)}log_bounds(){const{x0:e,x1:t}=this.index.bounds(o.positive_x()),{y0:s,y1:i}=this.index.bounds(o.positive_y());return this._bounds({x0:e,y0:s,x1:t,y1:i})}get_anchor_point(e,t,[s,i]){switch(e){case\"center\":case\"center_center\":{const[e,n]=this.scenterxy(t,s,i);return{x:e,y:n}}default:return null}}scenterx(e,t,s){return this.scenterxy(e,t,s)[0]}scentery(e,t,s){return this.scenterxy(e,t,s)[1]}sdist(e,t,s,i=\"edge\",n=!1){const r=t.length,a=new d.ScreenArray(r),o=e.s_compute;if(\"center\"==i)for(let e=0;em(e))),a}draw_legend_for_index(e,t,s){}hit_test(e){switch(e.type){case\"point\":if(null!=this._hit_point)return this._hit_point(e);break;case\"span\":if(null!=this._hit_span)return this._hit_span(e);break;case\"rect\":if(null!=this._hit_rect)return this._hit_rect(e);break;case\"poly\":if(null!=this._hit_poly)return this._hit_poly(e)}return this._nohit_warned.has(e.type)||(h.logger.debug(`'${e.type}' selection not available for ${this.model.type}`),this._nohit_warned.add(e.type)),null}_hit_rect_against_index(e){const{sx0:t,sx1:s,sy0:i,sy1:n}=e,[r,a]=this.renderer.coordinates.x_scale.r_invert(t,s),[o,_]=this.renderer.coordinates.y_scale.r_invert(i,n),l=[...this.index.indices({x0:r,x1:a,y0:o,y1:_})];return new v.Selection({indices:l})}_project_data(){}*_iter_visuals(){for(const e of this.visuals)for(const t of e)(t instanceof a.VectorSpec||t instanceof a.ScalarSpec)&&(yield t)}set_base(e){e!=this&&e instanceof this.constructor&&(this.base=e)}_configure(e,t){Object.defineProperty(this,(0,u.isString)(e)?e:e.attr,Object.assign({configurable:!0,enumerable:!0},t))}set_visuals(e,t){var s;for(const s of this._iter_visuals()){const{base:i}=this;if(null!=i){const e=i.model.properties[s.attr];if(null!=e&&(0,g.is_equal)(s.get_value(),e.get_value())){this._configure(s,{get:()=>i[`${s.attr}`]});continue}}const n=s.uniform(e).select(t);this._configure(s,{value:n})}for(const e of this.visuals)e.update();null===(s=this.glglyph)||void 0===s||s.set_visuals_changed()}set_data(e,t,s){var i;const{x_source:n,y_source:r}=this.renderer.coordinates,o=new Set(this._iter_visuals());this._data_size=t.count;for(const s of this.model)if((s instanceof a.VectorSpec||s instanceof a.ScalarSpec)&&!o.has(s))if(s instanceof a.BaseCoordinateSpec){const i=s.array(e);let o=t.select(i);const _=\"x\"==s.dimension?n:r;if(_ instanceof x.FactorRange)if(s instanceof a.CoordinateSpec)o=_.v_synthetic(o);else if(s instanceof a.CoordinateSeqSpec)for(let e=0;e{const s=new Uint32Array(r);for(let a=0;a>1;t[s]>i?e=s:n=s+1}return t[n]}class r extends d.default{get boxes(){return this._boxes}search_indices(i,t,n,e){if(this._pos!==this._boxes.length)throw new Error(\"Data not yet indexed - call index.finish().\");let s=this._boxes.length-4;const d=[],x=new o.Indices(this.numItems);for(;void 0!==s;){const o=Math.min(s+4*this.nodeSize,h(s,this._levelBounds));for(let h=s;h>2],r=this._boxes[h+0],l=this._boxes[h+1],a=this._boxes[h+2],_=this._boxes[h+3];na||t>_||(s<4*this.numItems?x.set(o):d.push(o)))}s=d.pop()}return x}}r.__name__=\"_FlatBush\";class l{constructor(i){this.index=null,i>0&&(this.index=new r(i))}add_rect(i,t,n,e){var s;isFinite(i+t+n+e)?null===(s=this.index)||void 0===s||s.add(i,t,n,e):this.add_empty()}add_point(i,t){var n;isFinite(i+t)?null===(n=this.index)||void 0===n||n.add(i,t,i,t):this.add_empty()}add_empty(){var i;null===(i=this.index)||void 0===i||i.add(1/0,1/0,-1/0,-1/0)}finish(){var i;null===(i=this.index)||void 0===i||i.finish()}_normalize(i){let{x0:t,y0:n,x1:e,y1:s}=i;return t>e&&([t,e]=[e,t]),n>s&&([n,s]=[s,n]),{x0:t,y0:n,x1:e,y1:s}}get bbox(){if(null==this.index)return(0,x.empty)();{const{minX:i,minY:t,maxX:n,maxY:e}=this.index;return{x0:i,y0:t,x1:n,y1:e}}}indices(i){if(null==this.index)return new o.Indices(0);{const{x0:t,y0:n,x1:e,y1:s}=this._normalize(i);return this.index.search_indices(t,n,e,s)}}bounds(i){const t=(0,x.empty)();if(null==this.index)return t;const{boxes:n}=this.index;for(const e of this.indices(i)){const s=n[4*e+0],d=n[4*e+1],o=n[4*e+2],x=n[4*e+3];s>=i.x0&&st.x1&&(t.x1=o),d>=i.y0&&dt.y1&&(t.y1=x)}return t}}n.SpatialIndex=l,l.__name__=\"SpatialIndex\"},\n", + " function _(t,s,i,e,h){e();const n=(0,t(1).__importDefault)(t(183)),o=[Int8Array,Uint8Array,Uint8ClampedArray,Int16Array,Uint16Array,Int32Array,Uint32Array,Float32Array,Float64Array];class r{static from(t){if(!(t instanceof ArrayBuffer))throw new Error(\"Data must be an instance of ArrayBuffer.\");const[s,i]=new Uint8Array(t,0,2);if(251!==s)throw new Error(\"Data does not appear to be in a Flatbush format.\");if(i>>4!=3)throw new Error(`Got v${i>>4} data when expected v3.`);const[e]=new Uint16Array(t,2,1),[h]=new Uint32Array(t,4,1);return new r(h,e,o[15&i],t)}constructor(t,s=16,i=Float64Array,e){if(void 0===t)throw new Error(\"Missing required argument: numItems.\");if(isNaN(t)||t<=0)throw new Error(`Unpexpected numItems value: ${t}.`);this.numItems=+t,this.nodeSize=Math.min(Math.max(+s,2),65535);let h=t,r=h;this._levelBounds=[4*h];do{h=Math.ceil(h/this.nodeSize),r+=h,this._levelBounds.push(4*r)}while(1!==h);this.ArrayType=i||Float64Array,this.IndexArrayType=r<16384?Uint16Array:Uint32Array;const a=o.indexOf(this.ArrayType),_=4*r*this.ArrayType.BYTES_PER_ELEMENT;if(a<0)throw new Error(`Unexpected typed array class: ${i}.`);e&&e instanceof ArrayBuffer?(this.data=e,this._boxes=new this.ArrayType(this.data,8,4*r),this._indices=new this.IndexArrayType(this.data,8+_,r),this._pos=4*r,this.minX=this._boxes[this._pos-4],this.minY=this._boxes[this._pos-3],this.maxX=this._boxes[this._pos-2],this.maxY=this._boxes[this._pos-1]):(this.data=new ArrayBuffer(8+_+r*this.IndexArrayType.BYTES_PER_ELEMENT),this._boxes=new this.ArrayType(this.data,8,4*r),this._indices=new this.IndexArrayType(this.data,8+_,r),this._pos=0,this.minX=1/0,this.minY=1/0,this.maxX=-1/0,this.maxY=-1/0,new Uint8Array(this.data,0,2).set([251,48+a]),new Uint16Array(this.data,2,1)[0]=s,new Uint32Array(this.data,4,1)[0]=t),this._queue=new n.default}add(t,s,i,e){const h=this._pos>>2;return this._indices[h]=h,this._boxes[this._pos++]=t,this._boxes[this._pos++]=s,this._boxes[this._pos++]=i,this._boxes[this._pos++]=e,tthis.maxX&&(this.maxX=i),e>this.maxY&&(this.maxY=e),h}finish(){if(this._pos>>2!==this.numItems)throw new Error(`Added ${this._pos>>2} items when expected ${this.numItems}.`);if(this.numItems<=this.nodeSize)return this._boxes[this._pos++]=this.minX,this._boxes[this._pos++]=this.minY,this._boxes[this._pos++]=this.maxX,void(this._boxes[this._pos++]=this.maxY);const t=this.maxX-this.minX,s=this.maxY-this.minY,i=new Uint32Array(this.numItems);for(let e=0;e>2]=t,this._boxes[this._pos++]=e,this._boxes[this._pos++]=h,this._boxes[this._pos++]=n,this._boxes[this._pos++]=o}}}search(t,s,i,e,h){if(this._pos!==this._boxes.length)throw new Error(\"Data not yet indexed - call index.finish().\");let n=this._boxes.length-4;const o=[],r=[];for(;void 0!==n;){const a=Math.min(n+4*this.nodeSize,_(n,this._levelBounds));for(let _=n;_>2];ithis._boxes[_+2]||s>this._boxes[_+3]||(n<4*this.numItems?(void 0===h||h(a))&&r.push(a):o.push(a)))}n=o.pop()}return r}neighbors(t,s,i=1/0,e=1/0,h){if(this._pos!==this._boxes.length)throw new Error(\"Data not yet indexed - call index.finish().\");let n=this._boxes.length-4;const o=this._queue,r=[],x=e*e;for(;void 0!==n;){const e=Math.min(n+4*this.nodeSize,_(n,this._levelBounds));for(let i=n;i>2],r=a(t,this._boxes[i],this._boxes[i+2]),_=a(s,this._boxes[i+1],this._boxes[i+3]),x=r*r+_*_;n<4*this.numItems?(void 0===h||h(e))&&o.push(-e-1,x):o.push(e,x)}for(;o.length&&o.peek()<0;){if(o.peekValue()>x)return o.clear(),r;if(r.push(-o.pop()-1),r.length===i)return o.clear(),r}n=o.pop()}return o.clear(),r}}function a(t,s,i){return t>1;s[h]>t?e=h:i=h+1}return s[i]}function x(t,s,i,e,h,n){if(Math.floor(e/n)>=Math.floor(h/n))return;const o=t[e+h>>1];let r=e-1,a=h+1;for(;;){do{r++}while(t[r]o);if(r>=a)break;d(t,s,i,r,a)}x(t,s,i,e,a,n),x(t,s,i,a+1,h,n)}function d(t,s,i,e,h){const n=t[e];t[e]=t[h],t[h]=n;const o=4*e,r=4*h,a=s[o],_=s[o+1],x=s[o+2],d=s[o+3];s[o]=s[r],s[o+1]=s[r+1],s[o+2]=s[r+2],s[o+3]=s[r+3],s[r]=a,s[r+1]=_,s[r+2]=x,s[r+3]=d;const m=i[e];i[e]=i[h],i[h]=m}function m(t,s){let i=t^s,e=65535^i,h=65535^(t|s),n=t&(65535^s),o=i|e>>1,r=i>>1^i,a=h>>1^e&n>>1^h,_=i&h>>1^n>>1^n;i=o,e=r,h=a,n=_,o=i&i>>2^e&e>>2,r=i&e>>2^e&(i^e)>>2,a^=i&h>>2^e&n>>2,_^=e&h>>2^(i^e)&n>>2,i=o,e=r,h=a,n=_,o=i&i>>4^e&e>>4,r=i&e>>4^e&(i^e)>>4,a^=i&h>>4^e&n>>4,_^=e&h>>4^(i^e)&n>>4,i=o,e=r,h=a,n=_,a^=i&h>>8^e&n>>8,_^=e&h>>8^(i^e)&n>>8,i=a^a>>1,e=_^_>>1;let x=t^s,d=e|65535^(x|i);return x=16711935&(x|x<<8),x=252645135&(x|x<<4),x=858993459&(x|x<<2),x=1431655765&(x|x<<1),d=16711935&(d|d<<8),d=252645135&(d|d<<4),d=858993459&(d|d<<2),d=1431655765&(d|d<<1),(d<<1|x)>>>0}i.default=r},\n", + " function _(s,t,i,h,e){h();i.default=class{constructor(){this.ids=[],this.values=[],this.length=0}clear(){this.length=0}push(s,t){let i=this.length++;for(this.ids[i]=s,this.values[i]=t;i>0;){const s=i-1>>1,h=this.values[s];if(t>=h)break;this.ids[i]=this.ids[s],this.values[i]=h,i=s}this.ids[i]=s,this.values[i]=t}pop(){if(0===this.length)return;const s=this.ids[0];if(this.length--,this.length>0){const s=this.ids[0]=this.ids[this.length],t=this.values[0]=this.values[this.length],i=this.length>>1;let h=0;for(;h=t)break;this.ids[h]=e,this.values[h]=l,h=s}this.ids[h]=s,this.values[h]=t}return s}peek(){if(0!==this.length)return this.ids[0]}peekValue(){if(0!==this.length)return this.values[0]}}},\n", + " function _(e,n,a,t,i){t();const l=(0,e(1).__importStar)(e(185));function r(e,n,{x0:a,x1:t,y0:i,y1:l},r){n.save(),n.beginPath(),n.moveTo(a,(i+l)/2),n.lineTo(t,(i+l)/2),e.line.apply(n,r),n.restore()}function c(e,n,{x0:a,x1:t,y0:i,y1:l},r){var c,o;const _=.1*Math.abs(t-a),s=.1*Math.abs(l-i),y=a+_,p=t-_,g=i+s,h=l-s;n.beginPath(),n.rect(y,g,p-y,h-g),e.fill.apply(n,r),null===(c=e.hatch)||void 0===c||c.apply(n,r),null===(o=e.line)||void 0===o||o.apply(n,r)}a.generic_line_scalar_legend=function(e,n,{x0:a,x1:t,y0:i,y1:l}){n.save(),n.beginPath(),n.moveTo(a,(i+l)/2),n.lineTo(t,(i+l)/2),e.line.apply(n),n.restore()},a.generic_line_vector_legend=r,a.generic_line_legend=r,a.generic_area_scalar_legend=function(e,n,{x0:a,x1:t,y0:i,y1:l}){var r,c;const o=.1*Math.abs(t-a),_=.1*Math.abs(l-i),s=a+o,y=t-o,p=i+_,g=l-_;n.beginPath(),n.rect(s,p,y-s,g-p),e.fill.apply(n),null===(r=e.hatch)||void 0===r||r.apply(n),null===(c=e.line)||void 0===c||c.apply(n)},a.generic_area_vector_legend=c,a.generic_area_legend=c,a.line_interpolation=function(e,n,a,t,i,r){const{sx:c,sy:o}=n;let _,s,y,p;\"point\"==n.type?([y,p]=e.yscale.r_invert(o-1,o+1),[_,s]=e.xscale.r_invert(c-1,c+1)):\"v\"==n.direction?([y,p]=e.yscale.r_invert(o,o),[_,s]=[Math.min(a-1,i-1),Math.max(a+1,i+1)]):([_,s]=e.xscale.r_invert(c,c),[y,p]=[Math.min(t-1,r-1),Math.max(t+1,r+1)]);const{x:g,y:h}=l.check_2_segments_intersect(_,y,s,p,a,t,i,r);return[g,h]}},\n", + " function _(t,n,e,i,r){function s(t,n){return(t.x-n.x)**2+(t.y-n.y)**2}function o(t,n,e){const i=s(n,e);if(0==i)return s(t,n);const r=((t.x-n.x)*(e.x-n.x)+(t.y-n.y)*(e.y-n.y))/i;if(r<0)return s(t,n);if(r>1)return s(t,e);return s(t,{x:n.x+r*(e.x-n.x),y:n.y+r*(e.y-n.y)})}i(),e.point_in_poly=function(t,n,e,i){let r=!1,s=e[e.length-1],o=i[i.length-1];for(let u=0;u0&&_<1&&h>0&&h<1,x:t+_*(e-t),y:n+_*(i-n)}}}},\n", + " function _(t,s,e,i,a){i();const l=t(1);var n;const _=t(178),o=t(184),c=(0,l.__importStar)(t(185)),h=(0,l.__importStar)(t(48)),r=t(72);class p extends _.XYGlyphView{_render(t,s,e){const{sx:i,sy:a}=null!=e?e:this;let l=!0;t.beginPath();for(const e of s){const s=i[e],n=a[e];isFinite(s+n)?l?(t.moveTo(s,n),l=!1):t.lineTo(s,n):(t.closePath(),l=!0)}t.closePath(),this.visuals.fill.apply(t),this.visuals.hatch.apply(t),this.visuals.line.apply(t)}draw_legend_for_index(t,s,e){(0,o.generic_area_scalar_legend)(this.visuals,t,s)}_hit_point(t){const s=new r.Selection;return c.point_in_poly(t.sx,t.sy,this.sx,this.sy)&&(s.add_to_selected_glyphs(this.model),s.view=this),s}}e.PatchView=p,p.__name__=\"PatchView\";class d extends _.XYGlyph{constructor(t){super(t)}}e.Patch=d,n=d,d.__name__=\"Patch\",n.prototype.default_view=p,n.mixins([h.LineScalar,h.FillScalar,h.HatchScalar])},\n", + " function _(t,s,e,i,n){i();const h=t(1);var r;const a=t(188),_=(0,h.__importStar)(t(185)),o=(0,h.__importStar)(t(18)),l=t(72);class c extends a.AreaView{_index_data(t){const{min:s,max:e}=Math,{data_size:i}=this;for(let n=0;n=0;s--)t.lineTo(n[s],h[s]);t.closePath(),this.visuals.fill.apply(t),this.visuals.hatch.apply(t)}_hit_point(t){const s=this.sy.length,e=new l.Selection;for(let i=0,n=s-1;i({x1:[o.XCoordinateSpec,{field:\"x1\"}],x2:[o.XCoordinateSpec,{field:\"x2\"}],y:[o.YCoordinateSpec,{field:\"y\"}]})))},\n", + " function _(e,a,r,_,s){_();const n=e(1);var c;const i=e(179),l=e(184),t=(0,n.__importStar)(e(48));class o extends i.GlyphView{draw_legend_for_index(e,a,r){(0,l.generic_area_scalar_legend)(this.visuals,e,a)}}r.AreaView=o,o.__name__=\"AreaView\";class d extends i.Glyph{constructor(e){super(e)}}r.Area=d,c=d,d.__name__=\"Area\",c.mixins([t.FillScalar,t.HatchScalar])},\n", + " function _(t,s,e,i,n){i();const h=t(1);var r;const a=t(188),_=(0,h.__importStar)(t(185)),o=(0,h.__importStar)(t(18)),l=t(72);class c extends a.AreaView{_index_data(t){const{min:s,max:e}=Math,{data_size:i}=this;for(let n=0;n=0;s--)t.lineTo(i[s],h[s]);t.closePath(),this.visuals.fill.apply(t),this.visuals.hatch.apply(t)}scenterxy(t){return[this.sx[t],(this.sy1[t]+this.sy2[t])/2]}_hit_point(t){const s=this.sx.length,e=new l.Selection;for(let i=0,n=s-1;i({x:[o.XCoordinateSpec,{field:\"x\"}],y1:[o.YCoordinateSpec,{field:\"y1\"}],y2:[o.YCoordinateSpec,{field:\"y2\"}]})))},\n", + " function _(e,i,s,t,n){var c;t();const o=e(53),r=e(24),u=e(191),_=e(70);class a extends o.Model{constructor(e){super(e)}initialize(){super.initialize(),this.compute_indices()}connect_signals(){super.connect_signals(),this.connect(this.properties.filters.change,(()=>this.compute_indices()));const e=()=>{const e=()=>this.compute_indices();null!=this.source&&(this.connect(this.source.change,e),this.source instanceof _.ColumnarDataSource&&(this.connect(this.source.streaming,e),this.connect(this.source.patching,e)))};let i=null!=this.source;i?e():this.connect(this.properties.source.change,(()=>{i||(e(),i=!0)}))}compute_indices(){var e;const{source:i}=this;if(null==i)return;const s=null!==(e=i.get_length())&&void 0!==e?e:1,t=r.Indices.all_set(s);for(const e of this.filters)t.intersect(e.compute_indices(i));this.indices=t,this._indices=[...t],this.indices_map_to_subset()}indices_map_to_subset(){this.indices_map={};for(let e=0;ethis._indices[e]))}convert_selection_to_subset(e){return e.map((e=>this.indices_map[e]))}convert_indices_from_subset(e){return e.map((e=>this._indices[e]))}}s.CDSView=a,c=a,a.__name__=\"CDSView\",c.define((({Array:e,Ref:i})=>({filters:[e(i(u.Filter)),[]],source:[i(_.ColumnarDataSource)]}))),c.internal((({Int:e,Dict:i,Ref:s,Nullable:t})=>({indices:[s(r.Indices)],indices_map:[i(e),{}],masked:[t(s(r.Indices)),null]})))},\n", + " function _(e,t,n,s,c){s();const o=e(53);class r extends o.Model{constructor(e){super(e)}}n.Filter=r,r.__name__=\"Filter\"},\n", + " function _(t,r,a,e,c){e(),c(\"BasicTickFormatter\",t(146).BasicTickFormatter),c(\"CategoricalTickFormatter\",t(142).CategoricalTickFormatter),c(\"DatetimeTickFormatter\",t(150).DatetimeTickFormatter),c(\"FuncTickFormatter\",t(193).FuncTickFormatter),c(\"LogTickFormatter\",t(163).LogTickFormatter),c(\"MercatorTickFormatter\",t(166).MercatorTickFormatter),c(\"NumeralTickFormatter\",t(194).NumeralTickFormatter),c(\"PrintfTickFormatter\",t(195).PrintfTickFormatter),c(\"TickFormatter\",t(131).TickFormatter)},\n", + " function _(t,e,n,s,r){var c;s();const i=t(131),a=t(13),u=t(34);class o extends i.TickFormatter{constructor(t){super(t)}get names(){return(0,a.keys)(this.args)}get values(){return(0,a.values)(this.args)}_make_func(){const t=(0,u.use_strict)(this.code);return new Function(\"tick\",\"index\",\"ticks\",...this.names,t)}doFormat(t,e){const n=this._make_func().bind({});return t.map(((t,e,s)=>`${n(t,e,s,...this.values)}`))}}n.FuncTickFormatter=o,c=o,o.__name__=\"FuncTickFormatter\",c.define((({Unknown:t,String:e,Dict:n})=>({args:[n(t),{}],code:[e,\"\"]})))},\n", + " function _(r,n,t,o,e){o();var a;const u=(0,r(1).__importStar)(r(153)),c=r(131),i=r(20);class s extends c.TickFormatter{constructor(r){super(r)}get _rounding_fn(){switch(this.rounding){case\"round\":case\"nearest\":return Math.round;case\"floor\":case\"rounddown\":return Math.floor;case\"ceil\":case\"roundup\":return Math.ceil}}doFormat(r,n){const{format:t,language:o,_rounding_fn:e}=this;return r.map((r=>u.format(r,t,o,e)))}}t.NumeralTickFormatter=s,a=s,s.__name__=\"NumeralTickFormatter\",a.define((({String:r})=>({format:[r,\"0,0\"],language:[r,\"en\"],rounding:[i.RoundingFunction,\"round\"]})))},\n", + " function _(t,r,n,o,a){var e;o();const i=t(131),s=t(152);class c extends i.TickFormatter{constructor(t){super(t)}doFormat(t,r){return t.map((t=>(0,s.sprintf)(this.format,t)))}}n.PrintfTickFormatter=c,e=c,c.__name__=\"PrintfTickFormatter\",e.define((({String:t})=>({format:[t,\"%s\"]})))},\n", + " function _(r,o,a,p,e){p(),e(\"CategoricalColorMapper\",r(197).CategoricalColorMapper),e(\"CategoricalMarkerMapper\",r(199).CategoricalMarkerMapper),e(\"CategoricalPatternMapper\",r(200).CategoricalPatternMapper),e(\"ContinuousColorMapper\",r(172).ContinuousColorMapper),e(\"ColorMapper\",r(173).ColorMapper),e(\"LinearColorMapper\",r(201).LinearColorMapper),e(\"LogColorMapper\",r(202).LogColorMapper),e(\"ScanningColorMapper\",r(171).ScanningColorMapper),e(\"EqHistColorMapper\",r(203).EqHistColorMapper)},\n", + " function _(t,o,r,a,e){var c;a();const s=t(198),l=t(173),n=t(67);class _ extends l.ColorMapper{constructor(t){super(t)}_v_compute(t,o,r,{nan_color:a}){(0,s.cat_v_compute)(t,this.factors,r,o,this.start,this.end,a)}}r.CategoricalColorMapper=_,c=_,_.__name__=\"CategoricalColorMapper\",c.define((({Number:t,Nullable:o})=>({factors:[n.FactorSeq],start:[t,0],end:[o(t),null]})))},\n", + " function _(n,t,e,l,i){l();const c=n(12),u=n(8);function f(n,t){if(n.length!=t.length)return!1;for(let e=0,l=n.length;ef(n,h)))),s=_<0||_>=e.length?r:e[_],l[g]=s}}},\n", + " function _(e,r,a,t,s){var c;t();const l=e(198),n=e(67),u=e(174),o=e(20);class p extends u.Mapper{constructor(e){super(e)}v_compute(e){const r=new Array(e.length);return(0,l.cat_v_compute)(e,this.factors,this.markers,r,this.start,this.end,this.default_value),r}}a.CategoricalMarkerMapper=p,c=p,p.__name__=\"CategoricalMarkerMapper\",c.define((({Number:e,Array:r,Nullable:a})=>({factors:[n.FactorSeq],markers:[r(o.MarkerType)],start:[e,0],end:[a(e),null],default_value:[o.MarkerType,\"circle\"]})))},\n", + " function _(t,e,a,r,n){var s;r();const c=t(198),l=t(67),p=t(174),u=t(20);class o extends p.Mapper{constructor(t){super(t)}v_compute(t){const e=new Array(t.length);return(0,c.cat_v_compute)(t,this.factors,this.patterns,e,this.start,this.end,this.default_value),e}}a.CategoricalPatternMapper=o,s=o,o.__name__=\"CategoricalPatternMapper\",s.define((({Number:t,Array:e,Nullable:a})=>({factors:[l.FactorSeq],patterns:[e(u.HatchPatternType)],start:[t,0],end:[a(t),null],default_value:[u.HatchPatternType,\" \"]})))},\n", + " function _(n,r,o,t,a){t();const e=n(172),i=n(12);class s extends e.ContinuousColorMapper{constructor(n){super(n)}scan(n,r){const o=null!=this.low?this.low:(0,i.min)(n),t=null!=this.high?this.high:(0,i.max)(n);return{max:t,min:o,norm_factor:1/(t-o),normed_interval:1/r}}cmap(n,r,o,t,a){const e=r.length-1;if(n==a.max)return r[e];const i=(n-a.min)*a.norm_factor,s=Math.floor(i/a.normed_interval);return s<0?o:s>e?t:r[s]}}o.LinearColorMapper=s,s.__name__=\"LinearColorMapper\"},\n", + " function _(o,t,n,r,l){r();const a=o(172),s=o(12);class e extends a.ContinuousColorMapper{constructor(o){super(o)}scan(o,t){const n=null!=this.low?this.low:(0,s.min)(o),r=null!=this.high?this.high:(0,s.max)(o);return{max:r,min:n,scale:t/(Math.log(r)-Math.log(n))}}cmap(o,t,n,r,l){const a=t.length-1;if(o>l.max)return r;if(o==l.max)return t[a];if(oa&&(e=a),t[e]}}n.LogColorMapper=e,e.__name__=\"LogColorMapper\"},\n", + " function _(e,n,s,t,l){var i;t();const r=e(171),o=e(12),c=e(9);class a extends r.ScanningColorMapper{constructor(e){super(e)}scan(e,n){let s=null!=this.low?this.low:(0,o.min)(e);const t=null!=this.high?this.high:(0,o.max)(e),l=this.bins,i=(0,c.linspace)(s,t,l+1),r=(0,o.bin_counts)(e,i);let a=0;for(let e=0;e1&&(f=1-n)}const d=(0,c.linspace)(f,1,n+1),g=(0,o.interpolate)(d,p,_);return this.rescale_discrete_levels?s=g[0]:g[0]=s,g[g.length-1]=t,{min:s,max:t,binning:g}}}s.EqHistColorMapper=a,i=a,a.__name__=\"EqHistColorMapper\",i.define((({Boolean:e,Int:n})=>({bins:[n,65536],rescale_discrete_levels:[e,!1]})))},\n", + " function _(a,e,l,c,n){c(),n(\"CategoricalScale\",a(62).CategoricalScale),n(\"ContinuousScale\",a(60).ContinuousScale),n(\"LinearScale\",a(59).LinearScale),n(\"LinearInterpolationScale\",a(205).LinearInterpolationScale),n(\"LogScale\",a(61).LogScale),n(\"Scale\",a(55).Scale)},\n", + " function _(e,r,n,t,a){var i;t();const s=e(55),o=e(59),c=e(12);class _ extends s.Scale{constructor(e){super(e)}connect_signals(){super.connect_signals();const{source_range:e,target_range:r}=this.properties;this.on_change([e,r],(()=>{this.linear_scale=new o.LinearScale({source_range:this.source_range,target_range:this.target_range})}))}get s_compute(){throw new Error(\"not implemented\")}get s_invert(){throw new Error(\"not implemented\")}compute(e){return e}v_compute(e){const{binning:r}=this,{start:n,end:t}=this.source_range,a=n,i=t,s=r.length,o=(t-n)/(s-1),_=new Float64Array(s);for(let e=0;e{if(ei)return i;const n=(0,c.left_edge_index)(e,r);if(-1==n)return a;if(n>=s-1)return i;const t=r[n],o=(e-t)/(r[n+1]-t),l=_[n];return l+o*(_[n+1]-l)}));return this.linear_scale.v_compute(l)}invert(e){return e}v_invert(e){return new Float64Array(e)}}n.LinearInterpolationScale=_,i=_,_.__name__=\"LinearInterpolationScale\",i.internal((({Arrayable:e,Ref:r})=>({binning:[e],linear_scale:[r(o.LinearScale),e=>new o.LinearScale({source_range:e.source_range,target_range:e.target_range})]})))},\n", + " function _(a,n,e,g,R){g(),R(\"DataRange\",a(64).DataRange),R(\"DataRange1d\",a(63).DataRange1d),R(\"FactorRange\",a(67).FactorRange),R(\"Range\",a(57).Range),R(\"Range1d\",a(58).Range1d)},\n", + " function _(a,o,i,t,e){t();var n=a(124);e(\"Sizeable\",n.Sizeable),e(\"SizingPolicy\",n.SizingPolicy);var c=a(125);e(\"Layoutable\",c.Layoutable),e(\"LayoutItem\",c.LayoutItem);var r=a(208);e(\"HStack\",r.HStack),e(\"VStack\",r.VStack);var l=a(209);e(\"Grid\",l.Grid),e(\"Row\",l.Row),e(\"Column\",l.Column);var S=a(210);e(\"ContentBox\",S.ContentBox),e(\"VariadicBox\",S.VariadicBox)},\n", + " function _(t,e,h,i,r){i();const n=t(125),o=t(65);class s extends n.Layoutable{constructor(){super(...arguments),this.children=[]}*[Symbol.iterator](){yield*this.children}}h.Stack=s,s.__name__=\"Stack\";class c extends s{_measure(t){let e=0,h=0;for(const t of this.children){const i=t.measure({width:0,height:0});e+=i.width,h=Math.max(h,i.height)}return{width:e,height:h}}_set_geometry(t,e){super._set_geometry(t,e);const h=this.absolute?t.top:0;let i=this.absolute?t.left:0;const{height:r}=t;for(const t of this.children){const{width:e}=t.measure({width:0,height:0});t.set_geometry(new o.BBox({left:i,width:e,top:h,height:r})),i+=e}}}h.HStack=c,c.__name__=\"HStack\";class a extends s{_measure(t){let e=0,h=0;for(const t of this.children){const i=t.measure({width:0,height:0});e=Math.max(e,i.width),h+=i.height}return{width:e,height:h}}_set_geometry(t,e){super._set_geometry(t,e);const h=this.absolute?t.left:0;let i=this.absolute?t.top:0;const{width:r}=t;for(const t of this.children){const{height:e}=t.measure({width:0,height:0});t.set_geometry(new o.BBox({top:i,height:e,left:h,width:r})),i+=e}}}h.VStack=a,a.__name__=\"VStack\";class l extends n.Layoutable{constructor(){super(...arguments),this.children=[]}*[Symbol.iterator](){yield*this.children}_measure(t){const{width_policy:e,height_policy:h}=this.sizing,{min:i,max:r}=Math;let n=0,o=0;for(const e of this.children){const{width:h,height:i}=e.measure(t);n=r(n,h),o=r(o,i)}return{width:(()=>{const{width:h}=this.sizing;if(t.width==1/0)return\"fixed\"==e&&null!=h?h:n;switch(e){case\"fixed\":return null!=h?h:n;case\"min\":return n;case\"fit\":return null!=h?i(t.width,h):t.width;case\"max\":return null!=h?r(t.width,h):t.width}})(),height:(()=>{const{height:e}=this.sizing;if(t.height==1/0)return\"fixed\"==h&&null!=e?e:o;switch(h){case\"fixed\":return null!=e?e:o;case\"min\":return o;case\"fit\":return null!=e?i(t.height,e):t.height;case\"max\":return null!=e?r(t.height,e):t.height}})()}}_set_geometry(t,e){super._set_geometry(t,e);const h=this.absolute?t:t.relative(),{left:i,right:r,top:n,bottom:s}=h,c=Math.round(h.vcenter),a=Math.round(h.hcenter);for(const e of this.children){const{margin:h,halign:l,valign:d}=e.sizing,{width:u,height:g,inner:_}=e.measure(t),w=(()=>{switch(`${d}_${l}`){case\"start_start\":return new o.BBox({left:i+h.left,top:n+h.top,width:u,height:g});case\"start_center\":return new o.BBox({hcenter:a,top:n+h.top,width:u,height:g});case\"start_end\":return new o.BBox({right:r-h.right,top:n+h.top,width:u,height:g});case\"center_start\":return new o.BBox({left:i+h.left,vcenter:c,width:u,height:g});case\"center_center\":return new o.BBox({hcenter:a,vcenter:c,width:u,height:g});case\"center_end\":return new o.BBox({right:r-h.right,vcenter:c,width:u,height:g});case\"end_start\":return new o.BBox({left:i+h.left,bottom:s-h.bottom,width:u,height:g});case\"end_center\":return new o.BBox({hcenter:a,bottom:s-h.bottom,width:u,height:g});case\"end_end\":return new o.BBox({right:r-h.right,bottom:s-h.bottom,width:u,height:g})}})(),m=null==_?w:new o.BBox({left:w.left+_.left,top:w.top+_.top,right:w.right-_.right,bottom:w.bottom-_.bottom});e.set_geometry(w,m)}}}h.NodeLayout=l,l.__name__=\"NodeLayout\"},\n", + " function _(t,i,s,e,o){e();const n=t(124),l=t(125),r=t(8),h=t(65),c=t(9),{max:a,round:g}=Math;class p{constructor(t){this.def=t,this._map=new Map}get(t){let i=this._map.get(t);return void 0===i&&(i=this.def(),this._map.set(t,i)),i}apply(t,i){const s=this.get(t);this._map.set(t,i(s))}}p.__name__=\"DefaultMap\";class f{constructor(){this._items=[],this._nrows=0,this._ncols=0}get nrows(){return this._nrows}get ncols(){return this._ncols}add(t,i){const{r1:s,c1:e}=t;this._nrows=a(this._nrows,s+1),this._ncols=a(this._ncols,e+1),this._items.push({span:t,data:i})}at(t,i){return this._items.filter((({span:s})=>s.r0<=t&&t<=s.r1&&s.c0<=i&&i<=s.c1)).map((({data:t})=>t))}row(t){return this._items.filter((({span:i})=>i.r0<=t&&t<=i.r1)).map((({data:t})=>t))}col(t){return this._items.filter((({span:i})=>i.c0<=t&&t<=i.c1)).map((({data:t})=>t))}foreach(t){for(const{span:i,data:s}of this._items)t(i,s)}map(t){const i=new f;for(const{span:s,data:e}of this._items)i.add(s,t(s,e));return i}}f.__name__=\"Container\";class _ extends l.Layoutable{constructor(t=[]){super(),this.items=t,this.rows=\"auto\",this.cols=\"auto\",this.spacing=0}*[Symbol.iterator](){for(const{layout:t}of this.items)yield t}is_width_expanding(){if(super.is_width_expanding())return!0;if(\"fixed\"==this.sizing.width_policy)return!1;const{cols:t}=this._state;return(0,c.some)(t,(t=>\"max\"==t.policy))}is_height_expanding(){if(super.is_height_expanding())return!0;if(\"fixed\"==this.sizing.height_policy)return!1;const{rows:t}=this._state;return(0,c.some)(t,(t=>\"max\"==t.policy))}_init(){var t,i,s,e;super._init();const o=new f;for(const{layout:t,row:i,col:s,row_span:e,col_span:n}of this.items)if(t.sizing.visible){const l=i,r=s,h=i+(null!=e?e:1)-1,c=s+(null!=n?n:1)-1;o.add({r0:l,c0:r,r1:h,c1:c},t)}const{nrows:n,ncols:l}=o,h=new Array(n);for(let s=0;s{var t;const i=(0,r.isPlainObject)(this.rows)?null!==(t=this.rows[s])&&void 0!==t?t:this.rows[\"*\"]:this.rows;return null==i?{policy:\"auto\"}:(0,r.isNumber)(i)?{policy:\"fixed\",height:i}:(0,r.isString)(i)?{policy:i}:i})(),n=null!==(t=e.align)&&void 0!==t?t:\"auto\";if(\"fixed\"==e.policy)h[s]={policy:\"fixed\",height:e.height,align:n};else if(\"min\"==e.policy)h[s]={policy:\"min\",align:n};else if(\"fit\"==e.policy||\"max\"==e.policy)h[s]={policy:e.policy,flex:null!==(i=e.flex)&&void 0!==i?i:1,align:n};else{if(\"auto\"!=e.policy)throw new Error(\"unrechable\");(0,c.some)(o.row(s),(t=>t.is_height_expanding()))?h[s]={policy:\"max\",flex:1,align:n}:h[s]={policy:\"min\",align:n}}}const a=new Array(l);for(let t=0;t{var i;const s=(0,r.isPlainObject)(this.cols)?null!==(i=this.cols[t])&&void 0!==i?i:this.cols[\"*\"]:this.cols;return null==s?{policy:\"auto\"}:(0,r.isNumber)(s)?{policy:\"fixed\",width:s}:(0,r.isString)(s)?{policy:s}:s})(),n=null!==(s=i.align)&&void 0!==s?s:\"auto\";if(\"fixed\"==i.policy)a[t]={policy:\"fixed\",width:i.width,align:n};else if(\"min\"==i.policy)a[t]={policy:\"min\",align:n};else if(\"fit\"==i.policy||\"max\"==i.policy)a[t]={policy:i.policy,flex:null!==(e=i.flex)&&void 0!==e?e:1,align:n};else{if(\"auto\"!=i.policy)throw new Error(\"unrechable\");(0,c.some)(o.col(t),(t=>t.is_width_expanding()))?a[t]={policy:\"max\",flex:1,align:n}:a[t]={policy:\"min\",align:n}}}const[g,p]=(0,r.isNumber)(this.spacing)?[this.spacing,this.spacing]:this.spacing;this._state={items:o,nrows:n,ncols:l,rows:h,cols:a,rspacing:g,cspacing:p}}_measure_totals(t,i){const{nrows:s,ncols:e,rspacing:o,cspacing:n}=this._state;return{height:(0,c.sum)(t)+(s-1)*o,width:(0,c.sum)(i)+(e-1)*n}}_measure_cells(t){const{items:i,nrows:s,ncols:e,rows:o,cols:l,rspacing:r,cspacing:h}=this._state,c=new Array(s);for(let t=0;t{const{r0:e,c0:f,r1:d,c1:u}=i,w=(d-e)*r,m=(u-f)*h;let y=0;for(let i=e;i<=d;i++)y+=t(i,f).height;y+=w;let x=0;for(let i=f;i<=u;i++)x+=t(e,i).width;x+=m;const b=s.measure({width:x,height:y});_.add(i,{layout:s,size_hint:b});const z=new n.Sizeable(b).grow_by(s.sizing.margin);z.height-=w,z.width-=m;const v=[];for(let t=e;t<=d;t++){const i=o[t];\"fixed\"==i.policy?z.height-=i.height:v.push(t)}if(z.height>0){const t=g(z.height/v.length);for(const i of v)c[i]=a(c[i],t)}const j=[];for(let t=f;t<=u;t++){const i=l[t];\"fixed\"==i.policy?z.width-=i.width:j.push(t)}if(z.width>0){const t=g(z.width/j.length);for(const i of j)p[i]=a(p[i],t)}}));return{size:this._measure_totals(c,p),row_heights:c,col_widths:p,size_hints:_}}_measure_grid(t){const{nrows:i,ncols:s,rows:e,cols:o,rspacing:n,cspacing:l}=this._state,r=this._measure_cells(((t,i)=>{const s=e[t],n=o[i];return{width:\"fixed\"==n.policy?n.width:1/0,height:\"fixed\"==s.policy?s.height:1/0}}));let h;h=\"fixed\"==this.sizing.height_policy&&null!=this.sizing.height?this.sizing.height:t.height!=1/0&&this.is_height_expanding()?t.height:r.size.height;let c,p=0;for(let t=0;t0)for(let t=0;ti?i:e,t--}}}c=\"fixed\"==this.sizing.width_policy&&null!=this.sizing.width?this.sizing.width:t.width!=1/0&&this.is_width_expanding()?t.width:r.size.width;let f=0;for(let t=0;t0)for(let t=0;ts?s:o,t--}}}const{row_heights:_,col_widths:d,size_hints:u}=this._measure_cells(((t,i)=>({width:r.col_widths[i],height:r.row_heights[t]})));return{size:this._measure_totals(_,d),row_heights:_,col_widths:d,size_hints:u}}_measure(t){const{size:i}=this._measure_grid(t);return i}_set_geometry(t,i){super._set_geometry(t,i);const{nrows:s,ncols:e,rspacing:o,cspacing:n}=this._state,{row_heights:l,col_widths:r,size_hints:c}=this._measure_grid(t),f=this._state.rows.map(((t,i)=>Object.assign(Object.assign({},t),{top:0,height:l[i],get bottom(){return this.top+this.height}}))),_=this._state.cols.map(((t,i)=>Object.assign(Object.assign({},t),{left:0,width:r[i],get right(){return this.left+this.width}}))),d=c.map(((t,i)=>Object.assign(Object.assign({},i),{outer:new h.BBox,inner:new h.BBox})));for(let i=0,e=this.absolute?t.top:0;i{const{layout:r,size_hint:c}=l,{sizing:a}=r,{width:p,height:d}=c,u=function(t,i){let s=(i-t)*n;for(let e=t;e<=i;e++)s+=_[e].width;return s}(i,e),w=function(t,i){let s=(i-t)*o;for(let e=t;e<=i;e++)s+=f[e].height;return s}(t,s),m=i==e&&\"auto\"!=_[i].align?_[i].align:a.halign,y=t==s&&\"auto\"!=f[t].align?f[t].align:a.valign;let x=_[i].left;\"start\"==m?x+=a.margin.left:\"center\"==m?x+=g((u-p)/2):\"end\"==m&&(x+=u-a.margin.right-p);let b=f[t].top;\"start\"==y?b+=a.margin.top:\"center\"==y?b+=g((w-d)/2):\"end\"==y&&(b+=w-a.margin.bottom-d),l.outer=new h.BBox({left:x,top:b,width:p,height:d})}));const u=f.map((()=>({start:new p((()=>0)),end:new p((()=>0))}))),w=_.map((()=>({start:new p((()=>0)),end:new p((()=>0))})));d.foreach((({r0:t,c0:i,r1:s,c1:e},{size_hint:o,outer:n})=>{const{inner:l}=o;null!=l&&(u[t].start.apply(n.top,(t=>a(t,l.top))),u[s].end.apply(f[s].bottom-n.bottom,(t=>a(t,l.bottom))),w[i].start.apply(n.left,(t=>a(t,l.left))),w[e].end.apply(_[e].right-n.right,(t=>a(t,l.right))))})),d.foreach((({r0:t,c0:i,r1:s,c1:e},o)=>{const{size_hint:n,outer:l}=o,r=t=>{const i=this.absolute?l:l.relative(),s=i.left+t.left,e=i.top+t.top,o=i.right-t.right,n=i.bottom-t.bottom;return new h.BBox({left:s,top:e,right:o,bottom:n})};if(null!=n.inner){let h=r(n.inner);if(!1!==n.align){const o=u[t].start.get(l.top),n=u[s].end.get(f[s].bottom-l.bottom),c=w[i].start.get(l.left),a=w[e].end.get(_[e].right-l.right);try{h=r({top:o,bottom:n,left:c,right:a})}catch(t){}}o.inner=h}else o.inner=l})),d.foreach(((t,{layout:i,outer:s,inner:e})=>{i.set_geometry(s,e)}))}}s.Grid=_,_.__name__=\"Grid\";class d extends _{constructor(t){super(),this.items=t.map(((t,i)=>({layout:t,row:0,col:i}))),this.rows=\"fit\"}}s.Row=d,d.__name__=\"Row\";class u extends _{constructor(t){super(),this.items=t.map(((t,i)=>({layout:t,row:i,col:0}))),this.cols=\"fit\"}}s.Column=u,u.__name__=\"Column\"},\n", + " function _(e,t,s,n,i){n();const a=e(125),c=e(124),o=e(43);class r extends a.ContentLayoutable{constructor(e){super(),this.content_size=(0,o.unsized)(e,(()=>new c.Sizeable((0,o.size)(e))))}_content_size(){return this.content_size}}s.ContentBox=r,r.__name__=\"ContentBox\";class _ extends a.Layoutable{constructor(e){super(),this.el=e}_measure(e){const t=new c.Sizeable(e).bounded_to(this.sizing.size);return(0,o.sized)(this.el,t,(()=>{const e=new c.Sizeable((0,o.content_size)(this.el)),{border:t,padding:s}=(0,o.extents)(this.el);return e.grow_by(t).grow_by(s).map(Math.ceil)}))}}s.VariadicBox=_,_.__name__=\"VariadicBox\";class h extends _{constructor(e){super(e),this._cache=new Map}_measure(e){const{width:t,height:s}=e,n=`${t},${s}`;let i=this._cache.get(n);return null==i&&(i=super._measure(e),this._cache.set(n,i)),i}invalidate_cache(){this._cache.clear()}}s.CachedVariadicBox=h,h.__name__=\"CachedVariadicBox\"},\n", + " function _(t,e,i,h,o){h();const s=t(124),r=t(125),n=t(65);class g extends r.Layoutable{constructor(){super(...arguments),this.min_border={left:0,top:0,right:0,bottom:0},this.padding={left:0,top:0,right:0,bottom:0}}*[Symbol.iterator](){yield this.top_panel,yield this.bottom_panel,yield this.left_panel,yield this.right_panel,yield this.center_panel}_measure(t){t=new s.Sizeable({width:\"fixed\"==this.sizing.width_policy||t.width==1/0?this.sizing.width:t.width,height:\"fixed\"==this.sizing.height_policy||t.height==1/0?this.sizing.height:t.height});const e=this.left_panel.measure({width:0,height:t.height}),i=Math.max(e.width,this.min_border.left)+this.padding.left,h=this.right_panel.measure({width:0,height:t.height}),o=Math.max(h.width,this.min_border.right)+this.padding.right,r=this.top_panel.measure({width:t.width,height:0}),n=Math.max(r.height,this.min_border.top)+this.padding.top,g=this.bottom_panel.measure({width:t.width,height:0}),a=Math.max(g.height,this.min_border.bottom)+this.padding.bottom,d=new s.Sizeable(t).shrink_by({left:i,right:o,top:n,bottom:a}),l=this.center_panel.measure(d);return{width:i+l.width+o,height:n+l.height+a,inner:{left:i,right:o,top:n,bottom:a},align:(()=>{const{width_policy:t,height_policy:e}=this.center_panel.sizing;return\"fixed\"!=t&&\"fixed\"!=e})()}}_set_geometry(t,e){super._set_geometry(t,e),this.center_panel.set_geometry(e);const i=this.left_panel.measure({width:0,height:t.height}),h=this.right_panel.measure({width:0,height:t.height}),o=this.top_panel.measure({width:t.width,height:0}),s=this.bottom_panel.measure({width:t.width,height:0}),{left:r,top:g,right:a,bottom:d}=e;this.top_panel.set_geometry(new n.BBox({left:r,right:a,bottom:g,height:o.height})),this.bottom_panel.set_geometry(new n.BBox({left:r,right:a,top:d,height:s.height})),this.left_panel.set_geometry(new n.BBox({top:g,bottom:d,right:r,width:i.width})),this.right_panel.set_geometry(new n.BBox({top:g,bottom:d,left:a,width:h.width}))}}i.BorderLayout=g,g.__name__=\"BorderLayout\"},\n", + " function _(t,e,i,s,l){s();const n=t(1);var o;const a=t(119),_=t(10),d=t(20),h=t(120),r=t(123),u=(0,n.__importStar)(t(48));class c extends a.TextAnnotationView{update_layout(){const{panel:t}=this;this.layout=null!=t?new r.SideLayout(t,(()=>this.get_size()),!1):void 0}_get_size(){const{text:t}=this.model,e=new h.TextBox({text:t}),{angle:i,angle_units:s}=this.model;e.angle=(0,_.resolve_angle)(i,s),e.visuals=this.visuals.text.values();const{width:l,height:n}=e.size();return{width:l,height:n}}_render(){const{angle:t,angle_units:e}=this.model,i=(0,_.resolve_angle)(t,e),s=null!=this.layout?this.layout:this.plot_view.frame,l=this.coordinates.x_scale,n=this.coordinates.y_scale;let o=\"data\"==this.model.x_units?l.compute(this.model.x):s.bbox.xview.compute(this.model.x),a=\"data\"==this.model.y_units?n.compute(this.model.y):s.bbox.yview.compute(this.model.y);o+=this.model.x_offset,a-=this.model.y_offset;(\"canvas\"==this.model.render_mode?this._canvas_text.bind(this):this._css_text.bind(this))(this.layer.ctx,this.model.text,o,a,i)}}i.LabelView=c,c.__name__=\"LabelView\";class x extends a.TextAnnotation{constructor(t){super(t)}}i.Label=x,o=x,x.__name__=\"Label\",o.prototype.default_view=c,o.mixins([u.Text,[\"border_\",u.Line],[\"background_\",u.Fill]]),o.define((({Number:t,String:e,Angle:i})=>({x:[t],x_units:[d.SpatialUnits,\"data\"],y:[t],y_units:[d.SpatialUnits,\"data\"],text:[e,\"\"],angle:[i,0],angle_units:[d.AngleUnits,\"rad\"],x_offset:[t,0],y_offset:[t,0]}))),o.override({background_fill_color:null,border_line_color:null})},\n", + " function _(t,e,s,i,l){i();const o=t(1);var a;const r=t(69),n=(0,o.__importStar)(t(48)),d=t(20),_=t(43),c=t(120),h=(0,o.__importStar)(t(18)),u=t(11);class v extends r.DataAnnotationView{set_data(t){var e;if(super.set_data(t),null===(e=this.els)||void 0===e||e.forEach((t=>(0,_.remove)(t))),\"css\"==this.model.render_mode){const t=this.els=[...this.text].map((()=>(0,_.div)({style:{display:\"none\"}})));for(const e of t)this.plot_view.canvas_view.add_overlay(e)}else delete this.els}remove(){var t;null===(t=this.els)||void 0===t||t.forEach((t=>(0,_.remove)(t))),super.remove()}_rerender(){\"css\"==this.model.render_mode?this.render():this.request_render()}map_data(){const{x_scale:t,y_scale:e}=this.coordinates,s=null!=this.layout?this.layout:this.plot_view.frame;this.sx=\"data\"==this.model.x_units?t.v_compute(this._x):s.bbox.xview.v_compute(this._x),this.sy=\"data\"==this.model.y_units?e.v_compute(this._y):s.bbox.yview.v_compute(this._y)}paint(){const t=\"canvas\"==this.model.render_mode?this._v_canvas_text.bind(this):this._v_css_text.bind(this),{ctx:e}=this.layer;for(let s=0,i=this.text.length;s{switch(this.visuals.text.text_align.get(e)){case\"left\":return[\"left\",\"0%\"];case\"center\":return[\"center\",\"-50%\"];case\"right\":return[\"right\",\"-100%\"]}})(),[d,c]=(()=>{switch(this.visuals.text.text_baseline.get(e)){case\"top\":return[\"top\",\"0%\"];case\"middle\":return[\"center\",\"-50%\"];case\"bottom\":return[\"bottom\",\"-100%\"];default:return[\"center\",\"-50%\"]}})();let h=`translate(${n}, ${c})`;o&&(h+=`rotate(${o}rad)`),a.style.transformOrigin=`${r} ${d}`,a.style.transform=h,this.layout,this.visuals.background_fill.doit&&(this.visuals.background_fill.set_vectorize(t,e),a.style.backgroundColor=t.fillStyle),this.visuals.border_line.doit&&(this.visuals.border_line.set_vectorize(t,e),a.style.borderStyle=t.lineDash.length<2?\"solid\":\"dashed\",a.style.borderWidth=`${t.lineWidth}px`,a.style.borderColor=t.strokeStyle),(0,_.display)(a)}}s.LabelSetView=v,v.__name__=\"LabelSetView\";class x extends r.DataAnnotation{constructor(t){super(t)}}s.LabelSet=x,a=x,x.__name__=\"LabelSet\",a.prototype.default_view=v,a.mixins([n.TextVector,[\"border_\",n.LineVector],[\"background_\",n.FillVector]]),a.define((()=>({x:[h.XCoordinateSpec,{field:\"x\"}],y:[h.YCoordinateSpec,{field:\"y\"}],x_units:[d.SpatialUnits,\"data\"],y_units:[d.SpatialUnits,\"data\"],text:[h.StringSpec,{field:\"text\"}],angle:[h.AngleSpec,0],x_offset:[h.NumberSpec,{value:0}],y_offset:[h.NumberSpec,{value:0}],render_mode:[d.RenderMode,\"canvas\"]}))),a.override({background_fill_color:null,border_line_color:null})},\n", + " function _(t,e,i,l,s){l();const n=t(1);var o;const h=t(40),a=t(215),_=t(20),r=(0,n.__importStar)(t(48)),d=t(15),c=t(123),g=t(121),m=t(65),b=t(9),f=t(8),u=t(11);class x extends h.AnnotationView{update_layout(){const{panel:t}=this;this.layout=null!=t?new c.SideLayout(t,(()=>this.get_size())):void 0}cursor(t,e){return\"none\"==this.model.click_policy?null:\"pointer\"}get legend_padding(){return null!=this.model.border_line_color?this.model.padding:0}connect_signals(){super.connect_signals(),this.connect(this.model.change,(()=>this.request_render())),this.connect(this.model.item_change,(()=>this.request_render()))}compute_legend_bbox(){const t=this.model.get_legend_names(),{glyph_height:e,glyph_width:i}=this.model,{label_height:l,label_width:s}=this.model;this.max_label_height=(0,b.max)([(0,g.font_metrics)(this.visuals.label_text.font_value()).height,l,e]);const{ctx:n}=this.layer;n.save(),this.visuals.label_text.set_value(n),this.text_widths=new Map;for(const e of t)this.text_widths.set(e,(0,b.max)([n.measureText(e).width,s]));this.visuals.title_text.set_value(n),this.title_height=this.model.title?(0,g.font_metrics)(this.visuals.title_text.font_value()).height+this.model.title_standoff:0,this.title_width=this.model.title?n.measureText(this.model.title).width:0,n.restore();const o=Math.max((0,b.max)([...this.text_widths.values()]),0),h=this.model.margin,{legend_padding:a}=this,_=this.model.spacing,{label_standoff:r}=this.model;let d,c;if(\"vertical\"==this.model.orientation)d=t.length*this.max_label_height+Math.max(t.length-1,0)*_+2*a+this.title_height,c=(0,b.max)([o+i+r+2*a,this.title_width+2*a]);else{let e=2*a+Math.max(t.length-1,0)*_;for(const[,t]of this.text_widths)e+=(0,b.max)([t,s])+i+r;c=(0,b.max)([this.title_width+2*a,e]),d=this.max_label_height+this.title_height+2*a}const x=null!=this.layout?this.layout:this.plot_view.frame,[p,w]=x.bbox.ranges,{location:v}=this.model;let y,k;if((0,f.isString)(v))switch(v){case\"top_left\":y=p.start+h,k=w.start+h;break;case\"top\":case\"top_center\":y=(p.end+p.start)/2-c/2,k=w.start+h;break;case\"top_right\":y=p.end-h-c,k=w.start+h;break;case\"bottom_right\":y=p.end-h-c,k=w.end-h-d;break;case\"bottom\":case\"bottom_center\":y=(p.end+p.start)/2-c/2,k=w.end-h-d;break;case\"bottom_left\":y=p.start+h,k=w.end-h-d;break;case\"left\":case\"center_left\":y=p.start+h,k=(w.end+w.start)/2-d/2;break;case\"center\":case\"center_center\":y=(p.end+p.start)/2-c/2,k=(w.end+w.start)/2-d/2;break;case\"right\":case\"center_right\":y=p.end-h-c,k=(w.end+w.start)/2-d/2}else if((0,f.isArray)(v)&&2==v.length){const[t,e]=v;y=x.bbox.xview.compute(t),k=x.bbox.yview.compute(e)-d}else(0,u.unreachable)();return new m.BBox({left:y,top:k,width:c,height:d})}interactive_bbox(){return this.compute_legend_bbox()}interactive_hit(t,e){return this.interactive_bbox().contains(t,e)}on_hit(t,e){let i;const{glyph_width:l}=this.model,{legend_padding:s}=this,n=this.model.spacing,{label_standoff:o}=this.model;let h=i=s;const a=this.compute_legend_bbox(),_=\"vertical\"==this.model.orientation;for(const r of this.model.items){const d=r.get_labels_list_from_label_prop();for(const c of d){const d=a.x+h,g=a.y+i+this.title_height;let b,f;[b,f]=_?[a.width-2*s,this.max_label_height]:[this.text_widths.get(c)+l+o,this.max_label_height];if(new m.BBox({left:d,top:g,width:b,height:f}).contains(t,e)){switch(this.model.click_policy){case\"hide\":for(const t of r.renderers)t.visible=!t.visible;break;case\"mute\":for(const t of r.renderers)t.muted=!t.muted}return!0}_?i+=this.max_label_height+n:h+=this.text_widths.get(c)+l+o+n}}return!1}_render(){if(0==this.model.items.length)return;if(!(0,b.some)(this.model.items,(t=>t.visible)))return;for(const t of this.model.items)t.legend=this.model;const{ctx:t}=this.layer,e=this.compute_legend_bbox();t.save(),this._draw_legend_box(t,e),this._draw_legend_items(t,e),this._draw_title(t,e),t.restore()}_draw_legend_box(t,e){t.beginPath(),t.rect(e.x,e.y,e.width,e.height),this.visuals.background_fill.apply(t),this.visuals.border_line.apply(t)}_draw_legend_items(t,e){const{glyph_width:i,glyph_height:l}=this.model,{legend_padding:s}=this,n=this.model.spacing,{label_standoff:o}=this.model;let h=s,a=s;const _=\"vertical\"==this.model.orientation;for(const r of this.model.items){if(!r.visible)continue;const d=r.get_labels_list_from_label_prop(),c=r.get_field_from_label_prop();if(0==d.length)continue;const g=(()=>{switch(this.model.click_policy){case\"none\":return!0;case\"hide\":return(0,b.every)(r.renderers,(t=>t.visible));case\"mute\":return(0,b.every)(r.renderers,(t=>!t.muted))}})();for(const m of d){const d=e.x+h,b=e.y+a+this.title_height,f=d+i,u=b+l;_?a+=this.max_label_height+n:h+=this.text_widths.get(m)+i+o+n,this.visuals.label_text.set_value(t),t.fillText(m,f+o,b+this.max_label_height/2);for(const e of r.renderers){const i=this.plot_view.renderer_view(e);null==i||i.draw_legend(t,d,f,b,u,c,m,r.index)}if(!g){let l,n;[l,n]=_?[e.width-2*s,this.max_label_height]:[this.text_widths.get(m)+i+o,this.max_label_height],t.beginPath(),t.rect(d,b,l,n),this.visuals.inactive_fill.set_value(t),t.fill()}}}}_draw_title(t,e){const{title:i}=this.model;i&&this.visuals.title_text.doit&&(t.save(),t.translate(e.x0,e.y0+this.title_height),this.visuals.title_text.set_value(t),t.fillText(i,this.legend_padding,this.legend_padding-this.model.title_standoff),t.restore())}_get_size(){const{width:t,height:e}=this.compute_legend_bbox();return{width:t+2*this.model.margin,height:e+2*this.model.margin}}}i.LegendView=x,x.__name__=\"LegendView\";class p extends h.Annotation{constructor(t){super(t)}initialize(){super.initialize(),this.item_change=new d.Signal0(this,\"item_change\")}get_legend_names(){const t=[];for(const e of this.items){const i=e.get_labels_list_from_label_prop();t.push(...i)}return t}}i.Legend=p,o=p,p.__name__=\"Legend\",o.prototype.default_view=x,o.mixins([[\"label_\",r.Text],[\"title_\",r.Text],[\"inactive_\",r.Fill],[\"border_\",r.Line],[\"background_\",r.Fill]]),o.define((({Number:t,String:e,Array:i,Tuple:l,Or:s,Ref:n,Nullable:o})=>({orientation:[_.Orientation,\"vertical\"],location:[s(_.LegendLocation,l(t,t)),\"top_right\"],title:[o(e),null],title_standoff:[t,5],label_standoff:[t,5],glyph_height:[t,20],glyph_width:[t,20],label_height:[t,20],label_width:[t,20],margin:[t,10],padding:[t,10],spacing:[t,3],items:[i(n(a.LegendItem)),[]],click_policy:[_.LegendClickPolicy,\"none\"]}))),o.override({border_line_color:\"#e5e5e5\",border_line_alpha:.5,border_line_width:1,background_fill_color:\"#ffffff\",background_fill_alpha:.95,inactive_fill_color:\"white\",inactive_fill_alpha:.7,label_text_font_size:\"13px\",label_text_baseline:\"middle\",title_text_font_size:\"13px\",title_text_font_style:\"italic\"})},\n", + " function _(e,r,l,n,t){n();const i=e(1);var s;const o=e(53),a=e(175),_=e(70),u=e(216),d=(0,i.__importStar)(e(18)),c=e(19),f=e(9);class h extends o.Model{constructor(e){super(e)}_check_data_sources_on_renderers(){if(null!=this.get_field_from_label_prop()){if(this.renderers.length<1)return!1;const e=this.renderers[0].data_source;if(null!=e)for(const r of this.renderers)if(r.data_source!=e)return!1}return!0}_check_field_label_on_data_source(){const e=this.get_field_from_label_prop();if(null!=e){if(this.renderers.length<1)return!1;const r=this.renderers[0].data_source;if(null!=r&&!(0,f.includes)(r.columns(),e))return!1}return!0}initialize(){super.initialize(),this.legend=null,this.connect(this.change,(()=>{var e;return null===(e=this.legend)||void 0===e?void 0:e.item_change.emit()}));this._check_data_sources_on_renderers()||c.logger.error(\"Non matching data sources on legend item renderers\");this._check_field_label_on_data_source()||c.logger.error(`Bad column name on label: ${this.label}`)}get_field_from_label_prop(){const{label:e}=this;return(0,u.isField)(e)?e.field:null}get_labels_list_from_label_prop(){if(!this.visible)return[];if((0,u.isValue)(this.label)){const{value:e}=this.label;return null!=e?[e]:[]}const e=this.get_field_from_label_prop();if(null!=e){let r;if(!this.renderers[0]||null==this.renderers[0].data_source)return[\"No source found\"];if(r=this.renderers[0].data_source,r instanceof _.ColumnarDataSource){const l=r.get_column(e);return null!=l?(0,f.uniq)(Array.from(l)):[\"Invalid field\"]}}return[]}}l.LegendItem=h,s=h,h.__name__=\"LegendItem\",s.define((({Boolean:e,Int:r,Array:l,Ref:n,Nullable:t})=>({label:[d.NullStringSpec,null],renderers:[l(n(a.GlyphRenderer)),[]],index:[t(r),null],visible:[e,!0]})))},\n", + " function _(i,n,e,t,u){t();const c=i(8);e.isValue=function(i){return(0,c.isPlainObject)(i)&&\"value\"in i},e.isField=function(i){return(0,c.isPlainObject)(i)&&\"field\"in i},e.isExpr=function(i){return(0,c.isPlainObject)(i)&&\"expr\"in i}},\n", + " function _(t,n,e,s,i){s();const o=t(1);var a;const l=t(40),c=(0,o.__importStar)(t(48)),r=t(20);class _ extends l.AnnotationView{connect_signals(){super.connect_signals(),this.connect(this.model.change,(()=>this.request_render()))}_render(){const{xs:t,ys:n}=this.model;if(t.length!=n.length)return;const e=t.length;if(e<3)return;const{frame:s}=this.plot_view,{ctx:i}=this.layer,o=this.coordinates.x_scale,a=this.coordinates.y_scale,{screen:l}=this.model;function c(t,n,e,s){return l?t:\"data\"==n?e.v_compute(t):s.v_compute(t)}const r=c(t,this.model.xs_units,o,s.bbox.xview),_=c(n,this.model.ys_units,a,s.bbox.yview);i.beginPath();for(let t=0;t({xs:[n(t),[]],xs_units:[r.SpatialUnits,\"data\"],ys:[n(t),[]],ys_units:[r.SpatialUnits,\"data\"]}))),a.internal((({Boolean:t})=>({screen:[t,!1]}))),a.override({fill_color:\"#fff9ba\",fill_alpha:.4,line_color:\"#cccccc\",line_alpha:.3})},\n", + " function _(e,t,n,o,i){o();const s=e(1);var l;const r=e(40),c=(0,s.__importStar)(e(48));class a extends r.AnnotationView{connect_signals(){super.connect_signals(),this.connect(this.model.change,(()=>this.request_render()))}_render(){const{gradient:e,y_intercept:t}=this.model;if(null==e||null==t)return;const{frame:n}=this.plot_view,o=this.coordinates.x_scale,i=this.coordinates.y_scale;let s,l,r,c;if(0==e)s=i.compute(t),l=s,r=n.bbox.left,c=r+n.bbox.width;else{s=n.bbox.top,l=s+n.bbox.height;const a=(i.invert(s)-t)/e,_=(i.invert(l)-t)/e;r=o.compute(a),c=o.compute(_)}const{ctx:a}=this.layer;a.save(),a.beginPath(),this.visuals.line.set_value(a),a.moveTo(r,s),a.lineTo(c,l),a.stroke(),a.restore()}}n.SlopeView=a,a.__name__=\"SlopeView\";class _ extends r.Annotation{constructor(e){super(e)}}n.Slope=_,l=_,_.__name__=\"Slope\",l.prototype.default_view=a,l.mixins(c.Line),l.define((({Number:e,Nullable:t})=>({gradient:[t(e),null],y_intercept:[t(e),null]}))),l.override({line_color:\"black\"})},\n", + " function _(e,t,i,o,n){o();const s=e(1);var l;const a=e(40),r=(0,s.__importStar)(e(48)),c=e(20);class d extends a.AnnotationView{connect_signals(){super.connect_signals(),this.connect(this.model.change,(()=>this.plot_view.request_paint(this)))}_render(){const{location:e}=this.model;if(null==e)return;const{frame:t}=this.plot_view,i=this.coordinates.x_scale,o=this.coordinates.y_scale,n=(t,i)=>\"data\"==this.model.location_units?t.compute(e):this.model.for_hover?e:i.compute(e);let s,l,a,r;\"width\"==this.model.dimension?(a=n(o,t.bbox.yview),l=t.bbox.left,r=t.bbox.width,s=this.model.line_width):(a=t.bbox.top,l=n(i,t.bbox.xview),r=this.model.line_width,s=t.bbox.height);const{ctx:c}=this.layer;c.save(),c.beginPath(),this.visuals.line.set_value(c),c.moveTo(l,a),\"width\"==this.model.dimension?c.lineTo(l+r,a):c.lineTo(l,a+s),c.stroke(),c.restore()}}i.SpanView=d,d.__name__=\"SpanView\";class _ extends a.Annotation{constructor(e){super(e)}}i.Span=_,l=_,_.__name__=\"Span\",l.prototype.default_view=d,l.mixins(r.Line),l.define((({Number:e,Nullable:t})=>({render_mode:[c.RenderMode,\"canvas\"],location:[t(e),null],location_units:[c.SpatialUnits,\"data\"],dimension:[c.Dimension,\"width\"]}))),l.internal((({Boolean:e})=>({for_hover:[e,!1]}))),l.override({line_color:\"black\"})},\n", + " function _(i,e,t,o,l){var s;o();const a=i(40),_=i(221),n=i(113),r=i(43),h=i(123),b=i(65);class v extends a.AnnotationView{constructor(){super(...arguments),this._invalidate_toolbar=!0,this._previous_bbox=new b.BBox}update_layout(){this.layout=new h.SideLayout(this.panel,(()=>this.get_size()),!0)}initialize(){super.initialize(),this.el=(0,r.div)(),this.plot_view.canvas_view.add_event(this.el)}async lazy_initialize(){await super.lazy_initialize(),this._toolbar_view=await(0,n.build_view)(this.model.toolbar,{parent:this}),this.plot_view.visibility_callbacks.push((i=>this._toolbar_view.set_visibility(i)))}remove(){this._toolbar_view.remove(),(0,r.remove)(this.el),super.remove()}render(){this.model.visible||(0,r.undisplay)(this.el),super.render()}_render(){const{bbox:i}=this.layout;this._previous_bbox.equals(i)||((0,r.position)(this.el,i),this._previous_bbox=i,this._invalidate_toolbar=!0),this._invalidate_toolbar&&(this.el.style.position=\"absolute\",this.el.style.overflow=\"hidden\",(0,r.empty)(this.el),this.el.appendChild(this._toolbar_view.el),this._toolbar_view.layout.bbox=i,this._toolbar_view.render(),this._invalidate_toolbar=!1),(0,r.display)(this.el)}_get_size(){const{tools:i,logo:e}=this.model.toolbar;return{width:30*i.length+(null!=e?25:0)+15,height:30}}}t.ToolbarPanelView=v,v.__name__=\"ToolbarPanelView\";class d extends a.Annotation{constructor(i){super(i)}}t.ToolbarPanel=d,s=d,d.__name__=\"ToolbarPanel\",s.prototype.default_view=v,s.define((({Ref:i})=>({toolbar:[i(_.Toolbar)]})))},\n", + " function _(t,e,s,i,o){var c;i();const n=t(8),a=t(9),l=t(13),r=t(222),_=t(223),u=t(232),p=t(233);function v(t){switch(t){case\"tap\":return\"active_tap\";case\"pan\":return\"active_drag\";case\"pinch\":case\"scroll\":return\"active_scroll\";case\"multi\":return\"active_multi\"}return null}function h(t){return\"tap\"==t||\"pan\"==t}s.Drag=r.Tool,s.Inspection=r.Tool,s.Scroll=r.Tool,s.Tap=r.Tool;class f extends p.ToolbarBase{constructor(t){super(t)}connect_signals(){super.connect_signals();const{tools:t,active_drag:e,active_inspect:s,active_scroll:i,active_tap:o,active_multi:c}=this.properties;this.on_change([t,e,s,i,o,c],(()=>this._init_tools()))}_init_tools(){if(super._init_tools(),\"auto\"==this.active_inspect);else if(this.active_inspect instanceof u.InspectTool){let t=!1;for(const e of this.inspectors)e!=this.active_inspect?e.active=!1:t=!0;t||(this.active_inspect=null)}else if((0,n.isArray)(this.active_inspect)){const t=(0,a.intersection)(this.active_inspect,this.inspectors);t.length!=this.active_inspect.length&&(this.active_inspect=t);for(const t of this.inspectors)(0,a.includes)(this.active_inspect,t)||(t.active=!1)}else if(null==this.active_inspect)for(const t of this.inspectors)t.active=!1;const t=t=>{t.active?this._active_change(t):t.active=!0};for(const t of(0,l.values)(this.gestures)){t.tools=(0,a.sort_by)(t.tools,(t=>t.default_order));for(const e of t.tools)this.connect(e.properties.active.change,(()=>this._active_change(e)))}for(const[e,s]of(0,l.entries)(this.gestures)){const i=v(e);if(i){const o=this[i];\"auto\"==o?0!=s.tools.length&&h(e)&&t(s.tools[0]):null!=o&&((0,a.includes)(this.tools,o)?t(o):this[i]=null)}}}}s.Toolbar=f,c=f,f.__name__=\"Toolbar\",c.prototype.default_view=p.ToolbarBaseView,c.define((({Or:t,Ref:e,Auto:i,Null:o})=>({active_drag:[t(e(s.Drag),i,o),\"auto\"],active_inspect:[t(e(s.Inspection),i,o),\"auto\"],active_scroll:[t(e(s.Scroll),i,o),\"auto\"],active_tap:[t(e(s.Tap),i,o),\"auto\"],active_multi:[t(e(_.GestureTool),i,o),\"auto\"]})))},\n", + " function _(t,e,n,o,s){var i;o();const a=t(42),r=t(9),l=t(53);class c extends a.View{get plot_view(){return this.parent}get plot_model(){return this.parent.model}connect_signals(){super.connect_signals(),this.connect(this.model.properties.active.change,(()=>{this.model.active?this.activate():this.deactivate()}))}activate(){}deactivate(){}}n.ToolView=c,c.__name__=\"ToolView\";class _ extends l.Model{constructor(t){super(t)}get synthetic_renderers(){return[]}_get_dim_limits([t,e],[n,o],s,i){const a=s.bbox.h_range;let l;\"width\"==i||\"both\"==i?(l=[(0,r.min)([t,n]),(0,r.max)([t,n])],l=[(0,r.max)([l[0],a.start]),(0,r.min)([l[1],a.end])]):l=[a.start,a.end];const c=s.bbox.v_range;let _;return\"height\"==i||\"both\"==i?(_=[(0,r.min)([e,o]),(0,r.max)([e,o])],_=[(0,r.max)([_[0],c.start]),(0,r.min)([_[1],c.end])]):_=[c.start,c.end],[l,_]}static register_alias(t,e){this.prototype._known_aliases.set(t,e)}static from_string(t){const e=this.prototype._known_aliases.get(t);if(null!=e)return e();{const e=[...this.prototype._known_aliases.keys()];throw new Error(`unexpected tool name '${t}', possible tools are ${e.join(\", \")}`)}}}n.Tool=_,i=_,_.__name__=\"Tool\",i.prototype._known_aliases=new Map,i.define((({String:t,Nullable:e})=>({description:[e(t),null]}))),i.internal((({Boolean:t})=>({active:[t,!1]})))},\n", + " function _(e,o,t,s,n){s();const u=e(224),_=e(231);class l extends u.ButtonToolView{}t.GestureToolView=l,l.__name__=\"GestureToolView\";class i extends u.ButtonTool{constructor(e){super(e),this.button_view=_.OnOffButtonView}}t.GestureTool=i,i.__name__=\"GestureTool\"},\n", + " function _(t,e,o,s,i){s();const n=t(1);var l;const r=(0,n.__importDefault)(t(225)),a=t(226),u=t(222),h=t(43),_=t(34),d=t(8),c=t(9),m=(0,n.__importStar)(t(227)),p=m,v=(0,n.__importDefault)(t(228)),f=(0,n.__importDefault)(t(229)),g=t(230);class b extends a.DOMView{initialize(){super.initialize();const t=this.model.menu;if(null!=t){const e=this.parent.model.toolbar_location,o=\"left\"==e||\"above\"==e,s=this.parent.model.horizontal?\"vertical\":\"horizontal\";this._menu=new g.ContextMenu(o?(0,c.reversed)(t):t,{orientation:s,prevent_hide:t=>t.target==this.el})}this._hammer=new r.default(this.el,{touchAction:\"auto\",inputClass:r.default.TouchMouseInput}),this.connect(this.model.change,(()=>this.render())),this._hammer.on(\"tap\",(t=>{var e;(null===(e=this._menu)||void 0===e?void 0:e.is_open)?this._menu.hide():t.target==this.el&&this._clicked()})),this._hammer.on(\"press\",(()=>this._pressed())),this.el.addEventListener(\"keydown\",(t=>{t.keyCode==h.Keys.Enter&&this._clicked()}))}remove(){var t;this._hammer.destroy(),null===(t=this._menu)||void 0===t||t.remove(),super.remove()}styles(){return[...super.styles(),m.default,v.default,f.default]}css_classes(){return super.css_classes().concat(p.toolbar_button)}render(){(0,h.empty)(this.el);const t=this.model.computed_icon;(0,d.isString)(t)&&((0,_.startsWith)(t,\"data:image\")?this.el.style.backgroundImage=`url(\"${t}\")`:this.el.classList.add(t)),this.el.title=this.model.tooltip,this.el.tabIndex=0,null!=this._menu&&this.root.el.appendChild(this._menu.el)}_pressed(){var t;const e=(()=>{switch(this.parent.model.toolbar_location){case\"right\":return{left_of:this.el};case\"left\":return{right_of:this.el};case\"above\":return{below:this.el};case\"below\":return{above:this.el}}})();null===(t=this._menu)||void 0===t||t.toggle(e)}}o.ButtonToolButtonView=b,b.__name__=\"ButtonToolButtonView\";class w extends u.ToolView{}o.ButtonToolView=w,w.__name__=\"ButtonToolView\";class y extends u.Tool{constructor(t){super(t)}_get_dim_tooltip(t){const{description:e,tool_name:o}=this;return null!=e?e:\"both\"==t?o:`${o} (${\"width\"==t?\"x\":\"y\"}-axis)`}get tooltip(){var t;return null!==(t=this.description)&&void 0!==t?t:this.tool_name}get computed_icon(){return this.icon}get menu(){return null}}o.ButtonTool=y,l=y,y.__name__=\"ButtonTool\",l.internal((({Boolean:t})=>({disabled:[t,!1]})))},\n", + " function _(t,e,i,n,r){\n", + " /*! Hammer.JS - v2.0.7 - 2016-04-22\n", + " * http://hammerjs.github.io/\n", + " *\n", + " * Copyright (c) 2016 Jorik Tangelder;\n", + " * Licensed under the MIT license */\n", + " !function(t,i,n,r){\"use strict\";var s,o=[\"\",\"webkit\",\"Moz\",\"MS\",\"ms\",\"o\"],a=i.createElement(\"div\"),h=Math.round,u=Math.abs,c=Date.now;function l(t,e,i){return setTimeout(T(t,i),e)}function p(t,e,i){return!!Array.isArray(t)&&(f(t,i[e],i),!0)}function f(t,e,i){var n;if(t)if(t.forEach)t.forEach(e,i);else if(t.length!==r)for(n=0;n\\s*\\(/gm,\"{anonymous}()@\"):\"Unknown Stack Trace\",s=t.console&&(t.console.warn||t.console.log);return s&&s.call(t.console,r,n),e.apply(this,arguments)}}s=\"function\"!=typeof Object.assign?function(t){if(t===r||null===t)throw new TypeError(\"Cannot convert undefined or null to object\");for(var e=Object(t),i=1;i-1}function S(t){return t.trim().split(/\\s+/g)}function b(t,e,i){if(t.indexOf&&!i)return t.indexOf(e);for(var n=0;ni[e]})):n.sort()),n}function x(t,e){for(var i,n,s=e[0].toUpperCase()+e.slice(1),a=0;a1&&!i.firstMultiple?i.firstMultiple=H(e):1===s&&(i.firstMultiple=!1);var o=i.firstInput,a=i.firstMultiple,h=a?a.center:o.center,l=e.center=L(n);e.timeStamp=c(),e.deltaTime=e.timeStamp-o.timeStamp,e.angle=G(h,l),e.distance=j(h,l),function(t,e){var i=e.center,n=t.offsetDelta||{},r=t.prevDelta||{},s=t.prevInput||{};1!==e.eventType&&4!==s.eventType||(r=t.prevDelta={x:s.deltaX||0,y:s.deltaY||0},n=t.offsetDelta={x:i.x,y:i.y});e.deltaX=r.x+(i.x-n.x),e.deltaY=r.y+(i.y-n.y)}(i,e),e.offsetDirection=V(e.deltaX,e.deltaY);var p=U(e.deltaTime,e.deltaX,e.deltaY);e.overallVelocityX=p.x,e.overallVelocityY=p.y,e.overallVelocity=u(p.x)>u(p.y)?p.x:p.y,e.scale=a?(f=a.pointers,v=n,j(v[0],v[1],W)/j(f[0],f[1],W)):1,e.rotation=a?function(t,e){return G(e[1],e[0],W)+G(t[1],t[0],W)}(a.pointers,n):0,e.maxPointers=i.prevInput?e.pointers.length>i.prevInput.maxPointers?e.pointers.length:i.prevInput.maxPointers:e.pointers.length,function(t,e){var i,n,s,o,a=t.lastInterval||e,h=e.timeStamp-a.timeStamp;if(8!=e.eventType&&(h>25||a.velocity===r)){var c=e.deltaX-a.deltaX,l=e.deltaY-a.deltaY,p=U(h,c,l);n=p.x,s=p.y,i=u(p.x)>u(p.y)?p.x:p.y,o=V(c,l),t.lastInterval=e}else i=a.velocity,n=a.velocityX,s=a.velocityY,o=a.direction;e.velocity=i,e.velocityX=n,e.velocityY=s,e.direction=o}(i,e);var f,v;var d=t.element;_(e.srcEvent.target,d)&&(d=e.srcEvent.target);e.target=d}(t,i),t.emit(\"hammer.input\",i),t.recognize(i),t.session.prevInput=i}function H(t){for(var e=[],i=0;i=u(e)?t<0?2:4:e<0?8:16}function j(t,e,i){i||(i=F);var n=e[i[0]]-t[i[0]],r=e[i[1]]-t[i[1]];return Math.sqrt(n*n+r*r)}function G(t,e,i){i||(i=F);var n=e[i[0]]-t[i[0]],r=e[i[1]]-t[i[1]];return 180*Math.atan2(r,n)/Math.PI}q.prototype={handler:function(){},init:function(){this.evEl&&I(this.element,this.evEl,this.domHandler),this.evTarget&&I(this.target,this.evTarget,this.domHandler),this.evWin&&I(O(this.element),this.evWin,this.domHandler)},destroy:function(){this.evEl&&A(this.element,this.evEl,this.domHandler),this.evTarget&&A(this.target,this.evTarget,this.domHandler),this.evWin&&A(O(this.element),this.evWin,this.domHandler)}};var Z={mousedown:1,mousemove:2,mouseup:4},B=\"mousedown\",$=\"mousemove mouseup\";function J(){this.evEl=B,this.evWin=$,this.pressed=!1,q.apply(this,arguments)}g(J,q,{handler:function(t){var e=Z[t.type];1&e&&0===t.button&&(this.pressed=!0),2&e&&1!==t.which&&(e=4),this.pressed&&(4&e&&(this.pressed=!1),this.callback(this.manager,e,{pointers:[t],changedPointers:[t],pointerType:X,srcEvent:t}))}});var K={pointerdown:1,pointermove:2,pointerup:4,pointercancel:8,pointerout:8},Q={2:N,3:\"pen\",4:X,5:\"kinect\"},tt=\"pointerdown\",et=\"pointermove pointerup pointercancel\";function it(){this.evEl=tt,this.evWin=et,q.apply(this,arguments),this.store=this.manager.session.pointerEvents=[]}t.MSPointerEvent&&!t.PointerEvent&&(tt=\"MSPointerDown\",et=\"MSPointerMove MSPointerUp MSPointerCancel\"),g(it,q,{handler:function(t){var e=this.store,i=!1,n=t.type.toLowerCase().replace(\"ms\",\"\"),r=K[n],s=Q[t.pointerType]||t.pointerType,o=s==N,a=b(e,t.pointerId,\"pointerId\");1&r&&(0===t.button||o)?a<0&&(e.push(t),a=e.length-1):12&r&&(i=!0),a<0||(e[a]=t,this.callback(this.manager,r,{pointers:e,changedPointers:[t],pointerType:s,srcEvent:t}),i&&e.splice(a,1))}});var nt={touchstart:1,touchmove:2,touchend:4,touchcancel:8},rt=\"touchstart\",st=\"touchstart touchmove touchend touchcancel\";function ot(){this.evTarget=rt,this.evWin=st,this.started=!1,q.apply(this,arguments)}function at(t,e){var i=P(t.touches),n=P(t.changedTouches);return 12&e&&(i=D(i.concat(n),\"identifier\",!0)),[i,n]}g(ot,q,{handler:function(t){var e=nt[t.type];if(1===e&&(this.started=!0),this.started){var i=at.call(this,t,e);12&e&&i[0].length-i[1].length==0&&(this.started=!1),this.callback(this.manager,e,{pointers:i[0],changedPointers:i[1],pointerType:N,srcEvent:t})}}});var ht={touchstart:1,touchmove:2,touchend:4,touchcancel:8},ut=\"touchstart touchmove touchend touchcancel\";function ct(){this.evTarget=ut,this.targetIds={},q.apply(this,arguments)}function lt(t,e){var i=P(t.touches),n=this.targetIds;if(3&e&&1===i.length)return n[i[0].identifier]=!0,[i,i];var r,s,o=P(t.changedTouches),a=[],h=this.target;if(s=i.filter((function(t){return _(t.target,h)})),1===e)for(r=0;r-1&&n.splice(t,1)}),2500)}}function dt(t){for(var e=t.srcEvent.clientX,i=t.srcEvent.clientY,n=0;n-1&&this.requireFail.splice(e,1),this},hasRequireFailures:function(){return this.requireFail.length>0},canRecognizeWith:function(t){return!!this.simultaneous[t.id]},emit:function(t){var e=this,i=this.state;function n(i){e.manager.emit(i,t)}i<8&&n(e.options.event+Dt(i)),n(e.options.event),t.additionalEvent&&n(t.additionalEvent),i>=8&&n(e.options.event+Dt(i))},tryEmit:function(t){if(this.canEmit())return this.emit(t);this.state=bt},canEmit:function(){for(var t=0;te.threshold&&r&e.direction},attrTest:function(t){return Ot.prototype.attrTest.call(this,t)&&(2&this.state||!(2&this.state)&&this.directionTest(t))},emit:function(t){this.pX=t.deltaX,this.pY=t.deltaY;var e=xt(t.direction);e&&(t.additionalEvent=this.options.event+e),this._super.emit.call(this,t)}}),g(Mt,Ot,{defaults:{event:\"pinch\",threshold:0,pointers:2},getTouchAction:function(){return[It]},attrTest:function(t){return this._super.attrTest.call(this,t)&&(Math.abs(t.scale-1)>this.options.threshold||2&this.state)},emit:function(t){if(1!==t.scale){var e=t.scale<1?\"in\":\"out\";t.additionalEvent=this.options.event+e}this._super.emit.call(this,t)}}),g(zt,Pt,{defaults:{event:\"press\",pointers:1,time:251,threshold:9},getTouchAction:function(){return[yt]},process:function(t){var e=this.options,i=t.pointers.length===e.pointers,n=t.distancee.time;if(this._input=t,!n||!i||12&t.eventType&&!r)this.reset();else if(1&t.eventType)this.reset(),this._timer=l((function(){this.state=8,this.tryEmit()}),e.time,this);else if(4&t.eventType)return 8;return bt},reset:function(){clearTimeout(this._timer)},emit:function(t){8===this.state&&(t&&4&t.eventType?this.manager.emit(this.options.event+\"up\",t):(this._input.timeStamp=c(),this.manager.emit(this.options.event,this._input)))}}),g(Nt,Ot,{defaults:{event:\"rotate\",threshold:0,pointers:2},getTouchAction:function(){return[It]},attrTest:function(t){return this._super.attrTest.call(this,t)&&(Math.abs(t.rotation)>this.options.threshold||2&this.state)}}),g(Xt,Ot,{defaults:{event:\"swipe\",threshold:10,velocity:.3,direction:30,pointers:1},getTouchAction:function(){return Rt.prototype.getTouchAction.call(this)},attrTest:function(t){var e,i=this.options.direction;return 30&i?e=t.overallVelocity:6&i?e=t.overallVelocityX:i&Y&&(e=t.overallVelocityY),this._super.attrTest.call(this,t)&&i&t.offsetDirection&&t.distance>this.options.threshold&&t.maxPointers==this.options.pointers&&u(e)>this.options.velocity&&4&t.eventType},emit:function(t){var e=xt(t.offsetDirection);e&&this.manager.emit(this.options.event+e,t),this.manager.emit(this.options.event,t)}}),g(Yt,Pt,{defaults:{event:\"tap\",pointers:1,taps:1,interval:300,time:250,threshold:9,posThreshold:10},getTouchAction:function(){return[Et]},process:function(t){var e=this.options,i=t.pointers.length===e.pointers,n=t.distance .bk-divider{cursor:default;overflow:hidden;background-color:#e5e5e5;}.bk-root .bk-context-menu.bk-horizontal > .bk-divider{width:1px;margin:5px 0;}.bk-root .bk-context-menu.bk-vertical > .bk-divider{height:1px;margin:0 5px;}.bk-root .bk-context-menu > :not(.bk-divider){border:1px solid transparent;}.bk-root .bk-context-menu > :not(.bk-divider).bk-active{border-color:#26aae1;}.bk-root .bk-context-menu > :not(.bk-divider):hover{background-color:#f9f9f9;}.bk-root .bk-context-menu > :not(.bk-divider):focus,.bk-root .bk-context-menu > :not(.bk-divider):focus-visible{outline:1px dotted #26aae1;outline-offset:-1px;}.bk-root .bk-context-menu > :not(.bk-divider)::-moz-focus-inner{border:0;}.bk-root .bk-context-menu.bk-horizontal > :not(.bk-divider):first-child{border-top-left-radius:4px;border-bottom-left-radius:4px;}.bk-root .bk-context-menu.bk-horizontal > :not(.bk-divider):last-child{border-top-right-radius:4px;border-bottom-right-radius:4px;}.bk-root .bk-context-menu.bk-vertical > :not(.bk-divider):first-child{border-top-left-radius:4px;border-top-right-radius:4px;}.bk-root .bk-context-menu.bk-vertical > :not(.bk-divider):last-child{border-bottom-left-radius:4px;border-bottom-right-radius:4px;}.bk-root .bk-menu{position:absolute;left:0;width:100%;z-index:100;cursor:pointer;font-size:12px;background-color:#fff;border:1px solid #ccc;border-radius:4px;box-shadow:0 6px 12px rgba(0, 0, 0, 0.175);}.bk-root .bk-menu.bk-above{bottom:100%;}.bk-root .bk-menu.bk-below{top:100%;}.bk-root .bk-menu > .bk-divider{height:1px;margin:7.5px 0;overflow:hidden;background-color:#e5e5e5;}.bk-root .bk-menu > :not(.bk-divider){padding:6px 12px;}.bk-root .bk-menu > :not(.bk-divider):hover,.bk-root .bk-menu > :not(.bk-divider).bk-active{background-color:#e6e6e6;}.bk-root .bk-caret{display:inline-block;vertical-align:middle;width:0;height:0;margin:0 5px;}.bk-root .bk-caret.bk-down{border-top:4px solid;}.bk-root .bk-caret.bk-up{border-bottom:4px solid;}.bk-root .bk-caret.bk-down,.bk-root .bk-caret.bk-up{border-right:4px solid transparent;border-left:4px solid transparent;}.bk-root .bk-caret.bk-left{border-right:4px solid;}.bk-root .bk-caret.bk-right{border-left:4px solid;}.bk-root .bk-caret.bk-left,.bk-root .bk-caret.bk-right{border-top:4px solid transparent;border-bottom:4px solid transparent;}\"},\n", + " function _(t,e,i,n,o){n();const s=t(1),l=t(43),h=t(9),r=(0,s.__importStar)(t(229));class d{constructor(t,e={}){var i,n;this.items=t,this.el=(0,l.div)(),this._open=!1,this._item_click=t=>{var e;null===(e=t.handler)||void 0===e||e.call(t),this.hide()},this._on_mousedown=t=>{var e;const{target:i}=t;i instanceof Node&&this.el.contains(i)||(null===(e=this.prevent_hide)||void 0===e?void 0:e.call(this,t))||this.hide()},this._on_keydown=t=>{t.keyCode==l.Keys.Esc&&this.hide()},this._on_blur=()=>{this.hide()},this.orientation=null!==(i=e.orientation)&&void 0!==i?i:\"vertical\",this.reversed=null!==(n=e.reversed)&&void 0!==n&&n,this.prevent_hide=e.prevent_hide,(0,l.undisplay)(this.el)}get is_open(){return this._open}get can_open(){return 0!=this.items.length}remove(){(0,l.remove)(this.el),this._unlisten()}_listen(){document.addEventListener(\"mousedown\",this._on_mousedown),document.addEventListener(\"keydown\",this._on_keydown),window.addEventListener(\"blur\",this._on_blur)}_unlisten(){document.removeEventListener(\"mousedown\",this._on_mousedown),document.removeEventListener(\"keydown\",this._on_keydown),window.removeEventListener(\"blur\",this._on_blur)}_position(t){const e=this.el.parentElement;if(null!=e){const i=(()=>{if(\"left_of\"in t){const{left:e,top:i}=t.left_of.getBoundingClientRect();return{right:e,top:i}}if(\"right_of\"in t){const{top:e,right:i}=t.right_of.getBoundingClientRect();return{left:i,top:e}}if(\"below\"in t){const{left:e,bottom:i}=t.below.getBoundingClientRect();return{left:e,top:i}}if(\"above\"in t){const{left:e,top:i}=t.above.getBoundingClientRect();return{left:e,bottom:i}}return t})(),n=e.getBoundingClientRect();this.el.style.left=null!=i.left?i.left-n.left+\"px\":\"\",this.el.style.top=null!=i.top?i.top-n.top+\"px\":\"\",this.el.style.right=null!=i.right?n.right-i.right+\"px\":\"\",this.el.style.bottom=null!=i.bottom?n.bottom-i.bottom+\"px\":\"\"}}render(){var t;(0,l.empty)(this.el,!0),(0,l.classes)(this.el).add(\"bk-context-menu\",`bk-${this.orientation}`);const e=this.reversed?(0,h.reversed)(this.items):this.items;for(const i of e){let e;if(null==i)e=(0,l.div)({class:r.divider});else{if(null!=i.if&&!i.if())continue;if(null!=i.content)e=i.content;else{const n=null!=i.icon?(0,l.div)({class:[\"bk-menu-icon\",i.icon]}):null,o=[(null===(t=i.active)||void 0===t?void 0:t.call(i))?\"bk-active\":null,i.class];e=(0,l.div)({class:o,title:i.tooltip,tabIndex:0},n,i.label,i.content),e.addEventListener(\"click\",(()=>{this._item_click(i)})),e.addEventListener(\"keydown\",(t=>{t.keyCode==l.Keys.Enter&&this._item_click(i)}))}}this.el.appendChild(e)}}show(t){if(0!=this.items.length&&!this._open){if(this.render(),0==this.el.children.length)return;this._position(null!=t?t:{left:0,top:0}),(0,l.display)(this.el),this._listen(),this._open=!0}}hide(){this._open&&(this._open=!1,this._unlisten(),(0,l.undisplay)(this.el))}toggle(t){this._open?this.hide():this.show(t)}}i.ContextMenu=d,d.__name__=\"ContextMenu\"},\n", + " function _(t,e,i,n,o){n();const s=t(1),c=t(224),l=(0,s.__importStar)(t(227)),a=t(43);class _ extends c.ButtonToolButtonView{render(){super.render(),(0,a.classes)(this.el).toggle(l.active,this.model.active)}_clicked(){const{active:t}=this.model;this.model.active=!t}}i.OnOffButtonView=_,_.__name__=\"OnOffButtonView\"},\n", + " function _(e,o,t,n,s){var c;n();const l=e(224),_=e(231);class i extends l.ButtonToolView{}t.InspectToolView=i,i.__name__=\"InspectToolView\";class a extends l.ButtonTool{constructor(e){super(e),this.event_type=\"move\"}}t.InspectTool=a,c=a,a.__name__=\"InspectTool\",c.prototype.button_view=_.OnOffButtonView,c.define((({Boolean:e})=>({toggleable:[e,!0]}))),c.override({active:!0})},\n", + " function _(t,o,e,l,i){l();const s=t(1);var n,a;const r=t(19),c=t(43),h=t(113),_=t(226),u=t(20),v=t(9),d=t(234),p=t(13),b=t(8),g=t(235),f=t(65),m=t(53),w=t(222),y=t(223),T=t(238),z=t(239),x=t(232),B=t(230),C=(0,s.__importStar)(t(227)),k=C,L=(0,s.__importStar)(t(240)),M=L;class S extends m.Model{constructor(t){super(t)}get visible(){var t;return!this.autohide||null!==(t=this._visible)&&void 0!==t&&t}}e.ToolbarViewModel=S,n=S,S.__name__=\"ToolbarViewModel\",n.define((({Boolean:t})=>({autohide:[t,!1]}))),n.internal((({Boolean:t,Nullable:o})=>({_visible:[o(t),null]})));class $ extends _.DOMView{constructor(){super(...arguments),this.layout={bbox:new f.BBox}}initialize(){super.initialize(),this._tool_button_views=new Map,this._toolbar_view_model=new S({autohide:this.model.autohide});const{toolbar_location:t}=this.model,o=\"left\"==t||\"above\"==t,e=this.model.horizontal?\"vertical\":\"horizontal\";this._overflow_menu=new B.ContextMenu([],{orientation:e,reversed:o})}async lazy_initialize(){await super.lazy_initialize(),await this._build_tool_button_views()}connect_signals(){super.connect_signals(),this.connect(this.model.properties.tools.change,(async()=>{await this._build_tool_button_views(),this.render()})),this.connect(this.model.properties.autohide.change,(()=>{this._toolbar_view_model.autohide=this.model.autohide,this._on_visible_change()})),this.connect(this._toolbar_view_model.properties._visible.change,(()=>this._on_visible_change()))}styles(){return[...super.styles(),C.default,L.default]}remove(){(0,h.remove_views)(this._tool_button_views),super.remove()}async _build_tool_button_views(){const t=null!=this.model._proxied_tools?this.model._proxied_tools:this.model.tools;await(0,h.build_views)(this._tool_button_views,t,{parent:this},(t=>t.button_view))}set_visibility(t){t!=this._toolbar_view_model._visible&&(this._toolbar_view_model._visible=t)}_on_visible_change(){const{visible:t}=this._toolbar_view_model;(0,c.classes)(this.el).toggle(k.toolbar_hidden,!t)}render(){(0,c.empty)(this.el),this.el.classList.add(k.toolbar),this.el.classList.add(k[this.model.toolbar_location]),this._toolbar_view_model.autohide=this.model.autohide,this._on_visible_change();const{horizontal:t}=this.model;let o=0;if(null!=this.model.logo){const e=\"grey\"===this.model.logo?M.grey:null,l=(0,c.a)({href:\"https://bokeh.org/\",target:\"_blank\",class:[M.logo,M.logo_small,e]});this.el.appendChild(l);const{width:i,height:s}=l.getBoundingClientRect();o+=t?i:s}for(const[,t]of this._tool_button_views)t.render();const e=[],l=t=>this._tool_button_views.get(t).el,{gestures:i}=this.model;for(const t of(0,p.values)(i))e.push(t.tools.map(l));e.push(this.model.actions.map(l)),e.push(this.model.inspectors.filter((t=>t.toggleable)).map(l));const s=e.filter((t=>0!=t.length)),n=()=>(0,c.div)({class:k.divider}),{bbox:a}=this.layout;let r=!1;this.root.el.appendChild(this._overflow_menu.el);const h=(0,c.div)({class:k.tool_overflow,tabIndex:0},t?\"\\u22ee\":\"\\u22ef\"),_=()=>{const t=(()=>{switch(this.model.toolbar_location){case\"right\":return{left_of:h};case\"left\":return{right_of:h};case\"above\":return{below:h};case\"below\":return{above:h}}})();this._overflow_menu.toggle(t)};h.addEventListener(\"click\",(()=>{_()})),h.addEventListener(\"keydown\",(t=>{t.keyCode==c.Keys.Enter&&_()}));for(const e of(0,d.join)(s,n))if(r)this._overflow_menu.items.push({content:e,class:t?k.right:k.above});else{this.el.appendChild(e);const{width:l,height:i}=e.getBoundingClientRect();if(o+=t?l:i,r=t?o>a.width-15:o>a.height-15,r){this.el.removeChild(e),this.el.appendChild(h);const{items:t}=this._overflow_menu;t.splice(0,t.length),t.push({content:e})}}}update_layout(){}update_position(){}after_layout(){this._has_finished=!0}export(t,o=!0){const e=\"png\"==t?\"canvas\":\"svg\",l=new g.CanvasLayer(e,o);return l.resize(0,0),l}}function V(){return{pan:{tools:[],active:null},scroll:{tools:[],active:null},pinch:{tools:[],active:null},tap:{tools:[],active:null},doubletap:{tools:[],active:null},press:{tools:[],active:null},pressup:{tools:[],active:null},rotate:{tools:[],active:null},move:{tools:[],active:null},multi:{tools:[],active:null}}}e.ToolbarBaseView=$,$.__name__=\"ToolbarBaseView\";class A extends m.Model{constructor(t){super(t)}initialize(){super.initialize(),this._init_tools()}_init_tools(){const t=function(t,o){if(t.length!=o.length)return!0;const e=new Set(o.map((t=>t.id)));return(0,v.some)(t,(t=>!e.has(t.id)))},o=this.tools.filter((t=>t instanceof x.InspectTool));t(this.inspectors,o)&&(this.inspectors=o);const e=this.tools.filter((t=>t instanceof z.HelpTool));t(this.help,e)&&(this.help=e);const l=this.tools.filter((t=>t instanceof T.ActionTool));t(this.actions,l)&&(this.actions=l);const i=(t,o)=>{t in this.gestures||r.logger.warn(`Toolbar: unknown event type '${t}' for tool: ${o}`)},s={pan:{tools:[],active:null},scroll:{tools:[],active:null},pinch:{tools:[],active:null},tap:{tools:[],active:null},doubletap:{tools:[],active:null},press:{tools:[],active:null},pressup:{tools:[],active:null},rotate:{tools:[],active:null},move:{tools:[],active:null},multi:{tools:[],active:null}};for(const t of this.tools)if(t instanceof y.GestureTool&&t.event_type)if((0,b.isString)(t.event_type))s[t.event_type].tools.push(t),i(t.event_type,t);else{s.multi.tools.push(t);for(const o of t.event_type)i(o,t)}for(const o of Object.keys(s)){const e=this.gestures[o];t(e.tools,s[o].tools)&&(e.tools=s[o].tools),e.active&&(0,v.every)(e.tools,(t=>t.id!=e.active.id))&&(e.active=null)}}get horizontal(){return\"above\"===this.toolbar_location||\"below\"===this.toolbar_location}get vertical(){return\"left\"===this.toolbar_location||\"right\"===this.toolbar_location}_active_change(t){const{event_type:o}=t;if(null==o)return;const e=(0,b.isString)(o)?[o]:o;for(const o of e)if(t.active){const e=this.gestures[o].active;null!=e&&t!=e&&(r.logger.debug(`Toolbar: deactivating tool: ${e} for event type '${o}'`),e.active=!1),this.gestures[o].active=t,r.logger.debug(`Toolbar: activating tool: ${t} for event type '${o}'`)}else this.gestures[o].active=null}}e.ToolbarBase=A,a=A,A.__name__=\"ToolbarBase\",a.prototype.default_view=$,a.define((({Boolean:t,Array:o,Ref:e,Nullable:l})=>({tools:[o(e(w.Tool)),[]],logo:[l(u.Logo),\"normal\"],autohide:[t,!1]}))),a.internal((({Array:t,Struct:o,Ref:e,Nullable:l})=>{const i=o({tools:t(e(y.GestureTool)),active:l(e(w.Tool))});return{gestures:[o({pan:i,scroll:i,pinch:i,tap:i,doubletap:i,press:i,pressup:i,rotate:i,move:i,multi:i}),V],actions:[t(e(T.ActionTool)),[]],inspectors:[t(e(x.InspectTool)),[]],help:[t(e(z.HelpTool)),[]],toolbar_location:[u.Location,\"right\"]}}))},\n", + " function _(n,o,e,t,f){t();const r=n(9);function*i(n,o){const e=n.length;if(o>e)return;const t=(0,r.range)(o);for(yield t.map((o=>n[o]));;){let f;for(const n of(0,r.reversed)((0,r.range)(o)))if(t[n]!=n+e-o){f=n;break}if(null==f)return;t[f]+=1;for(const n of(0,r.range)(f+1,o))t[n]=t[n-1]+1;yield t.map((o=>n[o]))}}e.enumerate=function*(n){let o=0;for(const e of n)yield[e,o++]},e.join=function*(n,o){let e=!0;for(const t of n)e?e=!1:null!=o&&(yield o()),yield*t},e.combinations=i,e.subsets=function*(n){for(const o of(0,r.range)(n.length+1))yield*i(n,o)}},\n", + " function _(t,e,s,i,n){i();const o=t(236),a=t(65),r=t(43);function h(t){!function(t){void 0===t.lineDash&&Object.defineProperty(t,\"lineDash\",{get:()=>t.getLineDash(),set:e=>t.setLineDash(e)})}(t),function(t){t.setImageSmoothingEnabled=e=>{t.imageSmoothingEnabled=e,t.mozImageSmoothingEnabled=e,t.oImageSmoothingEnabled=e,t.webkitImageSmoothingEnabled=e,t.msImageSmoothingEnabled=e},t.getImageSmoothingEnabled=()=>{const e=t.imageSmoothingEnabled;return null==e||e}}(t),function(t){t.ellipse||(t.ellipse=function(e,s,i,n,o,a,r,h=!1){const l=.551784;t.translate(e,s),t.rotate(o);let c=i,g=n;h&&(c=-i,g=-n),t.moveTo(-c,0),t.bezierCurveTo(-c,g*l,-c*l,g,0,g),t.bezierCurveTo(c*l,g,c,g*l,c,0),t.bezierCurveTo(c,-g*l,c*l,-g,0,-g),t.bezierCurveTo(-c*l,-g,-c,-g*l,-c,0),t.rotate(-o),t.translate(-e,-s)})}(t)}const l={position:\"absolute\",top:\"0\",left:\"0\",width:\"100%\",height:\"100%\"};class c{constructor(t,e){switch(this.backend=t,this.hidpi=e,this.pixel_ratio=1,this.bbox=new a.BBox,t){case\"webgl\":case\"canvas\":{this._el=this._canvas=(0,r.canvas)({style:l});const t=this.canvas.getContext(\"2d\");if(null==t)throw new Error(\"unable to obtain 2D rendering context\");this._ctx=t,e&&(this.pixel_ratio=devicePixelRatio);break}case\"svg\":{const t=new o.SVGRenderingContext2D;this._ctx=t,this._canvas=t.get_svg(),this._el=(0,r.div)({style:l},this._canvas);break}}this._ctx.layer=this,h(this._ctx)}get canvas(){return this._canvas}get ctx(){return this._ctx}get el(){return this._el}resize(t,e){this.bbox=new a.BBox({left:0,top:0,width:t,height:e});const s=this._ctx instanceof o.SVGRenderingContext2D?this._ctx:this.canvas;s.width=t*this.pixel_ratio,s.height=e*this.pixel_ratio}undo_transform(t){const{ctx:e}=this;if(void 0===e.getTransform)t(e);else{const s=e.getTransform();e.setTransform(this._base_transform);try{t(e)}finally{e.setTransform(s)}}}prepare(){const{ctx:t,hidpi:e,pixel_ratio:s}=this;t.save(),e&&(t.scale(s,s),t.translate(.5,.5)),void 0!==t.getTransform&&(this._base_transform=t.getTransform()),this.clear()}clear(){const{x:t,y:e,width:s,height:i}=this.bbox;this.ctx.clearRect(t,e,s,i)}finish(){this.ctx.restore()}to_blob(){const{_canvas:t}=this;if(t instanceof HTMLCanvasElement)return null!=t.msToBlob?Promise.resolve(t.msToBlob()):new Promise(((e,s)=>{t.toBlob((t=>null!=t?e(t):s()),\"image/png\")}));{const t=this._ctx.get_serialized_svg(!0),e=new Blob([t],{type:\"image/svg+xml\"});return Promise.resolve(e)}}}s.CanvasLayer=c,c.__name__=\"CanvasLayer\"},\n", + " function _(t,e,i,s,r){s();const n=t(122),a=t(8),o=t(237),l=t(10),h=t(43);function _(t){var e;const i={left:\"start\",right:\"end\",center:\"middle\",start:\"start\",end:\"end\"};return null!==(e=i[t])&&void 0!==e?e:i.start}function c(t){var e;const i={alphabetic:\"alphabetic\",hanging:\"hanging\",top:\"text-before-edge\",bottom:\"text-after-edge\",middle:\"central\"};return null!==(e=i[t])&&void 0!==e?e:i.alphabetic}const p=function(t,e){const i=new Map,s=t.split(\",\");e=null!=e?e:10;for(let t=0;t=0?Math.acos(e):-Math.acos(e)}const v=b(f),A=b(g);this.lineTo(d+f[0]*r,m+f[1]*r),this.arc(d,m,r,v,A)}stroke(){\"path\"===this.__currentElement.nodeName&&this.__currentElement.setAttribute(\"paint-order\",\"fill\"),this.__applyCurrentDefaultPath(),this.__applyStyleToCurrentElement(\"stroke\"),null!=this._clip_path&&this.__currentElement.setAttribute(\"clip-path\",this._clip_path)}fill(t,e){let i=null;if(t instanceof Path2D)i=t;else{if(\"evenodd\"!=t&&\"nonzero\"!=t&&null!=t||null!=e)throw new Error(\"invalid arguments\");e=t}if(null!=i)throw new Error(\"not implemented\");\"none\"!=this.__currentElement.getAttribute(\"fill\")&&this.__init_element(),\"path\"===this.__currentElement.nodeName&&this.__currentElement.setAttribute(\"paint-order\",\"stroke\"),this.__applyCurrentDefaultPath(),this.__applyStyleToCurrentElement(\"fill\"),null!=e&&this.__currentElement.setAttribute(\"fill-rule\",e),null!=this._clip_path&&this.__currentElement.setAttribute(\"clip-path\",this._clip_path)}rect(t,e,i,s){isFinite(t+e+i+s)&&(this.moveTo(t,e),this.lineTo(t+i,e),this.lineTo(t+i,e+s),this.lineTo(t,e+s),this.lineTo(t,e))}fillRect(t,e,i,s){isFinite(t+e+i+s)&&(this.beginPath(),this.rect(t,e,i,s),this.fill())}strokeRect(t,e,i,s){isFinite(t+e+i+s)&&(this.beginPath(),this.rect(t,e,i,s),this.stroke())}__clearCanvas(){(0,h.empty)(this.__defs),(0,h.empty)(this.__root),this.__root.appendChild(this.__defs),this.__currentElement=this.__root}clearRect(t,e,i,s){if(!isFinite(t+e+i+s))return;if(0===t&&0===e&&i===this.width&&s===this.height)return void this.__clearCanvas();const r=this.__createElement(\"rect\",{x:t,y:e,width:i,height:s,fill:\"#FFFFFF\"},!0);this._apply_transform(r),this.__root.appendChild(r)}createLinearGradient(t,e,i,s){if(!isFinite(t+e+i+s))throw new Error(\"The provided double value is non-finite\");const[r,n]=this._transform.apply(t,e),[a,o]=this._transform.apply(i,s),l=this.__createElement(\"linearGradient\",{id:this._random_string(),x1:`${r}px`,x2:`${a}px`,y1:`${n}px`,y2:`${o}px`,gradientUnits:\"userSpaceOnUse\"},!1);return this.__defs.appendChild(l),new d(l,this)}createRadialGradient(t,e,i,s,r,n){if(!isFinite(t+e+i+s+r+n))throw new Error(\"The provided double value is non-finite\");const[a,o]=this._transform.apply(t,e),[l,h]=this._transform.apply(s,r),_=this.__createElement(\"radialGradient\",{id:this._random_string(),cx:`${l}px`,cy:`${h}px`,r:`${n}px`,r0:`${i}px`,fx:`${a}px`,fy:`${o}px`,gradientUnits:\"userSpaceOnUse\"},!1);return this.__defs.appendChild(_),new d(_,this)}__parseFont(){var t,e,i,s,r;const n=/^\\s*(?=(?:(?:[-a-z]+\\s*){0,2}(italic|oblique))?)(?=(?:(?:[-a-z]+\\s*){0,2}(small-caps))?)(?=(?:(?:[-a-z]+\\s*){0,2}(bold(?:er)?|lighter|[1-9]00))?)(?:(?:normal|\\1|\\2|\\3)\\s*){0,3}((?:xx?-)?(?:small|large)|medium|smaller|larger|[.\\d]+(?:\\%|in|[cem]m|ex|p[ctx]))(?:\\s*\\/\\s*(normal|[.\\d]+(?:\\%|in|[cem]m|ex|p[ctx])))?\\s*([-,\\'\\\"\\sa-z0-9]+?)\\s*$/i.exec(this.font);return{style:null!==(t=n[1])&&void 0!==t?t:\"normal\",size:null!==(e=n[4])&&void 0!==e?e:\"10px\",family:null!==(i=n[6])&&void 0!==i?i:\"sans-serif\",weight:null!==(s=n[3])&&void 0!==s?s:\"normal\",decoration:null!==(r=n[2])&&void 0!==r?r:\"normal\"}}__applyText(t,e,i,s){const r=this.__parseFont(),n=this.__createElement(\"text\",{\"font-family\":r.family,\"font-size\":r.size,\"font-style\":r.style,\"font-weight\":r.weight,\"text-decoration\":r.decoration,x:e,y:i,\"text-anchor\":_(this.textAlign),\"dominant-baseline\":c(this.textBaseline)},!0);n.appendChild(this.__document.createTextNode(t)),this._apply_transform(n),this.__currentElement=n,this.__applyStyleToCurrentElement(s);const a=(()=>{if(null!=this._clip_path){const t=this.__createElement(\"g\");return t.setAttribute(\"clip-path\",this._clip_path),t.appendChild(n),t}return n})();this.__root.appendChild(a)}fillText(t,e,i){null!=t&&isFinite(e+i)&&this.__applyText(t,e,i,\"fill\")}strokeText(t,e,i){null!=t&&isFinite(e+i)&&this.__applyText(t,e,i,\"stroke\")}measureText(t){return this.__ctx.font=this.font,this.__ctx.measureText(t)}arc(t,e,i,s,r,n=!1){this.ellipse(t,e,i,i,0,s,r,n)}ellipse(t,e,i,s,r,n,a,o=!1){if(!isFinite(t+e+i+s+r+n+a))return;if(i<0||s<0)throw new DOMException(\"IndexSizeError, radius can't be negative\");const h=o?a-n:n-a;n%=2*Math.PI,a%=2*Math.PI;const _=t+i*Math.cos(n),c=e+s*Math.sin(n);this.lineTo(_,c);const p=180*r/Math.PI,u=o?0:1;if(Math.abs(n-a)<2*l.float32_epsilon&&!(Math.abs(h)<2*l.float32_epsilon&&h<0)){const r=t+i*Math.cos(n+Math.PI),a=e+s*Math.sin(n+Math.PI),[o,l]=this._transform.apply(_,c),[h,d]=this._transform.apply(r,a);this.__addPathCommand(o,l,`A ${i} ${s} ${p} 0 ${u} ${h} ${d} A ${i} ${s} ${p} 0 ${u} ${o} ${l}`)}else{const r=t+i*Math.cos(a),l=e+s*Math.sin(a);let h=a-n;h<0&&(h+=2*Math.PI);const _=o!==h>Math.PI?1:0,[c,d]=this._transform.apply(r,l);this.__addPathCommand(c,d,`A ${i} ${s} ${p} ${_} ${u} ${c} ${d}`)}}clip(){const t=this.__createElement(\"clipPath\"),e=this._random_string();this.__applyCurrentDefaultPath(),t.setAttribute(\"id\",e),t.appendChild(this.__currentElement),this.__defs.appendChild(t),this._clip_path=`url(#${e})`}drawImage(t,...e){let i,s,r,n,a,o,l,h;if(2==e.length){if([i,s]=e,!isFinite(i+s))return;a=0,o=0,l=t.width,h=t.height,r=l,n=h}else if(4==e.length){if([i,s,r,n]=e,!isFinite(i+s+r+n))return;a=0,o=0,l=t.width,h=t.height}else{if(8!==e.length)throw new Error(`Inavlid number of arguments passed to drawImage: ${arguments.length}`);if([a,o,l,h,i,s,r,n]=e,!isFinite(a+o+l+h+i+s+r+n))return}const _=this.__root,c=this._transform.clone().translate(i,s);if(t instanceof f||t instanceof SVGSVGElement){const e=(t instanceof SVGSVGElement?t:t.get_svg()).cloneNode(!0);let i;c.is_identity&&1==this.globalAlpha&&null==this._clip_path?i=_:(i=this.__createElement(\"g\"),c.is_identity||this._apply_transform(i,c),1!=this.globalAlpha&&i.setAttribute(\"opacity\",`${this.globalAlpha}`),null!=this._clip_path&&i.setAttribute(\"clip-path\",this._clip_path),_.appendChild(i));for(const t of[...e.childNodes])if(t instanceof SVGDefsElement){for(const e of[...t.childNodes])if(e instanceof Element){const t=e.getAttribute(\"id\");this.__ids.add(t),this.__defs.appendChild(e.cloneNode(!0))}}else i.appendChild(t.cloneNode(!0))}else if(t instanceof HTMLImageElement||t instanceof SVGImageElement){const e=this.__createElement(\"image\");if(e.setAttribute(\"width\",`${r}`),e.setAttribute(\"height\",`${n}`),e.setAttribute(\"preserveAspectRatio\",\"none\"),1!=this.globalAlpha&&e.setAttribute(\"opacity\",`${this.globalAlpha}`),a||o||l!==t.width||h!==t.height){const e=this.__document.createElement(\"canvas\");e.width=r,e.height=n;e.getContext(\"2d\").drawImage(t,a,o,l,h,0,0,r,n),t=e}this._apply_transform(e,c);const i=t instanceof HTMLCanvasElement?t.toDataURL():t.getAttribute(\"src\");if(e.setAttribute(\"href\",i),null!=this._clip_path){const t=this.__createElement(\"g\");t.setAttribute(\"clip-path\",this._clip_path),t.appendChild(e),_.appendChild(t)}else _.appendChild(e)}else if(t instanceof HTMLCanvasElement){const e=this.__createElement(\"image\");e.setAttribute(\"width\",`${r}`),e.setAttribute(\"height\",`${n}`),e.setAttribute(\"preserveAspectRatio\",\"none\"),1!=this.globalAlpha&&e.setAttribute(\"opacity\",`${this.globalAlpha}`);const i=this.__document.createElement(\"canvas\");i.width=r,i.height=n;const s=i.getContext(\"2d\");if(s.imageSmoothingEnabled=!1,s.drawImage(t,a,o,l,h,0,0,r,n),t=i,this._apply_transform(e,c),e.setAttribute(\"href\",t.toDataURL()),null!=this._clip_path){const t=this.__createElement(\"g\");t.setAttribute(\"clip-path\",this._clip_path),t.appendChild(e),_.appendChild(t)}else _.appendChild(e)}}createPattern(t,e){const i=this.__document.createElementNS(\"http://www.w3.org/2000/svg\",\"pattern\"),s=this._random_string();if(i.setAttribute(\"id\",s),i.setAttribute(\"width\",`${this._to_number(t.width)}`),i.setAttribute(\"height\",`${this._to_number(t.height)}`),i.setAttribute(\"patternUnits\",\"userSpaceOnUse\"),t instanceof HTMLCanvasElement||t instanceof HTMLImageElement||t instanceof SVGImageElement){const e=this.__document.createElementNS(\"http://www.w3.org/2000/svg\",\"image\"),s=t instanceof HTMLCanvasElement?t.toDataURL():t.getAttribute(\"src\");e.setAttribute(\"href\",s),i.appendChild(e),this.__defs.appendChild(i)}else if(t instanceof f){for(const e of[...t.__root.childNodes])e instanceof SVGDefsElement||i.appendChild(e.cloneNode(!0));this.__defs.appendChild(i)}else{if(!(t instanceof SVGSVGElement))throw new Error(\"unsupported\");for(const e of[...t.childNodes])e instanceof SVGDefsElement||i.appendChild(e.cloneNode(!0));this.__defs.appendChild(i)}return new m(i,this)}getLineDash(){const{lineDash:t}=this;return(0,a.isString)(t)?t.split(\",\").map((t=>parseInt(t))):null==t?[]:t}setLineDash(t){t&&t.length>0?this.lineDash=t.join(\",\"):this.lineDash=null}_to_number(t){return(0,a.isNumber)(t)?t:t.baseVal.value}getTransform(){return this._transform.to_DOMMatrix()}setTransform(...t){let e;e=(0,a.isNumber)(t[0])?new DOMMatrix(t):t[0]instanceof DOMMatrix?t[0]:new DOMMatrix(Object.values(!t[0])),this._transform=n.AffineTransform.from_DOMMatrix(e)}resetTransform(){this._transform=new n.AffineTransform}isPointInPath(...t){throw new Error(\"not implemented\")}isPointInStroke(...t){throw new Error(\"not implemented\")}createImageData(...t){throw new Error(\"not implemented\")}getImageData(t,e,i,s){throw new Error(\"not implemented\")}putImageData(...t){throw new Error(\"not implemented\")}drawFocusIfNeeded(...t){throw new Error(\"not implemented\")}scrollPathIntoView(...t){throw new Error(\"not implemented\")}}i.SVGRenderingContext2D=f,f.__name__=\"SVGRenderingContext2D\",f.__random=o.random},\n", + " function _(e,t,s,n,r){n();const o=2147483647;class i{constructor(e){this.seed=e%o,this.seed<=0&&(this.seed+=2147483646)}integer(){return this.seed=48271*this.seed%o,this.seed}float(){return(this.integer()-1)/2147483646}floats(e,t=0,s=1){const n=new Array(e);for(let r=0;rthis.doit(o)))}}n.ActionToolView=_,_.__name__=\"ActionToolView\";class d extends s.ButtonTool{constructor(o){super(o),this.button_view=l,this.do=new c.Signal(this,\"do\")}}n.ActionTool=d,d.__name__=\"ActionTool\"},\n", + " function _(o,e,t,l,i){var s;l();const n=o(238),r=o(228);class c extends n.ActionToolView{doit(){window.open(this.model.redirect)}}t.HelpToolView=c,c.__name__=\"HelpToolView\";class _ extends n.ActionTool{constructor(o){super(o),this.tool_name=\"Help\",this.icon=r.tool_icon_help}}t.HelpTool=_,s=_,_.__name__=\"HelpTool\",s.prototype.default_view=c,s.define((({String:o})=>({redirect:[o,\"https://docs.bokeh.org/en/latest/docs/user_guide/tools.html\"]}))),s.override({description:\"Click the question mark to learn more about Bokeh plot tools.\"}),s.register_alias(\"help\",(()=>new _))},\n", + " function _(o,l,g,A,r){A(),g.root=\"bk-root\",g.logo=\"bk-logo\",g.grey=\"bk-grey\",g.logo_small=\"bk-logo-small\",g.logo_notebook=\"bk-logo-notebook\",g.default=\".bk-root .bk-logo{margin:5px;position:relative;display:block;background-repeat:no-repeat;}.bk-root .bk-logo.bk-grey{filter:url(\\\"data:image/svg+xml;utf8,#grayscale\\\");filter:gray;-webkit-filter:grayscale(100%);}.bk-root .bk-logo-small{width:20px;height:20px;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAABx0RVh0U29mdHdhcmUAQWRvYmUgRmlyZXdvcmtzIENTNui8sowAAAOkSURBVDiNjZRtaJVlGMd/1/08zzln5zjP1LWcU9N0NkN8m2CYjpgQYQXqSs0I84OLIC0hkEKoPtiH3gmKoiJDU7QpLgoLjLIQCpEsNJ1vqUOdO7ppbuec5+V+rj4ctwzd8IIbbi6u+8f1539dt3A78eXC7QizUF7gyV1fD1Yqg4JWz84yffhm0qkFqBogB9rM8tZdtwVsPUhWhGcFJngGeWrPzHm5oaMmkfEg1usvLFyc8jLRqDOMru7AyC8saQr7GG7f5fvDeH7Ej8CM66nIF+8yngt6HWaKh7k49Soy9nXurCi1o3qUbS3zWfrYeQDTB/Qj6kX6Ybhw4B+bOYoLKCC9H3Nu/leUTZ1JdRWkkn2ldcCamzrcf47KKXdAJllSlxAOkRgyHsGC/zRday5Qld9DyoM4/q/rUoy/CXh3jzOu3bHUVZeU+DEn8FInkPBFlu3+nW3Nw0mk6vCDiWg8CeJaxEwuHS3+z5RgY+YBR6V1Z1nxSOfoaPa4LASWxxdNp+VWTk7+4vzaou8v8PN+xo+KY2xsw6une2frhw05CTYOmQvsEhjhWjn0bmXPjpE1+kplmmkP3suftwTubK9Vq22qKmrBhpY4jvd5afdRA3wGjFAgcnTK2s4hY0/GPNIb0nErGMCRxWOOX64Z8RAC4oCXdklmEvcL8o0BfkNK4lUg9HTl+oPlQxdNo3Mg4Nv175e/1LDGzZen30MEjRUtmXSfiTVu1kK8W4txyV6BMKlbgk3lMwYCiusNy9fVfvvwMxv8Ynl6vxoByANLTWplvuj/nF9m2+PDtt1eiHPBr1oIfhCChQMBw6Aw0UulqTKZdfVvfG7VcfIqLG9bcldL/+pdWTLxLUy8Qq38heUIjh4XlzZxzQm19lLFlr8vdQ97rjZVOLf8nclzckbcD4wxXMidpX30sFd37Fv/GtwwhzhxGVAprjbg0gCAEeIgwCZyTV2Z1REEW8O4py0wsjeloKoMr6iCY6dP92H6Vw/oTyICIthibxjm/DfN9lVz8IqtqKYLUXfoKVMVQVVJOElGjrnnUt9T9wbgp8AyYKaGlqingHZU/uG2NTZSVqwHQTWkx9hxjkpWDaCg6Ckj5qebgBVbT3V3NNXMSiWSDdGV3hrtzla7J+duwPOToIg42ChPQOQjspnSlp1V+Gjdged7+8UN5CRAV7a5EdFNwCjEaBR27b3W890TE7g24NAP/mMDXRWrGoFPQI9ls/MWO2dWFAar/xcOIImbbpA3zgAAAABJRU5ErkJggg==);}.bk-root .bk-logo-notebook{display:inline-block;vertical-align:middle;margin-right:5px;}\"},\n", + " function _(e,t,s,i,l){i();const o=e(1);var n;const a=e(40),h=e(20),r=e(43),c=(0,o.__importStar)(e(242)),d=c;class p extends a.AnnotationView{initialize(){super.initialize(),this.el=(0,r.div)({class:d.tooltip}),(0,r.undisplay)(this.el),this.plot_view.canvas_view.add_overlay(this.el)}remove(){(0,r.remove)(this.el),super.remove()}connect_signals(){super.connect_signals(),this.connect(this.model.properties.content.change,(()=>this.render())),this.connect(this.model.properties.position.change,(()=>this._reposition()))}styles(){return[...super.styles(),c.default]}render(){this.model.visible||(0,r.undisplay)(this.el),super.render()}_render(){const{content:e}=this.model;null!=e?((0,r.empty)(this.el),(0,r.classes)(this.el).toggle(\"bk-tooltip-custom\",this.model.custom),this.el.appendChild(e),this.model.show_arrow&&this.el.classList.add(d.tooltip_arrow)):(0,r.undisplay)(this.el)}_reposition(){const{position:e}=this.model;if(null==e)return void(0,r.undisplay)(this.el);const[t,s]=e,i=(()=>{const e=this.parent.layout.bbox.relative(),{attachment:i}=this.model;switch(i){case\"horizontal\":return t({attachment:[h.TooltipAttachment,\"horizontal\"],inner_only:[e,!0],show_arrow:[e,!0]}))),n.internal((({Boolean:e,Number:t,Tuple:s,Ref:i,Nullable:l})=>({position:[l(s(t,t)),null],content:[i(HTMLElement),()=>(0,r.div)()],custom:[e]}))),n.override({level:\"overlay\"})},\n", + " function _(o,t,r,e,l){e(),r.root=\"bk-root\",r.tooltip=\"bk-tooltip\",r.left=\"bk-left\",r.tooltip_arrow=\"bk-tooltip-arrow\",r.right=\"bk-right\",r.above=\"bk-above\",r.below=\"bk-below\",r.tooltip_row_label=\"bk-tooltip-row-label\",r.tooltip_row_value=\"bk-tooltip-row-value\",r.tooltip_color_block=\"bk-tooltip-color-block\",r.default='.bk-root{}.bk-root .bk-tooltip{font-weight:300;font-size:12px;position:absolute;padding:5px;border:1px solid #e5e5e5;color:#2f2f2f;background-color:white;pointer-events:none;opacity:0.95;z-index:100;}.bk-root .bk-tooltip > div:not(:first-child){margin-top:5px;border-top:#e5e5e5 1px dashed;}.bk-root .bk-tooltip.bk-left.bk-tooltip-arrow::before{position:absolute;margin:-7px 0 0 0;top:50%;width:0;height:0;border-style:solid;border-width:7px 0 7px 0;border-color:transparent;content:\" \";display:block;left:-10px;border-right-width:10px;border-right-color:#909599;}.bk-root .bk-tooltip.bk-left::before{left:-10px;border-right-width:10px;border-right-color:#909599;}.bk-root .bk-tooltip.bk-right.bk-tooltip-arrow::after{position:absolute;margin:-7px 0 0 0;top:50%;width:0;height:0;border-style:solid;border-width:7px 0 7px 0;border-color:transparent;content:\" \";display:block;right:-10px;border-left-width:10px;border-left-color:#909599;}.bk-root .bk-tooltip.bk-right::after{right:-10px;border-left-width:10px;border-left-color:#909599;}.bk-root .bk-tooltip.bk-above::before{position:absolute;margin:0 0 0 -7px;left:50%;width:0;height:0;border-style:solid;border-width:0 7px 0 7px;border-color:transparent;content:\" \";display:block;top:-10px;border-bottom-width:10px;border-bottom-color:#909599;}.bk-root .bk-tooltip.bk-below::after{position:absolute;margin:0 0 0 -7px;left:50%;width:0;height:0;border-style:solid;border-width:0 7px 0 7px;border-color:transparent;content:\" \";display:block;bottom:-10px;border-top-width:10px;border-top-color:#909599;}.bk-root .bk-tooltip-row-label{text-align:right;color:#26aae1;}.bk-root .bk-tooltip-row-value{color:default;}.bk-root .bk-tooltip-color-block{width:12px;height:12px;margin-left:5px;margin-right:5px;outline:#dddddd solid 1px;display:inline-block;}'},\n", + " function _(e,t,s,i,r){var a;i();const l=e(115),_=e(112),h=e(113),o=e(48);class n extends l.UpperLowerView{async lazy_initialize(){await super.lazy_initialize();const{lower_head:e,upper_head:t}=this.model;null!=e&&(this.lower_head=await(0,h.build_view)(e,{parent:this})),null!=t&&(this.upper_head=await(0,h.build_view)(t,{parent:this}))}set_data(e){var t,s;super.set_data(e),null===(t=this.lower_head)||void 0===t||t.set_data(e),null===(s=this.upper_head)||void 0===s||s.set_data(e)}paint(e){if(this.visuals.line.doit)for(let t=0,s=this._lower_sx.length;t({lower_head:[t(e(_.ArrowHead)),()=>new _.TeeHead({size:10})],upper_head:[t(e(_.ArrowHead)),()=>new _.TeeHead({size:10})]}))),a.override({level:\"underlay\"})},\n", + " function _(n,o,t,u,e){u(),e(\"CustomJS\",n(245).CustomJS),e(\"OpenURL\",n(247).OpenURL)},\n", + " function _(t,e,s,n,c){var a;n();const r=t(246),u=t(13),o=t(34);class i extends r.Callback{constructor(t){super(t)}get names(){return(0,u.keys)(this.args)}get values(){return(0,u.values)(this.args)}get func(){const t=(0,o.use_strict)(this.code);return new Function(...this.names,\"cb_obj\",\"cb_data\",t)}execute(t,e={}){return this.func.apply(t,this.values.concat(t,e))}}s.CustomJS=i,a=i,i.__name__=\"CustomJS\",a.define((({Unknown:t,String:e,Dict:s})=>({args:[s(t),{}],code:[e,\"\"]})))},\n", + " function _(c,a,l,n,s){n();const e=c(53);class o extends e.Model{constructor(c){super(c)}}l.Callback=o,o.__name__=\"Callback\"},\n", + " function _(e,t,n,o,i){var s;o();const c=e(246),r=e(152),a=e(8);class d extends c.Callback{constructor(e){super(e)}navigate(e){this.same_tab?window.location.href=e:window.open(e)}execute(e,{source:t}){const n=e=>{const n=(0,r.replace_placeholders)(this.url,t,e,void 0,void 0,encodeURI);if(!(0,a.isString)(n))throw new Error(\"HTML output is not supported in this context\");this.navigate(n)},{selected:o}=t;for(const e of o.indices)n(e);for(const e of o.line_indices)n(e)}}n.OpenURL=d,s=d,d.__name__=\"OpenURL\",s.define((({Boolean:e,String:t})=>({url:[t,\"http://\"],same_tab:[e,!1]})))},\n", + " function _(a,n,i,e,r){e(),r(\"Canvas\",a(249).Canvas),r(\"CartesianFrame\",a(126).CartesianFrame),r(\"CoordinateMapping\",a(54).CoordinateMapping)},\n", + " function _(e,t,i,s,a){var l,r=this&&this.__createBinding||(Object.create?function(e,t,i,s){void 0===s&&(s=i),Object.defineProperty(e,s,{enumerable:!0,get:function(){return t[i]}})}:function(e,t,i,s){void 0===s&&(s=i),e[s]=t[i]}),n=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,\"default\",{enumerable:!0,value:t})}:function(e,t){e.default=t}),o=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var i in e)\"default\"!==i&&Object.prototype.hasOwnProperty.call(e,i)&&r(t,e,i);return n(t,e),t};s();const h=e(14),c=e(28),u=e(226),_=e(19),d=e(43),p=e(20),b=e(13),v=e(250),g=e(65),w=e(138),y=e(235);const f=(()=>{let t;return async()=>void 0!==t?t:t=await async function(){const t=document.createElement(\"canvas\"),i=t.getContext(\"webgl\",{premultipliedAlpha:!0});if(null!=i){const s=await(0,w.load_module)(Promise.resolve().then((()=>o(e(410)))));if(null!=s){const e=s.get_regl(i);if(e.has_webgl)return{canvas:t,regl_wrapper:e};_.logger.trace(\"WebGL is supported, but not the required extensions\")}else _.logger.trace(\"WebGL is supported, but bokehjs(.min).js bundle is not available\")}else _.logger.trace(\"WebGL is not supported\");return null}()})(),m={position:\"absolute\",top:\"0\",left:\"0\",width:\"100%\",height:\"100%\"};class x extends u.DOMView{constructor(){super(...arguments),this.bbox=new g.BBox,this.webgl=null}initialize(){super.initialize(),this.underlays_el=(0,d.div)({style:m}),this.primary=this.create_layer(),this.overlays=this.create_layer(),this.overlays_el=(0,d.div)({style:m}),this.events_el=(0,d.div)({class:\"bk-canvas-events\",style:m});const e=[this.underlays_el,this.primary.el,this.overlays.el,this.overlays_el,this.events_el];(0,b.extend)(this.el.style,m),(0,d.append)(this.el,...e),this.ui_event_bus=new v.UIEventBus(this)}async lazy_initialize(){if(await super.lazy_initialize(),\"webgl\"==this.model.output_backend&&(this.webgl=await f(),c.settings.force_webgl&&null==this.webgl))throw new Error(\"webgl is not available\")}remove(){this.ui_event_bus.destroy(),super.remove()}add_underlay(e){this.underlays_el.appendChild(e)}add_overlay(e){this.overlays_el.appendChild(e)}add_event(e){this.events_el.appendChild(e)}get pixel_ratio(){return this.primary.pixel_ratio}resize(e,t){this.bbox=new g.BBox({left:0,top:0,width:e,height:t}),this.primary.resize(e,t),this.overlays.resize(e,t)}prepare_webgl(e){const{webgl:t}=this;if(null!=t){const{width:i,height:s}=this.bbox;t.canvas.width=this.pixel_ratio*i,t.canvas.height=this.pixel_ratio*s;const[a,l,r,n]=e,{xview:o,yview:h}=this.bbox,c=o.compute(a),u=h.compute(l+n),_=this.pixel_ratio;t.regl_wrapper.set_scissor(_*c,_*u,_*r,_*n),this._clear_webgl()}}blit_webgl(e){const{webgl:t}=this;if(null!=t){if(_.logger.debug(\"Blitting WebGL canvas\"),e.restore(),e.drawImage(t.canvas,0,0),e.save(),this.model.hidpi){const t=this.pixel_ratio;e.scale(t,t),e.translate(.5,.5)}this._clear_webgl()}}_clear_webgl(){const{webgl:e}=this;if(null!=e){const{regl_wrapper:t,canvas:i}=e;t.clear(i.width,i.height)}}compose(){const e=this.create_layer(),{width:t,height:i}=this.bbox;return e.resize(t,i),e.ctx.drawImage(this.primary.canvas,0,0),e.ctx.drawImage(this.overlays.canvas,0,0),e}create_layer(){const{output_backend:e,hidpi:t}=this.model;return new y.CanvasLayer(e,t)}to_blob(){return this.compose().to_blob()}}i.CanvasView=x,x.__name__=\"CanvasView\";class z extends h.HasProps{constructor(e){super(e)}}i.Canvas=z,l=z,z.__name__=\"Canvas\",l.prototype.default_view=x,l.internal((({Boolean:e})=>({hidpi:[e,!0],output_backend:[p.OutputBackend,\"canvas\"]})))},\n", + " function _(t,e,s,n,i){n();const r=t(1),a=(0,r.__importDefault)(t(225)),_=t(15),h=t(19),o=t(43),l=(0,r.__importStar)(t(251)),c=t(252),p=t(9),u=t(8),v=t(27),d=t(230);class g{constructor(t){this.canvas_view=t,this.pan_start=new _.Signal(this,\"pan:start\"),this.pan=new _.Signal(this,\"pan\"),this.pan_end=new _.Signal(this,\"pan:end\"),this.pinch_start=new _.Signal(this,\"pinch:start\"),this.pinch=new _.Signal(this,\"pinch\"),this.pinch_end=new _.Signal(this,\"pinch:end\"),this.rotate_start=new _.Signal(this,\"rotate:start\"),this.rotate=new _.Signal(this,\"rotate\"),this.rotate_end=new _.Signal(this,\"rotate:end\"),this.tap=new _.Signal(this,\"tap\"),this.doubletap=new _.Signal(this,\"doubletap\"),this.press=new _.Signal(this,\"press\"),this.pressup=new _.Signal(this,\"pressup\"),this.move_enter=new _.Signal(this,\"move:enter\"),this.move=new _.Signal(this,\"move\"),this.move_exit=new _.Signal(this,\"move:exit\"),this.scroll=new _.Signal(this,\"scroll\"),this.keydown=new _.Signal(this,\"keydown\"),this.keyup=new _.Signal(this,\"keyup\"),this.hammer=new a.default(this.hit_area,{touchAction:\"auto\",inputClass:a.default.TouchMouseInput}),this._prev_move=null,this._curr_pan=null,this._curr_pinch=null,this._curr_rotate=null,this._configure_hammerjs(),this.hit_area.addEventListener(\"mousemove\",(t=>this._mouse_move(t))),this.hit_area.addEventListener(\"mouseenter\",(t=>this._mouse_enter(t))),this.hit_area.addEventListener(\"mouseleave\",(t=>this._mouse_exit(t))),this.hit_area.addEventListener(\"contextmenu\",(t=>this._context_menu(t))),this.hit_area.addEventListener(\"wheel\",(t=>this._mouse_wheel(t))),document.addEventListener(\"keydown\",this),document.addEventListener(\"keyup\",this),this.menu=new d.ContextMenu([],{prevent_hide:t=>2==t.button&&t.target==this.hit_area}),this.hit_area.appendChild(this.menu.el)}get hit_area(){return this.canvas_view.events_el}destroy(){this.menu.remove(),this.hammer.destroy(),document.removeEventListener(\"keydown\",this),document.removeEventListener(\"keyup\",this)}handleEvent(t){\"keydown\"==t.type?this._key_down(t):\"keyup\"==t.type&&this._key_up(t)}_configure_hammerjs(){this.hammer.get(\"doubletap\").recognizeWith(\"tap\"),this.hammer.get(\"tap\").requireFailure(\"doubletap\"),this.hammer.get(\"doubletap\").dropRequireFailure(\"tap\"),this.hammer.on(\"doubletap\",(t=>this._doubletap(t))),this.hammer.on(\"tap\",(t=>this._tap(t))),this.hammer.on(\"press\",(t=>this._press(t))),this.hammer.on(\"pressup\",(t=>this._pressup(t))),this.hammer.get(\"pan\").set({direction:a.default.DIRECTION_ALL}),this.hammer.on(\"panstart\",(t=>this._pan_start(t))),this.hammer.on(\"pan\",(t=>this._pan(t))),this.hammer.on(\"panend\",(t=>this._pan_end(t))),this.hammer.get(\"pinch\").set({enable:!0}),this.hammer.on(\"pinchstart\",(t=>this._pinch_start(t))),this.hammer.on(\"pinch\",(t=>this._pinch(t))),this.hammer.on(\"pinchend\",(t=>this._pinch_end(t))),this.hammer.get(\"rotate\").set({enable:!0}),this.hammer.on(\"rotatestart\",(t=>this._rotate_start(t))),this.hammer.on(\"rotate\",(t=>this._rotate(t))),this.hammer.on(\"rotateend\",(t=>this._rotate_end(t)))}register_tool(t){const e=t.model.event_type;null!=e&&((0,u.isString)(e)?this._register_tool(t,e):e.forEach(((e,s)=>this._register_tool(t,e,s<1))))}_register_tool(t,e,s=!0){const n=t,{id:i}=n.model,r=t=>e=>{e.id==i&&t(e.e)},a=t=>e=>{t(e.e)};switch(e){case\"pan\":null!=n._pan_start&&n.connect(this.pan_start,r(n._pan_start.bind(n))),null!=n._pan&&n.connect(this.pan,r(n._pan.bind(n))),null!=n._pan_end&&n.connect(this.pan_end,r(n._pan_end.bind(n)));break;case\"pinch\":null!=n._pinch_start&&n.connect(this.pinch_start,r(n._pinch_start.bind(n))),null!=n._pinch&&n.connect(this.pinch,r(n._pinch.bind(n))),null!=n._pinch_end&&n.connect(this.pinch_end,r(n._pinch_end.bind(n)));break;case\"rotate\":null!=n._rotate_start&&n.connect(this.rotate_start,r(n._rotate_start.bind(n))),null!=n._rotate&&n.connect(this.rotate,r(n._rotate.bind(n))),null!=n._rotate_end&&n.connect(this.rotate_end,r(n._rotate_end.bind(n)));break;case\"move\":null!=n._move_enter&&n.connect(this.move_enter,r(n._move_enter.bind(n))),null!=n._move&&n.connect(this.move,r(n._move.bind(n))),null!=n._move_exit&&n.connect(this.move_exit,r(n._move_exit.bind(n)));break;case\"tap\":null!=n._tap&&n.connect(this.tap,r(n._tap.bind(n))),null!=n._doubletap&&n.connect(this.doubletap,r(n._doubletap.bind(n)));break;case\"press\":null!=n._press&&n.connect(this.press,r(n._press.bind(n))),null!=n._pressup&&n.connect(this.pressup,r(n._pressup.bind(n)));break;case\"scroll\":null!=n._scroll&&n.connect(this.scroll,r(n._scroll.bind(n)));break;default:throw new Error(`unsupported event_type: ${e}`)}s&&(null!=n._keydown&&n.connect(this.keydown,a(n._keydown.bind(n))),null!=n._keyup&&n.connect(this.keyup,a(n._keyup.bind(n))),v.is_mobile&&null!=n._scroll&&\"pinch\"==e&&(h.logger.debug(\"Registering scroll on touch screen\"),n.connect(this.scroll,r(n._scroll.bind(n)))))}_hit_test_renderers(t,e,s){var n;const i=t.get_renderer_views();for(const t of(0,p.reversed)(i))if(null===(n=t.interactive_hit)||void 0===n?void 0:n.call(t,e,s))return t;return null}set_cursor(t=\"default\"){this.hit_area.style.cursor=t}_hit_test_frame(t,e,s){return t.frame.bbox.contains(e,s)}_hit_test_canvas(t,e,s){return t.layout.bbox.contains(e,s)}_hit_test_plot(t,e){for(const s of this.canvas_view.plot_views)if(s.layout.bbox.relative().contains(t,e))return s;return null}_trigger(t,e,s){var n;const{sx:i,sy:r}=e,a=this._hit_test_plot(i,r),_=t=>{const[s,n]=[i,r];return Object.assign(Object.assign({},e),{sx:s,sy:n})};if(\"panstart\"==e.type||\"pan\"==e.type||\"panend\"==e.type){let n;if(\"panstart\"==e.type&&null!=a?(this._curr_pan={plot_view:a},n=a):\"pan\"==e.type&&null!=this._curr_pan?n=this._curr_pan.plot_view:\"panend\"==e.type&&null!=this._curr_pan?(n=this._curr_pan.plot_view,this._curr_pan=null):n=null,null!=n){const e=_();this.__trigger(n,t,e,s)}}else if(\"pinchstart\"==e.type||\"pinch\"==e.type||\"pinchend\"==e.type){let n;if(\"pinchstart\"==e.type&&null!=a?(this._curr_pinch={plot_view:a},n=a):\"pinch\"==e.type&&null!=this._curr_pinch?n=this._curr_pinch.plot_view:\"pinchend\"==e.type&&null!=this._curr_pinch?(n=this._curr_pinch.plot_view,this._curr_pinch=null):n=null,null!=n){const e=_();this.__trigger(n,t,e,s)}}else if(\"rotatestart\"==e.type||\"rotate\"==e.type||\"rotateend\"==e.type){let n;if(\"rotatestart\"==e.type&&null!=a?(this._curr_rotate={plot_view:a},n=a):\"rotate\"==e.type&&null!=this._curr_rotate?n=this._curr_rotate.plot_view:\"rotateend\"==e.type&&null!=this._curr_rotate?(n=this._curr_rotate.plot_view,this._curr_rotate=null):n=null,null!=n){const e=_();this.__trigger(n,t,e,s)}}else if(\"mouseenter\"==e.type||\"mousemove\"==e.type||\"mouseleave\"==e.type){const h=null===(n=this._prev_move)||void 0===n?void 0:n.plot_view;if(null!=h&&(\"mouseleave\"==e.type||h!=a)){const{sx:t,sy:e}=_();this.__trigger(h,this.move_exit,{type:\"mouseleave\",sx:t,sy:e,shiftKey:!1,ctrlKey:!1},s)}if(null!=a&&(\"mouseenter\"==e.type||h!=a)){const{sx:t,sy:e}=_();this.__trigger(a,this.move_enter,{type:\"mouseenter\",sx:t,sy:e,shiftKey:!1,ctrlKey:!1},s)}if(null!=a&&\"mousemove\"==e.type){const e=_();this.__trigger(a,t,e,s)}this._prev_move={sx:i,sy:r,plot_view:a}}else if(null!=a){const e=_();this.__trigger(a,t,e,s)}}__trigger(t,e,s,n){var i,r,a;const _=t.model.toolbar.gestures,h=e.name.split(\":\")[0],o=this._hit_test_renderers(t,s.sx,s.sy),l=this._hit_test_canvas(t,s.sx,s.sy);switch(h){case\"move\":{const n=_.move.active;null!=n&&this.trigger(e,s,n.id);const r=t.model.toolbar.inspectors.filter((t=>t.active));let a=\"default\";null!=o?(a=null!==(i=o.cursor(s.sx,s.sy))&&void 0!==i?i:a,(0,p.is_empty)(r)||(e=this.move_exit)):this._hit_test_frame(t,s.sx,s.sy)&&((0,p.is_empty)(r)||(a=\"crosshair\")),this.set_cursor(a),t.set_toolbar_visibility(l),r.map((t=>this.trigger(e,s,t.id)));break}case\"tap\":{const{target:i}=n;if(null!=i&&i!=this.hit_area)return;if(null===(r=null==o?void 0:o.on_hit)||void 0===r||r.call(o,s.sx,s.sy),this._hit_test_frame(t,s.sx,s.sy)){const t=_.tap.active;null!=t&&this.trigger(e,s,t.id)}break}case\"doubletap\":if(this._hit_test_frame(t,s.sx,s.sy)){const t=null!==(a=_.doubletap.active)&&void 0!==a?a:_.tap.active;null!=t&&this.trigger(e,s,t.id)}break;case\"scroll\":{const t=_[v.is_mobile?\"pinch\":\"scroll\"].active;null!=t&&(n.preventDefault(),n.stopPropagation(),this.trigger(e,s,t.id));break}case\"pan\":{const t=_.pan.active;null!=t&&(n.preventDefault(),this.trigger(e,s,t.id));break}default:{const t=_[h].active;null!=t&&this.trigger(e,s,t.id)}}this._trigger_bokeh_event(t,s)}trigger(t,e,s=null){t.emit({id:s,e})}_trigger_bokeh_event(t,e){const s=(()=>{const{sx:s,sy:n}=e,i=t.frame.x_scale.invert(s),r=t.frame.y_scale.invert(n);switch(e.type){case\"wheel\":return new l.MouseWheel(s,n,i,r,e.delta);case\"mousemove\":return new l.MouseMove(s,n,i,r);case\"mouseenter\":return new l.MouseEnter(s,n,i,r);case\"mouseleave\":return new l.MouseLeave(s,n,i,r);case\"tap\":return new l.Tap(s,n,i,r);case\"doubletap\":return new l.DoubleTap(s,n,i,r);case\"press\":return new l.Press(s,n,i,r);case\"pressup\":return new l.PressUp(s,n,i,r);case\"pan\":return new l.Pan(s,n,i,r,e.deltaX,e.deltaY);case\"panstart\":return new l.PanStart(s,n,i,r);case\"panend\":return new l.PanEnd(s,n,i,r);case\"pinch\":return new l.Pinch(s,n,i,r,e.scale);case\"pinchstart\":return new l.PinchStart(s,n,i,r);case\"pinchend\":return new l.PinchEnd(s,n,i,r);case\"rotate\":return new l.Rotate(s,n,i,r,e.rotation);case\"rotatestart\":return new l.RotateStart(s,n,i,r);case\"rotateend\":return new l.RotateEnd(s,n,i,r);default:return}})();null!=s&&t.model.trigger_event(s)}_get_sxy(t){const{pageX:e,pageY:s}=function(t){return\"undefined\"!=typeof TouchEvent&&t instanceof TouchEvent}(t)?(0!=t.touches.length?t.touches:t.changedTouches)[0]:t,{left:n,top:i}=(0,o.offset)(this.hit_area);return{sx:e-n,sy:s-i}}_pan_event(t){return Object.assign(Object.assign({type:t.type},this._get_sxy(t.srcEvent)),{deltaX:t.deltaX,deltaY:t.deltaY,shiftKey:t.srcEvent.shiftKey,ctrlKey:t.srcEvent.ctrlKey})}_pinch_event(t){return Object.assign(Object.assign({type:t.type},this._get_sxy(t.srcEvent)),{scale:t.scale,shiftKey:t.srcEvent.shiftKey,ctrlKey:t.srcEvent.ctrlKey})}_rotate_event(t){return Object.assign(Object.assign({type:t.type},this._get_sxy(t.srcEvent)),{rotation:t.rotation,shiftKey:t.srcEvent.shiftKey,ctrlKey:t.srcEvent.ctrlKey})}_tap_event(t){return Object.assign(Object.assign({type:t.type},this._get_sxy(t.srcEvent)),{shiftKey:t.srcEvent.shiftKey,ctrlKey:t.srcEvent.ctrlKey})}_move_event(t){return Object.assign(Object.assign({type:t.type},this._get_sxy(t)),{shiftKey:t.shiftKey,ctrlKey:t.ctrlKey})}_scroll_event(t){return Object.assign(Object.assign({type:t.type},this._get_sxy(t)),{delta:(0,c.getDeltaY)(t),shiftKey:t.shiftKey,ctrlKey:t.ctrlKey})}_key_event(t){return{type:t.type,keyCode:t.keyCode}}_pan_start(t){const e=this._pan_event(t);e.sx-=t.deltaX,e.sy-=t.deltaY,this._trigger(this.pan_start,e,t.srcEvent)}_pan(t){this._trigger(this.pan,this._pan_event(t),t.srcEvent)}_pan_end(t){this._trigger(this.pan_end,this._pan_event(t),t.srcEvent)}_pinch_start(t){this._trigger(this.pinch_start,this._pinch_event(t),t.srcEvent)}_pinch(t){this._trigger(this.pinch,this._pinch_event(t),t.srcEvent)}_pinch_end(t){this._trigger(this.pinch_end,this._pinch_event(t),t.srcEvent)}_rotate_start(t){this._trigger(this.rotate_start,this._rotate_event(t),t.srcEvent)}_rotate(t){this._trigger(this.rotate,this._rotate_event(t),t.srcEvent)}_rotate_end(t){this._trigger(this.rotate_end,this._rotate_event(t),t.srcEvent)}_tap(t){this._trigger(this.tap,this._tap_event(t),t.srcEvent)}_doubletap(t){this._trigger(this.doubletap,this._tap_event(t),t.srcEvent)}_press(t){this._trigger(this.press,this._tap_event(t),t.srcEvent)}_pressup(t){this._trigger(this.pressup,this._tap_event(t),t.srcEvent)}_mouse_enter(t){this._trigger(this.move_enter,this._move_event(t),t)}_mouse_move(t){this._trigger(this.move,this._move_event(t),t)}_mouse_exit(t){this._trigger(this.move_exit,this._move_event(t),t)}_mouse_wheel(t){this._trigger(this.scroll,this._scroll_event(t),t)}_context_menu(t){!this.menu.is_open&&this.menu.can_open&&t.preventDefault();const{sx:e,sy:s}=this._get_sxy(t);this.menu.toggle({left:e,top:s})}_key_down(t){this.trigger(this.keydown,this._key_event(t))}_key_up(t){this.trigger(this.keyup,this._key_event(t))}}s.UIEventBus=g,g.__name__=\"UIEventBus\"},\n", + " function _(e,t,s,n,_){n();var a=this&&this.__decorate||function(e,t,s,n){var _,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,s):n;if(\"object\"==typeof Reflect&&\"function\"==typeof Reflect.decorate)o=Reflect.decorate(e,t,s,n);else for(var r=e.length-1;r>=0;r--)(_=e[r])&&(o=(a<3?_(o):a>3?_(t,s,o):_(t,s))||o);return a>3&&o&&Object.defineProperty(t,s,o),o};function o(e){return function(t){t.prototype.event_name=e}}class r{to_json(){const{event_name:e}=this;return{event_name:e,event_values:this._to_json()}}}s.BokehEvent=r,r.__name__=\"BokehEvent\";class c extends r{constructor(){super(...arguments),this.origin=null}_to_json(){return{model:this.origin}}}s.ModelEvent=c,c.__name__=\"ModelEvent\";let l=class extends r{_to_json(){return{}}};s.DocumentReady=l,l.__name__=\"DocumentReady\",s.DocumentReady=l=a([o(\"document_ready\")],l);let i=class extends c{};s.ButtonClick=i,i.__name__=\"ButtonClick\",s.ButtonClick=i=a([o(\"button_click\")],i);let u=class extends c{constructor(e){super(),this.item=e}_to_json(){const{item:e}=this;return Object.assign(Object.assign({},super._to_json()),{item:e})}};s.MenuItemClick=u,u.__name__=\"MenuItemClick\",s.MenuItemClick=u=a([o(\"menu_item_click\")],u);class d extends c{}s.UIEvent=d,d.__name__=\"UIEvent\";let m=class extends d{};s.LODStart=m,m.__name__=\"LODStart\",s.LODStart=m=a([o(\"lodstart\")],m);let h=class extends d{};s.LODEnd=h,h.__name__=\"LODEnd\",s.LODEnd=h=a([o(\"lodend\")],h);let p=class extends d{constructor(e,t,s,n){super(),this.x0=e,this.x1=t,this.y0=s,this.y1=n}_to_json(){const{x0:e,x1:t,y0:s,y1:n}=this;return Object.assign(Object.assign({},super._to_json()),{x0:e,x1:t,y0:s,y1:n})}};s.RangesUpdate=p,p.__name__=\"RangesUpdate\",s.RangesUpdate=p=a([o(\"rangesupdate\")],p);let x=class extends d{constructor(e,t){super(),this.geometry=e,this.final=t}_to_json(){const{geometry:e,final:t}=this;return Object.assign(Object.assign({},super._to_json()),{geometry:e,final:t})}};s.SelectionGeometry=x,x.__name__=\"SelectionGeometry\",s.SelectionGeometry=x=a([o(\"selectiongeometry\")],x);let j=class extends d{};s.Reset=j,j.__name__=\"Reset\",s.Reset=j=a([o(\"reset\")],j);class y extends d{constructor(e,t,s,n){super(),this.sx=e,this.sy=t,this.x=s,this.y=n}_to_json(){const{sx:e,sy:t,x:s,y:n}=this;return Object.assign(Object.assign({},super._to_json()),{sx:e,sy:t,x:s,y:n})}}s.PointEvent=y,y.__name__=\"PointEvent\";let g=class extends y{constructor(e,t,s,n,_,a){super(e,t,s,n),this.delta_x=_,this.delta_y=a}_to_json(){const{delta_x:e,delta_y:t}=this;return Object.assign(Object.assign({},super._to_json()),{delta_x:e,delta_y:t})}};s.Pan=g,g.__name__=\"Pan\",s.Pan=g=a([o(\"pan\")],g);let P=class extends y{constructor(e,t,s,n,_){super(e,t,s,n),this.scale=_}_to_json(){const{scale:e}=this;return Object.assign(Object.assign({},super._to_json()),{scale:e})}};s.Pinch=P,P.__name__=\"Pinch\",s.Pinch=P=a([o(\"pinch\")],P);let O=class extends y{constructor(e,t,s,n,_){super(e,t,s,n),this.rotation=_}_to_json(){const{rotation:e}=this;return Object.assign(Object.assign({},super._to_json()),{rotation:e})}};s.Rotate=O,O.__name__=\"Rotate\",s.Rotate=O=a([o(\"rotate\")],O);let b=class extends y{constructor(e,t,s,n,_){super(e,t,s,n),this.delta=_}_to_json(){const{delta:e}=this;return Object.assign(Object.assign({},super._to_json()),{delta:e})}};s.MouseWheel=b,b.__name__=\"MouseWheel\",s.MouseWheel=b=a([o(\"wheel\")],b);let v=class extends y{};s.MouseMove=v,v.__name__=\"MouseMove\",s.MouseMove=v=a([o(\"mousemove\")],v);let E=class extends y{};s.MouseEnter=E,E.__name__=\"MouseEnter\",s.MouseEnter=E=a([o(\"mouseenter\")],E);let R=class extends y{};s.MouseLeave=R,R.__name__=\"MouseLeave\",s.MouseLeave=R=a([o(\"mouseleave\")],R);let M=class extends y{};s.Tap=M,M.__name__=\"Tap\",s.Tap=M=a([o(\"tap\")],M);let f=class extends y{};s.DoubleTap=f,f.__name__=\"DoubleTap\",s.DoubleTap=f=a([o(\"doubletap\")],f);let S=class extends y{};s.Press=S,S.__name__=\"Press\",s.Press=S=a([o(\"press\")],S);let D=class extends y{};s.PressUp=D,D.__name__=\"PressUp\",s.PressUp=D=a([o(\"pressup\")],D);let k=class extends y{};s.PanStart=k,k.__name__=\"PanStart\",s.PanStart=k=a([o(\"panstart\")],k);let L=class extends y{};s.PanEnd=L,L.__name__=\"PanEnd\",s.PanEnd=L=a([o(\"panend\")],L);let U=class extends y{};s.PinchStart=U,U.__name__=\"PinchStart\",s.PinchStart=U=a([o(\"pinchstart\")],U);let C=class extends y{};s.PinchEnd=C,C.__name__=\"PinchEnd\",s.PinchEnd=C=a([o(\"pinchend\")],C);let T=class extends y{};s.RotateStart=T,T.__name__=\"RotateStart\",s.RotateStart=T=a([o(\"rotatestart\")],T);let B=class extends y{};s.RotateEnd=B,B.__name__=\"RotateEnd\",s.RotateEnd=B=a([o(\"rotateend\")],B)},\n", + " function _(t,e,n,l,o){\n", + " /*!\n", + " * jQuery Mousewheel 3.1.13\n", + " *\n", + " * Copyright jQuery Foundation and other contributors\n", + " * Released under the MIT license\n", + " * http://jquery.org/license\n", + " */\n", + " function u(t){const e=getComputedStyle(t).fontSize;return null!=e?parseInt(e,10):null}l(),n.getDeltaY=function(t){let e=-t.deltaY;if(t.target instanceof HTMLElement)switch(t.deltaMode){case t.DOM_DELTA_LINE:e*=(n=t.target,null!==(a=null!==(o=u(null!==(l=n.offsetParent)&&void 0!==l?l:document.body))&&void 0!==o?o:u(n))&&void 0!==a?a:16);break;case t.DOM_DELTA_PAGE:e*=function(t){return t.clientHeight}(t.target)}var n,l,o,a;return e}},\n", + " function _(m,o,n,r,a){r(),a(\"Expression\",m(254).Expression),a(\"CustomJSExpr\",m(255).CustomJSExpr),a(\"Stack\",m(256).Stack),a(\"CumSum\",m(257).CumSum),a(\"ScalarExpression\",m(254).ScalarExpression),a(\"Minimum\",m(258).Minimum),a(\"Maximum\",m(259).Maximum);var s=m(260);a(\"XComponent\",s.XComponent),a(\"YComponent\",s.YComponent),a(\"PolarTransform\",m(261).PolarTransform)},\n", + " function _(e,t,s,i,r){i();const n=e(53);class _ extends n.Model{constructor(e){super(e)}initialize(){super.initialize(),this._result=new Map}v_compute(e){let t=this._result.get(e);return(void 0===t||e.changed_for(this))&&(t=this._v_compute(e),this._result.set(e,t)),t}}s.Expression=_,_.__name__=\"Expression\";class o extends n.Model{constructor(e){super(e)}initialize(){super.initialize(),this._result=new Map}compute(e){let t=this._result.get(e);return(void 0===t||e.changed_for(this))&&(t=this._compute(e),this._result.set(e,t)),t}}s.ScalarExpression=o,o.__name__=\"ScalarExpression\"},\n", + " function _(e,s,t,n,r){var a;n();const o=e(14),c=e(254),i=e(24),u=e(9),l=e(13),h=e(34),g=e(8);class p extends c.Expression{constructor(e){super(e)}connect_signals(){super.connect_signals();for(const e of(0,l.values)(this.args))e instanceof o.HasProps&&e.change.connect((()=>{this._result.clear(),this.change.emit()}))}get names(){return(0,l.keys)(this.args)}get values(){return(0,l.values)(this.args)}get func(){const e=(0,h.use_strict)(this.code);return new i.GeneratorFunction(...this.names,e)}_v_compute(e){const s=this.func.apply(e,this.values);let t=s.next();if(t.done&&void 0!==t.value){const{value:s}=t;return(0,g.isArray)(s)||(0,g.isTypedArray)(s)?s:(0,g.isIterable)(s)?[...s]:(0,u.repeat)(s,e.length)}{const e=[];do{e.push(t.value),t=s.next()}while(!t.done);return e}}}t.CustomJSExpr=p,a=p,p.__name__=\"CustomJSExpr\",a.define((({Unknown:e,String:s,Dict:t})=>({args:[t(e),{}],code:[s,\"\"]})))},\n", + " function _(t,n,e,o,r){var s;o();const a=t(254);class c extends a.Expression{constructor(t){super(t)}_v_compute(t){var n;const e=null!==(n=t.get_length())&&void 0!==n?n:0,o=new Float64Array(e);for(const n of this.fields){const r=t.data[n];if(null!=r){const t=Math.min(e,r.length);for(let n=0;n({fields:[n(t),[]]})))},\n", + " function _(e,n,t,o,r){var i;o();const l=e(254);class u extends l.Expression{constructor(e){super(e)}_v_compute(e){var n;const t=new Float64Array(null!==(n=e.get_length())&&void 0!==n?n:0),o=e.data[this.field],r=this.include_zero?1:0;t[0]=this.include_zero?0:o[0];for(let e=1;e({field:[n],include_zero:[e,!1]})))},\n", + " function _(i,n,l,t,e){var a;t();const u=i(254),r=i(9);class s extends u.ScalarExpression{constructor(i){super(i)}_compute(i){var n,l;const t=null!==(n=i.data[this.field])&&void 0!==n?n:[];return Math.min(null!==(l=this.initial)&&void 0!==l?l:1/0,(0,r.min)(t))}}l.Minimum=s,a=s,s.__name__=\"Minimum\",a.define((({Number:i,String:n,Nullable:l})=>({field:[n],initial:[l(i),null]})))},\n", + " function _(i,a,n,l,t){var e;l();const u=i(254),r=i(9);class s extends u.ScalarExpression{constructor(i){super(i)}_compute(i){var a,n;const l=null!==(a=i.data[this.field])&&void 0!==a?a:[];return Math.max(null!==(n=this.initial)&&void 0!==n?n:-1/0,(0,r.max)(l))}}n.Maximum=s,e=s,s.__name__=\"Maximum\",e.define((({Number:i,String:a,Nullable:n})=>({field:[a],initial:[n(i),null]})))},\n", + " function _(n,e,t,o,r){var s;o();const _=n(254);class m extends _.Expression{constructor(n){super(n)}get x(){return new c({transform:this})}get y(){return new u({transform:this})}}t.CoordinateTransform=m,m.__name__=\"CoordinateTransform\";class a extends _.Expression{constructor(n){super(n)}}t.XYComponent=a,s=a,a.__name__=\"XYComponent\",s.define((({Ref:n})=>({transform:[n(m)]})));class c extends a{constructor(n){super(n)}_v_compute(n){return this.transform.v_compute(n).x}}t.XComponent=c,c.__name__=\"XComponent\";class u extends a{constructor(n){super(n)}_v_compute(n){return this.transform.v_compute(n).y}}t.YComponent=u,u.__name__=\"YComponent\"},\n", + " function _(r,t,n,e,o){e();const i=r(1);var a;const s=r(260),c=r(20),l=(0,i.__importStar)(r(18));class d extends s.CoordinateTransform{constructor(r){super(r)}_v_compute(r){const t=this.properties.radius.uniform(r),n=this.properties.angle.uniform(r),e=\"anticlock\"==this.direction?-1:1,o=Math.min(t.length,n.length),i=new Float64Array(o),a=new Float64Array(o);for(let r=0;r({radius:[l.DistanceSpec,{field:\"radius\"}],angle:[l.AngleSpec,{field:\"angle\"}],direction:[c.Direction,\"anticlock\"]})))},\n", + " function _(e,t,l,r,i){r(),i(\"BooleanFilter\",e(263).BooleanFilter),i(\"CustomJSFilter\",e(264).CustomJSFilter),i(\"Filter\",e(191).Filter),i(\"GroupFilter\",e(265).GroupFilter),i(\"IndexFilter\",e(266).IndexFilter)},\n", + " function _(e,n,l,o,s){var t;o();const a=e(191),r=e(24);class c extends a.Filter{constructor(e){super(e)}compute_indices(e){const n=e.length,{booleans:l}=this;return null==l?r.Indices.all_set(n):r.Indices.from_booleans(n,l)}}l.BooleanFilter=c,t=c,c.__name__=\"BooleanFilter\",t.define((({Boolean:e,Array:n,Nullable:l})=>({booleans:[l(n(e)),null]})))},\n", + " function _(e,n,r,s,t){var i;s();const o=e(191),c=e(24),u=e(13),a=e(8),l=e(34);class f extends o.Filter{constructor(e){super(e)}get names(){return(0,u.keys)(this.args)}get values(){return(0,u.values)(this.args)}get func(){const e=(0,l.use_strict)(this.code);return new Function(...this.names,\"source\",e)}compute_indices(e){const n=e.length,r=this.func(...this.values,e);if(null==r)return c.Indices.all_set(n);if((0,a.isArrayOf)(r,a.isInteger))return c.Indices.from_indices(n,r);if((0,a.isArrayOf)(r,a.isBoolean))return c.Indices.from_booleans(n,r);throw new Error(`expect an array of integers or booleans, or null, got ${r}`)}}r.CustomJSFilter=f,i=f,f.__name__=\"CustomJSFilter\",i.define((({Unknown:e,String:n,Dict:r})=>({args:[r(e),{}],code:[n,\"\"]})))},\n", + " function _(n,e,t,o,r){var u;o();const s=n(191),c=n(24),i=n(19);class l extends s.Filter{constructor(n){super(n)}compute_indices(n){const e=n.get_column(this.column_name);if(null==e)return i.logger.warn(`${this}: groupby column '${this.column_name}' not found in the data source`),new c.Indices(n.length,1);{const t=new c.Indices(n.length);for(let n=0;n({column_name:[n],group:[n]})))},\n", + " function _(e,n,i,s,t){var l;s();const c=e(191),r=e(24);class d extends c.Filter{constructor(e){super(e)}compute_indices(e){const n=e.length,{indices:i}=this;return null==i?r.Indices.all_set(n):r.Indices.from_indices(n,i)}}i.IndexFilter=d,l=d,d.__name__=\"IndexFilter\",l.define((({Int:e,Array:n,Nullable:i})=>({indices:[i(n(e)),null]})))},\n", + " function _(e,a,l,i,t){i(),t(\"AnnularWedge\",e(268).AnnularWedge),t(\"Annulus\",e(269).Annulus),t(\"Arc\",e(270).Arc),t(\"Bezier\",e(271).Bezier),t(\"Circle\",e(272).Circle),t(\"Ellipse\",e(273).Ellipse),t(\"EllipseOval\",e(274).EllipseOval),t(\"Glyph\",e(179).Glyph),t(\"HArea\",e(187).HArea),t(\"HBar\",e(276).HBar),t(\"HexTile\",e(278).HexTile),t(\"Image\",e(279).Image),t(\"ImageRGBA\",e(281).ImageRGBA),t(\"ImageURL\",e(282).ImageURL),t(\"Line\",e(177).Line),t(\"MultiLine\",e(283).MultiLine),t(\"MultiPolygons\",e(284).MultiPolygons),t(\"Oval\",e(285).Oval),t(\"Patch\",e(186).Patch),t(\"Patches\",e(286).Patches),t(\"Quad\",e(287).Quad),t(\"Quadratic\",e(288).Quadratic),t(\"Ray\",e(289).Ray),t(\"Rect\",e(290).Rect),t(\"Scatter\",e(291).Scatter),t(\"Segment\",e(294).Segment),t(\"Spline\",e(295).Spline),t(\"Step\",e(297).Step),t(\"Text\",e(298).Text),t(\"VArea\",e(189).VArea),t(\"VBar\",e(299).VBar),t(\"Wedge\",e(300).Wedge)},\n", + " function _(e,s,t,i,r){i();const n=e(1);var a;const _=e(178),o=e(184),d=e(48),u=e(24),h=e(20),c=(0,n.__importStar)(e(18)),l=e(10),g=e(72),p=e(12);class x extends _.XYGlyphView{_map_data(){\"data\"==this.model.properties.inner_radius.units?this.sinner_radius=this.sdist(this.renderer.xscale,this._x,this.inner_radius):this.sinner_radius=(0,u.to_screen)(this.inner_radius),\"data\"==this.model.properties.outer_radius.units?this.souter_radius=this.sdist(this.renderer.xscale,this._x,this.outer_radius):this.souter_radius=(0,u.to_screen)(this.outer_radius),this.max_souter_radius=(0,p.max)(this.souter_radius)}_render(e,s,t){const{sx:i,sy:r,start_angle:n,end_angle:a,sinner_radius:_,souter_radius:o}=null!=t?t:this,d=\"anticlock\"==this.model.direction;for(const t of s){const s=i[t],u=r[t],h=_[t],c=o[t],l=n.get(t),g=a.get(t);if(!isFinite(s+u+h+c+l+g))continue;const p=g-l;e.translate(s,u),e.rotate(l),e.beginPath(),e.moveTo(c,0),e.arc(0,0,c,0,p,d),e.rotate(p),e.lineTo(h,0),e.arc(0,0,h,0,-p,!d),e.closePath(),e.rotate(-p-l),e.translate(-s,-u),this.visuals.fill.apply(e,t),this.visuals.hatch.apply(e,t),this.visuals.line.apply(e,t)}}_hit_point(e){const{sx:s,sy:t}=e,i=this.renderer.xscale.invert(s),r=this.renderer.yscale.invert(t),n=s-this.max_souter_radius,a=s+this.max_souter_radius,[_,o]=this.renderer.xscale.r_invert(n,a),d=t-this.max_souter_radius,u=t+this.max_souter_radius,[h,c]=this.renderer.yscale.r_invert(d,u),p=[];for(const e of this.index.indices({x0:_,x1:o,y0:h,y1:c})){const s=this.souter_radius[e]**2,t=this.sinner_radius[e]**2,[n,a]=this.renderer.xscale.r_compute(i,this._x[e]),[_,o]=this.renderer.yscale.r_compute(r,this._y[e]),d=(n-a)**2+(_-o)**2;d<=s&&d>=t&&p.push(e)}const x=\"anticlock\"==this.model.direction,m=[];for(const e of p){const i=Math.atan2(t-this.sy[e],s-this.sx[e]);(0,l.angle_between)(-i,-this.start_angle.get(e),-this.end_angle.get(e),x)&&m.push(e)}return new g.Selection({indices:m})}draw_legend_for_index(e,s,t){(0,o.generic_area_vector_legend)(this.visuals,e,s,t)}scenterxy(e){const s=(this.sinner_radius[e]+this.souter_radius[e])/2,t=(this.start_angle.get(e)+this.end_angle.get(e))/2;return[this.sx[e]+s*Math.cos(t),this.sy[e]+s*Math.sin(t)]}}t.AnnularWedgeView=x,x.__name__=\"AnnularWedgeView\";class m extends _.XYGlyph{constructor(e){super(e)}}t.AnnularWedge=m,a=m,m.__name__=\"AnnularWedge\",a.prototype.default_view=x,a.mixins([d.LineVector,d.FillVector,d.HatchVector]),a.define((({})=>({direction:[h.Direction,\"anticlock\"],inner_radius:[c.DistanceSpec,{field:\"inner_radius\"}],outer_radius:[c.DistanceSpec,{field:\"outer_radius\"}],start_angle:[c.AngleSpec,{field:\"start_angle\"}],end_angle:[c.AngleSpec,{field:\"end_angle\"}]})))},\n", + " function _(s,e,i,r,t){r();const n=s(1);var a;const u=s(178),o=s(24),_=s(48),d=(0,n.__importStar)(s(18)),h=s(27),c=s(72);class l extends u.XYGlyphView{_map_data(){\"data\"==this.model.properties.inner_radius.units?this.sinner_radius=this.sdist(this.renderer.xscale,this._x,this.inner_radius):this.sinner_radius=(0,o.to_screen)(this.inner_radius),\"data\"==this.model.properties.outer_radius.units?this.souter_radius=this.sdist(this.renderer.xscale,this._x,this.outer_radius):this.souter_radius=(0,o.to_screen)(this.outer_radius)}_render(s,e,i){const{sx:r,sy:t,sinner_radius:n,souter_radius:a}=null!=i?i:this;for(const i of e){const e=r[i],u=t[i],o=n[i],_=a[i];if(isFinite(e+u+o+_)){if(s.beginPath(),h.is_ie)for(const i of[!1,!0])s.moveTo(e,u),s.arc(e,u,o,0,Math.PI,i),s.moveTo(e+_,u),s.arc(e,u,_,Math.PI,0,!i);else s.arc(e,u,o,0,2*Math.PI,!0),s.moveTo(e+_,u),s.arc(e,u,_,2*Math.PI,0,!1);this.visuals.fill.apply(s,i),this.visuals.hatch.apply(s,i),this.visuals.line.apply(s,i)}}}_hit_point(s){const{sx:e,sy:i}=s,r=this.renderer.xscale.invert(e),t=this.renderer.yscale.invert(i);let n,a,u,o;if(\"data\"==this.model.properties.outer_radius.units)n=r-this.max_outer_radius,u=r+this.max_outer_radius,a=t-this.max_outer_radius,o=t+this.max_outer_radius;else{const s=e-this.max_outer_radius,r=e+this.max_outer_radius;[n,u]=this.renderer.xscale.r_invert(s,r);const t=i-this.max_outer_radius,_=i+this.max_outer_radius;[a,o]=this.renderer.yscale.r_invert(t,_)}const _=[];for(const s of this.index.indices({x0:n,x1:u,y0:a,y1:o})){const e=this.souter_radius[s]**2,i=this.sinner_radius[s]**2,[n,a]=this.renderer.xscale.r_compute(r,this._x[s]),[u,o]=this.renderer.yscale.r_compute(t,this._y[s]),d=(n-a)**2+(u-o)**2;d<=e&&d>=i&&_.push(s)}return new c.Selection({indices:_})}draw_legend_for_index(s,{x0:e,y0:i,x1:r,y1:t},n){const a=n+1,u=new Array(a);u[n]=(e+r)/2;const o=new Array(a);o[n]=(i+t)/2;const _=.5*Math.min(Math.abs(r-e),Math.abs(t-i)),d=new Array(a);d[n]=.4*_;const h=new Array(a);h[n]=.8*_,this._render(s,[n],{sx:u,sy:o,sinner_radius:d,souter_radius:h})}}i.AnnulusView=l,l.__name__=\"AnnulusView\";class x extends u.XYGlyph{constructor(s){super(s)}}i.Annulus=x,a=x,x.__name__=\"Annulus\",a.prototype.default_view=l,a.mixins([_.LineVector,_.FillVector,_.HatchVector]),a.define((({})=>({inner_radius:[d.DistanceSpec,{field:\"inner_radius\"}],outer_radius:[d.DistanceSpec,{field:\"outer_radius\"}]})))},\n", + " function _(e,i,s,t,n){t();const r=e(1);var a;const c=e(178),d=e(184),l=e(48),_=e(24),o=e(20),u=(0,r.__importStar)(e(18));class h extends c.XYGlyphView{_map_data(){\"data\"==this.model.properties.radius.units?this.sradius=this.sdist(this.renderer.xscale,this._x,this.radius):this.sradius=(0,_.to_screen)(this.radius)}_render(e,i,s){if(this.visuals.line.doit){const{sx:t,sy:n,sradius:r,start_angle:a,end_angle:c}=null!=s?s:this,d=\"anticlock\"==this.model.direction;for(const s of i){const i=t[s],l=n[s],_=r[s],o=a.get(s),u=c.get(s);isFinite(i+l+_+o+u)&&(e.beginPath(),e.arc(i,l,_,o,u,d),this.visuals.line.set_vectorize(e,s),e.stroke())}}}draw_legend_for_index(e,i,s){(0,d.generic_line_vector_legend)(this.visuals,e,i,s)}}s.ArcView=h,h.__name__=\"ArcView\";class g extends c.XYGlyph{constructor(e){super(e)}}s.Arc=g,a=g,g.__name__=\"Arc\",a.prototype.default_view=h,a.mixins(l.LineVector),a.define((({})=>({direction:[o.Direction,\"anticlock\"],radius:[u.DistanceSpec,{field:\"radius\"}],start_angle:[u.AngleSpec,{field:\"start_angle\"}],end_angle:[u.AngleSpec,{field:\"end_angle\"}]})))},\n", + " function _(e,t,i,n,s){n();const o=e(1);var c;const r=e(48),a=e(179),_=e(184),d=e(78),l=(0,o.__importStar)(e(18));function x(e,t,i,n,s,o,c,r){const a=[],_=[[],[]];for(let _=0;_<=2;_++){let d,l,x;if(0===_?(l=6*e-12*i+6*s,d=-3*e+9*i-9*s+3*c,x=3*i-3*e):(l=6*t-12*n+6*o,d=-3*t+9*n-9*o+3*r,x=3*n-3*t),Math.abs(d)<1e-12){if(Math.abs(l)<1e-12)continue;const e=-x/l;0({x0:[l.XCoordinateSpec,{field:\"x0\"}],y0:[l.YCoordinateSpec,{field:\"y0\"}],x1:[l.XCoordinateSpec,{field:\"x1\"}],y1:[l.YCoordinateSpec,{field:\"y1\"}],cx0:[l.XCoordinateSpec,{field:\"cx0\"}],cy0:[l.YCoordinateSpec,{field:\"cy0\"}],cx1:[l.XCoordinateSpec,{field:\"cx1\"}],cy1:[l.YCoordinateSpec,{field:\"cy1\"}]}))),c.mixins(r.LineVector)},\n", + " function _(s,i,e,t,r){t();const a=s(1);var n;const h=s(178),d=s(48),l=s(24),_=s(20),c=(0,a.__importStar)(s(185)),u=(0,a.__importStar)(s(18)),o=s(9),x=s(12),m=s(72);class p extends h.XYGlyphView{async lazy_initialize(){await super.lazy_initialize();const{webgl:i}=this.renderer.plot_view.canvas_view;if(null!=i&&i.regl_wrapper.has_webgl){const{CircleGL:e}=await Promise.resolve().then((()=>(0,a.__importStar)(s(423))));this.glglyph=new e(i.regl_wrapper,this)}}get use_radius(){return!(this.radius.is_Scalar()&&isNaN(this.radius.value))}_set_data(s){super._set_data(s);const i=(()=>{if(this.use_radius)return 2*this.max_radius;{const{size:s}=this;return s.is_Scalar()?s.value:(0,x.max)(s.array)}})();this._configure(\"max_size\",{value:i})}_map_data(){if(this.use_radius)if(\"data\"==this.model.properties.radius.units)switch(this.model.radius_dimension){case\"x\":this.sradius=this.sdist(this.renderer.xscale,this._x,this.radius);break;case\"y\":this.sradius=this.sdist(this.renderer.yscale,this._y,this.radius);break;case\"max\":{const s=this.sdist(this.renderer.xscale,this._x,this.radius),i=this.sdist(this.renderer.yscale,this._y,this.radius);this.sradius=(0,x.map)(s,((s,e)=>Math.max(s,i[e])));break}case\"min\":{const s=this.sdist(this.renderer.xscale,this._x,this.radius),i=this.sdist(this.renderer.yscale,this._y,this.radius);this.sradius=(0,x.map)(s,((s,e)=>Math.min(s,i[e])));break}}else this.sradius=(0,l.to_screen)(this.radius);else{const s=l.ScreenArray.from(this.size);this.sradius=(0,x.map)(s,(s=>s/2))}}_mask_data(){const{frame:s}=this.renderer.plot_view,i=s.x_target,e=s.y_target;let t,r;return this.use_radius&&\"data\"==this.model.properties.radius.units?(t=i.map((s=>this.renderer.xscale.invert(s))).widen(this.max_radius),r=e.map((s=>this.renderer.yscale.invert(s))).widen(this.max_radius)):(t=i.widen(this.max_size).map((s=>this.renderer.xscale.invert(s))),r=e.widen(this.max_size).map((s=>this.renderer.yscale.invert(s)))),this.index.indices({x0:t.start,x1:t.end,y0:r.start,y1:r.end})}_render(s,i,e){const{sx:t,sy:r,sradius:a}=null!=e?e:this;for(const e of i){const i=t[e],n=r[e],h=a[e];isFinite(i+n+h)&&(s.beginPath(),s.arc(i,n,h,0,2*Math.PI,!1),this.visuals.fill.apply(s,e),this.visuals.hatch.apply(s,e),this.visuals.line.apply(s,e))}}_hit_point(s){const{sx:i,sy:e}=s,t=this.renderer.xscale.invert(i),r=this.renderer.yscale.invert(e),{hit_dilation:a}=this.model;let n,h,d,l;if(this.use_radius&&\"data\"==this.model.properties.radius.units)n=t-this.max_radius*a,h=t+this.max_radius*a,d=r-this.max_radius*a,l=r+this.max_radius*a;else{const s=i-this.max_size*a,t=i+this.max_size*a;[n,h]=this.renderer.xscale.r_invert(s,t);const r=e-this.max_size*a,_=e+this.max_size*a;[d,l]=this.renderer.yscale.r_invert(r,_)}const _=this.index.indices({x0:n,x1:h,y0:d,y1:l}),c=[];if(this.use_radius&&\"data\"==this.model.properties.radius.units)for(const s of _){const i=(this.sradius[s]*a)**2,[e,n]=this.renderer.xscale.r_compute(t,this._x[s]),[h,d]=this.renderer.yscale.r_compute(r,this._y[s]);(e-n)**2+(h-d)**2<=i&&c.push(s)}else for(const s of _){const t=(this.sradius[s]*a)**2;(this.sx[s]-i)**2+(this.sy[s]-e)**2<=t&&c.push(s)}return new m.Selection({indices:c})}_hit_span(s){const{sx:i,sy:e}=s,t=this.bounds();let r,a,n,h;if(\"h\"==s.direction){let s,e;if(n=t.y0,h=t.y1,this.use_radius&&\"data\"==this.model.properties.radius.units)s=i-this.max_radius,e=i+this.max_radius,[r,a]=this.renderer.xscale.r_invert(s,e);else{const t=this.max_size/2;s=i-t,e=i+t,[r,a]=this.renderer.xscale.r_invert(s,e)}}else{let s,i;if(r=t.x0,a=t.x1,this.use_radius&&\"data\"==this.model.properties.radius.units)s=e-this.max_radius,i=e+this.max_radius,[n,h]=this.renderer.yscale.r_invert(s,i);else{const t=this.max_size/2;s=e-t,i=e+t,[n,h]=this.renderer.yscale.r_invert(s,i)}}const d=[...this.index.indices({x0:r,x1:a,y0:n,y1:h})];return new m.Selection({indices:d})}_hit_rect(s){const{sx0:i,sx1:e,sy0:t,sy1:r}=s,[a,n]=this.renderer.xscale.r_invert(i,e),[h,d]=this.renderer.yscale.r_invert(t,r),l=[...this.index.indices({x0:a,x1:n,y0:h,y1:d})];return new m.Selection({indices:l})}_hit_poly(s){const{sx:i,sy:e}=s,t=(0,o.range)(0,this.sx.length),r=[];for(let s=0,a=t.length;s({angle:[u.AngleSpec,0],size:[u.ScreenSizeSpec,{value:4}],radius:[u.NullDistanceSpec,null],radius_dimension:[_.RadiusDimension,\"x\"],hit_dilation:[s,1]})))},\n", + " function _(e,l,s,i,_){var p;i();const t=e(274);class a extends t.EllipseOvalView{}s.EllipseView=a,a.__name__=\"EllipseView\";class n extends t.EllipseOval{constructor(e){super(e)}}s.Ellipse=n,p=n,n.__name__=\"Ellipse\",p.prototype.default_view=a},\n", + " function _(t,s,e,i,h){i();const n=t(1),r=t(275),a=(0,n.__importStar)(t(185)),l=t(24),_=t(72),o=(0,n.__importStar)(t(18));class d extends r.CenterRotatableView{_map_data(){\"data\"==this.model.properties.width.units?this.sw=this.sdist(this.renderer.xscale,this._x,this.width,\"center\"):this.sw=(0,l.to_screen)(this.width),\"data\"==this.model.properties.height.units?this.sh=this.sdist(this.renderer.yscale,this._y,this.height,\"center\"):this.sh=(0,l.to_screen)(this.height)}_render(t,s,e){const{sx:i,sy:h,sw:n,sh:r,angle:a}=null!=e?e:this;for(const e of s){const s=i[e],l=h[e],_=n[e],o=r[e],d=a.get(e);isFinite(s+l+_+o+d)&&(t.beginPath(),t.ellipse(s,l,_/2,o/2,d,0,2*Math.PI),this.visuals.fill.apply(t,e),this.visuals.hatch.apply(t,e),this.visuals.line.apply(t,e))}}_hit_point(t){let s,e,i,h,n,r,l,o,d;const{sx:c,sy:p}=t,w=this.renderer.xscale.invert(c),x=this.renderer.yscale.invert(p);\"data\"==this.model.properties.width.units?(s=w-this.max_width,e=w+this.max_width):(r=c-this.max_width,l=c+this.max_width,[s,e]=this.renderer.xscale.r_invert(r,l)),\"data\"==this.model.properties.height.units?(i=x-this.max_height,h=x+this.max_height):(o=p-this.max_height,d=p+this.max_height,[i,h]=this.renderer.yscale.r_invert(o,d));const m=this.index.indices({x0:s,x1:e,y0:i,y1:h}),y=[];for(const t of m)n=a.point_in_ellipse(c,p,this.angle.get(t),this.sh[t]/2,this.sw[t]/2,this.sx[t],this.sy[t]),n&&y.push(t);return new _.Selection({indices:y})}draw_legend_for_index(t,{x0:s,y0:e,x1:i,y1:h},n){const r=n+1,a=new Array(r);a[n]=(s+i)/2;const l=new Array(r);l[n]=(e+h)/2;const _=this.sw[n]/this.sh[n],d=.8*Math.min(Math.abs(i-s),Math.abs(h-e)),c=new Array(r),p=new Array(r);_>1?(c[n]=d,p[n]=d/_):(c[n]=d*_,p[n]=d);const w=new o.UniformScalar(0,r);this._render(t,[n],{sx:a,sy:l,sw:c,sh:p,angle:w})}}e.EllipseOvalView=d,d.__name__=\"EllipseOvalView\";class c extends r.CenterRotatable{constructor(t){super(t)}}e.EllipseOval=c,c.__name__=\"EllipseOval\"},\n", + " function _(e,t,i,a,n){a();const s=e(1);var r;const h=e(178),o=e(48),_=(0,s.__importStar)(e(18));class c extends h.XYGlyphView{get max_w2(){return\"data\"==this.model.properties.width.units?this.max_width/2:0}get max_h2(){return\"data\"==this.model.properties.height.units?this.max_height/2:0}_bounds({x0:e,x1:t,y0:i,y1:a}){const{max_w2:n,max_h2:s}=this;return{x0:e-n,x1:t+n,y0:i-s,y1:a+s}}}i.CenterRotatableView=c,c.__name__=\"CenterRotatableView\";class l extends h.XYGlyph{constructor(e){super(e)}}i.CenterRotatable=l,r=l,l.__name__=\"CenterRotatable\",r.mixins([o.LineVector,o.FillVector,o.HatchVector]),r.define((({})=>({angle:[_.AngleSpec,0],width:[_.DistanceSpec,{field:\"width\"}],height:[_.DistanceSpec,{field:\"height\"}]})))},\n", + " function _(t,e,s,i,r){i();const h=t(1);var a;const n=t(277),_=t(24),o=(0,h.__importStar)(t(18));class l extends n.BoxView{async lazy_initialize(){await super.lazy_initialize();const{webgl:e}=this.renderer.plot_view.canvas_view;if(null!=e&&e.regl_wrapper.has_webgl){const{LRTBGL:s}=await Promise.resolve().then((()=>(0,h.__importStar)(t(427))));this.glglyph=new s(e.regl_wrapper,this)}}scenterxy(t){return[(this.sleft[t]+this.sright[t])/2,this.sy[t]]}_lrtb(t){const e=this._left[t],s=this._right[t],i=this._y[t],r=this.height.get(t)/2;return[Math.min(e,s),Math.max(e,s),i+r,i-r]}_map_data(){this.sy=this.renderer.yscale.v_compute(this._y),this.sh=this.sdist(this.renderer.yscale,this._y,this.height,\"center\"),this.sleft=this.renderer.xscale.v_compute(this._left),this.sright=this.renderer.xscale.v_compute(this._right);const t=this.sy.length;this.stop=new _.ScreenArray(t),this.sbottom=new _.ScreenArray(t);for(let e=0;e({left:[o.XCoordinateSpec,{value:0}],y:[o.YCoordinateSpec,{field:\"y\"}],height:[o.NumberSpec,{value:1}],right:[o.XCoordinateSpec,{field:\"right\"}]})))},\n", + " function _(t,e,s,r,i){var n;r();const a=t(48),h=t(179),o=t(184),c=t(72);class _ extends h.GlyphView{get_anchor_point(t,e,s){const r=Math.min(this.sleft[e],this.sright[e]),i=Math.max(this.sright[e],this.sleft[e]),n=Math.min(this.stop[e],this.sbottom[e]),a=Math.max(this.sbottom[e],this.stop[e]);switch(t){case\"top_left\":return{x:r,y:n};case\"top\":case\"top_center\":return{x:(r+i)/2,y:n};case\"top_right\":return{x:i,y:n};case\"bottom_left\":return{x:r,y:a};case\"bottom\":case\"bottom_center\":return{x:(r+i)/2,y:a};case\"bottom_right\":return{x:i,y:a};case\"left\":case\"center_left\":return{x:r,y:(n+a)/2};case\"center\":case\"center_center\":return{x:(r+i)/2,y:(n+a)/2};case\"right\":case\"center_right\":return{x:i,y:(n+a)/2}}}_index_data(t){const{min:e,max:s}=Math,{data_size:r}=this;for(let i=0;i(0,n.__importStar)(e(425))));this.glglyph=new s(t.regl_wrapper,this)}}scenterxy(e){return[this.sx[e],this.sy[e]]}_set_data(){const{orientation:e,size:t,aspect_scale:s}=this.model,{q:i,r}=this,n=this.q.length;this._x=new Float64Array(n),this._y=new Float64Array(n);const{_x:a,_y:l}=this,o=Math.sqrt(3);if(\"pointytop\"==e)for(let e=0;e({r:[c.NumberSpec,{field:\"r\"}],q:[c.NumberSpec,{field:\"q\"}],scale:[c.NumberSpec,1],size:[e,1],aspect_scale:[e,1],orientation:[_.HexTileOrientation,\"pointytop\"]}))),a.override({line_color:null})},\n", + " function _(e,a,t,_,r){var n;_();const s=e(280),o=e(173),i=e(201);class p extends s.ImageBaseView{connect_signals(){super.connect_signals(),this.connect(this.model.color_mapper.change,(()=>this._update_image()))}_update_image(){null!=this.image_data&&(this._set_data(null),this.renderer.request_render())}_flat_img_to_buf8(e){return this.model.color_mapper.rgba_mapper.v_compute(e)}}t.ImageView=p,p.__name__=\"ImageView\";class m extends s.ImageBase{constructor(e){super(e)}}t.Image=m,n=m,m.__name__=\"Image\",n.prototype.default_view=p,n.define((({Ref:e})=>({color_mapper:[e(o.ColorMapper),()=>new i.LinearColorMapper({palette:[\"#000000\",\"#252525\",\"#525252\",\"#737373\",\"#969696\",\"#bdbdbd\",\"#d9d9d9\",\"#f0f0f0\",\"#ffffff\"]})]})))},\n", + " function _(e,t,i,s,a){s();const h=e(1);var n;const r=e(178),_=e(24),d=(0,h.__importStar)(e(18)),l=e(72),g=e(9),o=e(29),c=e(11);class m extends r.XYGlyphView{connect_signals(){super.connect_signals(),this.connect(this.model.properties.global_alpha.change,(()=>this.renderer.request_render()))}_render(e,t,i){const{image_data:s,sx:a,sy:h,sw:n,sh:r,global_alpha:_}=null!=i?i:this,d=e.getImageSmoothingEnabled();e.setImageSmoothingEnabled(!1);const l=_.is_Scalar();l&&(e.globalAlpha=_.value);for(const i of t){const t=s[i],_=a[i],d=h[i],g=n[i],o=r[i],c=this.global_alpha.get(i);if(null==t||!isFinite(_+d+g+o+c))continue;l||(e.globalAlpha=c);const m=d;e.translate(0,m),e.scale(1,-1),e.translate(0,-m),e.drawImage(t,0|_,0|d,g,o),e.translate(0,m),e.scale(1,-1),e.translate(0,-m)}e.setImageSmoothingEnabled(d)}_set_data(e){this._set_width_heigh_data();for(let t=0,i=this.image.length;t({image:[d.NDArraySpec,{field:\"image\"}],dw:[d.DistanceSpec,{field:\"dw\"}],dh:[d.DistanceSpec,{field:\"dh\"}],global_alpha:[d.NumberSpec,{value:1}],dilate:[e,!1]})))},\n", + " function _(e,a,t,r,_){var n;r();const s=e(280),m=e(8);class i extends s.ImageBaseView{_flat_img_to_buf8(e){let a;return a=(0,m.isArray)(e)?new Uint32Array(e):e,new Uint8ClampedArray(a.buffer)}}t.ImageRGBAView=i,i.__name__=\"ImageRGBAView\";class g extends s.ImageBase{constructor(e){super(e)}}t.ImageRGBA=g,n=g,g.__name__=\"ImageRGBA\",n.prototype.default_view=i},\n", + " function _(e,t,s,r,a){r();const i=e(1);var n;const o=e(178),c=e(24),_=e(20),h=(0,i.__importStar)(e(18)),l=e(12),d=e(136);class m extends o.XYGlyphView{constructor(){super(...arguments),this._images_rendered=!1,this._set_data_iteration=0}connect_signals(){super.connect_signals(),this.connect(this.model.properties.global_alpha.change,(()=>this.renderer.request_render()))}_index_data(e){const{data_size:t}=this;for(let s=0;s{this._set_data_iteration==r&&(this.image[a]=e,this.renderer.request_render())},attempts:t+1,timeout:s})}const a=\"data\"==this.model.properties.w.units,i=\"data\"==this.model.properties.h.units,n=this._x.length,o=new c.ScreenArray(a?2*n:n),_=new c.ScreenArray(i?2*n:n),{anchor:h}=this.model;function m(e,t){switch(h){case\"top_left\":case\"bottom_left\":case\"left\":case\"center_left\":return[e,e+t];case\"top\":case\"top_center\":case\"bottom\":case\"bottom_center\":case\"center\":case\"center_center\":return[e-t/2,e+t/2];case\"top_right\":case\"bottom_right\":case\"right\":case\"center_right\":return[e-t,e]}}function g(e,t){switch(h){case\"top_left\":case\"top\":case\"top_center\":case\"top_right\":return[e,e-t];case\"bottom_left\":case\"bottom\":case\"bottom_center\":case\"bottom_right\":return[e+t,e];case\"left\":case\"center_left\":case\"center\":case\"center_center\":case\"right\":case\"center_right\":return[e+t/2,e-t/2]}}if(a)for(let e=0;e({url:[h.StringSpec,{field:\"url\"}],anchor:[_.Anchor,\"top_left\"],global_alpha:[h.NumberSpec,{value:1}],angle:[h.AngleSpec,0],w:[h.NullDistanceSpec,null],h:[h.NullDistanceSpec,null],dilate:[e,!1],retry_attempts:[t,0],retry_timeout:[t,0]})))},\n", + " function _(e,t,s,i,n){i();const o=e(1);var r;const l=e(78),_=e(48),c=(0,o.__importStar)(e(185)),h=(0,o.__importStar)(e(18)),a=e(12),d=e(13),x=e(179),y=e(184),g=e(72);class p extends x.GlyphView{_project_data(){l.inplace.project_xy(this._xs.array,this._ys.array)}_index_data(e){const{data_size:t}=this;for(let s=0;s0&&o.set(e,s)}return new g.Selection({indices:[...o.keys()],multiline_indices:(0,d.to_object)(o)})}get_interpolation_hit(e,t,s){const i=this._xs.get(e),n=this._ys.get(e),o=i[t],r=n[t],l=i[t+1],_=n[t+1];return(0,y.line_interpolation)(this.renderer,s,o,r,l,_)}draw_legend_for_index(e,t,s){(0,y.generic_line_vector_legend)(this.visuals,e,t,s)}scenterxy(){throw new Error(`${this}.scenterxy() is not implemented`)}}s.MultiLineView=p,p.__name__=\"MultiLineView\";class u extends x.Glyph{constructor(e){super(e)}}s.MultiLine=u,r=u,u.__name__=\"MultiLine\",r.prototype.default_view=p,r.define((({})=>({xs:[h.XCoordinateSeqSpec,{field:\"xs\"}],ys:[h.YCoordinateSeqSpec,{field:\"ys\"}]}))),r.mixins(_.LineVector)},\n", + " function _(t,e,s,n,i){n();const o=t(1);var r;const l=t(181),h=t(179),a=t(184),_=t(12),c=t(12),d=t(48),x=(0,o.__importStar)(t(185)),y=(0,o.__importStar)(t(18)),f=t(72),g=t(11);class p extends h.GlyphView{_project_data(){}_index_data(t){const{min:e,max:s}=Math,{data_size:n}=this;for(let i=0;i1&&c.length>1)for(let s=1,n=i.length;s1){let r=!1;for(let t=1;t({xs:[y.XCoordinateSeqSeqSeqSpec,{field:\"xs\"}],ys:[y.YCoordinateSeqSeqSeqSpec,{field:\"ys\"}]}))),r.mixins([d.LineVector,d.FillVector,d.HatchVector])},\n", + " function _(a,e,l,s,_){var t;s();const i=a(274),n=a(12);class p extends i.EllipseOvalView{_map_data(){super._map_data(),(0,n.mul)(this.sw,.75)}}l.OvalView=p,p.__name__=\"OvalView\";class v extends i.EllipseOval{constructor(a){super(a)}}l.Oval=v,t=v,v.__name__=\"Oval\",t.prototype.default_view=p},\n", + " function _(e,t,s,i,n){i();const r=e(1);var a;const o=e(179),c=e(184),_=e(12),h=e(48),l=(0,r.__importStar)(e(185)),d=(0,r.__importStar)(e(18)),y=e(72),p=e(11),x=e(78);class f extends o.GlyphView{_project_data(){x.inplace.project_xy(this._xs.array,this._ys.array)}_index_data(e){const{data_size:t}=this;for(let s=0;s({xs:[d.XCoordinateSeqSpec,{field:\"xs\"}],ys:[d.YCoordinateSeqSpec,{field:\"ys\"}]}))),a.mixins([h.LineVector,h.FillVector,h.HatchVector])},\n", + " function _(t,e,i,o,r){o();const s=t(1);var a;const n=t(277),l=(0,s.__importStar)(t(18));class _ extends n.BoxView{async lazy_initialize(){await super.lazy_initialize();const{webgl:e}=this.renderer.plot_view.canvas_view;if(null!=e&&e.regl_wrapper.has_webgl){const{LRTBGL:i}=await Promise.resolve().then((()=>(0,s.__importStar)(t(427))));this.glglyph=new i(e.regl_wrapper,this)}}scenterxy(t){return[this.sleft[t]/2+this.sright[t]/2,this.stop[t]/2+this.sbottom[t]/2]}_lrtb(t){return[this._left[t],this._right[t],this._top[t],this._bottom[t]]}}i.QuadView=_,_.__name__=\"QuadView\";class p extends n.Box{constructor(t){super(t)}}i.Quad=p,a=p,p.__name__=\"Quad\",a.prototype.default_view=_,a.define((({})=>({right:[l.XCoordinateSpec,{field:\"right\"}],bottom:[l.YCoordinateSpec,{field:\"bottom\"}],left:[l.XCoordinateSpec,{field:\"left\"}],top:[l.YCoordinateSpec,{field:\"top\"}]})))},\n", + " function _(e,t,i,n,s){n();const c=e(1);var o;const r=e(48),a=e(78),_=e(179),d=e(184),l=(0,c.__importStar)(e(18));function x(e,t,i){if(t==(e+i)/2)return[e,i];{const n=(e-t)/(e-2*t+i),s=e*(1-n)**2+2*t*(1-n)*n+i*n**2;return[Math.min(e,i,s),Math.max(e,i,s)]}}class y extends _.GlyphView{_project_data(){a.inplace.project_xy(this._x0,this._y0),a.inplace.project_xy(this._x1,this._y1)}_index_data(e){const{_x0:t,_x1:i,_y0:n,_y1:s,_cx:c,_cy:o,data_size:r}=this;for(let a=0;a({x0:[l.XCoordinateSpec,{field:\"x0\"}],y0:[l.YCoordinateSpec,{field:\"y0\"}],x1:[l.XCoordinateSpec,{field:\"x1\"}],y1:[l.YCoordinateSpec,{field:\"y1\"}],cx:[l.XCoordinateSpec,{field:\"cx\"}],cy:[l.YCoordinateSpec,{field:\"cy\"}]}))),o.mixins(r.LineVector)},\n", + " function _(e,t,s,i,n){i();const l=e(1);var a;const r=e(178),o=e(184),h=e(48),_=e(24),c=(0,l.__importStar)(e(18));class g extends r.XYGlyphView{_map_data(){\"data\"==this.model.properties.length.units?this.slength=this.sdist(this.renderer.xscale,this._x,this.length):this.slength=(0,_.to_screen)(this.length);const{width:e,height:t}=this.renderer.plot_view.frame.bbox,s=2*(e+t),{slength:i}=this;for(let e=0,t=i.length;e({length:[c.DistanceSpec,0],angle:[c.AngleSpec,0]})))},\n", + " function _(t,e,s,i,r){var n,h=this&&this.__createBinding||(Object.create?function(t,e,s,i){void 0===i&&(i=s),Object.defineProperty(t,i,{enumerable:!0,get:function(){return e[s]}})}:function(t,e,s,i){void 0===i&&(i=s),t[i]=e[s]}),a=this&&this.__setModuleDefault||(Object.create?function(t,e){Object.defineProperty(t,\"default\",{enumerable:!0,value:e})}:function(t,e){t.default=e}),l=this&&this.__importStar||function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var s in t)\"default\"!==s&&Object.prototype.hasOwnProperty.call(t,s)&&h(e,t,s);return a(e,t),e};i();const o=t(275),c=t(184),_=t(24),d=t(12),f=t(72);class y extends o.CenterRotatableView{async lazy_initialize(){await super.lazy_initialize();const{webgl:e}=this.renderer.plot_view.canvas_view;if(null==e?void 0:e.regl_wrapper.has_webgl){const{RectGL:s}=await Promise.resolve().then((()=>l(t(429))));this.glglyph=new s(e.regl_wrapper,this)}}_map_data(){if(\"data\"==this.model.properties.width.units)[this.sw,this.sx0]=this._map_dist_corner_for_data_side_length(this._x,this.width,this.renderer.xscale);else{this.sw=(0,_.to_screen)(this.width);const t=this.sx.length;this.sx0=new _.ScreenArray(t);for(let e=0;e({dilate:[t,!1]})))},\n", + " function _(e,t,r,a,s){a();const i=e(1);var n;const l=e(292),_=e(293),c=(0,i.__importStar)(e(18));class o extends l.MarkerView{async lazy_initialize(){await super.lazy_initialize();const{webgl:t}=this.renderer.plot_view.canvas_view;if(null!=t&&t.regl_wrapper.has_webgl){const{MultiMarkerGL:r}=await Promise.resolve().then((()=>(0,i.__importStar)(e(428))));this.glglyph=new r(t.regl_wrapper,this)}}_render(e,t,r){const{sx:a,sy:s,size:i,angle:n,marker:l}=null!=r?r:this;for(const r of t){const t=a[r],c=s[r],o=i.get(r),g=n.get(r),w=l.get(r);if(!isFinite(t+c+o+g)||null==w)continue;const p=o/2;e.beginPath(),e.translate(t,c),g&&e.rotate(g),_.marker_funcs[w](e,r,p,this.visuals),g&&e.rotate(-g),e.translate(-t,-c)}}draw_legend_for_index(e,{x0:t,x1:r,y0:a,y1:s},i){const n=i+1,l=this.marker.get(i),_=Object.assign(Object.assign({},this._get_legend_args({x0:t,x1:r,y0:a,y1:s},i)),{marker:new c.UniformScalar(l,n)});this._render(e,[i],_)}}r.ScatterView=o,o.__name__=\"ScatterView\";class g extends l.Marker{constructor(e){super(e)}}r.Scatter=g,n=g,g.__name__=\"Scatter\",n.prototype.default_view=o,n.define((()=>({marker:[c.MarkerSpec,{value:\"circle\"}]})))},\n", + " function _(e,t,s,n,i){n();const r=e(1);var a;const c=e(178),o=e(48),_=(0,r.__importStar)(e(185)),h=(0,r.__importStar)(e(18)),l=e(9),x=e(72);class d extends c.XYGlyphView{_render(e,t,s){const{sx:n,sy:i,size:r,angle:a}=null!=s?s:this;for(const s of t){const t=n[s],c=i[s],o=r.get(s),_=a.get(s);if(!isFinite(t+c+o+_))continue;const h=o/2;e.beginPath(),e.translate(t,c),_&&e.rotate(_),this._render_one(e,s,h,this.visuals),_&&e.rotate(-_),e.translate(-t,-c)}}_mask_data(){const{x_target:e,y_target:t}=this.renderer.plot_view.frame,s=e.widen(this.max_size).map((e=>this.renderer.xscale.invert(e))),n=t.widen(this.max_size).map((e=>this.renderer.yscale.invert(e)));return this.index.indices({x0:s.start,x1:s.end,y0:n.start,y1:n.end})}_hit_point(e){const{sx:t,sy:s}=e,{max_size:n}=this,{hit_dilation:i}=this.model,r=t-n*i,a=t+n*i,[c,o]=this.renderer.xscale.r_invert(r,a),_=s-n*i,h=s+n*i,[l,d]=this.renderer.yscale.r_invert(_,h),y=this.index.indices({x0:c,x1:o,y0:l,y1:d}),g=[];for(const e of y){const n=this.size.get(e)/2*i;Math.abs(this.sx[e]-t)<=n&&Math.abs(this.sy[e]-s)<=n&&g.push(e)}return new x.Selection({indices:g})}_hit_span(e){const{sx:t,sy:s}=e,n=this.bounds(),i=this.max_size/2;let r,a,c,o;if(\"h\"==e.direction){c=n.y0,o=n.y1;const e=t-i,s=t+i;[r,a]=this.renderer.xscale.r_invert(e,s)}else{r=n.x0,a=n.x1;const e=s-i,t=s+i;[c,o]=this.renderer.yscale.r_invert(e,t)}const _=[...this.index.indices({x0:r,x1:a,y0:c,y1:o})];return new x.Selection({indices:_})}_hit_rect(e){const{sx0:t,sx1:s,sy0:n,sy1:i}=e,[r,a]=this.renderer.xscale.r_invert(t,s),[c,o]=this.renderer.yscale.r_invert(n,i),_=[...this.index.indices({x0:r,x1:a,y0:c,y1:o})];return new x.Selection({indices:_})}_hit_poly(e){const{sx:t,sy:s}=e,n=(0,l.range)(0,this.sx.length),i=[];for(let e=0,r=n.length;e({size:[h.ScreenSizeSpec,{value:4}],angle:[h.AngleSpec,0],hit_dilation:[e,1]})))},\n", + " function _(l,o,n,t,i){t();const e=Math.sqrt(3),a=Math.sqrt(5),c=(a+1)/4,p=Math.sqrt((5-a)/8),r=(a-1)/4,h=Math.sqrt((5+a)/8);function u(l,o){l.rotate(Math.PI/4),s(l,o),l.rotate(-Math.PI/4)}function f(l,o){const n=o*e,t=n/3;l.moveTo(-n/2,-t),l.lineTo(0,0),l.lineTo(n/2,-t),l.lineTo(0,0),l.lineTo(0,o)}function s(l,o){l.moveTo(0,o),l.lineTo(0,-o),l.moveTo(-o,0),l.lineTo(o,0)}function T(l,o){l.moveTo(0,o),l.lineTo(o/1.5,0),l.lineTo(0,-o),l.lineTo(-o/1.5,0),l.closePath()}function y(l,o){const n=o*e,t=n/3;l.moveTo(-o,t),l.lineTo(o,t),l.lineTo(0,t-n),l.closePath()}function v(l,o,n,t){l.arc(0,0,n,0,2*Math.PI,!1),t.fill.apply(l,o),t.hatch.apply(l,o),t.line.apply(l,o)}function d(l,o,n,t){T(l,n),t.fill.apply(l,o),t.hatch.apply(l,o),t.line.apply(l,o)}function _(l,o,n,t){!function(l,o){l.beginPath(),l.arc(0,0,o/4,0,2*Math.PI,!1),l.closePath()}(l,n),t.line.set_vectorize(l,o),l.fillStyle=l.strokeStyle,l.fill()}function P(l,o,n,t){!function(l,o){const n=o/2,t=e*n;l.moveTo(o,0),l.lineTo(n,-t),l.lineTo(-n,-t),l.lineTo(-o,0),l.lineTo(-n,t),l.lineTo(n,t),l.closePath()}(l,n),t.fill.apply(l,o),t.hatch.apply(l,o),t.line.apply(l,o)}function m(l,o,n,t){const i=2*n;l.rect(-n,-n,i,i),t.fill.apply(l,o),t.hatch.apply(l,o),t.line.apply(l,o)}function q(l,o,n,t){!function(l,o){const n=Math.sqrt(5-2*a)*o;l.moveTo(0,-o),l.lineTo(n*r,n*h-o),l.lineTo(n*(1+r),n*h-o),l.lineTo(n*(1+r-c),n*(h+p)-o),l.lineTo(n*(1+2*r-c),n*(2*h+p)-o),l.lineTo(0,2*n*h-o),l.lineTo(-n*(1+2*r-c),n*(2*h+p)-o),l.lineTo(-n*(1+r-c),n*(h+p)-o),l.lineTo(-n*(1+r),n*h-o),l.lineTo(-n*r,n*h-o),l.closePath()}(l,n),t.fill.apply(l,o),t.hatch.apply(l,o),t.line.apply(l,o)}function M(l,o,n,t){y(l,n),t.fill.apply(l,o),t.hatch.apply(l,o),t.line.apply(l,o)}n.marker_funcs={asterisk:function(l,o,n,t){s(l,n),u(l,n),t.line.apply(l,o)},circle:v,circle_cross:function(l,o,n,t){l.arc(0,0,n,0,2*Math.PI,!1),t.fill.apply(l,o),t.hatch.apply(l,o),t.line.doit&&(t.line.set_vectorize(l,o),s(l,n),l.stroke())},circle_dot:function(l,o,n,t){v(l,o,n,t),_(l,o,n,t)},circle_y:function(l,o,n,t){l.arc(0,0,n,0,2*Math.PI,!1),t.fill.apply(l,o),t.hatch.apply(l,o),t.line.doit&&(t.line.set_vectorize(l,o),f(l,n),l.stroke())},circle_x:function(l,o,n,t){l.arc(0,0,n,0,2*Math.PI,!1),t.fill.apply(l,o),t.hatch.apply(l,o),t.line.doit&&(t.line.set_vectorize(l,o),u(l,n),l.stroke())},cross:function(l,o,n,t){s(l,n),t.line.apply(l,o)},diamond:d,diamond_dot:function(l,o,n,t){d(l,o,n,t),_(l,o,n,t)},diamond_cross:function(l,o,n,t){T(l,n),t.fill.apply(l,o),t.hatch.apply(l,o),t.line.doit&&(t.line.set_vectorize(l,o),l.moveTo(0,n),l.lineTo(0,-n),l.moveTo(-n/1.5,0),l.lineTo(n/1.5,0),l.stroke())},dot:_,hex:P,hex_dot:function(l,o,n,t){P(l,o,n,t),_(l,o,n,t)},inverted_triangle:function(l,o,n,t){l.rotate(Math.PI),y(l,n),l.rotate(-Math.PI),t.fill.apply(l,o),t.hatch.apply(l,o),t.line.apply(l,o)},plus:function(l,o,n,t){const i=3*n/8,e=[i,i,n,n,i,i,-i,-i,-n,-n,-i,-i],a=[n,i,i,-i,-i,-n,-n,-i,-i,i,i,n];l.beginPath();for(let o=0;o<12;o++)l.lineTo(e[o],a[o]);l.closePath(),t.fill.apply(l,o),t.hatch.apply(l,o),t.line.apply(l,o)},square:m,square_cross:function(l,o,n,t){const i=2*n;l.rect(-n,-n,i,i),t.fill.apply(l,o),t.hatch.apply(l,o),t.line.doit&&(t.line.set_vectorize(l,o),s(l,n),l.stroke())},square_dot:function(l,o,n,t){m(l,o,n,t),_(l,o,n,t)},square_pin:function(l,o,n,t){const i=3*n/8;l.moveTo(-n,-n),l.quadraticCurveTo(0,-i,n,-n),l.quadraticCurveTo(i,0,n,n),l.quadraticCurveTo(0,i,-n,n),l.quadraticCurveTo(-i,0,-n,-n),l.closePath(),t.fill.apply(l,o),t.hatch.apply(l,o),t.line.apply(l,o)},square_x:function(l,o,n,t){const i=2*n;l.rect(-n,-n,i,i),t.fill.apply(l,o),t.hatch.apply(l,o),t.line.doit&&(t.line.set_vectorize(l,o),l.moveTo(-n,n),l.lineTo(n,-n),l.moveTo(-n,-n),l.lineTo(n,n),l.stroke())},star:q,star_dot:function(l,o,n,t){q(l,o,n,t),_(l,o,n,t)},triangle:M,triangle_dot:function(l,o,n,t){M(l,o,n,t),_(l,o,n,t)},triangle_pin:function(l,o,n,t){const i=n*e,a=i/3,c=3*a/8;l.moveTo(-n,a),l.quadraticCurveTo(0,c,n,a),l.quadraticCurveTo(e*c/2,c/2,0,a-i),l.quadraticCurveTo(-e*c/2,c/2,-n,a),l.closePath(),t.fill.apply(l,o),t.hatch.apply(l,o),t.line.apply(l,o)},dash:function(l,o,n,t){!function(l,o){l.moveTo(-o,0),l.lineTo(o,0)}(l,n),t.line.apply(l,o)},x:function(l,o,n,t){u(l,n),t.line.apply(l,o)},y:function(l,o,n,t){f(l,n),t.line.apply(l,o)}}},\n", + " function _(e,t,s,i,n){i();const r=e(1);var o;const _=(0,r.__importStar)(e(185)),h=(0,r.__importStar)(e(18)),c=e(48),a=e(78),d=e(179),x=e(184),l=e(72);class y extends d.GlyphView{_project_data(){a.inplace.project_xy(this._x0,this._y0),a.inplace.project_xy(this._x1,this._y1)}_index_data(e){const{min:t,max:s}=Math,{_x0:i,_x1:n,_y0:r,_y1:o,data_size:_}=this;for(let h=0;h<_;h++){const _=i[h],c=n[h],a=r[h],d=o[h];e.add_rect(t(_,c),t(a,d),s(_,c),s(a,d))}}_render(e,t,s){if(this.visuals.line.doit){const{sx0:i,sy0:n,sx1:r,sy1:o}=null!=s?s:this;for(const s of t){const t=i[s],_=n[s],h=r[s],c=o[s];isFinite(t+_+h+c)&&(e.beginPath(),e.moveTo(t,_),e.lineTo(h,c),this.visuals.line.set_vectorize(e,s),e.stroke())}}}_hit_point(e){const{sx:t,sy:s}=e,i={x:t,y:s},[n,r]=this.renderer.xscale.r_invert(t-2,t+2),[o,h]=this.renderer.yscale.r_invert(s-2,s+2),c=this.index.indices({x0:n,y0:o,x1:r,y1:h}),a=[];for(const e of c){const t=Math.max(2,this.line_width.get(e)/2)**2,s={x:this.sx0[e],y:this.sy0[e]},n={x:this.sx1[e],y:this.sy1[e]};_.dist_to_segment_squared(i,s,n)({x0:[h.XCoordinateSpec,{field:\"x0\"}],y0:[h.YCoordinateSpec,{field:\"y0\"}],x1:[h.XCoordinateSpec,{field:\"x1\"}],y1:[h.YCoordinateSpec,{field:\"y1\"}]}))),o.mixins(c.LineVector)},\n", + " function _(t,e,s,i,n){i();const o=t(1);var _;const l=t(178),a=(0,o.__importStar)(t(48)),c=t(296);class r extends l.XYGlyphView{_set_data(){const{tension:t,closed:e}=this.model;[this._xt,this._yt]=(0,c.catmullrom_spline)(this._x,this._y,20,t,e)}_map_data(){const{x_scale:t,y_scale:e}=this.renderer.coordinates;this.sxt=t.v_compute(this._xt),this.syt=e.v_compute(this._yt)}_render(t,e,s){const{sxt:i,syt:n}=null!=s?s:this;let o=!0;t.beginPath();const _=i.length;for(let e=0;e<_;e++){const s=i[e],_=n[e];isFinite(s+_)?o?(t.moveTo(s,_),o=!1):t.lineTo(s,_):o=!0}this.visuals.line.set_value(t),t.stroke()}}s.SplineView=r,r.__name__=\"SplineView\";class h extends l.XYGlyph{constructor(t){super(t)}}s.Spline=h,_=h,h.__name__=\"Spline\",_.prototype.default_view=r,_.mixins(a.LineScalar),_.define((({Boolean:t,Number:e})=>({tension:[e,.5],closed:[t,!1]})))},\n", + " function _(n,t,e,o,s){o();const c=n(24),l=n(11);e.catmullrom_spline=function(n,t,e=10,o=.5,s=!1){(0,l.assert)(n.length==t.length);const r=n.length,f=s?r+1:r,w=(0,c.infer_type)(n,t),i=new w(f+2),u=new w(f+2);i.set(n,1),u.set(t,1),s?(i[0]=n[r-1],u[0]=t[r-1],i[f]=n[0],u[f]=t[0],i[f+1]=n[1],u[f+1]=t[1]):(i[0]=n[0],u[0]=t[0],i[f+1]=n[r-1],u[f+1]=t[r-1]);const g=new w(4*(e+1));for(let n=0,t=0;n<=e;n++){const o=n/e,s=o**2,c=o*s;g[t++]=2*c-3*s+1,g[t++]=-2*c+3*s,g[t++]=c-2*s+o,g[t++]=c-s}const h=new w((f-1)*(e+1)),_=new w((f-1)*(e+1));for(let n=1,t=0;n1&&(e.stroke(),o=!1)}o?(e.lineTo(t,r),e.lineTo(a,c)):(e.beginPath(),e.moveTo(s[n],i[n]),o=!0),l=n}e.lineTo(s[a-1],i[a-1]),e.stroke()}}draw_legend_for_index(e,t,n){(0,r.generic_line_scalar_legend)(this.visuals,e,t)}}n.StepView=f,f.__name__=\"StepView\";class u extends a.XYGlyph{constructor(e){super(e)}}n.Step=u,l=u,u.__name__=\"Step\",l.prototype.default_view=f,l.mixins(c.LineScalar),l.define((()=>({mode:[_.StepMode,\"before\"]})))},\n", + " function _(t,e,s,i,n){i();const o=t(1);var _;const h=t(178),l=t(48),r=(0,o.__importStar)(t(185)),a=(0,o.__importStar)(t(18)),c=t(121),x=t(11),u=t(72);class f extends h.XYGlyphView{_rotate_point(t,e,s,i,n){return[(t-s)*Math.cos(n)-(e-i)*Math.sin(n)+s,(t-s)*Math.sin(n)+(e-i)*Math.cos(n)+i]}_text_bounds(t,e,s,i){return[[t,t+s,t+s,t,t],[e,e,e-i,e-i,e]]}_render(t,e,s){const{sx:i,sy:n,x_offset:o,y_offset:_,angle:h,text:l}=null!=s?s:this;this._sys=[],this._sxs=[];for(const s of e){const e=this._sxs[s]=[],r=this._sys[s]=[],a=i[s],x=n[s],u=o.get(s),f=_.get(s),p=h.get(s),g=l.get(s);if(isFinite(a+x+u+f+p)&&null!=g&&this.visuals.text.doit){const i=`${g}`;t.save(),t.translate(a+u,x+f),t.rotate(p),this.visuals.text.set_vectorize(t,s);const n=this.visuals.text.font_value(s),{height:o}=(0,c.font_metrics)(n),_=this.text_line_height.get(s)*o;if(-1==i.indexOf(\"\\n\")){t.fillText(i,0,0);const s=a+u,n=x+f,o=t.measureText(i).width,[h,l]=this._text_bounds(s,n,o,_);e.push(h),r.push(l)}else{const n=i.split(\"\\n\"),o=_*n.length,h=this.text_baseline.get(s);let l;switch(h){case\"top\":l=0;break;case\"middle\":l=-o/2+_/2;break;case\"bottom\":l=-o+_;break;default:l=0,console.warn(`'${h}' baseline not supported with multi line text`)}for(const s of n){t.fillText(s,0,l);const i=a+u,n=l+x+f,o=t.measureText(s).width,[h,c]=this._text_bounds(i,n,o,_);e.push(h),r.push(c),l+=_}}t.restore()}}}_hit_point(t){const{sx:e,sy:s}=t,i=[];for(let t=0;t({text:[a.NullStringSpec,{field:\"text\"}],angle:[a.AngleSpec,0],x_offset:[a.NumberSpec,0],y_offset:[a.NumberSpec,0]})))},\n", + " function _(t,e,s,i,r){i();const h=t(1);var o;const a=t(277),n=t(24),_=(0,h.__importStar)(t(18));class l extends a.BoxView{async lazy_initialize(){await super.lazy_initialize();const{webgl:e}=this.renderer.plot_view.canvas_view;if(null!=e&&e.regl_wrapper.has_webgl){const{LRTBGL:s}=await Promise.resolve().then((()=>(0,h.__importStar)(t(427))));this.glglyph=new s(e.regl_wrapper,this)}}scenterxy(t){return[this.sx[t],(this.stop[t]+this.sbottom[t])/2]}_lrtb(t){const e=this.width.get(t)/2,s=this._x[t],i=this._top[t],r=this._bottom[t];return[s-e,s+e,Math.max(i,r),Math.min(i,r)]}_map_data(){this.sx=this.renderer.xscale.v_compute(this._x),this.sw=this.sdist(this.renderer.xscale,this._x,this.width,\"center\"),this.stop=this.renderer.yscale.v_compute(this._top),this.sbottom=this.renderer.yscale.v_compute(this._bottom);const t=this.sx.length;this.sleft=new n.ScreenArray(t),this.sright=new n.ScreenArray(t);for(let e=0;e({x:[_.XCoordinateSpec,{field:\"x\"}],bottom:[_.YCoordinateSpec,{value:0}],width:[_.NumberSpec,{value:1}],top:[_.YCoordinateSpec,{field:\"top\"}]})))},\n", + " function _(e,s,t,i,n){i();const r=e(1);var a;const c=e(178),d=e(184),l=e(48),h=e(24),o=e(20),_=(0,r.__importStar)(e(18)),u=e(10),g=e(72),x=e(12);class p extends c.XYGlyphView{_map_data(){\"data\"==this.model.properties.radius.units?this.sradius=this.sdist(this.renderer.xscale,this._x,this.radius):this.sradius=(0,h.to_screen)(this.radius),this.max_sradius=(0,x.max)(this.sradius)}_render(e,s,t){const{sx:i,sy:n,sradius:r,start_angle:a,end_angle:c}=null!=t?t:this,d=\"anticlock\"==this.model.direction;for(const t of s){const s=i[t],l=n[t],h=r[t],o=a.get(t),_=c.get(t);isFinite(s+l+h+o+_)&&(e.beginPath(),e.arc(s,l,h,o,_,d),e.lineTo(s,l),e.closePath(),this.visuals.fill.apply(e,t),this.visuals.hatch.apply(e,t),this.visuals.line.apply(e,t))}}_hit_point(e){let s,t,i,n,r;const{sx:a,sy:c}=e,d=this.renderer.xscale.invert(a),l=this.renderer.yscale.invert(c);t=a-this.max_sradius,i=a+this.max_sradius;const[h,o]=this.renderer.xscale.r_invert(t,i);n=c-this.max_sradius,r=c+this.max_sradius;const[_,x]=this.renderer.yscale.r_invert(n,r),p=[];for(const e of this.index.indices({x0:h,x1:o,y0:_,y1:x})){const a=this.sradius[e]**2;[t,i]=this.renderer.xscale.r_compute(d,this._x[e]),[n,r]=this.renderer.yscale.r_compute(l,this._y[e]),s=(t-i)**2+(n-r)**2,s<=a&&p.push(e)}const y=\"anticlock\"==this.model.direction,m=[];for(const e of p){const s=Math.atan2(c-this.sy[e],a-this.sx[e]);(0,u.angle_between)(-s,-this.start_angle.get(e),-this.end_angle.get(e),y)&&m.push(e)}return new g.Selection({indices:m})}draw_legend_for_index(e,s,t){(0,d.generic_area_vector_legend)(this.visuals,e,s,t)}scenterxy(e){const s=this.sradius[e]/2,t=(this.start_angle.get(e)+this.end_angle.get(e))/2;return[this.sx[e]+s*Math.cos(t),this.sy[e]+s*Math.sin(t)]}}t.WedgeView=p,p.__name__=\"WedgeView\";class y extends c.XYGlyph{constructor(e){super(e)}}t.Wedge=y,a=y,y.__name__=\"Wedge\",a.prototype.default_view=p,a.mixins([l.LineVector,l.FillVector,l.HatchVector]),a.define((({})=>({direction:[o.Direction,\"anticlock\"],radius:[_.DistanceSpec,{field:\"radius\"}],start_angle:[_.AngleSpec,{field:\"start_angle\"}],end_angle:[_.AngleSpec,{field:\"end_angle\"}]})))},\n", + " function _(t,_,r,o,a){o();const e=t(1);(0,e.__exportStar)(t(302),r),(0,e.__exportStar)(t(303),r),(0,e.__exportStar)(t(304),r)},\n", + " function _(e,t,d,n,s){n();const o=e(53),r=e(12),_=e(9),i=e(72);class c extends o.Model{constructor(e){super(e)}_hit_test(e,t,d){if(!t.model.visible)return null;const n=d.glyph.hit_test(e);return null==n?null:d.model.view.convert_selection_from_subset(n)}}d.GraphHitTestPolicy=c,c.__name__=\"GraphHitTestPolicy\";class a extends c{constructor(e){super(e)}hit_test(e,t){return this._hit_test(e,t,t.edge_view)}do_selection(e,t,d,n){if(null==e)return!1;const s=t.edge_renderer.data_source.selected;return s.update(e,d,n),t.edge_renderer.data_source._select.emit(),!s.is_empty()}do_inspection(e,t,d,n,s){if(null==e)return!1;const{edge_renderer:o}=d.model,r=o.get_selection_manager().get_or_create_inspector(d.edge_view.model);return r.update(e,n,s),d.edge_view.model.data_source.setv({inspected:r},{silent:!0}),d.edge_view.model.data_source.inspect.emit([d.edge_view.model,{geometry:t}]),!r.is_empty()}}d.EdgesOnly=a,a.__name__=\"EdgesOnly\";class l extends c{constructor(e){super(e)}hit_test(e,t){return this._hit_test(e,t,t.node_view)}do_selection(e,t,d,n){if(null==e)return!1;const s=t.node_renderer.data_source.selected;return s.update(e,d,n),t.node_renderer.data_source._select.emit(),!s.is_empty()}do_inspection(e,t,d,n,s){if(null==e)return!1;const{node_renderer:o}=d.model,r=o.get_selection_manager().get_or_create_inspector(d.node_view.model);return r.update(e,n,s),d.node_view.model.data_source.setv({inspected:r},{silent:!0}),d.node_view.model.data_source.inspect.emit([d.node_view.model,{geometry:t}]),!r.is_empty()}}d.NodesOnly=l,l.__name__=\"NodesOnly\";class u extends c{constructor(e){super(e)}hit_test(e,t){return this._hit_test(e,t,t.node_view)}get_linked_edges(e,t,d){let n=[];\"selection\"==d?n=e.selected.indices.map((t=>e.data.index[t])):\"inspection\"==d&&(n=e.inspected.indices.map((t=>e.data.index[t])));const s=[];for(let e=0;e(0,r.indexOf)(e.data.index,t)));return new i.Selection({indices:o})}do_selection(e,t,d,n){if(null==e)return!1;const s=t.edge_renderer.data_source.selected;s.update(e,d,n);const o=t.node_renderer.data_source.selected,r=this.get_linked_nodes(t.node_renderer.data_source,t.edge_renderer.data_source,\"selection\");return o.update(r,d,n),t.edge_renderer.data_source._select.emit(),!s.is_empty()}do_inspection(e,t,d,n,s){if(null==e)return!1;const o=d.edge_view.model.data_source.selection_manager.get_or_create_inspector(d.edge_view.model);o.update(e,n,s),d.edge_view.model.data_source.setv({inspected:o},{silent:!0});const r=d.node_view.model.data_source.selection_manager.get_or_create_inspector(d.node_view.model),_=this.get_linked_nodes(d.node_view.model.data_source,d.edge_view.model.data_source,\"inspection\");return r.update(_,n,s),d.node_view.model.data_source.setv({inspected:r},{silent:!0}),d.edge_view.model.data_source.inspect.emit([d.edge_view.model,{geometry:t}]),!o.is_empty()}}d.EdgesAndLinkedNodes=m,m.__name__=\"EdgesAndLinkedNodes\"},\n", + " function _(e,o,t,r,n){var s;r();const a=e(53),d=e(260);class _ extends a.Model{constructor(e){super(e)}get node_coordinates(){return new u({layout:this})}get edge_coordinates(){return new i({layout:this})}}t.LayoutProvider=_,_.__name__=\"LayoutProvider\";class c extends d.CoordinateTransform{constructor(e){super(e)}}t.GraphCoordinates=c,s=c,c.__name__=\"GraphCoordinates\",s.define((({Ref:e})=>({layout:[e(_)]})));class u extends c{constructor(e){super(e)}_v_compute(e){const[o,t]=this.layout.get_node_coordinates(e);return{x:o,y:t}}}t.NodeCoordinates=u,u.__name__=\"NodeCoordinates\";class i extends c{constructor(e){super(e)}_v_compute(e){const[o,t]=this.layout.get_edge_coordinates(e);return{x:o,y:t}}}t.EdgeCoordinates=i,i.__name__=\"EdgeCoordinates\"},\n", + " function _(t,a,l,e,n){var o;e();const r=t(303);class u extends r.LayoutProvider{constructor(t){super(t)}get_node_coordinates(t){var a;const l=null!==(a=t.data.index)&&void 0!==a?a:[],e=l.length,n=new Float64Array(e),o=new Float64Array(e);for(let t=0;t({graph_layout:[l(a(t,t)),{}]})))},\n", + " function _(i,d,n,r,G){r(),G(\"Grid\",i(306).Grid)},\n", + " function _(i,e,n,s,t){s();const r=i(1);var o;const d=i(127),_=i(129),a=i(130),l=(0,r.__importStar)(i(48)),h=i(8);class c extends _.GuideRendererView{_render(){const i=this.layer.ctx;i.save(),this._draw_regions(i),this._draw_minor_grids(i),this._draw_grids(i),i.restore()}connect_signals(){super.connect_signals(),this.connect(this.model.change,(()=>this.request_render()))}_draw_regions(i){if(!this.visuals.band_fill.doit&&!this.visuals.band_hatch.doit)return;const[e,n]=this.grid_coords(\"major\",!1);for(let s=0;sn[1]&&(t=n[1]);else{[s,t]=n;for(const i of this.plot_view.axis_views)i.dimension==this.model.dimension&&i.model.x_range_name==this.model.x_range_name&&i.model.y_range_name==this.model.y_range_name&&([s,t]=i.computed_bounds)}return[s,t]}grid_coords(i,e=!0){const n=this.model.dimension,s=(n+1)%2,[t,r]=this.ranges();let[o,d]=this.computed_bounds();[o,d]=[Math.min(o,d),Math.max(o,d)];const _=[[],[]],a=this.model.get_ticker();if(null==a)return _;const l=a.get_ticks(o,d,t,r.min)[i],h=t.min,c=t.max,u=r.min,m=r.max;e||(l[0]!=h&&l.splice(0,0,h),l[l.length-1]!=c&&l.push(c));for(let i=0;i({bounds:[r(t(i,i),e),\"auto\"],dimension:[n(0,1),0],axis:[o(s(d.Axis)),null],ticker:[o(s(a.Ticker)),null]}))),o.override({level:\"underlay\",band_fill_color:null,band_fill_alpha:0,grid_line_color:\"#e5e5e5\",minor_grid_line_color:null})},\n", + " function _(o,a,x,B,e){B(),e(\"Box\",o(308).Box),e(\"Column\",o(310).Column),e(\"GridBox\",o(311).GridBox),e(\"HTMLBox\",o(312).HTMLBox),e(\"LayoutDOM\",o(309).LayoutDOM),e(\"Panel\",o(313).Panel),e(\"Row\",o(314).Row),e(\"Spacer\",o(315).Spacer),e(\"Tabs\",o(316).Tabs),e(\"WidgetBox\",o(319).WidgetBox)},\n", + " function _(e,n,s,t,c){var i;t();const o=e(309);class r extends o.LayoutDOMView{connect_signals(){super.connect_signals(),this.connect(this.model.properties.children.change,(()=>this.rebuild()))}get child_models(){return this.model.children}}s.BoxView=r,r.__name__=\"BoxView\";class a extends o.LayoutDOM{constructor(e){super(e)}}s.Box=a,i=a,a.__name__=\"Box\",i.define((({Number:e,Array:n,Ref:s})=>({children:[n(s(o.LayoutDOM)),[]],spacing:[e,0]})))},\n", + " function _(t,i,e,s,o){var l;s();const n=t(53),h=t(20),a=t(43),r=t(19),_=t(8),c=t(22),u=t(121),d=t(113),p=t(226),m=t(207),g=t(44),w=t(235);class f extends p.DOMView{constructor(){super(...arguments),this._offset_parent=null,this._viewport={}}get is_layout_root(){return this.is_root||!(this.parent instanceof f)}get base_font_size(){const t=getComputedStyle(this.el).fontSize,i=(0,u.parse_css_font_size)(t);if(null!=i){const{value:t,unit:e}=i;if(\"px\"==e)return t}return null}initialize(){super.initialize(),this.el.style.position=this.is_layout_root?\"relative\":\"absolute\",this._child_views=new Map}async lazy_initialize(){await super.lazy_initialize(),await this.build_child_views()}remove(){for(const t of this.child_views)t.remove();this._child_views.clear(),super.remove()}connect_signals(){super.connect_signals(),this.is_layout_root&&(this._on_resize=()=>this.resize_layout(),window.addEventListener(\"resize\",this._on_resize),this._parent_observer=setInterval((()=>{const t=this.el.offsetParent;this._offset_parent!=t&&(this._offset_parent=t,null!=t&&(this.compute_viewport(),this.invalidate_layout()))}),250));const t=this.model.properties;this.on_change([t.width,t.height,t.min_width,t.min_height,t.max_width,t.max_height,t.margin,t.width_policy,t.height_policy,t.sizing_mode,t.aspect_ratio,t.visible],(()=>this.invalidate_layout())),this.on_change([t.background,t.css_classes],(()=>this.invalidate_render()))}disconnect_signals(){null!=this._parent_observer&&clearTimeout(this._parent_observer),null!=this._on_resize&&window.removeEventListener(\"resize\",this._on_resize),super.disconnect_signals()}css_classes(){return super.css_classes().concat(this.model.css_classes)}get child_views(){return this.child_models.map((t=>this._child_views.get(t)))}async build_child_views(){await(0,d.build_views)(this._child_views,this.child_models,{parent:this})}render(){super.render(),(0,a.empty)(this.el);const{background:t}=this.model;this.el.style.backgroundColor=null!=t?(0,c.color2css)(t):\"\",(0,a.classes)(this.el).clear().add(...this.css_classes());for(const t of this.child_views)this.el.appendChild(t.el),t.render()}update_layout(){for(const t of this.child_views)t.update_layout();this._update_layout()}update_position(){this.el.style.display=this.model.visible?\"block\":\"none\";const t=this.is_layout_root?this.layout.sizing.margin:void 0;(0,a.position)(this.el,this.layout.bbox,t);for(const t of this.child_views)t.update_position()}after_layout(){for(const t of this.child_views)t.after_layout();this._has_finished=!0}compute_viewport(){this._viewport=this._viewport_size()}renderTo(t){t.appendChild(this.el),this._offset_parent=this.el.offsetParent,this.compute_viewport(),this.build(),this.notify_finished()}build(){if(!this.is_layout_root)throw new Error(`${this.toString()} is not a root layout`);return this.render(),this.update_layout(),this.compute_layout(),this}async rebuild(){await this.build_child_views(),this.invalidate_render()}compute_layout(){const t=Date.now();this.layout.compute(this._viewport),this.update_position(),this.after_layout(),r.logger.debug(`layout computed in ${Date.now()-t} ms`)}resize_layout(){this.root.compute_viewport(),this.root.compute_layout()}invalidate_layout(){this.root.update_layout(),this.root.compute_layout()}invalidate_render(){this.render(),this.invalidate_layout()}has_finished(){if(!super.has_finished())return!1;for(const t of this.child_views)if(!t.has_finished())return!1;return!0}_width_policy(){return null!=this.model.width?\"fixed\":\"fit\"}_height_policy(){return null!=this.model.height?\"fixed\":\"fit\"}box_sizing(){let{width_policy:t,height_policy:i,aspect_ratio:e}=this.model;\"auto\"==t&&(t=this._width_policy()),\"auto\"==i&&(i=this._height_policy());const{sizing_mode:s}=this.model;if(null!=s)if(\"fixed\"==s)t=i=\"fixed\";else if(\"stretch_both\"==s)t=i=\"max\";else if(\"stretch_width\"==s)t=\"max\";else if(\"stretch_height\"==s)i=\"max\";else switch(null==e&&(e=\"auto\"),s){case\"scale_width\":t=\"max\",i=\"min\";break;case\"scale_height\":t=\"min\",i=\"max\";break;case\"scale_both\":t=\"max\",i=\"max\"}const o={width_policy:t,height_policy:i},{min_width:l,min_height:n}=this.model;null!=l&&(o.min_width=l),null!=n&&(o.min_height=n);const{width:h,height:a}=this.model;null!=h&&(o.width=h),null!=a&&(o.height=a);const{max_width:r,max_height:c}=this.model;null!=r&&(o.max_width=r),null!=c&&(o.max_height=c),\"auto\"==e&&null!=h&&null!=a?o.aspect=h/a:(0,_.isNumber)(e)&&(o.aspect=e);const{margin:u}=this.model;if(null!=u)if((0,_.isNumber)(u))o.margin={top:u,right:u,bottom:u,left:u};else if(2==u.length){const[t,i]=u;o.margin={top:t,right:i,bottom:t,left:i}}else{const[t,i,e,s]=u;o.margin={top:t,right:i,bottom:e,left:s}}o.visible=this.model.visible;const{align:d}=this.model;return(0,_.isArray)(d)?[o.halign,o.valign]=d:o.halign=o.valign=d,o}_viewport_size(){return(0,a.undisplayed)(this.el,(()=>{let t=this.el;for(;t=t.parentElement;){if(t.classList.contains(g.root))continue;if(t==document.body){const{margin:{left:t,right:i,top:e,bottom:s}}=(0,a.extents)(document.body);return{width:Math.ceil(document.documentElement.clientWidth-t-i),height:Math.ceil(document.documentElement.clientHeight-e-s)}}const{padding:{left:i,right:e,top:s,bottom:o}}=(0,a.extents)(t),{width:l,height:n}=t.getBoundingClientRect(),h=Math.ceil(l-i-e),r=Math.ceil(n-s-o);if(h>0||r>0)return{width:h>0?h:void 0,height:r>0?r:void 0}}return{}}))}export(t,i=!0){const e=\"png\"==t?\"canvas\":\"svg\",s=new w.CanvasLayer(e,i),{width:o,height:l}=this.layout.bbox;s.resize(o,l);for(const e of this.child_views){const o=e.export(t,i),{x:l,y:n}=e.layout.bbox;s.ctx.drawImage(o.canvas,l,n)}return s}serializable_state(){return Object.assign(Object.assign({},super.serializable_state()),{bbox:this.layout.bbox.box,children:this.child_views.map((t=>t.serializable_state()))})}}e.LayoutDOMView=f,f.__name__=\"LayoutDOMView\";class y extends n.Model{constructor(t){super(t)}}e.LayoutDOM=y,l=y,y.__name__=\"LayoutDOM\",l.define((t=>{const{Boolean:i,Number:e,String:s,Auto:o,Color:l,Array:n,Tuple:a,Or:r,Null:_,Nullable:c}=t,u=a(e,e),d=a(e,e,e,e);return{width:[c(e),null],height:[c(e),null],min_width:[c(e),null],min_height:[c(e),null],max_width:[c(e),null],max_height:[c(e),null],margin:[c(r(e,u,d)),[0,0,0,0]],width_policy:[r(m.SizingPolicy,o),\"auto\"],height_policy:[r(m.SizingPolicy,o),\"auto\"],aspect_ratio:[r(e,o,_),null],sizing_mode:[c(h.SizingMode),null],visible:[i,!0],disabled:[i,!1],align:[r(h.Align,a(h.Align,h.Align)),\"start\"],background:[c(l),null],css_classes:[n(s),[]]}}))},\n", + " function _(o,s,t,i,e){var n;i();const a=o(308),l=o(209);class u extends a.BoxView{_update_layout(){const o=this.child_views.map((o=>o.layout));this.layout=new l.Column(o),this.layout.rows=this.model.rows,this.layout.spacing=[this.model.spacing,0],this.layout.set_sizing(this.box_sizing())}}t.ColumnView=u,u.__name__=\"ColumnView\";class _ extends a.Box{constructor(o){super(o)}}t.Column=_,n=_,_.__name__=\"Column\",n.prototype.default_view=u,n.define((({Any:o})=>({rows:[o,\"auto\"]})))},\n", + " function _(s,o,t,i,e){var n;i();const l=s(309),a=s(209);class r extends l.LayoutDOMView{connect_signals(){super.connect_signals();const{children:s,rows:o,cols:t,spacing:i}=this.model.properties;this.on_change([s,o,t,i],(()=>this.rebuild()))}get child_models(){return this.model.children.map((([s])=>s))}_update_layout(){this.layout=new a.Grid,this.layout.rows=this.model.rows,this.layout.cols=this.model.cols,this.layout.spacing=this.model.spacing;for(const[s,o,t,i,e]of this.model.children){const n=this._child_views.get(s);this.layout.items.push({layout:n.layout,row:o,col:t,row_span:i,col_span:e})}this.layout.set_sizing(this.box_sizing())}}t.GridBoxView=r,r.__name__=\"GridBoxView\";class c extends l.LayoutDOM{constructor(s){super(s)}}t.GridBox=c,n=c,c.__name__=\"GridBox\",n.prototype.default_view=r,n.define((({Any:s,Int:o,Number:t,Tuple:i,Array:e,Ref:n,Or:a,Opt:r})=>({children:[e(i(n(l.LayoutDOM),o,o,r(o),r(o))),[]],rows:[s,\"auto\"],cols:[s,\"auto\"],spacing:[a(t,i(t,t)),0]})))},\n", + " function _(t,e,o,s,n){s();const _=t(309),i=t(207);class a extends _.LayoutDOMView{get child_models(){return[]}_update_layout(){this.layout=new i.ContentBox(this.el),this.layout.set_sizing(this.box_sizing())}}o.HTMLBoxView=a,a.__name__=\"HTMLBoxView\";class u extends _.LayoutDOM{constructor(t){super(t)}}o.HTMLBox=u,u.__name__=\"HTMLBox\"},\n", + " function _(e,n,l,a,o){var t;a();const s=e(53),c=e(309);class d extends s.Model{constructor(e){super(e)}}l.Panel=d,t=d,d.__name__=\"Panel\",t.define((({Boolean:e,String:n,Ref:l})=>({title:[n,\"\"],child:[l(c.LayoutDOM)],closable:[e,!1],disabled:[e,!1]})))},\n", + " function _(o,s,t,i,e){var a;i();const n=o(308),l=o(209);class _ extends n.BoxView{_update_layout(){const o=this.child_views.map((o=>o.layout));this.layout=new l.Row(o),this.layout.cols=this.model.cols,this.layout.spacing=[0,this.model.spacing],this.layout.set_sizing(this.box_sizing())}}t.RowView=_,_.__name__=\"RowView\";class c extends n.Box{constructor(o){super(o)}}t.Row=c,a=c,c.__name__=\"Row\",a.prototype.default_view=_,a.define((({Any:o})=>({cols:[o,\"auto\"]})))},\n", + " function _(e,t,a,s,_){var o;s();const i=e(309),n=e(207);class u extends i.LayoutDOMView{get child_models(){return[]}_update_layout(){this.layout=new n.LayoutItem,this.layout.set_sizing(this.box_sizing())}}a.SpacerView=u,u.__name__=\"SpacerView\";class c extends i.LayoutDOM{constructor(e){super(e)}}a.Spacer=c,o=c,c.__name__=\"Spacer\",o.prototype.default_view=u},\n", + " function _(e,t,s,i,l){i();const h=e(1);var a;const o=e(207),d=e(43),r=e(9),c=e(10),n=e(20),_=e(309),p=e(313),b=(0,h.__importStar)(e(317)),m=b,u=(0,h.__importStar)(e(318)),g=u,v=(0,h.__importStar)(e(229)),w=v;class f extends _.LayoutDOMView{constructor(){super(...arguments),this._scroll_index=0}connect_signals(){super.connect_signals(),this.connect(this.model.properties.tabs.change,(()=>this.rebuild())),this.connect(this.model.properties.active.change,(()=>this.on_active_change()))}styles(){return[...super.styles(),u.default,v.default,b.default]}get child_models(){return this.model.tabs.map((e=>e.child))}_update_layout(){const e=this.model.tabs_location,t=\"above\"==e||\"below\"==e,{scroll_el:s,headers_el:i}=this;this.header=new class extends o.ContentBox{_measure(e){const l=(0,d.size)(s),h=(0,d.children)(i).slice(0,3).map((e=>(0,d.size)(e))),{width:a,height:o}=super._measure(e);if(t){const t=l.width+(0,r.sum)(h.map((e=>e.width)));return{width:e.width!=1/0?e.width:t,height:o}}{const t=l.height+(0,r.sum)(h.map((e=>e.height)));return{width:a,height:e.height!=1/0?e.height:t}}}}(this.header_el),t?this.header.set_sizing({width_policy:\"fit\",height_policy:\"fixed\"}):this.header.set_sizing({width_policy:\"fixed\",height_policy:\"fit\"});let l=1,h=1;switch(e){case\"above\":l-=1;break;case\"below\":l+=1;break;case\"left\":h-=1;break;case\"right\":h+=1}const a={layout:this.header,row:l,col:h},c=this.child_views.map((e=>({layout:e.layout,row:1,col:1})));this.layout=new o.Grid([a,...c]),this.layout.set_sizing(this.box_sizing())}update_position(){super.update_position(),this.header_el.style.position=\"absolute\",(0,d.position)(this.header_el,this.header.bbox);const e=this.model.tabs_location,t=\"above\"==e||\"below\"==e,s=(0,d.size)(this.scroll_el),i=(0,d.scroll_size)(this.headers_el);if(t){const{width:e}=this.header.bbox;i.width>e?(this.wrapper_el.style.maxWidth=e-s.width+\"px\",(0,d.display)(this.scroll_el),this.do_scroll(this.model.active)):(this.wrapper_el.style.maxWidth=\"\",(0,d.undisplay)(this.scroll_el))}else{const{height:e}=this.header.bbox;i.height>e?(this.wrapper_el.style.maxHeight=e-s.height+\"px\",(0,d.display)(this.scroll_el),this.do_scroll(this.model.active)):(this.wrapper_el.style.maxHeight=\"\",(0,d.undisplay)(this.scroll_el))}const{child_views:l}=this;for(const e of l)(0,d.hide)(e.el);const h=l[this.model.active];null!=h&&(0,d.show)(h.el)}render(){super.render();const{active:e}=this.model,t=this.model.tabs.map(((t,s)=>{const i=(0,d.div)({class:[m.tab,s==e?m.active:null]},t.title);if(i.addEventListener(\"click\",(e=>{this.model.disabled||e.target==e.currentTarget&&this.change_active(s)})),t.closable){const e=(0,d.div)({class:m.close});e.addEventListener(\"click\",(e=>{if(e.target==e.currentTarget){this.model.tabs=(0,r.remove_at)(this.model.tabs,s);const e=this.model.tabs.length;this.model.active>e-1&&(this.model.active=e-1)}})),i.appendChild(e)}return(this.model.disabled||t.disabled)&&i.classList.add(m.disabled),i}));this.headers_el=(0,d.div)({class:[m.headers]},t),this.wrapper_el=(0,d.div)({class:m.headers_wrapper},this.headers_el),this.left_el=(0,d.div)({class:[g.btn,g.btn_default],disabled:\"\"},(0,d.div)({class:[w.caret,m.left]})),this.right_el=(0,d.div)({class:[g.btn,g.btn_default]},(0,d.div)({class:[w.caret,m.right]})),this.left_el.addEventListener(\"click\",(()=>this.do_scroll(\"left\"))),this.right_el.addEventListener(\"click\",(()=>this.do_scroll(\"right\"))),this.scroll_el=(0,d.div)({class:g.btn_group},this.left_el,this.right_el);const s=this.model.tabs_location;this.header_el=(0,d.div)({class:[m.tabs_header,m[s]]},this.scroll_el,this.wrapper_el),this.el.appendChild(this.header_el)}do_scroll(e){const t=this.model.tabs.length;\"left\"==e?this._scroll_index-=1:\"right\"==e?this._scroll_index+=1:this._scroll_index=e,this._scroll_index=(0,c.clamp)(this._scroll_index,0,t-1),0==this._scroll_index?this.left_el.setAttribute(\"disabled\",\"\"):this.left_el.removeAttribute(\"disabled\"),this._scroll_index==t-1?this.right_el.setAttribute(\"disabled\",\"\"):this.right_el.removeAttribute(\"disabled\");const s=(0,d.children)(this.headers_el).slice(0,this._scroll_index).map((e=>e.getBoundingClientRect())),i=this.model.tabs_location;if(\"above\"==i||\"below\"==i){const e=-(0,r.sum)(s.map((e=>e.width)));this.headers_el.style.left=`${e}px`}else{const e=-(0,r.sum)(s.map((e=>e.height)));this.headers_el.style.top=`${e}px`}}change_active(e){e!=this.model.active&&(this.model.active=e)}on_active_change(){const e=this.model.active,t=(0,d.children)(this.headers_el);for(const e of t)e.classList.remove(m.active);t[e].classList.add(m.active);const{child_views:s}=this;for(const e of s)(0,d.hide)(e.el);(0,d.show)(s[e].el)}}s.TabsView=f,f.__name__=\"TabsView\";class x extends _.LayoutDOM{constructor(e){super(e)}}s.Tabs=x,a=x,x.__name__=\"Tabs\",a.prototype.default_view=f,a.define((({Int:e,Array:t,Ref:s})=>({tabs:[t(s(p.Panel)),[]],tabs_location:[n.Location,\"above\"],active:[e,0]})))},\n", + " function _(e,r,b,o,t){o(),b.root=\"bk-root\",b.tabs_header=\"bk-tabs-header\",b.btn_group=\"bk-btn-group\",b.btn=\"bk-btn\",b.headers_wrapper=\"bk-headers-wrapper\",b.above=\"bk-above\",b.right=\"bk-right\",b.below=\"bk-below\",b.left=\"bk-left\",b.headers=\"bk-headers\",b.tab=\"bk-tab\",b.active=\"bk-active\",b.close=\"bk-close\",b.disabled=\"bk-disabled\",b.default='.bk-root .bk-tabs-header{display:flex;flex-wrap:nowrap;align-items:center;overflow:hidden;user-select:none;-ms-user-select:none;-moz-user-select:none;-webkit-user-select:none;}.bk-root .bk-tabs-header .bk-btn-group{height:auto;margin-right:5px;}.bk-root .bk-tabs-header .bk-btn-group > .bk-btn{flex-grow:0;height:auto;padding:4px 4px;}.bk-root .bk-tabs-header .bk-headers-wrapper{flex-grow:1;overflow:hidden;color:#666666;}.bk-root .bk-tabs-header.bk-above .bk-headers-wrapper{border-bottom:1px solid #e6e6e6;}.bk-root .bk-tabs-header.bk-right .bk-headers-wrapper{border-left:1px solid #e6e6e6;}.bk-root .bk-tabs-header.bk-below .bk-headers-wrapper{border-top:1px solid #e6e6e6;}.bk-root .bk-tabs-header.bk-left .bk-headers-wrapper{border-right:1px solid #e6e6e6;}.bk-root .bk-tabs-header.bk-above,.bk-root .bk-tabs-header.bk-below{flex-direction:row;}.bk-root .bk-tabs-header.bk-above .bk-headers,.bk-root .bk-tabs-header.bk-below .bk-headers{flex-direction:row;}.bk-root .bk-tabs-header.bk-left,.bk-root .bk-tabs-header.bk-right{flex-direction:column;}.bk-root .bk-tabs-header.bk-left .bk-headers,.bk-root .bk-tabs-header.bk-right .bk-headers{flex-direction:column;}.bk-root .bk-tabs-header .bk-headers{position:relative;display:flex;flex-wrap:nowrap;align-items:center;}.bk-root .bk-tabs-header .bk-tab{padding:4px 8px;border:solid transparent;white-space:nowrap;cursor:pointer;}.bk-root .bk-tabs-header .bk-tab:hover{background-color:#f2f2f2;}.bk-root .bk-tabs-header .bk-tab.bk-active{color:#4d4d4d;background-color:white;border-color:#e6e6e6;}.bk-root .bk-tabs-header .bk-tab .bk-close{margin-left:10px;}.bk-root .bk-tabs-header .bk-tab.bk-disabled{cursor:not-allowed;pointer-events:none;opacity:0.65;}.bk-root .bk-tabs-header.bk-above .bk-tab{border-width:3px 1px 0px 1px;border-radius:4px 4px 0 0;}.bk-root .bk-tabs-header.bk-right .bk-tab{border-width:1px 3px 1px 0px;border-radius:0 4px 4px 0;}.bk-root .bk-tabs-header.bk-below .bk-tab{border-width:0px 1px 3px 1px;border-radius:0 0 4px 4px;}.bk-root .bk-tabs-header.bk-left .bk-tab{border-width:1px 0px 1px 3px;border-radius:4px 0 0 4px;}.bk-root .bk-close{display:inline-block;width:10px;height:10px;vertical-align:middle;background-image:url(\\'data:image/svg+xml;utf8, \\');}.bk-root .bk-close:hover{background-image:url(\\'data:image/svg+xml;utf8, \\');}'},\n", + " function _(o,b,r,t,e){t(),r.root=\"bk-root\",r.btn=\"bk-btn\",r.active=\"bk-active\",r.btn_default=\"bk-btn-default\",r.btn_primary=\"bk-btn-primary\",r.btn_success=\"bk-btn-success\",r.btn_warning=\"bk-btn-warning\",r.btn_danger=\"bk-btn-danger\",r.btn_light=\"bk-btn-light\",r.btn_group=\"bk-btn-group\",r.vertical=\"bk-vertical\",r.horizontal=\"bk-horizontal\",r.dropdown_toggle=\"bk-dropdown-toggle\",r.default=\".bk-root .bk-btn{height:100%;display:inline-block;text-align:center;vertical-align:middle;white-space:nowrap;cursor:pointer;padding:6px 12px;font-size:12px;border:1px solid transparent;border-radius:4px;outline:0;user-select:none;-ms-user-select:none;-moz-user-select:none;-webkit-user-select:none;}.bk-root .bk-btn:hover,.bk-root .bk-btn:focus{text-decoration:none;}.bk-root .bk-btn:active,.bk-root .bk-btn.bk-active{background-image:none;box-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);}.bk-root .bk-btn[disabled]{cursor:not-allowed;pointer-events:none;opacity:0.65;box-shadow:none;}.bk-root .bk-btn-default{color:#333;background-color:#fff;border-color:#ccc;}.bk-root .bk-btn-default:hover{background-color:#f5f5f5;border-color:#b8b8b8;}.bk-root .bk-btn-default.bk-active{background-color:#ebebeb;border-color:#adadad;}.bk-root .bk-btn-default[disabled],.bk-root .bk-btn-default[disabled]:hover,.bk-root .bk-btn-default[disabled]:focus,.bk-root .bk-btn-default[disabled]:active,.bk-root .bk-btn-default[disabled].bk-active{background-color:#e6e6e6;border-color:#ccc;}.bk-root .bk-btn-primary{color:#fff;background-color:#428bca;border-color:#357ebd;}.bk-root .bk-btn-primary:hover{background-color:#3681c1;border-color:#2c699e;}.bk-root .bk-btn-primary.bk-active{background-color:#3276b1;border-color:#285e8e;}.bk-root .bk-btn-primary[disabled],.bk-root .bk-btn-primary[disabled]:hover,.bk-root .bk-btn-primary[disabled]:focus,.bk-root .bk-btn-primary[disabled]:active,.bk-root .bk-btn-primary[disabled].bk-active{background-color:#506f89;border-color:#357ebd;}.bk-root .bk-btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c;}.bk-root .bk-btn-success:hover{background-color:#4eb24e;border-color:#409240;}.bk-root .bk-btn-success.bk-active{background-color:#47a447;border-color:#398439;}.bk-root .bk-btn-success[disabled],.bk-root .bk-btn-success[disabled]:hover,.bk-root .bk-btn-success[disabled]:focus,.bk-root .bk-btn-success[disabled]:active,.bk-root .bk-btn-success[disabled].bk-active{background-color:#667b66;border-color:#4cae4c;}.bk-root .bk-btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236;}.bk-root .bk-btn-warning:hover{background-color:#eea43b;border-color:#e89014;}.bk-root .bk-btn-warning.bk-active{background-color:#ed9c28;border-color:#d58512;}.bk-root .bk-btn-warning[disabled],.bk-root .bk-btn-warning[disabled]:hover,.bk-root .bk-btn-warning[disabled]:focus,.bk-root .bk-btn-warning[disabled]:active,.bk-root .bk-btn-warning[disabled].bk-active{background-color:#c89143;border-color:#eea236;}.bk-root .bk-btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a;}.bk-root .bk-btn-danger:hover{background-color:#d5433e;border-color:#bd2d29;}.bk-root .bk-btn-danger.bk-active{background-color:#d2322d;border-color:#ac2925;}.bk-root .bk-btn-danger[disabled],.bk-root .bk-btn-danger[disabled]:hover,.bk-root .bk-btn-danger[disabled]:focus,.bk-root .bk-btn-danger[disabled]:active,.bk-root .bk-btn-danger[disabled].bk-active{background-color:#a55350;border-color:#d43f3a;}.bk-root .bk-btn-light{color:#333;background-color:#fff;border-color:#ccc;border-color:transparent;}.bk-root .bk-btn-light:hover{background-color:#f5f5f5;border-color:#b8b8b8;}.bk-root .bk-btn-light.bk-active{background-color:#ebebeb;border-color:#adadad;}.bk-root .bk-btn-light[disabled],.bk-root .bk-btn-light[disabled]:hover,.bk-root .bk-btn-light[disabled]:focus,.bk-root .bk-btn-light[disabled]:active,.bk-root .bk-btn-light[disabled].bk-active{background-color:#e6e6e6;border-color:#ccc;}.bk-root .bk-btn-group{height:100%;display:flex;flex-wrap:nowrap;align-items:center;}.bk-root .bk-btn-group:not(.bk-vertical),.bk-root .bk-btn-group.bk-horizontal{flex-direction:row;}.bk-root .bk-btn-group.bk-vertical{flex-direction:column;}.bk-root .bk-btn-group > .bk-btn{flex-grow:1;}.bk-root .bk-btn-group:not(.bk-vertical) > .bk-btn + .bk-btn{margin-left:-1px;}.bk-root .bk-btn-group.bk-vertical > .bk-btn + .bk-btn{margin-top:-1px;}.bk-root .bk-btn-group:not(.bk-vertical) > .bk-btn:first-child:not(:last-child){border-bottom-right-radius:0;border-top-right-radius:0;}.bk-root .bk-btn-group.bk-vertical > .bk-btn:first-child:not(:last-child){border-bottom-left-radius:0;border-bottom-right-radius:0;}.bk-root .bk-btn-group:not(.bk-vertical) > .bk-btn:not(:first-child):last-child{border-bottom-left-radius:0;border-top-left-radius:0;}.bk-root .bk-btn-group.bk-vertical > .bk-btn:not(:first-child):last-child{border-top-left-radius:0;border-top-right-radius:0;}.bk-root .bk-btn-group > .bk-btn:not(:first-child):not(:last-child){border-radius:0;}.bk-root .bk-btn-group.bk-vertical > .bk-btn{width:100%;}.bk-root .bk-btn-group .bk-dropdown-toggle{flex:0 0 0;padding:6px 6px;}\"},\n", + " function _(e,t,o,n,_){var i;n();const s=e(310);class d extends s.ColumnView{}o.WidgetBoxView=d,d.__name__=\"WidgetBoxView\";class a extends s.Column{constructor(e){super(e)}}o.WidgetBox=a,i=a,a.__name__=\"WidgetBox\",i.prototype.default_view=d},\n", + " function _(t,a,i,e,M){e();var T=t(135);M(\"MathText\",T.MathText),M(\"Ascii\",T.Ascii),M(\"MathML\",T.MathML),M(\"TeX\",T.TeX),M(\"PlainText\",t(139).PlainText)},\n", + " function _(r,o,t,e,n){e(),n(\"CustomJSTransform\",r(322).CustomJSTransform),n(\"Dodge\",r(323).Dodge),n(\"Interpolator\",r(325).Interpolator),n(\"Jitter\",r(326).Jitter),n(\"LinearInterpolator\",r(327).LinearInterpolator),n(\"StepInterpolator\",r(328).StepInterpolator),n(\"Transform\",r(56).Transform)},\n", + " function _(r,t,s,n,e){var a;n();const u=r(56),o=r(13),m=r(34);class _ extends u.Transform{constructor(r){super(r)}get names(){return(0,o.keys)(this.args)}get values(){return(0,o.values)(this.args)}_make_transform(r,t){return new Function(...this.names,r,(0,m.use_strict)(t))}get scalar_transform(){return this._make_transform(\"x\",this.func)}get vector_transform(){return this._make_transform(\"xs\",this.v_func)}compute(r){return this.scalar_transform(...this.values,r)}v_compute(r){return this.vector_transform(...this.values,r)}}s.CustomJSTransform=_,a=_,_.__name__=\"CustomJSTransform\",a.define((({Unknown:r,String:t,Dict:s})=>({args:[s(r),{}],func:[t,\"\"],v_func:[t,\"\"]})))},\n", + " function _(e,n,r,o,s){var t;o();const u=e(324);class a extends u.RangeTransform{constructor(e){super(e)}_compute(e){return e+this.value}}r.Dodge=a,t=a,a.__name__=\"Dodge\",t.define((({Number:e})=>({value:[e,0]})))},\n", + " function _(e,n,t,r,a){var s;r();const c=e(56),o=e(57),i=e(67),u=e(24),h=e(8),l=e(11);class g extends c.Transform{constructor(e){super(e)}v_compute(e){let n;this.range instanceof i.FactorRange?n=this.range.v_synthetic(e):(0,h.isArrayableOf)(e,h.isNumber)?n=e:(0,l.unreachable)();const t=new((0,u.infer_type)(n))(n.length);for(let e=0;e({range:[n(e(o.Range)),null]})))},\n", + " function _(t,e,r,n,s){var o;n();const i=t(56),a=t(70),h=t(24),l=t(9),d=t(8);class c extends i.Transform{constructor(t){super(t),this._sorted_dirty=!0}connect_signals(){super.connect_signals(),this.connect(this.change,(()=>this._sorted_dirty=!0))}v_compute(t){const e=new((0,h.infer_type)(t))(t.length);for(let r=0;ro*(e[t]-e[r]))),this._x_sorted=new((0,h.infer_type)(e))(n),this._y_sorted=new((0,h.infer_type)(r))(n);for(let t=0;t({x:[o(r,s(e))],y:[o(r,s(e))],data:[i(n(a.ColumnarDataSource)),null],clip:[t,!0]})))},\n", + " function _(t,s,e,i,r){i();const n=t(1);var o;const a=t(324),u=t(67),h=t(20),c=t(8),m=t(12),f=(0,n.__importStar)(t(10)),_=t(11);class p extends a.RangeTransform{constructor(t){super(t)}v_compute(t){var s;let e;this.range instanceof u.FactorRange?e=this.range.v_synthetic(t):(0,c.isArrayableOf)(t,c.isNumber)?e=t:(0,_.unreachable)();const i=e.length;(null===(s=this.previous_offsets)||void 0===s?void 0:s.length)!=i&&(this.previous_offsets=new Array(i),this.previous_offsets=(0,m.map)(this.previous_offsets,(()=>this._compute())));const r=this.previous_offsets;return(0,m.map)(e,((t,s)=>r[s]+t))}_compute(){switch(this.distribution){case\"uniform\":return this.mean+(f.random()-.5)*this.width;case\"normal\":return f.rnorm(this.mean,this.width)}}}e.Jitter=p,o=p,p.__name__=\"Jitter\",o.define((({Number:t})=>({mean:[t,0],width:[t,1],distribution:[h.Distribution,\"uniform\"]})))},\n", + " function _(t,s,_,r,e){r();const i=t(9),o=t(325);class n extends o.Interpolator{constructor(t){super(t)}compute(t){if(this.sort(!1),this.clip){if(tthis._x_sorted[this._x_sorted.length-1])return NaN}else{if(tthis._x_sorted[this._x_sorted.length-1])return this._y_sorted[this._y_sorted.length-1]}if(t==this._x_sorted[0])return this._y_sorted[0];const s=(0,i.find_last_index)(this._x_sorted,(s=>sthis._x_sorted[this._x_sorted.length-1])return NaN}else{if(tthis._x_sorted[this._x_sorted.length-1])return this._y_sorted[this._y_sorted.length-1]}let e;switch(this.mode){case\"after\":e=(0,d.find_last_index)(this._x_sorted,(e=>t>=e));break;case\"before\":e=(0,d.find_index)(this._x_sorted,(e=>t<=e));break;case\"center\":{const s=(0,d.map)(this._x_sorted,(e=>Math.abs(e-t))),r=(0,d.min)(s);e=(0,d.find_index)(s,(t=>r===t));break}default:throw new Error(`unknown mode: ${this.mode}`)}return-1!=e?this._y_sorted[e]:NaN}}s.StepInterpolator=h,_=h,h.__name__=\"StepInterpolator\",_.define((()=>({mode:[n.StepMode,\"after\"]})))},\n", + " function _(p,o,t,a,n){a(),n(\"MapOptions\",p(330).MapOptions),n(\"GMapOptions\",p(330).GMapOptions),n(\"GMapPlot\",p(330).GMapPlot),n(\"Plot\",p(331).Plot)},\n", + " function _(e,t,n,o,a){var s,p,_;o();const i=e(331),r=e(53),l=e(58),c=e(336);a(\"GMapPlotView\",c.GMapPlotView);class d extends r.Model{constructor(e){super(e)}}n.MapOptions=d,s=d,d.__name__=\"MapOptions\",s.define((({Int:e,Number:t})=>({lat:[t],lng:[t],zoom:[e,12]})));class u extends d{constructor(e){super(e)}}n.GMapOptions=u,p=u,u.__name__=\"GMapOptions\",p.define((({Boolean:e,Int:t,String:n})=>({map_type:[n,\"roadmap\"],scale_control:[e,!1],styles:[n],tilt:[t,45]})));class M extends i.Plot{constructor(e){super(e),this.use_map=!0}}n.GMapPlot=M,_=M,M.__name__=\"GMapPlot\",_.prototype.default_view=c.GMapPlotView,_.define((({String:e,Ref:t})=>({map_options:[t(u)],api_key:[e],api_version:[e,\"weekly\"]}))),_.override({x_range:()=>new l.Range1d,y_range:()=>new l.Range1d})},\n", + " function _(e,t,r,n,i){n();const o=e(1);var a;const s=(0,o.__importStar)(e(48)),l=(0,o.__importStar)(e(18)),_=e(15),c=e(20),h=e(9),d=e(13),u=e(8),g=e(309),p=e(128),f=e(306),b=e(40),w=e(118),y=e(59),m=e(221),x=e(57),v=e(55),A=e(75),S=e(41),R=e(176),D=e(175),L=e(63),P=e(332);i(\"PlotView\",P.PlotView);class k extends g.LayoutDOM{constructor(e){super(e),this.use_map=!1}_doc_attached(){super._doc_attached(),this._push_changes([[this.properties.inner_height,null,this.inner_height],[this.properties.inner_width,null,this.inner_width]])}initialize(){super.initialize(),this.reset=new _.Signal0(this,\"reset\");for(const e of(0,d.values)(this.extra_x_ranges).concat(this.x_range)){let t=e.plots;(0,u.isArray)(t)&&(t=t.concat(this),e.setv({plots:t},{silent:!0}))}for(const e of(0,d.values)(this.extra_y_ranges).concat(this.y_range)){let t=e.plots;(0,u.isArray)(t)&&(t=t.concat(this),e.setv({plots:t},{silent:!0}))}}add_layout(e,t=\"center\"){const r=this.properties[t].get_value();this.setv({[t]:[...r,e]})}remove_layout(e){const t=t=>{(0,h.remove_by)(t,(t=>t==e))};t(this.left),t(this.right),t(this.above),t(this.below),t(this.center)}get data_renderers(){return this.renderers.filter((e=>e instanceof R.DataRenderer))}add_renderers(...e){this.renderers=this.renderers.concat(e)}add_glyph(e,t=new A.ColumnDataSource,r={}){const n=new D.GlyphRenderer(Object.assign(Object.assign({},r),{data_source:t,glyph:e}));return this.add_renderers(n),n}add_tools(...e){this.toolbar.tools=this.toolbar.tools.concat(e)}get panels(){return[...this.side_panels,...this.center]}get side_panels(){const{above:e,below:t,left:r,right:n}=this;return(0,h.concat)([e,t,r,n])}}r.Plot=k,a=k,k.__name__=\"Plot\",a.prototype.default_view=P.PlotView,a.mixins([[\"outline_\",s.Line],[\"background_\",s.Fill],[\"border_\",s.Fill]]),a.define((({Boolean:e,Number:t,String:r,Array:n,Dict:i,Or:o,Ref:a,Null:s,Nullable:_})=>({toolbar:[a(m.Toolbar),()=>new m.Toolbar],toolbar_location:[_(c.Location),\"right\"],toolbar_sticky:[e,!0],plot_width:[l.Alias(\"width\")],plot_height:[l.Alias(\"height\")],frame_width:[_(t),null],frame_height:[_(t),null],title:[o(a(w.Title),r,s),\"\",{convert:e=>(0,u.isString)(e)?new w.Title({text:e}):e}],title_location:[_(c.Location),\"above\"],above:[n(o(a(b.Annotation),a(p.Axis))),[]],below:[n(o(a(b.Annotation),a(p.Axis))),[]],left:[n(o(a(b.Annotation),a(p.Axis))),[]],right:[n(o(a(b.Annotation),a(p.Axis))),[]],center:[n(o(a(b.Annotation),a(f.Grid))),[]],renderers:[n(a(S.Renderer)),[]],x_range:[a(x.Range),()=>new L.DataRange1d],y_range:[a(x.Range),()=>new L.DataRange1d],x_scale:[a(v.Scale),()=>new y.LinearScale],y_scale:[a(v.Scale),()=>new y.LinearScale],extra_x_ranges:[i(a(x.Range)),{}],extra_y_ranges:[i(a(x.Range)),{}],extra_x_scales:[i(a(v.Scale)),{}],extra_y_scales:[i(a(v.Scale)),{}],lod_factor:[t,10],lod_interval:[t,300],lod_threshold:[_(t),2e3],lod_timeout:[t,500],hidpi:[e,!0],output_backend:[c.OutputBackend,\"canvas\"],min_border:[_(t),5],min_border_top:[_(t),null],min_border_left:[_(t),null],min_border_bottom:[_(t),null],min_border_right:[_(t),null],inner_width:[t,0],inner_height:[t,0],outer_width:[t,0],outer_height:[t,0],match_aspect:[e,!1],aspect_scale:[t,1],reset_policy:[c.ResetPolicy,\"standard\"]}))),a.override({width:600,height:600,outline_line_color:\"#e5e5e5\",border_fill_color:\"#ffffff\",background_fill_color:\"#ffffff\"})},\n", + " function _(e,t,i,s,a){s();const n=e(1),o=e(126),l=e(249),r=e(309),_=e(40),h=e(118),d=e(128),u=e(220),c=e(251),p=e(113),v=e(45),g=e(19),b=e(251),m=e(333),y=e(8),w=e(9),f=e(235),x=e(208),z=e(211),k=e(209),q=e(123),M=e(65),R=e(334),V=e(335),S=e(28);class O extends r.LayoutDOMView{constructor(){super(...arguments),this._outer_bbox=new M.BBox,this._inner_bbox=new M.BBox,this._needs_paint=!0,this._needs_layout=!1,this._invalidated_painters=new Set,this._invalidate_all=!0,this._needs_notify=!1}get canvas(){return this.canvas_view}get state(){return this._state_manager}set invalidate_dataranges(e){this._range_manager.invalidate_dataranges=e}renderer_view(e){const t=this.renderer_views.get(e);if(null==t)for(const[,t]of this.renderer_views){const i=t.renderer_view(e);if(null!=i)return i}return t}get is_paused(){return null!=this._is_paused&&0!==this._is_paused}get child_models(){return[]}pause(){null==this._is_paused?this._is_paused=1:this._is_paused+=1}unpause(e=!1){if(null==this._is_paused)throw new Error(\"wasn't paused\");this._is_paused-=1,0!=this._is_paused||e||this.request_paint(\"everything\")}notify_finished_after_paint(){this._needs_notify=!0}request_render(){this.request_paint(\"everything\")}request_paint(e){this.invalidate_painters(e),this.schedule_paint()}invalidate_painters(e){if(\"everything\"==e)this._invalidate_all=!0;else if((0,y.isArray)(e))for(const t of e)this._invalidated_painters.add(t);else this._invalidated_painters.add(e)}schedule_paint(){if(!this.is_paused){const e=this.throttled_paint();this._ready=this._ready.then((()=>e))}}request_layout(){this._needs_layout=!0,this.request_paint(\"everything\")}reset(){\"standard\"==this.model.reset_policy&&(this.state.clear(),this.reset_range(),this.reset_selection()),this.model.trigger_event(new c.Reset)}remove(){(0,p.remove_views)(this.renderer_views),(0,p.remove_views)(this.tool_views),this.canvas_view.remove(),super.remove()}render(){super.render(),this.el.appendChild(this.canvas_view.el),this.canvas_view.render()}initialize(){this.pause(),super.initialize(),this.lod_started=!1,this.visuals=new v.Visuals(this),this._initial_state={selection:new Map,dimensions:{width:0,height:0}},this.visibility_callbacks=[],this.renderer_views=new Map,this.tool_views=new Map,this.frame=new o.CartesianFrame(this.model.x_scale,this.model.y_scale,this.model.x_range,this.model.y_range,this.model.extra_x_ranges,this.model.extra_y_ranges,this.model.extra_x_scales,this.model.extra_y_scales),this._range_manager=new R.RangeManager(this),this._state_manager=new V.StateManager(this,this._initial_state),this.throttled_paint=(0,m.throttle)((()=>this.repaint()),1e3/60);const{title_location:e,title:t}=this.model;null!=e&&null!=t&&(this._title=t instanceof h.Title?t:new h.Title({text:t}));const{toolbar_location:i,toolbar:s}=this.model;null!=i&&null!=s&&(this._toolbar=new u.ToolbarPanel({toolbar:s}),s.toolbar_location=i)}async lazy_initialize(){await super.lazy_initialize();const{hidpi:e,output_backend:t}=this.model,i=new l.Canvas({hidpi:e,output_backend:t});this.canvas_view=await(0,p.build_view)(i,{parent:this}),this.canvas_view.plot_views=[this],await this.build_renderer_views(),await this.build_tool_views(),this._range_manager.update_dataranges(),this.unpause(!0),g.logger.debug(\"PlotView initialized\")}_width_policy(){return null==this.model.frame_width?super._width_policy():\"min\"}_height_policy(){return null==this.model.frame_height?super._height_policy():\"min\"}_update_layout(){var e,t,i,s,a;this.layout=new z.BorderLayout,this.layout.set_sizing(this.box_sizing());const n=(0,w.copy)(this.model.above),o=(0,w.copy)(this.model.below),l=(0,w.copy)(this.model.left),r=(0,w.copy)(this.model.right),d=e=>{switch(e){case\"above\":return n;case\"below\":return o;case\"left\":return l;case\"right\":return r}},{title_location:c,title:p}=this.model;null!=c&&null!=p&&d(c).push(this._title);const{toolbar_location:v,toolbar:g}=this.model;if(null!=v&&null!=g){const e=d(v);let t=!0;if(this.model.toolbar_sticky)for(let i=0;i{var i;const s=this.renderer_view(t);return s.panel=new q.Panel(e),null===(i=s.update_layout)||void 0===i||i.call(s),s.layout},m=(e,t)=>{const i=\"above\"==e||\"below\"==e,s=[];for(const a of t)if((0,y.isArray)(a)){const t=a.map((t=>{const s=b(e,t);if(t instanceof u.ToolbarPanel){const e=i?\"width_policy\":\"height_policy\";s.set_sizing(Object.assign(Object.assign({},s.sizing),{[e]:\"min\"}))}return s}));let n;i?(n=new k.Row(t),n.set_sizing({width_policy:\"max\",height_policy:\"min\"})):(n=new k.Column(t),n.set_sizing({width_policy:\"min\",height_policy:\"max\"})),n.absolute=!0,s.push(n)}else s.push(b(e,a));return s},f=null!==(e=this.model.min_border)&&void 0!==e?e:0;this.layout.min_border={left:null!==(t=this.model.min_border_left)&&void 0!==t?t:f,top:null!==(i=this.model.min_border_top)&&void 0!==i?i:f,right:null!==(s=this.model.min_border_right)&&void 0!==s?s:f,bottom:null!==(a=this.model.min_border_bottom)&&void 0!==a?a:f};const M=new x.NodeLayout,R=new x.VStack,V=new x.VStack,S=new x.HStack,O=new x.HStack;M.absolute=!0,R.absolute=!0,V.absolute=!0,S.absolute=!0,O.absolute=!0,M.children=this.model.center.filter((e=>e instanceof _.Annotation)).map((e=>{var t;const i=this.renderer_view(e);return null===(t=i.update_layout)||void 0===t||t.call(i),i.layout})).filter((e=>null!=e));const{frame_width:P,frame_height:j}=this.model;M.set_sizing(Object.assign(Object.assign({},null!=P?{width_policy:\"fixed\",width:P}:{width_policy:\"fit\"}),null!=j?{height_policy:\"fixed\",height:j}:{height_policy:\"fit\"})),M.on_resize((e=>this.frame.set_geometry(e))),R.children=(0,w.reversed)(m(\"above\",n)),V.children=m(\"below\",o),S.children=(0,w.reversed)(m(\"left\",l)),O.children=m(\"right\",r),R.set_sizing({width_policy:\"fit\",height_policy:\"min\"}),V.set_sizing({width_policy:\"fit\",height_policy:\"min\"}),S.set_sizing({width_policy:\"min\",height_policy:\"fit\"}),O.set_sizing({width_policy:\"min\",height_policy:\"fit\"}),this.layout.center_panel=M,this.layout.top_panel=R,this.layout.bottom_panel=V,this.layout.left_panel=S,this.layout.right_panel=O}get axis_views(){const e=[];for(const[,t]of this.renderer_views)t instanceof d.AxisView&&e.push(t);return e}set_toolbar_visibility(e){for(const t of this.visibility_callbacks)t(e)}update_range(e,t){this.pause(),this._range_manager.update(e,t),this.unpause()}reset_range(){this.update_range(null),this.trigger_ranges_update_event()}trigger_ranges_update_event(){const{x_range:e,y_range:t}=this.model;this.model.trigger_event(new b.RangesUpdate(e.start,e.end,t.start,t.end))}get_selection(){const e=new Map;for(const t of this.model.data_renderers){const{selected:i}=t.selection_manager.source;e.set(t,i)}return e}update_selection(e){for(const t of this.model.data_renderers){const i=t.selection_manager.source;if(null!=e){const s=e.get(t);null!=s&&i.selected.update(s,!0)}else i.selection_manager.clear()}}reset_selection(){this.update_selection(null)}_invalidate_layout(){(()=>{var e;for(const t of this.model.side_panels){const i=this.renderer_views.get(t);if(null===(e=i.layout)||void 0===e?void 0:e.has_size_changed())return this.invalidate_painters(i),!0}return!1})()&&this.root.compute_layout()}get_renderer_views(){return this.computed_renderers.map((e=>this.renderer_views.get(e)))}*_compute_renderers(){const{above:e,below:t,left:i,right:s,center:a,renderers:n}=this.model;yield*n,yield*e,yield*t,yield*i,yield*s,yield*a,null!=this._title&&(yield this._title),null!=this._toolbar&&(yield this._toolbar);for(const e of this.model.toolbar.tools)null!=e.overlay&&(yield e.overlay),yield*e.synthetic_renderers}async build_renderer_views(){this.computed_renderers=[...this._compute_renderers()],await(0,p.build_views)(this.renderer_views,this.computed_renderers,{parent:this})}async build_tool_views(){const e=this.model.toolbar.tools;(await(0,p.build_views)(this.tool_views,e,{parent:this})).map((e=>this.canvas_view.ui_event_bus.register_tool(e)))}connect_signals(){super.connect_signals();const{x_ranges:e,y_ranges:t}=this.frame;for(const[,t]of e)this.connect(t.change,(()=>{this._needs_layout=!0,this.request_paint(\"everything\")}));for(const[,e]of t)this.connect(e.change,(()=>{this._needs_layout=!0,this.request_paint(\"everything\")}));const{above:i,below:s,left:a,right:n,center:o,renderers:l}=this.model.properties;this.on_change([i,s,a,n,o,l],(async()=>await this.build_renderer_views())),this.connect(this.model.toolbar.properties.tools.change,(async()=>{await this.build_renderer_views(),await this.build_tool_views()})),this.connect(this.model.change,(()=>this.request_paint(\"everything\"))),this.connect(this.model.reset,(()=>this.reset()))}has_finished(){if(!super.has_finished())return!1;if(this.model.visible)for(const[,e]of this.renderer_views)if(!e.has_finished())return!1;return!0}after_layout(){var e;super.after_layout();for(const[,t]of this.renderer_views)t instanceof _.AnnotationView&&(null===(e=t.after_layout)||void 0===e||e.call(t));if(this._needs_layout=!1,this.model.setv({inner_width:Math.round(this.frame.bbox.width),inner_height:Math.round(this.frame.bbox.height),outer_width:Math.round(this.layout.bbox.width),outer_height:Math.round(this.layout.bbox.height)},{no_change:!0}),!1!==this.model.match_aspect&&(this.pause(),this._range_manager.update_dataranges(),this.unpause(!0)),!this._outer_bbox.equals(this.layout.bbox)){const{width:e,height:t}=this.layout.bbox;this.canvas_view.resize(e,t),this._outer_bbox=this.layout.bbox,this._invalidate_all=!0,this._needs_paint=!0}const{inner_bbox:t}=this.layout;this._inner_bbox.equals(t)||(this._inner_bbox=t,this._needs_paint=!0),this._needs_paint&&this.paint()}repaint(){this._needs_layout&&this._invalidate_layout(),this.paint()}paint(){this.is_paused||(this.model.visible&&(g.logger.trace(`${this.toString()}.paint()`),this._actual_paint()),this._needs_notify&&(this._needs_notify=!1,this.notify_finished()))}_actual_paint(){var e;const{document:t}=this.model;if(null!=t){const e=t.interactive_duration();e>=0&&e{t.interactive_duration()>this.model.lod_timeout&&t.interactive_stop(),this.request_paint(\"everything\")}),this.model.lod_timeout):t.interactive_stop()}this._range_manager.invalidate_dataranges&&(this._range_manager.update_dataranges(),this._invalidate_layout());let i=!1,s=!1;if(this._invalidate_all)i=!0,s=!0;else for(const e of this._invalidated_painters){const{level:t}=e.model;if(\"overlay\"!=t?i=!0:s=!0,i&&s)break}this._invalidated_painters.clear(),this._invalidate_all=!1;const a=[this.frame.bbox.left,this.frame.bbox.top,this.frame.bbox.width,this.frame.bbox.height],{primary:n,overlays:o}=this.canvas_view;i&&(n.prepare(),this.canvas_view.prepare_webgl(a),this._map_hook(n.ctx,a),this._paint_empty(n.ctx,a),this._paint_outline(n.ctx,a),this._paint_levels(n.ctx,\"image\",a,!0),this._paint_levels(n.ctx,\"underlay\",a,!0),this._paint_levels(n.ctx,\"glyph\",a,!0),this._paint_levels(n.ctx,\"guide\",a,!1),this._paint_levels(n.ctx,\"annotation\",a,!1),n.finish()),(s||S.settings.wireframe)&&(o.prepare(),this._paint_levels(o.ctx,\"overlay\",a,!1),S.settings.wireframe&&this._paint_layout(o.ctx,this.layout),o.finish()),null==this._initial_state.range&&(this._initial_state.range=null!==(e=this._range_manager.compute_initial())&&void 0!==e?e:void 0),this._needs_paint=!1}_paint_levels(e,t,i,s){for(const a of this.computed_renderers){if(a.level!=t)continue;const n=this.renderer_views.get(a);e.save(),(s||n.needs_clip)&&(e.beginPath(),e.rect(...i),e.clip()),n.render(),e.restore(),n.has_webgl&&n.needs_webgl_blit&&this.canvas_view.blit_webgl(e)}}_paint_layout(e,t){const{x:i,y:s,width:a,height:n}=t.bbox;e.strokeStyle=\"blue\",e.strokeRect(i,s,a,n);for(const a of t)e.save(),t.absolute||e.translate(i,s),this._paint_layout(e,a),e.restore()}_map_hook(e,t){}_paint_empty(e,t){const[i,s,a,n]=[0,0,this.layout.bbox.width,this.layout.bbox.height],[o,l,r,_]=t;this.visuals.border_fill.doit&&(this.visuals.border_fill.set_value(e),e.fillRect(i,s,a,n),e.clearRect(o,l,r,_)),this.visuals.background_fill.doit&&(this.visuals.background_fill.set_value(e),e.fillRect(o,l,r,_))}_paint_outline(e,t){if(this.visuals.outline_line.doit){e.save(),this.visuals.outline_line.set_value(e);let[i,s,a,n]=t;i+a==this.layout.bbox.width&&(a-=1),s+n==this.layout.bbox.height&&(n-=1),e.strokeRect(i,s,a,n),e.restore()}}to_blob(){return this.canvas_view.to_blob()}export(e,t=!0){const i=\"png\"==e?\"canvas\":\"svg\",s=new f.CanvasLayer(i,t),{width:a,height:n}=this.layout.bbox;s.resize(a,n);const{canvas:o}=this.canvas_view.compose();return s.ctx.drawImage(o,0,0),s}serializable_state(){const e=super.serializable_state(),{children:t}=e,i=(0,n.__rest)(e,[\"children\"]),s=this.get_renderer_views().map((e=>e.serializable_state())).filter((e=>null!=e.bbox));return Object.assign(Object.assign({},i),{children:[...null!=t?t:[],...s]})}}i.PlotView=O,O.__name__=\"PlotView\"},\n", + " function _(t,n,e,o,u){o(),e.throttle=function(t,n){let e=null,o=0,u=!1;return function(){return new Promise(((r,i)=>{const l=function(){o=Date.now(),e=null,u=!1;try{t(),r()}catch(t){i(t)}},a=Date.now(),c=n-(a-o);c<=0&&!u?(null!=e&&clearTimeout(e),u=!0,requestAnimationFrame(l)):e||u?r():e=setTimeout((()=>requestAnimationFrame(l)),c)}))}}},\n", + " function _(t,n,e,a,s){a();const o=t(63),r=t(19);class l{constructor(t){this.parent=t,this.invalidate_dataranges=!0}get frame(){return this.parent.frame}update(t,n){const{x_ranges:e,y_ranges:a}=this.frame;if(null==t){for(const[,t]of e)t.reset();for(const[,t]of a)t.reset();this.update_dataranges()}else{const s=[];for(const[n,a]of e)s.push([a,t.xrs.get(n)]);for(const[n,e]of a)s.push([e,t.yrs.get(n)]);(null==n?void 0:n.scrolling)&&this._update_ranges_together(s),this._update_ranges_individually(s,n)}}reset(){this.update(null)}_update_dataranges(t){const n=new Map,e=new Map;let a=!1;for(const[,n]of t.x_ranges)n instanceof o.DataRange1d&&\"log\"==n.scale_hint&&(a=!0);for(const[,n]of t.y_ranges)n instanceof o.DataRange1d&&\"log\"==n.scale_hint&&(a=!0);for(const t of this.parent.model.data_renderers){const s=this.parent.renderer_view(t);if(null==s)continue;const o=s.glyph_view.bounds();if(null!=o&&n.set(t,o),a){const n=s.glyph_view.log_bounds();null!=n&&e.set(t,n)}}let s=!1,l=!1;const i=t.x_target.span,d=t.y_target.span;let u;!1!==this.parent.model.match_aspect&&0!=i&&0!=d&&(u=1/this.parent.model.aspect_scale*(i/d));for(const[,a]of t.x_ranges){if(a instanceof o.DataRange1d){const t=\"log\"==a.scale_hint?e:n;a.update(t,0,this.parent.model,u),a.follow&&(s=!0)}null!=a.bounds&&(l=!0)}for(const[,a]of t.y_ranges){if(a instanceof o.DataRange1d){const t=\"log\"==a.scale_hint?e:n;a.update(t,1,this.parent.model,u),a.follow&&(s=!0)}null!=a.bounds&&(l=!0)}if(s&&l){r.logger.warn(\"Follow enabled so bounds are unset.\");for(const[,n]of t.x_ranges)n.bounds=null;for(const[,n]of t.y_ranges)n.bounds=null}}update_dataranges(){this._update_dataranges(this.frame);for(const t of this.parent.model.renderers){const{coordinates:n}=t;null!=n&&this._update_dataranges(n)}null!=this.compute_initial()&&(this.invalidate_dataranges=!1)}compute_initial(){let t=!0;const{x_ranges:n,y_ranges:e}=this.frame,a=new Map,s=new Map;for(const[e,s]of n){const{start:n,end:o}=s;if(null==n||null==o||isNaN(n+o)){t=!1;break}a.set(e,{start:n,end:o})}if(t)for(const[n,a]of e){const{start:e,end:o}=a;if(null==e||null==o||isNaN(e+o)){t=!1;break}s.set(n,{start:e,end:o})}return t?{xrs:a,yrs:s}:(r.logger.warn(\"could not set initial ranges\"),null)}_update_ranges_together(t){let n=1;for(const[e,a]of t)n=Math.min(n,this._get_weight_to_constrain_interval(e,a));if(n<1)for(const[e,a]of t)a.start=n*a.start+(1-n)*e.start,a.end=n*a.end+(1-n)*e.end}_update_ranges_individually(t,n){const e=!!(null==n?void 0:n.panning),a=!!(null==n?void 0:n.scrolling);let s=!1;for(const[n,o]of t){if(!a){const t=this._get_weight_to_constrain_interval(n,o);t<1&&(o.start=t*o.start+(1-t)*n.start,o.end=t*o.end+(1-t)*n.end)}if(null!=n.bounds&&\"auto\"!=n.bounds){const[t,r]=n.bounds,l=Math.abs(o.end-o.start);n.is_reversed?(null!=t&&t>o.end&&(s=!0,o.end=t,(e||a)&&(o.start=t+l)),null!=r&&ro.start&&(s=!0,o.start=t,(e||a)&&(o.end=t+l)),null!=r&&r0&&r0&&r>a&&(s=(a-o)/(r-o)),s=Math.max(0,Math.min(1,s))}return s}}e.RangeManager=l,l.__name__=\"RangeManager\"},\n", + " function _(t,i,s,e,n){e();const h=t(15);class a{constructor(t,i){this.parent=t,this.initial_state=i,this.changed=new h.Signal0(this.parent,\"state_changed\"),this.history=[],this.index=-1}_do_state_change(t){const i=null!=this.history[t]?this.history[t].state:this.initial_state;return null!=i.range&&this.parent.update_range(i.range),null!=i.selection&&this.parent.update_selection(i.selection),i}push(t,i){const{history:s,index:e}=this,n=null!=s[e]?s[e].state:{},h=Object.assign(Object.assign(Object.assign({},this.initial_state),n),i);this.history=this.history.slice(0,this.index+1),this.history.push({type:t,state:h}),this.index=this.history.length-1,this.changed.emit()}clear(){this.history=[],this.index=-1,this.changed.emit()}undo(){if(this.can_undo){this.index-=1;const t=this._do_state_change(this.index);return this.changed.emit(),t}return null}redo(){if(this.can_redo){this.index+=1;const t=this._do_state_change(this.index);return this.changed.emit(),t}return null}get can_undo(){return this.index>=0}get can_redo(){return this.indexm.emit();const s=encodeURIComponent,o=document.createElement(\"script\");o.type=\"text/javascript\",o.src=`https://maps.googleapis.com/maps/api/js?v=${s(e)}&key=${s(t)}&callback=_bokeh_gmaps_callback`,document.body.appendChild(o)}(t,e)}m.connect((()=>this.request_paint(\"everything\")))}this.unpause()}remove(){(0,p.remove)(this.map_el),super.remove()}update_range(t,e){var s,o;if(null==t)this.map.setCenter({lat:this.initial_lat,lng:this.initial_lng}),this.map.setOptions({zoom:this.initial_zoom}),super.update_range(null,e);else if(null!=t.sdx||null!=t.sdy)this.map.panBy(null!==(s=t.sdx)&&void 0!==s?s:0,null!==(o=t.sdy)&&void 0!==o?o:0),super.update_range(t,e);else if(null!=t.factor){if(10!==this.zoom_count)return void(this.zoom_count+=1);this.zoom_count=0,this.pause(),super.update_range(t,e);const s=t.factor<0?-1:1,o=this.map.getZoom();if(null!=o){const t=o+s;if(t>=2){this.map.setZoom(t);const[e,s]=this._get_projected_bounds();s-e<0&&this.map.setZoom(o)}}this.unpause()}this._set_bokeh_ranges()}_build_map(){const{maps:t}=google;this.map_types={satellite:t.MapTypeId.SATELLITE,terrain:t.MapTypeId.TERRAIN,roadmap:t.MapTypeId.ROADMAP,hybrid:t.MapTypeId.HYBRID};const e=this.model.map_options,s={center:new t.LatLng(e.lat,e.lng),zoom:e.zoom,disableDefaultUI:!0,mapTypeId:this.map_types[e.map_type],scaleControl:e.scale_control,tilt:e.tilt};null!=e.styles&&(s.styles=JSON.parse(e.styles)),this.map_el=(0,p.div)({style:{position:\"absolute\"}}),this.canvas_view.add_underlay(this.map_el),this.map=new t.Map(this.map_el,s),t.event.addListener(this.map,\"idle\",(()=>this._set_bokeh_ranges())),t.event.addListener(this.map,\"bounds_changed\",(()=>this._set_bokeh_ranges())),t.event.addListenerOnce(this.map,\"tilesloaded\",(()=>this._render_finished())),this.connect(this.model.properties.map_options.change,(()=>this._update_options())),this.connect(this.model.map_options.properties.styles.change,(()=>this._update_styles())),this.connect(this.model.map_options.properties.lat.change,(()=>this._update_center(\"lat\"))),this.connect(this.model.map_options.properties.lng.change,(()=>this._update_center(\"lng\"))),this.connect(this.model.map_options.properties.zoom.change,(()=>this._update_zoom())),this.connect(this.model.map_options.properties.map_type.change,(()=>this._update_map_type())),this.connect(this.model.map_options.properties.scale_control.change,(()=>this._update_scale_control())),this.connect(this.model.map_options.properties.tilt.change,(()=>this._update_tilt()))}_render_finished(){this._tiles_loaded=!0,this.notify_finished()}has_finished(){return super.has_finished()&&!0===this._tiles_loaded}_get_latlon_bounds(){const t=this.map.getBounds(),e=t.getNorthEast(),s=t.getSouthWest();return[s.lng(),e.lng(),s.lat(),e.lat()]}_get_projected_bounds(){const[t,e,s,o]=this._get_latlon_bounds(),[i,a]=l.wgs84_mercator.compute(t,s),[n,p]=l.wgs84_mercator.compute(e,o);return[i,n,a,p]}_set_bokeh_ranges(){const[t,e,s,o]=this._get_projected_bounds();this.frame.x_range.setv({start:t,end:e}),this.frame.y_range.setv({start:s,end:o})}_update_center(t){var e;const s=null===(e=this.map.getCenter())||void 0===e?void 0:e.toJSON();null!=s&&(s[t]=this.model.map_options[t],this.map.setCenter(s),this._set_bokeh_ranges())}_update_map_type(){this.map.setOptions({mapTypeId:this.map_types[this.model.map_options.map_type]})}_update_scale_control(){this.map.setOptions({scaleControl:this.model.map_options.scale_control})}_update_tilt(){this.map.setOptions({tilt:this.model.map_options.tilt})}_update_options(){this._update_styles(),this._update_center(\"lat\"),this._update_center(\"lng\"),this._update_zoom(),this._update_map_type()}_update_styles(){this.map.setOptions({styles:JSON.parse(this.model.map_options.styles)})}_update_zoom(){this.map.setOptions({zoom:this.model.map_options.zoom}),this._set_bokeh_ranges()}_map_hook(t,e){if(null==this.map&&\"undefined\"!=typeof google&&null!=google.maps&&this._build_map(),null!=this.map_el){const[t,s,o,i]=e;this.map_el.style.top=`${s}px`,this.map_el.style.left=`${t}px`,this.map_el.style.width=`${o}px`,this.map_el.style.height=`${i}px`}}_paint_empty(t,e){const s=this.layout.bbox.width,o=this.layout.bbox.height,[i,a,n,p]=e;t.clearRect(0,0,s,o),t.beginPath(),t.moveTo(0,0),t.lineTo(0,o),t.lineTo(s,o),t.lineTo(s,0),t.lineTo(0,0),t.moveTo(i,a),t.lineTo(i+n,a),t.lineTo(i+n,a+p),t.lineTo(i,a+p),t.lineTo(i,a),t.closePath(),null!=this.model.border_fill_color&&(t.fillStyle=(0,_.color2css)(this.model.border_fill_color),t.fill())}}s.GMapPlotView=d,d.__name__=\"GMapPlotView\"},\n", + " function _(t,_,n,o,r){o();(0,t(1).__exportStar)(t(132),n)},\n", + " function _(e,r,d,n,R){n(),R(\"GlyphRenderer\",e(175).GlyphRenderer),R(\"GraphRenderer\",e(339).GraphRenderer),R(\"GuideRenderer\",e(129).GuideRenderer);var G=e(41);R(\"Renderer\",G.Renderer),R(\"RendererGroup\",G.RendererGroup)},\n", + " function _(e,r,i,n,t){var o;n();const s=e(176),d=e(175),a=e(303),p=e(302),l=e(113),_=e(178),h=e(283),y=e(286);class c extends s.DataRendererView{get glyph_view(){return this.node_view.glyph}async lazy_initialize(){await super.lazy_initialize(),this.apply_coordinates();const{parent:e}=this,{edge_renderer:r,node_renderer:i}=this.model;this.edge_view=await(0,l.build_view)(r,{parent:e}),this.node_view=await(0,l.build_view)(i,{parent:e})}connect_signals(){super.connect_signals(),this.connect(this.model.layout_provider.change,(()=>{this.apply_coordinates(),this.edge_view.set_data(),this.node_view.set_data(),this.request_render()}))}apply_coordinates(){const{edge_renderer:e,node_renderer:r}=this.model;if(!(e.glyph instanceof h.MultiLine||e.glyph instanceof y.Patches))throw new Error(`${this}.edge_renderer.glyph must be a MultiLine glyph`);if(!(r.glyph instanceof _.XYGlyph))throw new Error(`${this}.node_renderer.glyph must be a XYGlyph glyph`);const i=this.model.layout_provider.edge_coordinates,n=this.model.layout_provider.node_coordinates;e.glyph.properties.xs.internal=!0,e.glyph.properties.ys.internal=!0,r.glyph.properties.x.internal=!0,r.glyph.properties.y.internal=!0,e.glyph.xs={expr:i.x},e.glyph.ys={expr:i.y},r.glyph.x={expr:n.x},r.glyph.y={expr:n.y}}remove(){this.edge_view.remove(),this.node_view.remove(),super.remove()}_render(){this.edge_view.render(),this.node_view.render()}renderer_view(e){if(e instanceof d.GlyphRenderer){if(e==this.edge_view.model)return this.edge_view;if(e==this.node_view.model)return this.node_view}return super.renderer_view(e)}}i.GraphRendererView=c,c.__name__=\"GraphRendererView\";class g extends s.DataRenderer{constructor(e){super(e)}get_selection_manager(){return this.node_renderer.data_source.selection_manager}}i.GraphRenderer=g,o=g,g.__name__=\"GraphRenderer\",o.prototype.default_view=c,o.define((({Ref:e})=>({layout_provider:[e(a.LayoutProvider)],node_renderer:[e(d.GlyphRenderer)],edge_renderer:[e(d.GlyphRenderer)],selection_policy:[e(p.GraphHitTestPolicy),()=>new p.NodesOnly],inspection_policy:[e(p.GraphHitTestPolicy),()=>new p.NodesOnly]})))},\n", + " function _(e,t,n,o,c){o();(0,e(1).__exportStar)(e(74),n),c(\"Selection\",e(72).Selection)},\n", + " function _(a,e,S,o,r){o(),r(\"ServerSentDataSource\",a(342).ServerSentDataSource),r(\"AjaxDataSource\",a(344).AjaxDataSource),r(\"ColumnDataSource\",a(75).ColumnDataSource),r(\"ColumnarDataSource\",a(70).ColumnarDataSource),r(\"CDSView\",a(190).CDSView),r(\"DataSource\",a(71).DataSource),r(\"GeoJSONDataSource\",a(345).GeoJSONDataSource),r(\"WebDataSource\",a(343).WebDataSource)},\n", + " function _(e,t,i,a,s){a();const n=e(343);class r extends n.WebDataSource{constructor(e){super(e),this.initialized=!1}setup(){if(!this.initialized){this.initialized=!0;new EventSource(this.data_url).onmessage=e=>{var t;this.load_data(JSON.parse(e.data),this.mode,null!==(t=this.max_size)&&void 0!==t?t:void 0)}}}}i.ServerSentDataSource=r,r.__name__=\"ServerSentDataSource\"},\n", + " function _(e,t,a,n,r){var s;n();const l=e(75),o=e(20);class c extends l.ColumnDataSource{constructor(e){super(e)}get_column(e){const t=this.data[e];return null!=t?t:[]}get_length(){var e;return null!==(e=super.get_length())&&void 0!==e?e:0}initialize(){super.initialize(),this.setup()}load_data(e,t,a){const{adapter:n}=this;let r;switch(r=null!=n?n.execute(this,{response:e}):e,t){case\"replace\":this.data=r;break;case\"append\":{const e=this.data;for(const t of this.columns()){const n=Array.from(e[t]),s=Array.from(r[t]),l=n.concat(s);r[t]=null!=a?l.slice(-a):l}this.data=r;break}}}}a.WebDataSource=c,s=c,c.__name__=\"WebDataSource\",s.define((({Any:e,Int:t,String:a,Nullable:n})=>({max_size:[n(t),null],mode:[o.UpdateMode,\"replace\"],adapter:[n(e),null],data_url:[a]})))},\n", + " function _(t,e,i,s,a){var n;s();const r=t(343),o=t(20),l=t(19),d=t(13);class h extends r.WebDataSource{constructor(t){super(t),this.interval=null,this.initialized=!1}destroy(){null!=this.interval&&clearInterval(this.interval),super.destroy()}setup(){if(!this.initialized&&(this.initialized=!0,this.get_data(this.mode),null!=this.polling_interval)){const t=()=>this.get_data(this.mode,this.max_size,this.if_modified);this.interval=setInterval(t,this.polling_interval)}}get_data(t,e=null,i=!1){const s=this.prepare_request();s.addEventListener(\"load\",(()=>this.do_load(s,t,null!=e?e:void 0))),s.addEventListener(\"error\",(()=>this.do_error(s))),s.send()}prepare_request(){const t=new XMLHttpRequest;t.open(this.method,this.data_url,!0),t.withCredentials=!1,t.setRequestHeader(\"Content-Type\",this.content_type);const e=this.http_headers;for(const[i,s]of(0,d.entries)(e))t.setRequestHeader(i,s);return t}do_load(t,e,i){if(200===t.status){const s=JSON.parse(t.responseText);this.load_data(s,e,i)}}do_error(t){l.logger.error(`Failed to fetch JSON from ${this.data_url} with code ${t.status}`)}}i.AjaxDataSource=h,n=h,h.__name__=\"AjaxDataSource\",n.define((({Boolean:t,Int:e,String:i,Dict:s,Nullable:a})=>({polling_interval:[a(e),null],content_type:[i,\"application/json\"],http_headers:[s(i),{}],method:[o.HTTPMethod,\"POST\"],if_modified:[t,!1]})))},\n", + " function _(e,t,o,r,n){var s;r();const a=e(70),i=e(19),l=e(9),c=e(13);function _(e){return null!=e?e:NaN}const{hasOwnProperty:g}=Object.prototype;class u extends a.ColumnarDataSource{constructor(e){super(e)}initialize(){super.initialize(),this._update_data()}connect_signals(){super.connect_signals(),this.connect(this.properties.geojson.change,(()=>this._update_data()))}_update_data(){this.data=this.geojson_to_column_data()}_get_new_list_array(e){return(0,l.range)(0,e).map((e=>[]))}_get_new_nan_array(e){return(0,l.range)(0,e).map((e=>NaN))}_add_properties(e,t,o,r){var n;const s=null!==(n=e.properties)&&void 0!==n?n:{};for(const[e,n]of(0,c.entries)(s))g.call(t,e)||(t[e]=this._get_new_nan_array(r)),t[e][o]=_(n)}_add_geometry(e,t,o){function r(e,t){return e.concat([[NaN,NaN,NaN]]).concat(t)}switch(e.type){case\"Point\":{const[r,n,s]=e.coordinates;t.x[o]=r,t.y[o]=n,t.z[o]=_(s);break}case\"LineString\":{const{coordinates:r}=e;for(let e=0;e1&&i.logger.warn(\"Bokeh does not support Polygons with holes in, only exterior ring used.\");const r=e.coordinates[0];for(let e=0;e1&&i.logger.warn(\"Bokeh does not support Polygons with holes in, only exterior ring used.\"),n.push(t[0]);const s=n.reduce(r);for(let e=0;e({geojson:[e]}))),s.internal((({Dict:e,Arrayable:t})=>({data:[e(t),{}]})))},\n", + " function _(e,r,T,o,S){o(),S(\"BBoxTileSource\",e(347).BBoxTileSource),S(\"MercatorTileSource\",e(348).MercatorTileSource),S(\"QUADKEYTileSource\",e(351).QUADKEYTileSource),S(\"TileRenderer\",e(352).TileRenderer),S(\"TileSource\",e(349).TileSource),S(\"TMSTileSource\",e(355).TMSTileSource),S(\"WMTSTileSource\",e(353).WMTSTileSource)},\n", + " function _(e,t,r,o,l){var i;o();const n=e(348);class s extends n.MercatorTileSource{constructor(e){super(e)}get_image_url(e,t,r){const o=this.string_lookup_replace(this.url,this.extra_url_vars);let l,i,n,s;return this.use_latlon?[i,s,l,n]=this.get_tile_geographic_bounds(e,t,r):[i,s,l,n]=this.get_tile_meter_bounds(e,t,r),o.replace(\"{XMIN}\",i.toString()).replace(\"{YMIN}\",s.toString()).replace(\"{XMAX}\",l.toString()).replace(\"{YMAX}\",n.toString())}}r.BBoxTileSource=s,i=s,s.__name__=\"BBoxTileSource\",i.define((({Boolean:e})=>({use_latlon:[e,!1]})))},\n", + " function _(t,e,i,_,s){var r;_();const o=t(349),n=t(9),l=t(350);class u extends o.TileSource{constructor(t){super(t)}initialize(){super.initialize(),this._resolutions=(0,n.range)(this.min_zoom,this.max_zoom+1).map((t=>this.get_resolution(t)))}_computed_initial_resolution(){return null!=this.initial_resolution?this.initial_resolution:2*Math.PI*6378137/this.tile_size}is_valid_tile(t,e,i){return!(!this.wrap_around&&(t<0||t>=2**i))&&!(e<0||e>=2**i)}parent_by_tile_xyz(t,e,i){const _=this.tile_xyz_to_quadkey(t,e,i),s=_.substring(0,_.length-1);return this.quadkey_to_tile_xyz(s)}get_resolution(t){return this._computed_initial_resolution()/2**t}get_resolution_by_extent(t,e,i){return[(t[2]-t[0])/i,(t[3]-t[1])/e]}get_level_by_extent(t,e,i){const _=(t[2]-t[0])/i,s=(t[3]-t[1])/e,r=Math.max(_,s);let o=0;for(const t of this._resolutions){if(r>t){if(0==o)return 0;if(o>0)return o-1}o+=1}return o-1}get_closest_level_by_extent(t,e,i){const _=(t[2]-t[0])/i,s=(t[3]-t[1])/e,r=Math.max(_,s),o=this._resolutions.reduce((function(t,e){return Math.abs(e-r)e?(u=o-s,a*=t):(u*=e,a=n-r)}const h=(u-(o-s))/2,c=(a-(n-r))/2;return[s-h,r-c,o+h,n+c]}tms_to_wmts(t,e,i){return[t,2**i-1-e,i]}wmts_to_tms(t,e,i){return[t,2**i-1-e,i]}pixels_to_meters(t,e,i){const _=this.get_resolution(i);return[t*_-this.x_origin_offset,e*_-this.y_origin_offset]}meters_to_pixels(t,e,i){const _=this.get_resolution(i);return[(t+this.x_origin_offset)/_,(e+this.y_origin_offset)/_]}pixels_to_tile(t,e){let i=Math.ceil(t/this.tile_size);i=0===i?i:i-1;return[i,Math.max(Math.ceil(e/this.tile_size)-1,0)]}pixels_to_raster(t,e,i){return[t,(this.tile_size<=l;t--)for(let i=n;i<=u;i++)this.is_valid_tile(i,t,e)&&h.push([i,t,e,this.get_tile_meter_bounds(i,t,e)]);return this.sort_tiles_from_center(h,[n,l,u,a]),h}quadkey_to_tile_xyz(t){let e=0,i=0;const _=t.length;for(let s=_;s>0;s--){const r=1<0;s--){const i=1<0;)if(s=s.substring(0,s.length-1),[t,e,i]=this.quadkey_to_tile_xyz(s),[t,e,i]=this.denormalize_xyz(t,e,i,_),this.tiles.has(this.tile_xyz_to_key(t,e,i)))return[t,e,i];return[0,0,0]}normalize_xyz(t,e,i){if(this.wrap_around){const _=2**i;return[(t%_+_)%_,e,i]}return[t,e,i]}denormalize_xyz(t,e,i,_){return[t+_*2**i,e,i]}denormalize_meters(t,e,i,_){return[t+2*_*Math.PI*6378137,e]}calculate_world_x_by_tile_xyz(t,e,i){return Math.floor(t/2**i)}}i.MercatorTileSource=u,r=u,u.__name__=\"MercatorTileSource\",r.define((({Boolean:t})=>({snap_to_zoom:[t,!1],wrap_around:[t,!0]}))),r.override({x_origin_offset:20037508.34,y_origin_offset:20037508.34,initial_resolution:156543.03392804097})},\n", + " function _(e,t,r,i,n){var l;i();const a=e(53),s=e(13);class c extends a.Model{constructor(e){super(e)}initialize(){super.initialize(),this.tiles=new Map,this._normalize_case()}connect_signals(){super.connect_signals(),this.connect(this.change,(()=>this._clear_cache()))}string_lookup_replace(e,t){let r=e;for(const[e,i]of(0,s.entries)(t))r=r.replace(`{${e}}`,i);return r}_normalize_case(){const e=this.url.replace(\"{x}\",\"{X}\").replace(\"{y}\",\"{Y}\").replace(\"{z}\",\"{Z}\").replace(\"{q}\",\"{Q}\").replace(\"{xmin}\",\"{XMIN}\").replace(\"{ymin}\",\"{YMIN}\").replace(\"{xmax}\",\"{XMAX}\").replace(\"{ymax}\",\"{YMAX}\");this.url=e}_clear_cache(){this.tiles=new Map}tile_xyz_to_key(e,t,r){return`${e}:${t}:${r}`}key_to_tile_xyz(e){const[t,r,i]=e.split(\":\").map((e=>parseInt(e)));return[t,r,i]}sort_tiles_from_center(e,t){const[r,i,n,l]=t,a=(n-r)/2+r,s=(l-i)/2+i;e.sort((function(e,t){return Math.sqrt((a-e[0])**2+(s-e[1])**2)-Math.sqrt((a-t[0])**2+(s-t[1])**2)}))}get_image_url(e,t,r){return this.string_lookup_replace(this.url,this.extra_url_vars).replace(\"{X}\",e.toString()).replace(\"{Y}\",t.toString()).replace(\"{Z}\",r.toString())}}r.TileSource=c,l=c,c.__name__=\"TileSource\",l.define((({Number:e,String:t,Dict:r,Nullable:i})=>({url:[t,\"\"],tile_size:[e,256],max_zoom:[e,30],min_zoom:[e,0],extra_url_vars:[r(t),{}],attribution:[t,\"\"],x_origin_offset:[e],y_origin_offset:[e],initial_resolution:[i(e),null]})))},\n", + " function _(t,e,r,n,o){n();const c=t(78);function _(t,e){return c.wgs84_mercator.compute(t,e)}function g(t,e){return c.wgs84_mercator.invert(t,e)}r.geographic_to_meters=_,r.meters_to_geographic=g,r.geographic_extent_to_meters=function(t){const[e,r,n,o]=t,[c,g]=_(e,r),[i,u]=_(n,o);return[c,g,i,u]},r.meters_extent_to_geographic=function(t){const[e,r,n,o]=t,[c,_]=g(e,r),[i,u]=g(n,o);return[c,_,i,u]}},\n", + " function _(e,t,r,s,_){s();const o=e(348);class c extends o.MercatorTileSource{constructor(e){super(e)}get_image_url(e,t,r){const s=this.string_lookup_replace(this.url,this.extra_url_vars),[_,o,c]=this.tms_to_wmts(e,t,r),i=this.tile_xyz_to_quadkey(_,o,c);return s.replace(\"{Q}\",i)}}r.QUADKEYTileSource=c,c.__name__=\"QUADKEYTileSource\"},\n", + " function _(t,e,i,s,_){s();const n=t(1);var a;const o=t(349),r=t(353),h=t(41),l=t(58),d=t(43),m=t(136),c=t(9),u=t(8),p=(0,n.__importStar)(t(354));class g extends h.RendererView{initialize(){this._tiles=[],super.initialize()}connect_signals(){super.connect_signals(),this.connect(this.model.change,(()=>this.request_render())),this.connect(this.model.tile_source.change,(()=>this.request_render()))}remove(){null!=this.attribution_el&&(0,d.removeElement)(this.attribution_el),super.remove()}styles(){return[...super.styles(),p.default]}get_extent(){return[this.x_range.start,this.y_range.start,this.x_range.end,this.y_range.end]}get map_plot(){return this.plot_model}get map_canvas(){return this.layer.ctx}get map_frame(){return this.plot_view.frame}get x_range(){return this.map_plot.x_range}get y_range(){return this.map_plot.y_range}_set_data(){this.extent=this.get_extent(),this._last_height=void 0,this._last_width=void 0}_update_attribution(){null!=this.attribution_el&&(0,d.removeElement)(this.attribution_el);const{attribution:t}=this.model.tile_source;if((0,u.isString)(t)&&t.length>0){const{layout:e,frame:i}=this.plot_view,s=e.bbox.width-i.bbox.right,_=e.bbox.height-i.bbox.bottom,n=i.bbox.width;this.attribution_el=(0,d.div)({class:p.tile_attribution,style:{position:\"absolute\",right:`${s}px`,bottom:`${_}px`,\"max-width\":n-4+\"px\",padding:\"2px\",\"background-color\":\"rgba(255,255,255,0.5)\",\"font-size\":\"9px\",\"line-height\":\"1.05\",\"white-space\":\"nowrap\",overflow:\"hidden\",\"text-overflow\":\"ellipsis\"}}),this.plot_view.canvas_view.add_event(this.attribution_el),this.attribution_el.innerHTML=t,this.attribution_el.title=this.attribution_el.textContent.replace(/\\s*\\n\\s*/g,\" \")}}_map_data(){this.initial_extent=this.get_extent();const t=this.model.tile_source.get_level_by_extent(this.initial_extent,this.map_frame.bbox.height,this.map_frame.bbox.width),e=this.model.tile_source.snap_to_zoom_level(this.initial_extent,this.map_frame.bbox.height,this.map_frame.bbox.width,t);this.x_range.start=e[0],this.y_range.start=e[1],this.x_range.end=e[2],this.y_range.end=e[3],this.x_range instanceof l.Range1d&&(this.x_range.reset_start=e[0],this.x_range.reset_end=e[2]),this.y_range instanceof l.Range1d&&(this.y_range.reset_start=e[1],this.y_range.reset_end=e[3]),this._update_attribution()}_create_tile(t,e,i,s,_=!1){const n=this.model.tile_source.tile_xyz_to_quadkey(t,e,i),a=this.model.tile_source.tile_xyz_to_key(t,e,i);if(this.model.tile_source.tiles.has(a))return;const[o,r,h]=this.model.tile_source.normalize_xyz(t,e,i),l=this.model.tile_source.get_image_url(o,r,h),d={img:void 0,tile_coords:[t,e,i],normalized_coords:[o,r,h],quadkey:n,cache_key:a,bounds:s,loaded:!1,finished:!1,x_coord:s[0],y_coord:s[3]};this.model.tile_source.tiles.set(a,d),this._tiles.push(d),new m.ImageLoader(l,{loaded:t=>{Object.assign(d,{img:t,loaded:!0}),_?(d.finished=!0,this.notify_finished()):this.request_render()},failed(){d.finished=!0}})}_enforce_aspect_ratio(){if(this._last_height!==this.map_frame.bbox.height||this._last_width!==this.map_frame.bbox.width){const t=this.get_extent(),e=this.model.tile_source.get_level_by_extent(t,this.map_frame.bbox.height,this.map_frame.bbox.width),i=this.model.tile_source.snap_to_zoom_level(t,this.map_frame.bbox.height,this.map_frame.bbox.width,e);this.x_range.setv({start:i[0],end:i[2]}),this.y_range.setv({start:i[1],end:i[3]}),this.extent=i,this._last_height=this.map_frame.bbox.height,this._last_width=this.map_frame.bbox.width}}has_finished(){if(!super.has_finished())return!1;if(0==this._tiles.length)return!1;for(const t of this._tiles)if(!t.finished)return!1;return!0}_render(){null==this.map_initialized&&(this._set_data(),this._map_data(),this.map_initialized=!0),this._enforce_aspect_ratio(),this._update(),null!=this.prefetch_timer&&clearTimeout(this.prefetch_timer),this.prefetch_timer=setTimeout(this._prefetch_tiles.bind(this),500),this.has_finished()&&this.notify_finished()}_draw_tile(t){const e=this.model.tile_source.tiles.get(t);if(null!=e&&e.loaded){const[[t],[i]]=this.coordinates.map_to_screen([e.bounds[0]],[e.bounds[3]]),[[s],[_]]=this.coordinates.map_to_screen([e.bounds[2]],[e.bounds[1]]),n=s-t,a=_-i,o=t,r=i,h=this.map_canvas.getImageSmoothingEnabled();this.map_canvas.setImageSmoothingEnabled(this.model.smoothing),this.map_canvas.drawImage(e.img,o,r,n,a),this.map_canvas.setImageSmoothingEnabled(h),e.finished=!0}}_set_rect(){const t=this.plot_model.outline_line_width,e=this.map_frame.bbox.left+t/2,i=this.map_frame.bbox.top+t/2,s=this.map_frame.bbox.width-t,_=this.map_frame.bbox.height-t;this.map_canvas.rect(e,i,s,_),this.map_canvas.clip()}_render_tiles(t){this.map_canvas.save(),this._set_rect(),this.map_canvas.globalAlpha=this.model.alpha;for(const e of t)this._draw_tile(e);this.map_canvas.restore()}_prefetch_tiles(){const{tile_source:t}=this.model,e=this.get_extent(),i=this.map_frame.bbox.height,s=this.map_frame.bbox.width,_=this.model.tile_source.get_level_by_extent(e,i,s),n=this.model.tile_source.get_tiles_by_extent(e,_);for(let e=0,i=Math.min(10,n.length);ei&&(s=this.extent,o=i,r=!0),r&&(this.x_range.setv({start:s[0],end:s[2]}),this.y_range.setv({start:s[1],end:s[3]})),this.extent=s;const h=t.get_tiles_by_extent(s,o),l=[],d=[],m=[],u=[];for(const e of h){const[i,s,n]=e,a=t.tile_xyz_to_key(i,s,n),o=t.tiles.get(a);if(null!=o&&o.loaded)d.push(a);else if(this.model.render_parents){const[e,a,o]=t.get_closest_parent_by_tile_xyz(i,s,n),r=t.tile_xyz_to_key(e,a,o),h=t.tiles.get(r);if(null!=h&&h.loaded&&!(0,c.includes)(m,r)&&m.push(r),_){const e=t.children_by_tile_xyz(i,s,n);for(const[i,s,_]of e){const e=t.tile_xyz_to_key(i,s,_);t.tiles.has(e)&&u.push(e)}}}null==o&&l.push(e)}this._render_tiles(m),this._render_tiles(u),this._render_tiles(d),null!=this.render_timer&&clearTimeout(this.render_timer),this.render_timer=setTimeout((()=>this._fetch_tiles(l)),65)}}i.TileRendererView=g,g.__name__=\"TileRendererView\";class b extends h.Renderer{constructor(t){super(t)}}i.TileRenderer=b,a=b,b.__name__=\"TileRenderer\",a.prototype.default_view=g,a.define((({Boolean:t,Number:e,Ref:i})=>({alpha:[e,1],smoothing:[t,!0],tile_source:[i(o.TileSource),()=>new r.WMTSTileSource],render_parents:[t,!0]}))),a.override({level:\"image\"})},\n", + " function _(t,e,r,o,s){o();const c=t(348);class i extends c.MercatorTileSource{constructor(t){super(t)}get_image_url(t,e,r){const o=this.string_lookup_replace(this.url,this.extra_url_vars),[s,c,i]=this.tms_to_wmts(t,e,r);return o.replace(\"{X}\",s.toString()).replace(\"{Y}\",c.toString()).replace(\"{Z}\",i.toString())}}r.WMTSTileSource=i,i.__name__=\"WMTSTileSource\"},\n", + " function _(t,o,i,b,r){b(),i.root=\"bk-root\",i.tile_attribution=\"bk-tile-attribution\",i.default=\".bk-root .bk-tile-attribution a{color:black;}\"},\n", + " function _(e,r,t,c,o){c();const i=e(348);class l extends i.MercatorTileSource{constructor(e){super(e)}get_image_url(e,r,t){return this.string_lookup_replace(this.url,this.extra_url_vars).replace(\"{X}\",e.toString()).replace(\"{Y}\",r.toString()).replace(\"{Z}\",t.toString())}}t.TMSTileSource=l,l.__name__=\"TMSTileSource\"},\n", + " function _(e,t,u,a,r){a(),r(\"CanvasTexture\",e(357).CanvasTexture),r(\"ImageURLTexture\",e(359).ImageURLTexture),r(\"Texture\",e(358).Texture)},\n", + " function _(t,e,n,c,s){var r;c();const o=t(358),a=t(34);class u extends o.Texture{constructor(t){super(t)}get func(){const t=(0,a.use_strict)(this.code);return new Function(\"ctx\",\"color\",\"scale\",\"weight\",t)}get_pattern(t,e,n){const c=document.createElement(\"canvas\");c.width=e,c.height=e;const s=c.getContext(\"2d\");return this.func.call(this,s,t,e,n),c}}n.CanvasTexture=u,r=u,u.__name__=\"CanvasTexture\",r.define((({String:t})=>({code:[t]})))},\n", + " function _(e,t,n,r,o){var i;r();const s=e(53),u=e(20);class c extends s.Model{constructor(e){super(e)}}n.Texture=c,i=c,c.__name__=\"Texture\",i.define((()=>({repetition:[u.TextureRepetition,\"repeat\"]})))},\n", + " function _(e,t,i,r,n){var a;r();const s=e(358),o=e(136);class u extends s.Texture{constructor(e){super(e)}initialize(){super.initialize(),this._loader=new o.ImageLoader(this.url)}get_pattern(e,t,i){const{_loader:r}=this;return this._loader.finished?r.image:r.promise}}i.ImageURLTexture=u,a=u,u.__name__=\"ImageURLTexture\",a.define((({String:e})=>({url:[e]})))},\n", + " function _(o,l,T,e,t){e(),t(\"ActionTool\",o(238).ActionTool),t(\"CustomAction\",o(361).CustomAction),t(\"HelpTool\",o(239).HelpTool),t(\"RedoTool\",o(362).RedoTool),t(\"ResetTool\",o(363).ResetTool),t(\"SaveTool\",o(364).SaveTool),t(\"UndoTool\",o(365).UndoTool),t(\"ZoomInTool\",o(366).ZoomInTool),t(\"ZoomOutTool\",o(369).ZoomOutTool),t(\"ButtonTool\",o(224).ButtonTool),t(\"EditTool\",o(370).EditTool),t(\"BoxEditTool\",o(371).BoxEditTool),t(\"FreehandDrawTool\",o(372).FreehandDrawTool),t(\"PointDrawTool\",o(373).PointDrawTool),t(\"PolyDrawTool\",o(374).PolyDrawTool),t(\"PolyTool\",o(375).PolyTool),t(\"PolyEditTool\",o(376).PolyEditTool),t(\"BoxSelectTool\",o(377).BoxSelectTool),t(\"BoxZoomTool\",o(379).BoxZoomTool),t(\"GestureTool\",o(223).GestureTool),t(\"LassoSelectTool\",o(380).LassoSelectTool),t(\"LineEditTool\",o(382).LineEditTool),t(\"PanTool\",o(384).PanTool),t(\"PolySelectTool\",o(381).PolySelectTool),t(\"RangeTool\",o(385).RangeTool),t(\"SelectTool\",o(378).SelectTool),t(\"TapTool\",o(386).TapTool),t(\"WheelPanTool\",o(387).WheelPanTool),t(\"WheelZoomTool\",o(388).WheelZoomTool),t(\"CrosshairTool\",o(389).CrosshairTool),t(\"CustomJSHover\",o(390).CustomJSHover),t(\"HoverTool\",o(391).HoverTool),t(\"InspectTool\",o(232).InspectTool),t(\"Tool\",o(222).Tool),t(\"ToolProxy\",o(394).ToolProxy),t(\"Toolbar\",o(221).Toolbar),t(\"ToolbarBase\",o(233).ToolbarBase),t(\"ProxyToolbar\",o(395).ProxyToolbar),t(\"ToolbarBox\",o(395).ToolbarBox)},\n", + " function _(t,o,e,s,n){var c;s();const i=t(238);class u extends i.ActionToolButtonView{css_classes(){return super.css_classes().concat(\"bk-toolbar-button-custom-action\")}}e.CustomActionButtonView=u,u.__name__=\"CustomActionButtonView\";class l extends i.ActionToolView{doit(){var t;null===(t=this.model.callback)||void 0===t||t.execute(this.model)}}e.CustomActionView=l,l.__name__=\"CustomActionView\";class a extends i.ActionTool{constructor(t){super(t),this.tool_name=\"Custom Action\",this.button_view=u}}e.CustomAction=a,c=a,a.__name__=\"CustomAction\",c.prototype.default_view=l,c.define((({Any:t,String:o,Nullable:e})=>({callback:[e(t)],icon:[o]}))),c.override({description:\"Perform a Custom Action\"})},\n", + " function _(e,o,t,i,s){var n;i();const l=e(238),_=e(228);class d extends l.ActionToolView{connect_signals(){super.connect_signals(),this.connect(this.plot_view.state.changed,(()=>this.model.disabled=!this.plot_view.state.can_redo))}doit(){const e=this.plot_view.state.redo();null!=(null==e?void 0:e.range)&&this.plot_view.trigger_ranges_update_event()}}t.RedoToolView=d,d.__name__=\"RedoToolView\";class a extends l.ActionTool{constructor(e){super(e),this.tool_name=\"Redo\",this.icon=_.tool_icon_redo}}t.RedoTool=a,n=a,a.__name__=\"RedoTool\",n.prototype.default_view=d,n.override({disabled:!0}),n.register_alias(\"redo\",(()=>new a))},\n", + " function _(e,o,t,s,i){var _;s();const n=e(238),l=e(228);class c extends n.ActionToolView{doit(){this.plot_view.reset()}}t.ResetToolView=c,c.__name__=\"ResetToolView\";class r extends n.ActionTool{constructor(e){super(e),this.tool_name=\"Reset\",this.icon=l.tool_icon_reset}}t.ResetTool=r,_=r,r.__name__=\"ResetTool\",_.prototype.default_view=c,_.register_alias(\"reset\",(()=>new r))},\n", + " function _(e,o,t,a,i){var s;a();const c=e(238),n=e(228);class l extends c.ActionToolView{async copy(){const e=await this.plot_view.to_blob(),o=new ClipboardItem({[e.type]:Promise.resolve(e)});await navigator.clipboard.write([o])}async save(e){const o=await this.plot_view.to_blob(),t=document.createElement(\"a\");t.href=URL.createObjectURL(o),t.download=e,t.target=\"_blank\",t.dispatchEvent(new MouseEvent(\"click\"))}doit(e=\"save\"){switch(e){case\"save\":this.save(\"bokeh_plot\");break;case\"copy\":this.copy()}}}t.SaveToolView=l,l.__name__=\"SaveToolView\";class r extends c.ActionTool{constructor(e){super(e),this.tool_name=\"Save\",this.icon=n.tool_icon_save}get menu(){return[{icon:\"bk-tool-icon-copy-to-clipboard\",tooltip:\"Copy image to clipboard\",if:()=>\"undefined\"!=typeof ClipboardItem,handler:()=>{this.do.emit(\"copy\")}}]}}t.SaveTool=r,s=r,r.__name__=\"SaveTool\",s.prototype.default_view=l,s.register_alias(\"save\",(()=>new r))},\n", + " function _(o,e,t,n,i){var s;n();const l=o(238),_=o(228);class d extends l.ActionToolView{connect_signals(){super.connect_signals(),this.connect(this.plot_view.state.changed,(()=>this.model.disabled=!this.plot_view.state.can_undo))}doit(){const o=this.plot_view.state.undo();null!=(null==o?void 0:o.range)&&this.plot_view.trigger_ranges_update_event()}}t.UndoToolView=d,d.__name__=\"UndoToolView\";class a extends l.ActionTool{constructor(o){super(o),this.tool_name=\"Undo\",this.icon=_.tool_icon_undo}}t.UndoTool=a,s=a,a.__name__=\"UndoTool\",s.prototype.default_view=d,s.override({disabled:!0}),s.register_alias(\"undo\",(()=>new a))},\n", + " function _(o,n,e,i,s){var t;i();const _=o(367),m=o(228);class a extends _.ZoomBaseToolView{}e.ZoomInToolView=a,a.__name__=\"ZoomInToolView\";class l extends _.ZoomBaseTool{constructor(o){super(o),this.sign=1,this.tool_name=\"Zoom In\",this.icon=m.tool_icon_zoom_in}}e.ZoomInTool=l,t=l,l.__name__=\"ZoomInTool\",t.prototype.default_view=a,t.register_alias(\"zoom_in\",(()=>new l({dimensions:\"both\"}))),t.register_alias(\"xzoom_in\",(()=>new l({dimensions:\"width\"}))),t.register_alias(\"yzoom_in\",(()=>new l({dimensions:\"height\"})))},\n", + " function _(o,t,e,i,s){var n;i();const a=o(238),_=o(20),l=o(368);class m extends a.ActionToolView{doit(){var o;const t=this.plot_view.frame,e=this.model.dimensions,i=\"width\"==e||\"both\"==e,s=\"height\"==e||\"both\"==e,n=(0,l.scale_range)(t,this.model.sign*this.model.factor,i,s);this.plot_view.state.push(\"zoom_out\",{range:n}),this.plot_view.update_range(n,{scrolling:!0,maintain_focus:this.model.maintain_focus}),null===(o=this.model.document)||void 0===o||o.interactive_start(this.plot_model),this.plot_view.trigger_ranges_update_event()}}e.ZoomBaseToolView=m,m.__name__=\"ZoomBaseToolView\";class h extends a.ActionTool{constructor(o){super(o),this.maintain_focus=!0}get tooltip(){return this._get_dim_tooltip(this.dimensions)}}e.ZoomBaseTool=h,n=h,h.__name__=\"ZoomBaseTool\",n.define((({Percent:o})=>({factor:[o,.1],dimensions:[_.Dimensions,\"both\"]})))},\n", + " function _(n,t,o,r,s){r();const c=n(10);function e(n,t,o){const[r,s]=[n.start,n.end],c=null!=o?o:(s+r)/2;return[r-(r-c)*t,s-(s-c)*t]}function a(n,[t,o]){const r=new Map;for(const[s,c]of n){const[n,e]=c.r_invert(t,o);r.set(s,{start:n,end:e})}return r}o.scale_highlow=e,o.get_info=a,o.scale_range=function(n,t,o=!0,r=!0,s){t=(0,c.clamp)(t,-.9,.9);const l=o?t:0,[u,i]=e(n.bbox.h_range,l,null!=s?s.x:void 0),_=a(n.x_scales,[u,i]),f=r?t:0,[g,x]=e(n.bbox.v_range,f,null!=s?s.y:void 0);return{xrs:_,yrs:a(n.y_scales,[g,x]),factor:t}}},\n", + " function _(o,e,t,i,s){var n;i();const _=o(367),a=o(228);class m extends _.ZoomBaseToolView{}t.ZoomOutToolView=m,m.__name__=\"ZoomOutToolView\";class l extends _.ZoomBaseTool{constructor(o){super(o),this.sign=-1,this.tool_name=\"Zoom Out\",this.icon=a.tool_icon_zoom_out}}t.ZoomOutTool=l,n=l,l.__name__=\"ZoomOutTool\",n.prototype.default_view=m,n.define((({Boolean:o})=>({maintain_focus:[o,!0]}))),n.register_alias(\"zoom_out\",(()=>new l({dimensions:\"both\"}))),n.register_alias(\"xzoom_out\",(()=>new l({dimensions:\"width\"}))),n.register_alias(\"yzoom_out\",(()=>new l({dimensions:\"height\"})))},\n", + " function _(e,t,s,o,n){var r;o();const i=e(9),c=e(8),a=e(11),_=e(175),l=e(223);class d extends l.GestureToolView{constructor(){super(...arguments),this._mouse_in_frame=!0}_select_mode(e){const{shiftKey:t,ctrlKey:s}=e;return t||s?t&&!s?\"append\":!t&&s?\"intersect\":t&&s?\"subtract\":void(0,a.unreachable)():\"replace\"}_move_enter(e){this._mouse_in_frame=!0}_move_exit(e){this._mouse_in_frame=!1}_map_drag(e,t,s){if(!this.plot_view.frame.bbox.contains(e,t))return null;const o=this.plot_view.renderer_view(s);if(null==o)return null;return[o.coordinates.x_scale.invert(e),o.coordinates.y_scale.invert(t)]}_delete_selected(e){const t=e.data_source,s=t.selected.indices;s.sort();for(const e of t.columns()){const o=t.get_array(e);for(let e=0;e({custom_icon:[n(t),null],empty_value:[e],renderers:[s(o(_.GlyphRenderer)),[]]})))},\n", + " function _(e,t,s,i,_){var o;i();const n=e(43),a=e(20),d=e(370),l=e(228);class r extends d.EditToolView{_tap(e){null==this._draw_basepoint&&null==this._basepoint&&this._select_event(e,this._select_mode(e),this.model.renderers)}_keyup(e){if(this.model.active&&this._mouse_in_frame)for(const t of this.model.renderers)if(e.keyCode===n.Keys.Backspace)this._delete_selected(t);else if(e.keyCode==n.Keys.Esc){t.data_source.selection_manager.clear()}}_set_extent([e,t],[s,i],_,o=!1){const n=this.model.renderers[0],a=this.plot_view.renderer_view(n);if(null==a)return;const d=n.glyph,l=n.data_source,[r,h]=a.coordinates.x_scale.r_invert(e,t),[p,u]=a.coordinates.y_scale.r_invert(s,i),[c,m]=[(r+h)/2,(p+u)/2],[f,b]=[h-r,u-p],[y,x]=[d.x.field,d.y.field],[w,v]=[d.width.field,d.height.field];if(_)this._pop_glyphs(l,this.model.num_objects),y&&l.get_array(y).push(c),x&&l.get_array(x).push(m),w&&l.get_array(w).push(f),v&&l.get_array(v).push(b),this._pad_empty_columns(l,[y,x,w,v]);else{const e=l.data[y].length-1;y&&(l.data[y][e]=c),x&&(l.data[x][e]=m),w&&(l.data[w][e]=f),v&&(l.data[v][e]=b)}this._emit_cds_changes(l,!0,!1,o)}_update_box(e,t=!1,s=!1){if(null==this._draw_basepoint)return;const i=[e.sx,e.sy],_=this.plot_view.frame,o=this.model.dimensions,n=this.model._get_dim_limits(this._draw_basepoint,i,_,o);if(null!=n){const[e,i]=n;this._set_extent(e,i,t,s)}}_doubletap(e){this.model.active&&(null!=this._draw_basepoint?(this._update_box(e,!1,!0),this._draw_basepoint=null):(this._draw_basepoint=[e.sx,e.sy],this._select_event(e,\"append\",this.model.renderers),this._update_box(e,!0,!1)))}_move(e){this._update_box(e,!1,!1)}_pan_start(e){if(e.shiftKey){if(null!=this._draw_basepoint)return;this._draw_basepoint=[e.sx,e.sy],this._update_box(e,!0,!1)}else{if(null!=this._basepoint)return;this._select_event(e,\"append\",this.model.renderers),this._basepoint=[e.sx,e.sy]}}_pan(e,t=!1,s=!1){if(e.shiftKey){if(null==this._draw_basepoint)return;this._update_box(e,t,s)}else{if(null==this._basepoint)return;this._drag_points(e,this.model.renderers)}}_pan_end(e){if(this._pan(e,!1,!0),e.shiftKey)this._draw_basepoint=null;else{this._basepoint=null;for(const e of this.model.renderers)this._emit_cds_changes(e.data_source,!1,!0,!0)}}}s.BoxEditToolView=r,r.__name__=\"BoxEditToolView\";class h extends d.EditTool{constructor(e){super(e),this.tool_name=\"Box Edit Tool\",this.icon=l.tool_icon_box_edit,this.event_type=[\"tap\",\"pan\",\"move\"],this.default_order=1}}s.BoxEditTool=h,o=h,h.__name__=\"BoxEditTool\",o.prototype.default_view=r,o.define((({Int:e})=>({dimensions:[a.Dimensions,\"both\"],num_objects:[e,0]})))},\n", + " function _(e,t,a,s,r){var _;s();const d=e(43),o=e(8),n=e(370),i=e(228);class l extends n.EditToolView{_draw(e,t,a=!1){if(!this.model.active)return;const s=this.model.renderers[0],r=this._map_drag(e.sx,e.sy,s);if(null==r)return;const[_,d]=r,n=s.data_source,i=s.glyph,[l,h]=[i.xs.field,i.ys.field];if(\"new\"==t)this._pop_glyphs(n,this.model.num_objects),l&&n.get_array(l).push([_]),h&&n.get_array(h).push([d]),this._pad_empty_columns(n,[l,h]);else if(\"add\"==t){if(l){const e=n.data[l].length-1;let t=n.get_array(l)[e];(0,o.isArray)(t)||(t=Array.from(t),n.data[l][e]=t),t.push(_)}if(h){const e=n.data[h].length-1;let t=n.get_array(h)[e];(0,o.isArray)(t)||(t=Array.from(t),n.data[h][e]=t),t.push(d)}}this._emit_cds_changes(n,!0,!0,a)}_pan_start(e){this._draw(e,\"new\")}_pan(e){this._draw(e,\"add\")}_pan_end(e){this._draw(e,\"add\",!0)}_tap(e){this._select_event(e,this._select_mode(e),this.model.renderers)}_keyup(e){if(this.model.active&&this._mouse_in_frame)for(const t of this.model.renderers)e.keyCode===d.Keys.Esc?t.data_source.selection_manager.clear():e.keyCode===d.Keys.Backspace&&this._delete_selected(t)}}a.FreehandDrawToolView=l,l.__name__=\"FreehandDrawToolView\";class h extends n.EditTool{constructor(e){super(e),this.tool_name=\"Freehand Draw Tool\",this.icon=i.tool_icon_freehand_draw,this.event_type=[\"pan\",\"tap\"],this.default_order=3}}a.FreehandDrawTool=h,_=h,h.__name__=\"FreehandDrawTool\",_.prototype.default_view=l,_.define((({Int:e})=>({num_objects:[e,0]}))),_.register_alias(\"freehand_draw\",(()=>new h))},\n", + " function _(e,t,s,o,a){var i;o();const n=e(43),_=e(370),r=e(228);class d extends _.EditToolView{_tap(e){if(this._select_event(e,this._select_mode(e),this.model.renderers).length||!this.model.add)return;const t=this.model.renderers[0],s=this._map_drag(e.sx,e.sy,t);if(null==s)return;const o=t.glyph,a=t.data_source,[i,n]=[o.x.field,o.y.field],[_,r]=s;this._pop_glyphs(a,this.model.num_objects),i&&a.get_array(i).push(_),n&&a.get_array(n).push(r),this._pad_empty_columns(a,[i,n]),a.change.emit(),a.data=a.data,a.properties.data.change.emit()}_keyup(e){if(this.model.active&&this._mouse_in_frame)for(const t of this.model.renderers)e.keyCode===n.Keys.Backspace?this._delete_selected(t):e.keyCode==n.Keys.Esc&&t.data_source.selection_manager.clear()}_pan_start(e){this.model.drag&&(this._select_event(e,\"append\",this.model.renderers),this._basepoint=[e.sx,e.sy])}_pan(e){this.model.drag&&null!=this._basepoint&&this._drag_points(e,this.model.renderers)}_pan_end(e){if(this.model.drag){this._pan(e);for(const e of this.model.renderers)this._emit_cds_changes(e.data_source,!1,!0,!0);this._basepoint=null}}}s.PointDrawToolView=d,d.__name__=\"PointDrawToolView\";class l extends _.EditTool{constructor(e){super(e),this.tool_name=\"Point Draw Tool\",this.icon=r.tool_icon_point_draw,this.event_type=[\"tap\",\"pan\",\"move\"],this.default_order=2}}s.PointDrawTool=l,i=l,l.__name__=\"PointDrawTool\",i.prototype.default_view=d,i.define((({Boolean:e,Int:t})=>({add:[e,!0],drag:[e,!0],num_objects:[t,0]})))},\n", + " function _(e,t,s,i,a){var r;i();const o=e(43),n=e(8),d=e(375),_=e(228);class h extends d.PolyToolView{constructor(){super(...arguments),this._drawing=!1,this._initialized=!1}_tap(e){this._drawing?this._draw(e,\"add\",!0):this._select_event(e,this._select_mode(e),this.model.renderers)}_draw(e,t,s=!1){const i=this.model.renderers[0],a=this._map_drag(e.sx,e.sy,i);if(this._initialized||this.activate(),null==a)return;const[r,o]=this._snap_to_vertex(e,...a),d=i.data_source,_=i.glyph,[h,l]=[_.xs.field,_.ys.field];if(\"new\"==t)this._pop_glyphs(d,this.model.num_objects),h&&d.get_array(h).push([r,r]),l&&d.get_array(l).push([o,o]),this._pad_empty_columns(d,[h,l]);else if(\"edit\"==t){if(h){const e=d.data[h][d.data[h].length-1];e[e.length-1]=r}if(l){const e=d.data[l][d.data[l].length-1];e[e.length-1]=o}}else if(\"add\"==t){if(h){const e=d.data[h].length-1;let t=d.get_array(h)[e];const s=t[t.length-1];t[t.length-1]=r,(0,n.isArray)(t)||(t=Array.from(t),d.data[h][e]=t),t.push(s)}if(l){const e=d.data[l].length-1;let t=d.get_array(l)[e];const s=t[t.length-1];t[t.length-1]=o,(0,n.isArray)(t)||(t=Array.from(t),d.data[l][e]=t),t.push(s)}}this._emit_cds_changes(d,!0,!1,s)}_show_vertices(){if(!this.model.active)return;const e=[],t=[];for(let s=0;sthis._show_vertices()))}this._initialized=!0}}deactivate(){this._drawing&&(this._remove(),this._drawing=!1),this.model.vertex_renderer&&this._hide_vertices()}}s.PolyDrawToolView=h,h.__name__=\"PolyDrawToolView\";class l extends d.PolyTool{constructor(e){super(e),this.tool_name=\"Polygon Draw Tool\",this.icon=_.tool_icon_poly_draw,this.event_type=[\"pan\",\"tap\",\"move\"],this.default_order=3}}s.PolyDrawTool=l,r=l,l.__name__=\"PolyDrawTool\",r.prototype.default_view=h,r.define((({Boolean:e,Int:t})=>({drag:[e,!0],num_objects:[t,0]})))},\n", + " function _(e,r,t,s,o){var _;s();const d=e(8),i=e(370);class l extends i.EditToolView{_set_vertices(e,r){const t=this.model.vertex_renderer.glyph,s=this.model.vertex_renderer.data_source,[o,_]=[t.x.field,t.y.field];o&&((0,d.isArray)(e)?s.data[o]=e:t.x={value:e}),_&&((0,d.isArray)(r)?s.data[_]=r:t.y={value:r}),this._emit_cds_changes(s,!0,!0,!1)}_hide_vertices(){this._set_vertices([],[])}_snap_to_vertex(e,r,t){if(this.model.vertex_renderer){const s=this._select_event(e,\"replace\",[this.model.vertex_renderer]),o=this.model.vertex_renderer.data_source,_=this.model.vertex_renderer.glyph,[d,i]=[_.x.field,_.y.field];if(s.length){const e=o.selected.indices[0];d&&(r=o.data[d][e]),i&&(t=o.data[i][e]),o.selection_manager.clear()}}return[r,t]}}t.PolyToolView=l,l.__name__=\"PolyToolView\";class n extends i.EditTool{constructor(e){super(e)}}t.PolyTool=n,_=n,n.__name__=\"PolyTool\",_.define((({AnyRef:e})=>({vertex_renderer:[e()]})))},\n", + " function _(e,t,s,r,i){var _;r();const d=e(43),n=e(8),l=e(375),a=e(228);class c extends l.PolyToolView{constructor(){super(...arguments),this._drawing=!1,this._cur_index=null}_doubletap(e){if(!this.model.active)return;const t=this._map_drag(e.sx,e.sy,this.model.vertex_renderer);if(null==t)return;const[s,r]=t,i=this._select_event(e,\"replace\",[this.model.vertex_renderer]),_=this.model.vertex_renderer.data_source,d=this.model.vertex_renderer.glyph,[n,l]=[d.x.field,d.y.field];if(i.length&&null!=this._selected_renderer){const e=_.selected.indices[0];this._drawing?(this._drawing=!1,_.selection_manager.clear()):(_.selected.indices=[e+1],n&&_.get_array(n).splice(e+1,0,s),l&&_.get_array(l).splice(e+1,0,r),this._drawing=!0),_.change.emit(),this._emit_cds_changes(this._selected_renderer.data_source)}else this._show_vertices(e)}_show_vertices(e){if(!this.model.active)return;const t=this.model.renderers[0],s=()=>this._update_vertices(t),r=null==t?void 0:t.data_source,i=this._select_event(e,\"replace\",this.model.renderers);if(!i.length)return this._set_vertices([],[]),this._selected_renderer=null,this._drawing=!1,this._cur_index=null,void(null!=r&&r.disconnect(r.properties.data.change,s));null!=r&&r.connect(r.properties.data.change,s),this._cur_index=i[0].data_source.selected.indices[0],this._update_vertices(i[0])}_update_vertices(e){const t=e.glyph,s=e.data_source,r=this._cur_index,[i,_]=[t.xs.field,t.ys.field];if(this._drawing)return;if(null==r&&(i||_))return;let d,l;i&&null!=r?(d=s.data[i][r],(0,n.isArray)(d)||(s.data[i][r]=d=Array.from(d))):d=t.xs.value,_&&null!=r?(l=s.data[_][r],(0,n.isArray)(l)||(s.data[_][r]=l=Array.from(l))):l=t.ys.value,this._selected_renderer=e,this._set_vertices(d,l)}_move(e){if(this._drawing&&null!=this._selected_renderer){const t=this.model.vertex_renderer,s=t.data_source,r=t.glyph,i=this._map_drag(e.sx,e.sy,t);if(null==i)return;let[_,d]=i;const n=s.selected.indices;[_,d]=this._snap_to_vertex(e,_,d),s.selected.indices=n;const[l,a]=[r.x.field,r.y.field],c=n[0];l&&(s.data[l][c]=_),a&&(s.data[a][c]=d),s.change.emit(),this._selected_renderer.data_source.change.emit()}}_tap(e){const t=this.model.vertex_renderer,s=this._map_drag(e.sx,e.sy,t);if(null==s)return;if(this._drawing&&this._selected_renderer){let[r,i]=s;const _=t.data_source,d=t.glyph,[n,l]=[d.x.field,d.y.field],a=_.selected.indices;[r,i]=this._snap_to_vertex(e,r,i);const c=a[0];if(_.selected.indices=[c+1],n){const e=_.get_array(n),t=e[c];e[c]=r,e.splice(c+1,0,t)}if(l){const e=_.get_array(l),t=e[c];e[c]=i,e.splice(c+1,0,t)}return _.change.emit(),void this._emit_cds_changes(this._selected_renderer.data_source,!0,!1,!0)}const r=this._select_mode(e);this._select_event(e,r,[t]),this._select_event(e,r,this.model.renderers)}_remove_vertex(){if(!this._drawing||!this._selected_renderer)return;const e=this.model.vertex_renderer,t=e.data_source,s=e.glyph,r=t.selected.indices[0],[i,_]=[s.x.field,s.y.field];i&&t.get_array(i).splice(r,1),_&&t.get_array(_).splice(r,1),t.change.emit(),this._emit_cds_changes(this._selected_renderer.data_source)}_pan_start(e){this._select_event(e,\"append\",[this.model.vertex_renderer]),this._basepoint=[e.sx,e.sy]}_pan(e){null!=this._basepoint&&(this._drag_points(e,[this.model.vertex_renderer]),this._selected_renderer&&this._selected_renderer.data_source.change.emit())}_pan_end(e){null!=this._basepoint&&(this._drag_points(e,[this.model.vertex_renderer]),this._emit_cds_changes(this.model.vertex_renderer.data_source,!1,!0,!0),this._selected_renderer&&this._emit_cds_changes(this._selected_renderer.data_source),this._basepoint=null)}_keyup(e){if(!this.model.active||!this._mouse_in_frame)return;let t;t=this._selected_renderer?[this.model.vertex_renderer]:this.model.renderers;for(const s of t)e.keyCode===d.Keys.Backspace?(this._delete_selected(s),this._selected_renderer&&this._emit_cds_changes(this._selected_renderer.data_source)):e.keyCode==d.Keys.Esc&&(this._drawing?(this._remove_vertex(),this._drawing=!1):this._selected_renderer&&this._hide_vertices(),s.data_source.selection_manager.clear())}deactivate(){this._selected_renderer&&(this._drawing&&(this._remove_vertex(),this._drawing=!1),this._hide_vertices())}}s.PolyEditToolView=c,c.__name__=\"PolyEditToolView\";class o extends l.PolyTool{constructor(e){super(e),this.tool_name=\"Poly Edit Tool\",this.icon=a.tool_icon_poly_edit,this.event_type=[\"tap\",\"pan\",\"move\"],this.default_order=4}}s.PolyEditTool=o,_=o,o.__name__=\"PolyEditTool\",_.prototype.default_view=c},\n", + " function _(e,t,o,s,i){var l;s();const n=e(378),_=e(116),c=e(20),r=e(228);class a extends n.SelectToolView{_compute_limits(e){const t=this.plot_view.frame,o=this.model.dimensions;let s=this._base_point;if(\"center\"==this.model.origin){const[t,o]=s,[i,l]=e;s=[t-(i-t),o-(l-o)]}return this.model._get_dim_limits(s,e,t,o)}_pan_start(e){const{sx:t,sy:o}=e;this._base_point=[t,o]}_pan(e){const{sx:t,sy:o}=e,s=[t,o],[i,l]=this._compute_limits(s);this.model.overlay.update({left:i[0],right:i[1],top:l[0],bottom:l[1]}),this.model.select_every_mousemove&&this._do_select(i,l,!1,this._select_mode(e))}_pan_end(e){const{sx:t,sy:o}=e,s=[t,o],[i,l]=this._compute_limits(s);this._do_select(i,l,!0,this._select_mode(e)),this.model.overlay.update({left:null,right:null,top:null,bottom:null}),this._base_point=null,this.plot_view.state.push(\"box_select\",{selection:this.plot_view.get_selection()})}_do_select([e,t],[o,s],i,l=\"replace\"){const n={type:\"rect\",sx0:e,sx1:t,sy0:o,sy1:s};this._select(n,i,l)}}o.BoxSelectToolView=a,a.__name__=\"BoxSelectToolView\";const h=()=>new _.BoxAnnotation({level:\"overlay\",top_units:\"screen\",left_units:\"screen\",bottom_units:\"screen\",right_units:\"screen\",fill_color:\"lightgrey\",fill_alpha:.5,line_color:\"black\",line_alpha:1,line_width:2,line_dash:[4,4]});class m extends n.SelectTool{constructor(e){super(e),this.tool_name=\"Box Select\",this.icon=r.tool_icon_box_select,this.event_type=\"pan\",this.default_order=30}get tooltip(){return this._get_dim_tooltip(this.dimensions)}}o.BoxSelectTool=m,l=m,m.__name__=\"BoxSelectTool\",l.prototype.default_view=a,l.define((({Boolean:e,Ref:t})=>({dimensions:[c.Dimensions,\"both\"],select_every_mousemove:[e,!1],overlay:[t(_.BoxAnnotation),h],origin:[c.BoxOrigin,\"corner\"]}))),l.register_alias(\"box_select\",(()=>new m)),l.register_alias(\"xbox_select\",(()=>new m({dimensions:\"width\"}))),l.register_alias(\"ybox_select\",(()=>new m({dimensions:\"height\"})))},\n", + " function _(e,t,s,n,r){var o;n();const c=e(223),i=e(175),a=e(339),l=e(176),d=e(66),_=e(20),h=e(43),p=e(251),u=e(15),m=e(11);class v extends c.GestureToolView{connect_signals(){super.connect_signals(),this.model.clear.connect((()=>this._clear()))}get computed_renderers(){const{renderers:e,names:t}=this.model,s=this.plot_model.data_renderers;return(0,d.compute_renderers)(e,s,t)}_computed_renderers_by_data_source(){var e;const t=new Map;for(const s of this.computed_renderers){let n;if(s instanceof i.GlyphRenderer)n=s.data_source;else{if(!(s instanceof a.GraphRenderer))continue;n=s.node_renderer.data_source}const r=null!==(e=t.get(n))&&void 0!==e?e:[];t.set(n,[...r,s])}return t}_select_mode(e){const{shiftKey:t,ctrlKey:s}=e;return t||s?t&&!s?\"append\":!t&&s?\"intersect\":t&&s?\"subtract\":void(0,m.unreachable)():this.model.mode}_keyup(e){e.keyCode==h.Keys.Esc&&this._clear()}_clear(){for(const e of this.computed_renderers)e.get_selection_manager().clear();const e=this.computed_renderers.map((e=>this.plot_view.renderer_view(e)));this.plot_view.request_paint(e)}_select(e,t,s){const n=this._computed_renderers_by_data_source();for(const[,r]of n){const n=r[0].get_selection_manager(),o=[];for(const e of r){const t=this.plot_view.renderer_view(e);null!=t&&o.push(t)}n.select(o,e,t,s)}null!=this.model.callback&&this._emit_callback(e),this._emit_selection_event(e,t)}_emit_selection_event(e,t=!0){const{x_scale:s,y_scale:n}=this.plot_view.frame;let r;switch(e.type){case\"point\":{const{sx:t,sy:o}=e,c=s.invert(t),i=n.invert(o);r=Object.assign(Object.assign({},e),{x:c,y:i});break}case\"span\":{const{sx:t,sy:o}=e,c=s.invert(t),i=n.invert(o);r=Object.assign(Object.assign({},e),{x:c,y:i});break}case\"rect\":{const{sx0:t,sx1:o,sy0:c,sy1:i}=e,[a,l]=s.r_invert(t,o),[d,_]=n.r_invert(c,i);r=Object.assign(Object.assign({},e),{x0:a,y0:d,x1:l,y1:_});break}case\"poly\":{const{sx:t,sy:o}=e,c=s.v_invert(t),i=n.v_invert(o);r=Object.assign(Object.assign({},e),{x:c,y:i});break}}this.plot_model.trigger_event(new p.SelectionGeometry(r,t))}}s.SelectToolView=v,v.__name__=\"SelectToolView\";class b extends c.GestureTool{constructor(e){super(e)}initialize(){super.initialize(),this.clear=new u.Signal0(this,\"clear\")}get menu(){return[{icon:\"bk-tool-icon-replace-mode\",tooltip:\"Replace the current selection\",active:()=>\"replace\"==this.mode,handler:()=>{this.mode=\"replace\",this.active=!0}},{icon:\"bk-tool-icon-append-mode\",tooltip:\"Append to the current selection (Shift)\",active:()=>\"append\"==this.mode,handler:()=>{this.mode=\"append\",this.active=!0}},{icon:\"bk-tool-icon-intersect-mode\",tooltip:\"Intersect with the current selection (Ctrl)\",active:()=>\"intersect\"==this.mode,handler:()=>{this.mode=\"intersect\",this.active=!0}},{icon:\"bk-tool-icon-subtract-mode\",tooltip:\"Subtract from the current selection (Shift+Ctrl)\",active:()=>\"subtract\"==this.mode,handler:()=>{this.mode=\"subtract\",this.active=!0}},null,{icon:\"bk-tool-icon-clear-selection\",tooltip:\"Clear the current selection (Esc)\",handler:()=>{this.clear.emit()}}]}}s.SelectTool=b,o=b,b.__name__=\"SelectTool\",o.define((({String:e,Array:t,Ref:s,Or:n,Auto:r})=>({renderers:[n(t(s(l.DataRenderer)),r),\"auto\"],names:[t(e),[]],mode:[_.SelectionMode,\"replace\"]})))},\n", + " function _(t,o,e,s,i){var n;s();const _=t(223),a=t(116),l=t(20),r=t(228);class h extends _.GestureToolView{_match_aspect(t,o,e){const s=e.bbox.aspect,i=e.bbox.h_range.end,n=e.bbox.h_range.start,_=e.bbox.v_range.end,a=e.bbox.v_range.start;let l=Math.abs(t[0]-o[0]),r=Math.abs(t[1]-o[1]);const h=0==r?0:l/r,[c]=h>=s?[1,h/s]:[s/h,1];let m,p,d,b;return t[0]<=o[0]?(m=t[0],p=t[0]+l*c,p>i&&(p=i)):(p=t[0],m=t[0]-l*c,m_&&(d=_)):(d=t[1],b=t[1]-l/s,bnew a.BoxAnnotation({level:\"overlay\",top_units:\"screen\",left_units:\"screen\",bottom_units:\"screen\",right_units:\"screen\",fill_color:\"lightgrey\",fill_alpha:.5,line_color:\"black\",line_alpha:1,line_width:2,line_dash:[4,4]});class m extends _.GestureTool{constructor(t){super(t),this.tool_name=\"Box Zoom\",this.icon=r.tool_icon_box_zoom,this.event_type=\"pan\",this.default_order=20}get tooltip(){return this._get_dim_tooltip(this.dimensions)}}e.BoxZoomTool=m,n=m,m.__name__=\"BoxZoomTool\",n.prototype.default_view=h,n.define((({Boolean:t,Ref:o})=>({dimensions:[l.Dimensions,\"both\"],overlay:[o(a.BoxAnnotation),c],match_aspect:[t,!1],origin:[l.BoxOrigin,\"corner\"]}))),n.register_alias(\"box_zoom\",(()=>new m({dimensions:\"both\"}))),n.register_alias(\"xbox_zoom\",(()=>new m({dimensions:\"width\"}))),n.register_alias(\"ybox_zoom\",(()=>new m({dimensions:\"height\"})))},\n", + " function _(s,e,t,o,_){var l;o();const i=s(378),a=s(217),c=s(381),n=s(43),h=s(228);class r extends i.SelectToolView{constructor(){super(...arguments),this.sxs=[],this.sys=[]}connect_signals(){super.connect_signals(),this.connect(this.model.properties.active.change,(()=>this._active_change()))}_active_change(){this.model.active||this._clear_overlay()}_keyup(s){s.keyCode==n.Keys.Enter&&this._clear_overlay()}_pan_start(s){this.sxs=[],this.sys=[];const{sx:e,sy:t}=s;this._append_overlay(e,t)}_pan(s){const[e,t]=this.plot_view.frame.bbox.clip(s.sx,s.sy);this._append_overlay(e,t),this.model.select_every_mousemove&&this._do_select(this.sxs,this.sys,!1,this._select_mode(s))}_pan_end(s){const{sxs:e,sys:t}=this;this._clear_overlay(),this._do_select(e,t,!0,this._select_mode(s)),this.plot_view.state.push(\"lasso_select\",{selection:this.plot_view.get_selection()})}_append_overlay(s,e){const{sxs:t,sys:o}=this;t.push(s),o.push(e),this.model.overlay.update({xs:t,ys:o})}_clear_overlay(){this.sxs=[],this.sys=[],this.model.overlay.update({xs:this.sxs,ys:this.sys})}_do_select(s,e,t,o){const _={type:\"poly\",sx:s,sy:e};this._select(_,t,o)}}t.LassoSelectToolView=r,r.__name__=\"LassoSelectToolView\";class y extends i.SelectTool{constructor(s){super(s),this.tool_name=\"Lasso Select\",this.icon=h.tool_icon_lasso_select,this.event_type=\"pan\",this.default_order=12}}t.LassoSelectTool=y,l=y,y.__name__=\"LassoSelectTool\",l.prototype.default_view=r,l.define((({Boolean:s,Ref:e})=>({select_every_mousemove:[s,!0],overlay:[e(a.PolyAnnotation),c.DEFAULT_POLY_OVERLAY]}))),l.register_alias(\"lasso_select\",(()=>new y))},\n", + " function _(e,t,s,l,o){var i;l();const a=e(378),_=e(217),c=e(43),n=e(9),h=e(228);class y extends a.SelectToolView{initialize(){super.initialize(),this.data={sx:[],sy:[]}}connect_signals(){super.connect_signals(),this.connect(this.model.properties.active.change,(()=>this._active_change()))}_active_change(){this.model.active||this._clear_data()}_keyup(e){e.keyCode==c.Keys.Enter&&this._clear_data()}_doubletap(e){this._do_select(this.data.sx,this.data.sy,!0,this._select_mode(e)),this.plot_view.state.push(\"poly_select\",{selection:this.plot_view.get_selection()}),this._clear_data()}_clear_data(){this.data={sx:[],sy:[]},this.model.overlay.update({xs:[],ys:[]})}_tap(e){const{sx:t,sy:s}=e;this.plot_view.frame.bbox.contains(t,s)&&(this.data.sx.push(t),this.data.sy.push(s),this.model.overlay.update({xs:(0,n.copy)(this.data.sx),ys:(0,n.copy)(this.data.sy)}))}_do_select(e,t,s,l){const o={type:\"poly\",sx:e,sy:t};this._select(o,s,l)}}s.PolySelectToolView=y,y.__name__=\"PolySelectToolView\";s.DEFAULT_POLY_OVERLAY=()=>new _.PolyAnnotation({level:\"overlay\",xs_units:\"screen\",ys_units:\"screen\",fill_color:\"lightgrey\",fill_alpha:.5,line_color:\"black\",line_alpha:1,line_width:2,line_dash:[4,4]});class d extends a.SelectTool{constructor(e){super(e),this.tool_name=\"Poly Select\",this.icon=h.tool_icon_polygon_select,this.event_type=\"tap\",this.default_order=11}}s.PolySelectTool=d,i=d,d.__name__=\"PolySelectTool\",i.prototype.default_view=y,i.define((({Ref:e})=>({overlay:[e(_.PolyAnnotation),s.DEFAULT_POLY_OVERLAY]}))),i.register_alias(\"poly_select\",(()=>new d))},\n", + " function _(e,t,s,i,r){var n;i();const _=e(20),d=e(383),o=e(228);class l extends d.LineToolView{constructor(){super(...arguments),this._drawing=!1}_doubletap(e){if(!this.model.active)return;const t=this.model.renderers;for(const s of t){1==this._select_event(e,\"replace\",[s]).length&&(this._selected_renderer=s)}this._show_intersections(),this._update_line_cds()}_show_intersections(){if(!this.model.active)return;if(null==this._selected_renderer)return;if(!this.model.renderers.length)return this._set_intersection([],[]),this._selected_renderer=null,void(this._drawing=!1);const e=this._selected_renderer.data_source,t=this._selected_renderer.glyph,[s,i]=[t.x.field,t.y.field],r=e.get_array(s),n=e.get_array(i);this._set_intersection(r,n)}_tap(e){const t=this.model.intersection_renderer;if(null==this._map_drag(e.sx,e.sy,t))return;if(this._drawing&&this._selected_renderer){const s=this._select_mode(e);if(0==this._select_event(e,s,[t]).length)return}const s=this._select_mode(e);this._select_event(e,s,[t]),this._select_event(e,s,this.model.renderers)}_update_line_cds(){if(null==this._selected_renderer)return;const e=this.model.intersection_renderer.glyph,t=this.model.intersection_renderer.data_source,[s,i]=[e.x.field,e.y.field];if(s&&i){const e=t.data[s],r=t.data[i];this._selected_renderer.data_source.data[s]=e,this._selected_renderer.data_source.data[i]=r}this._emit_cds_changes(this._selected_renderer.data_source,!0,!0,!1)}_pan_start(e){this._select_event(e,\"append\",[this.model.intersection_renderer]),this._basepoint=[e.sx,e.sy]}_pan(e){null!=this._basepoint&&(this._drag_points(e,[this.model.intersection_renderer],this.model.dimensions),this._selected_renderer&&this._selected_renderer.data_source.change.emit())}_pan_end(e){null!=this._basepoint&&(this._drag_points(e,[this.model.intersection_renderer]),this._emit_cds_changes(this.model.intersection_renderer.data_source,!1,!0,!0),this._selected_renderer&&this._emit_cds_changes(this._selected_renderer.data_source),this._basepoint=null)}activate(){this._drawing=!0}deactivate(){this._selected_renderer&&(this._drawing&&(this._drawing=!1),this._hide_intersections())}}s.LineEditToolView=l,l.__name__=\"LineEditToolView\";class h extends d.LineTool{constructor(e){super(e),this.tool_name=\"Line Edit Tool\",this.icon=o.tool_icon_line_edit,this.event_type=[\"tap\",\"pan\",\"move\"],this.default_order=4}get tooltip(){return this._get_dim_tooltip(this.dimensions)}}s.LineEditTool=h,n=h,h.__name__=\"LineEditTool\",n.prototype.default_view=l,n.define((()=>({dimensions:[_.Dimensions,\"both\"]})))},\n", + " function _(e,i,n,t,s){var o;t();const r=e(8),_=e(370);class d extends _.EditToolView{_set_intersection(e,i){const n=this.model.intersection_renderer.glyph,t=this.model.intersection_renderer.data_source,[s,o]=[n.x.field,n.y.field];s&&((0,r.isArray)(e)?t.data[s]=e:n.x={value:e}),o&&((0,r.isArray)(i)?t.data[o]=i:n.y={value:i}),this._emit_cds_changes(t,!0,!0,!1)}_hide_intersections(){this._set_intersection([],[])}}n.LineToolView=d,d.__name__=\"LineToolView\";class a extends _.EditTool{constructor(e){super(e)}}n.LineTool=a,o=a,a.__name__=\"LineTool\",o.define((({AnyRef:e})=>({intersection_renderer:[e()]})))},\n", + " function _(t,s,n,e,i){e();const o=t(1);var a;const _=t(223),l=t(20),r=(0,o.__importStar)(t(228));function h(t,s,n){const e=new Map;for(const[i,o]of t){const[t,a]=o.r_invert(s,n);e.set(i,{start:t,end:a})}return e}n.update_ranges=h;class d extends _.GestureToolView{_pan_start(t){var s;this.last_dx=0,this.last_dy=0;const{sx:n,sy:e}=t,i=this.plot_view.frame.bbox;if(!i.contains(n,e)){const t=i.h_range,s=i.v_range;(nt.end)&&(this.v_axis_only=!0),(es.end)&&(this.h_axis_only=!0)}null===(s=this.model.document)||void 0===s||s.interactive_start(this.plot_model)}_pan(t){var s;this._update(t.deltaX,t.deltaY),null===(s=this.model.document)||void 0===s||s.interactive_start(this.plot_model)}_pan_end(t){this.h_axis_only=!1,this.v_axis_only=!1,null!=this.pan_info&&this.plot_view.state.push(\"pan\",{range:this.pan_info}),this.plot_view.trigger_ranges_update_event()}_update(t,s){const n=this.plot_view.frame,e=t-this.last_dx,i=s-this.last_dy,o=n.bbox.h_range,a=o.start-e,_=o.end-e,l=n.bbox.v_range,r=l.start-i,d=l.end-i,p=this.model.dimensions;let c,u,m,v,x,g;\"width\"!=p&&\"both\"!=p||this.v_axis_only?(c=o.start,u=o.end,m=0):(c=a,u=_,m=-e),\"height\"!=p&&\"both\"!=p||this.h_axis_only?(v=l.start,x=l.end,g=0):(v=r,x=d,g=-i),this.last_dx=t,this.last_dy=s;const{x_scales:w,y_scales:y}=n,f=h(w,c,u),b=h(y,v,x);this.pan_info={xrs:f,yrs:b,sdx:m,sdy:g},this.plot_view.update_range(this.pan_info,{panning:!0})}}n.PanToolView=d,d.__name__=\"PanToolView\";class p extends _.GestureTool{constructor(t){super(t),this.tool_name=\"Pan\",this.event_type=\"pan\",this.default_order=10}get tooltip(){return this._get_dim_tooltip(this.dimensions)}}n.PanTool=p,a=p,p.__name__=\"PanTool\",a.prototype.default_view=d,a.define((()=>({dimensions:[l.Dimensions,\"both\",{on_update(t,s){switch(t){case\"both\":s.icon=r.tool_icon_pan;break;case\"width\":s.icon=r.tool_icon_xpan;break;case\"height\":s.icon=r.tool_icon_ypan}}}]}))),a.register_alias(\"pan\",(()=>new p({dimensions:\"both\"}))),a.register_alias(\"xpan\",(()=>new p({dimensions:\"width\"}))),a.register_alias(\"ypan\",(()=>new p({dimensions:\"height\"})))},\n", + " function _(e,t,i,s,n){var l;s();const a=e(116),r=e(58),o=e(19),_=e(223),h=e(228);function d(e){switch(e){case 1:return 2;case 2:return 1;case 4:return 5;case 5:return 4;default:return e}}function u(e,t,i,s){if(null==t)return!1;const n=i.compute(t);return Math.abs(e-n)n.right)&&(l=!1)}if(null!=n.bottom&&null!=n.top){const e=s.invert(t);(en.top)&&(l=!1)}return l}function g(e,t,i){let s=0;return e>=i.start&&e<=i.end&&(s+=1),t>=i.start&&t<=i.end&&(s+=1),s}function y(e,t,i,s){const n=t.compute(e),l=t.invert(n+i);return l>=s.start&&l<=s.end?l:e}function f(e,t,i){return e>t.start?(t.end=e,i):(t.end=t.start,t.start=e,d(i))}function v(e,t,i){return e=o&&(e.start=a,e.end=r)}i.flip_side=d,i.is_near=u,i.is_inside=c,i.sides_inside=g,i.compute_value=y,i.update_range_end_side=f,i.update_range_start_side=v,i.update_range=m;class p extends _.GestureToolView{initialize(){super.initialize(),this.side=0,this.model.update_overlay_from_ranges()}connect_signals(){super.connect_signals(),null!=this.model.x_range&&this.connect(this.model.x_range.change,(()=>this.model.update_overlay_from_ranges())),null!=this.model.y_range&&this.connect(this.model.y_range.change,(()=>this.model.update_overlay_from_ranges()))}_pan_start(e){this.last_dx=0,this.last_dy=0;const t=this.model.x_range,i=this.model.y_range,{frame:s}=this.plot_view,n=s.x_scale,l=s.y_scale,r=this.model.overlay,{left:o,right:_,top:h,bottom:d}=r,g=this.model.overlay.line_width+a.EDGE_TOLERANCE;null!=t&&this.model.x_interaction&&(u(e.sx,o,n,g)?this.side=1:u(e.sx,_,n,g)?this.side=2:c(e.sx,e.sy,n,l,r)&&(this.side=3)),null!=i&&this.model.y_interaction&&(0==this.side&&u(e.sy,d,l,g)&&(this.side=4),0==this.side&&u(e.sy,h,l,g)?this.side=5:c(e.sx,e.sy,n,l,this.model.overlay)&&(3==this.side?this.side=7:this.side=6))}_pan(e){const t=this.plot_view.frame,i=e.deltaX-this.last_dx,s=e.deltaY-this.last_dy,n=this.model.x_range,l=this.model.y_range,a=t.x_scale,r=t.y_scale;if(null!=n)if(3==this.side||7==this.side)m(n,a,i,t.x_range);else if(1==this.side){const e=y(n.start,a,i,t.x_range);this.side=v(e,n,this.side)}else if(2==this.side){const e=y(n.end,a,i,t.x_range);this.side=f(e,n,this.side)}if(null!=l)if(6==this.side||7==this.side)m(l,r,s,t.y_range);else if(4==this.side){const e=y(l.start,r,s,t.y_range);this.side=v(e,l,this.side)}else if(5==this.side){const e=y(l.end,r,s,t.y_range);this.side=f(e,l,this.side)}this.last_dx=e.deltaX,this.last_dy=e.deltaY}_pan_end(e){this.side=0,this.plot_view.trigger_ranges_update_event()}}i.RangeToolView=p,p.__name__=\"RangeToolView\";const x=()=>new a.BoxAnnotation({level:\"overlay\",fill_color:\"lightgrey\",fill_alpha:.5,line_color:\"black\",line_alpha:1,line_width:.5,line_dash:[2,2]});class w extends _.GestureTool{constructor(e){super(e),this.tool_name=\"Range Tool\",this.icon=h.tool_icon_range,this.event_type=\"pan\",this.default_order=1}initialize(){super.initialize(),this.overlay.in_cursor=\"grab\",this.overlay.ew_cursor=null!=this.x_range&&this.x_interaction?\"ew-resize\":null,this.overlay.ns_cursor=null!=this.y_range&&this.y_interaction?\"ns-resize\":null}update_overlay_from_ranges(){null==this.x_range&&null==this.y_range&&(this.overlay.left=null,this.overlay.right=null,this.overlay.bottom=null,this.overlay.top=null,o.logger.warn(\"RangeTool not configured with any Ranges.\")),null==this.x_range?(this.overlay.left=null,this.overlay.right=null):(this.overlay.left=this.x_range.start,this.overlay.right=this.x_range.end),null==this.y_range?(this.overlay.bottom=null,this.overlay.top=null):(this.overlay.bottom=this.y_range.start,this.overlay.top=this.y_range.end)}}i.RangeTool=w,l=w,w.__name__=\"RangeTool\",l.prototype.default_view=p,l.define((({Boolean:e,Ref:t,Nullable:i})=>({x_range:[i(t(r.Range1d)),null],x_interaction:[e,!0],y_range:[i(t(r.Range1d)),null],y_interaction:[e,!0],overlay:[t(a.BoxAnnotation),x]})))},\n", + " function _(e,t,s,o,i){var l;o();const a=e(378),n=e(20),c=e(228);class _ extends a.SelectToolView{_tap(e){\"tap\"==this.model.gesture&&this._handle_tap(e)}_doubletap(e){\"doubletap\"==this.model.gesture&&this._handle_tap(e)}_handle_tap(e){const{sx:t,sy:s}=e,o={type:\"point\",sx:t,sy:s};this._select(o,!0,this._select_mode(e))}_select(e,t,s){const{callback:o}=this.model;if(\"select\"==this.model.behavior){const i=this._computed_renderers_by_data_source();for(const[,l]of i){const i=l[0].get_selection_manager(),a=l.map((e=>this.plot_view.renderer_view(e))).filter((e=>null!=e));if(i.select(a,e,t,s)&&null!=o){const t=a[0].coordinates.x_scale.invert(e.sx),s=a[0].coordinates.y_scale.invert(e.sy),l={geometries:Object.assign(Object.assign({},e),{x:t,y:s}),source:i.source};o.execute(this.model,l)}}this._emit_selection_event(e),this.plot_view.state.push(\"tap\",{selection:this.plot_view.get_selection()})}else for(const t of this.computed_renderers){const s=this.plot_view.renderer_view(t);if(null==s)continue;const i=t.get_selection_manager();if(i.inspect(s,e)&&null!=o){const t=s.coordinates.x_scale.invert(e.sx),l=s.coordinates.y_scale.invert(e.sy),a={geometries:Object.assign(Object.assign({},e),{x:t,y:l}),source:i.source};o.execute(this.model,a)}}}}s.TapToolView=_,_.__name__=\"TapToolView\";class r extends a.SelectTool{constructor(e){super(e),this.tool_name=\"Tap\",this.icon=c.tool_icon_tap_select,this.event_type=\"tap\",this.default_order=10}}s.TapTool=r,l=r,r.__name__=\"TapTool\",l.prototype.default_view=_,l.define((({Any:e,Enum:t,Nullable:s})=>({behavior:[n.TapBehavior,\"select\"],gesture:[t(\"tap\",\"doubletap\"),\"tap\"],callback:[s(e)]}))),l.register_alias(\"click\",(()=>new r({behavior:\"inspect\"}))),l.register_alias(\"tap\",(()=>new r)),l.register_alias(\"doubletap\",(()=>new r({gesture:\"doubletap\"})))},\n", + " function _(e,t,s,n,i){var a;n();const o=e(223),l=e(20),_=e(228),r=e(384);class h extends o.GestureToolView{_scroll(e){let t=this.model.speed*e.delta;t>.9?t=.9:t<-.9&&(t=-.9),this._update_ranges(t)}_update_ranges(e){var t;const{frame:s}=this.plot_view,n=s.bbox.h_range,i=s.bbox.v_range,[a,o]=[n.start,n.end],[l,_]=[i.start,i.end];let h,d,p,c;switch(this.model.dimension){case\"height\":{const t=Math.abs(_-l);h=a,d=o,p=l-t*e,c=_-t*e;break}case\"width\":{const t=Math.abs(o-a);h=a-t*e,d=o-t*e,p=l,c=_;break}}const{x_scales:g,y_scales:u}=s,w={xrs:(0,r.update_ranges)(g,h,d),yrs:(0,r.update_ranges)(u,p,c),factor:e};this.plot_view.state.push(\"wheel_pan\",{range:w}),this.plot_view.update_range(w,{scrolling:!0}),null===(t=this.model.document)||void 0===t||t.interactive_start(this.plot_model,(()=>this.plot_view.trigger_ranges_update_event()))}}s.WheelPanToolView=h,h.__name__=\"WheelPanToolView\";class d extends o.GestureTool{constructor(e){super(e),this.tool_name=\"Wheel Pan\",this.icon=_.tool_icon_wheel_pan,this.event_type=\"scroll\",this.default_order=12}get tooltip(){return this._get_dim_tooltip(this.dimension)}}s.WheelPanTool=d,a=d,d.__name__=\"WheelPanTool\",a.prototype.default_view=h,a.define((()=>({dimension:[l.Dimension,\"width\"]}))),a.internal((({Number:e})=>({speed:[e,.001]}))),a.register_alias(\"xwheel_pan\",(()=>new d({dimension:\"width\"}))),a.register_alias(\"ywheel_pan\",(()=>new d({dimension:\"height\"})))},\n", + " function _(e,o,t,s,i){var n;s();const l=e(223),_=e(368),h=e(20),a=e(27),r=e(228);class m extends l.GestureToolView{_pinch(e){const{sx:o,sy:t,scale:s,ctrlKey:i,shiftKey:n}=e;let l;l=s>=1?20*(s-1):-20/s,this._scroll({type:\"wheel\",sx:o,sy:t,delta:l,ctrlKey:i,shiftKey:n})}_scroll(e){var o;const{frame:t}=this.plot_view,s=t.bbox.h_range,i=t.bbox.v_range,{sx:n,sy:l}=e,h=this.model.dimensions,a=(\"width\"==h||\"both\"==h)&&s.startthis.plot_view.trigger_ranges_update_event()))}}t.WheelZoomToolView=m,m.__name__=\"WheelZoomToolView\";class d extends l.GestureTool{constructor(e){super(e),this.tool_name=\"Wheel Zoom\",this.icon=r.tool_icon_wheel_zoom,this.event_type=a.is_mobile?\"pinch\":\"scroll\",this.default_order=10}get tooltip(){return this._get_dim_tooltip(this.dimensions)}}t.WheelZoomTool=d,n=d,d.__name__=\"WheelZoomTool\",n.prototype.default_view=m,n.define((({Boolean:e,Number:o})=>({dimensions:[h.Dimensions,\"both\"],maintain_focus:[e,!0],zoom_on_axis:[e,!0],speed:[o,1/600]}))),n.register_alias(\"wheel_zoom\",(()=>new d({dimensions:\"both\"}))),n.register_alias(\"xwheel_zoom\",(()=>new d({dimensions:\"width\"}))),n.register_alias(\"ywheel_zoom\",(()=>new d({dimensions:\"height\"})))},\n", + " function _(i,e,s,t,o){var n;t();const l=i(232),a=i(219),h=i(20),r=i(13),_=i(228);class c extends l.InspectToolView{_move(i){if(!this.model.active)return;const{sx:e,sy:s}=i;this.plot_view.frame.bbox.contains(e,s)?this._update_spans(e,s):this._update_spans(null,null)}_move_exit(i){this._update_spans(null,null)}_update_spans(i,e){const s=this.model.dimensions;\"width\"!=s&&\"both\"!=s||(this.model.spans.width.location=e),\"height\"!=s&&\"both\"!=s||(this.model.spans.height.location=i)}}s.CrosshairToolView=c,c.__name__=\"CrosshairToolView\";class p extends l.InspectTool{constructor(i){super(i),this.tool_name=\"Crosshair\",this.icon=_.tool_icon_crosshair}get tooltip(){return this._get_dim_tooltip(this.dimensions)}get synthetic_renderers(){return(0,r.values)(this.spans)}}s.CrosshairTool=p,n=p,p.__name__=\"CrosshairTool\",(()=>{function i(i,e){return new a.Span({for_hover:!0,dimension:e,location_units:\"screen\",level:\"overlay\",line_color:i.line_color,line_width:i.line_width,line_alpha:i.line_alpha})}n.prototype.default_view=c,n.define((({Alpha:i,Number:e,Color:s})=>({dimensions:[h.Dimensions,\"both\"],line_color:[s,\"black\"],line_width:[e,1],line_alpha:[i,1]}))),n.internal((({Struct:e,Ref:s})=>({spans:[e({width:s(a.Span),height:s(a.Span)}),e=>({width:i(e,\"width\"),height:i(e,\"height\")})]}))),n.register_alias(\"crosshair\",(()=>new p))})()},\n", + " function _(e,s,t,r,n){var o;r();const a=e(53),u=e(13),c=e(34);class i extends a.Model{constructor(e){super(e)}get values(){return(0,u.values)(this.args)}_make_code(e,s,t,r){return new Function(...(0,u.keys)(this.args),e,s,t,(0,c.use_strict)(r))}format(e,s,t){return this._make_code(\"value\",\"format\",\"special_vars\",this.code)(...this.values,e,s,t)}}t.CustomJSHover=i,o=i,i.__name__=\"CustomJSHover\",o.define((({Unknown:e,String:s,Dict:t})=>({args:[t(e),{}],code:[s,\"\"]})))},\n", + " function _(e,t,n,s,i){s();const o=e(1);var r;const l=e(232),a=e(390),c=e(241),_=e(175),d=e(339),p=e(176),h=e(177),u=e(283),m=e(186),y=e(187),f=e(189),x=(0,o.__importStar)(e(185)),v=e(152),w=e(43),g=e(22),b=e(13),k=e(234),C=e(8),S=e(113),T=e(20),$=e(228),R=e(15),A=e(66),M=(0,o.__importStar)(e(242)),V=e(392);function G(e,t,n,s,i,o){const r={x:i[e],y:o[e]},l={x:i[e+1],y:o[e+1]};let a,c;if(\"span\"==t.type)\"h\"==t.direction?(a=Math.abs(r.x-n),c=Math.abs(l.x-n)):(a=Math.abs(r.y-s),c=Math.abs(l.y-s));else{const e={x:n,y:s};a=x.dist_2_pts(r,e),c=x.dist_2_pts(l,e)}return adelete this._template_el)),this.on_change([e,t,n],(async()=>await this._update_ttmodels()))}async _update_ttmodels(){const{_ttmodels:e,computed_renderers:t}=this;e.clear();const{tooltips:n}=this.model;if(null!=n)for(const t of this.computed_renderers){const s=new c.Tooltip({custom:(0,C.isString)(n)||(0,C.isFunction)(n),attachment:this.model.attachment,show_arrow:this.model.show_arrow});t instanceof _.GlyphRenderer?e.set(t,s):t instanceof d.GraphRenderer&&(e.set(t.node_renderer,s),e.set(t.edge_renderer,s))}const s=await(0,S.build_views)(this._ttviews,[...e.values()],{parent:this.plot_view});for(const e of s)e.render();const i=[...function*(){for(const e of t)e instanceof _.GlyphRenderer?yield e:e instanceof d.GraphRenderer&&(yield e.node_renderer,yield e.edge_renderer)}()],o=this._slots.get(this._update);if(null!=o){const e=new Set(i.map((e=>e.data_source)));R.Signal.disconnect_receiver(this,o,e)}for(const e of i)this.connect(e.data_source.inspect,this._update)}get computed_renderers(){const{renderers:e,names:t}=this.model,n=this.plot_model.data_renderers;return(0,A.compute_renderers)(e,n,t)}get ttmodels(){return this._ttmodels}_clear(){this._inspect(1/0,1/0);for(const[,e]of this.ttmodels)e.clear()}_move(e){if(!this.model.active)return;const{sx:t,sy:n}=e;this.plot_view.frame.bbox.contains(t,n)?this._inspect(t,n):this._clear()}_move_exit(){this._clear()}_inspect(e,t){let n;if(\"mouse\"==this.model.mode)n={type:\"point\",sx:e,sy:t};else{n={type:\"span\",direction:\"vline\"==this.model.mode?\"h\":\"v\",sx:e,sy:t}}for(const e of this.computed_renderers){const t=e.get_selection_manager(),s=this.plot_view.renderer_view(e);null!=s&&t.inspect(s,n)}this._emit_callback(n)}_update([e,{geometry:t}]){var n,s;if(!this.model.active)return;if(\"point\"!=t.type&&\"span\"!=t.type)return;if(!(e instanceof _.GlyphRenderer))return;if(\"ignore\"==this.model.muted_policy&&e.muted)return;const i=this.ttmodels.get(e);if(null==i)return;const o=e.get_selection_manager(),r=o.inspectors.get(e),l=e.view.convert_selection_to_subset(r);if(r.is_empty()&&null==r.view)return void i.clear();const a=o.source,c=this.plot_view.renderer_view(e);if(null==c)return;const{sx:d,sy:p}=t,x=c.coordinates.x_scale,v=c.coordinates.y_scale,g=x.invert(d),k=v.invert(p),{glyph:C}=c,S=[];if(C instanceof m.PatchView){const[t,n]=[d,p],s={x:g,y:k,sx:d,sy:p,rx:t,ry:n,name:e.name};S.push([t,n,this._render_tooltips(a,-1,s)])}if(C instanceof y.HAreaView)for(const t of l.line_indices){const n=C._x1,s=C._x2,i=C._y,[o,r]=[d,p],c={index:t,x:g,y:k,sx:d,sy:p,data_x1:n,data_x2:s,data_y:i,rx:o,ry:r,indices:l.line_indices,name:e.name};S.push([o,r,this._render_tooltips(a,t,c)])}if(C instanceof f.VAreaView)for(const t of l.line_indices){const n=C._x,s=C._y1,i=C._y2,[o,r]=[d,p],c={index:t,x:g,y:k,sx:d,sy:p,data_x:n,data_y1:s,data_y2:i,rx:o,ry:r,indices:l.line_indices,name:e.name};S.push([o,r,this._render_tooltips(a,t,c)])}if(C instanceof h.LineView)for(const n of l.line_indices){let s,i,o=C._x[n+1],r=C._y[n+1],c=n;switch(this.model.line_policy){case\"interp\":[o,r]=C.get_interpolation_hit(n,t),s=x.compute(o),i=v.compute(r);break;case\"prev\":[[s,i],c]=H(C.sx,C.sy,n);break;case\"next\":[[s,i],c]=H(C.sx,C.sy,n+1);break;case\"nearest\":[[s,i],c]=G(n,t,d,p,C.sx,C.sy),o=C._x[c],r=C._y[c];break;default:[s,i]=[d,p]}const _={index:c,x:g,y:k,sx:d,sy:p,data_x:o,data_y:r,rx:s,ry:i,indices:l.line_indices,name:e.name};S.push([s,i,this._render_tooltips(a,c,_)])}for(const t of r.image_indices){const n={index:t.index,x:g,y:k,sx:d,sy:p,name:e.name},s=this._render_tooltips(a,t,n);S.push([d,p,s])}for(const i of l.indices)if(C instanceof u.MultiLineView&&!(0,b.isEmpty)(l.multiline_indices))for(const n of l.multiline_indices[i.toString()]){let s,o,r,c=C._xs.get(i)[n],h=C._ys.get(i)[n],u=n;switch(this.model.line_policy){case\"interp\":[c,h]=C.get_interpolation_hit(i,n,t),s=x.compute(c),o=v.compute(h);break;case\"prev\":[[s,o],u]=H(C.sxs.get(i),C.sys.get(i),n);break;case\"next\":[[s,o],u]=H(C.sxs.get(i),C.sys.get(i),n+1);break;case\"nearest\":[[s,o],u]=G(n,t,d,p,C.sxs.get(i),C.sys.get(i)),c=C._xs.get(i)[u],h=C._ys.get(i)[u];break;default:throw new Error(\"shouldn't have happened\")}r=e instanceof _.GlyphRenderer?e.view.convert_indices_from_subset([i])[0]:i;const m={index:r,x:g,y:k,sx:d,sy:p,data_x:c,data_y:h,segment_index:u,indices:l.multiline_indices,name:e.name};S.push([s,o,this._render_tooltips(a,r,m)])}else{const t=null===(n=C._x)||void 0===n?void 0:n[i],o=null===(s=C._y)||void 0===s?void 0:s[i];let r,c,h;if(\"snap_to_data\"==this.model.point_policy){let e=C.get_anchor_point(this.model.anchor,i,[d,p]);if(null==e&&(e=C.get_anchor_point(\"center\",i,[d,p]),null==e))continue;r=e.x,c=e.y}else[r,c]=[d,p];h=e instanceof _.GlyphRenderer?e.view.convert_indices_from_subset([i])[0]:i;const u={index:h,x:g,y:k,sx:d,sy:p,data_x:t,data_y:o,indices:l.indices,name:e.name};S.push([r,c,this._render_tooltips(a,h,u)])}if(0==S.length)i.clear();else{const{content:e}=i;(0,w.empty)(i.content);for(const[,,t]of S)null!=t&&e.appendChild(t);const[t,n]=S[S.length-1];i.setv({position:[t,n]},{check_eq:!1})}}_emit_callback(e){const{callback:t}=this.model;if(null!=t)for(const n of this.computed_renderers){if(!(n instanceof _.GlyphRenderer))continue;const s=this.plot_view.renderer_view(n);if(null==s)continue;const{x_scale:i,y_scale:o}=s.coordinates,r=i.invert(e.sx),l=o.invert(e.sy),a=n.data_source.inspected;t.execute(this.model,{geometry:Object.assign({x:r,y:l},e),renderer:n,index:a})}}_create_template(e){const t=(0,w.div)({style:{display:\"table\",borderSpacing:\"2px\"}});for(const[n]of e){const e=(0,w.div)({style:{display:\"table-row\"}});t.appendChild(e);const s=(0,w.div)({style:{display:\"table-cell\"},class:M.tooltip_row_label},0!=n.length?`${n}: `:\"\");e.appendChild(s);const i=(0,w.span)();i.dataset.value=\"\";const o=(0,w.span)({class:M.tooltip_color_block},\" \");o.dataset.swatch=\"\",(0,w.undisplay)(o);const r=(0,w.div)({style:{display:\"table-cell\"},class:M.tooltip_row_value},i,o);e.appendChild(r)}return t}_render_template(e,t,n,s,i){const o=e.cloneNode(!0),r=o.querySelectorAll(\"[data-value]\"),l=o.querySelectorAll(\"[data-swatch]\"),a=/\\$color(\\[.*\\])?:(\\w*)/,c=/\\$swatch:(\\w*)/;for(const[[,e],o]of(0,k.enumerate)(t)){const t=e.match(c),_=e.match(a);if(null!=t||null!=_){if(null!=t){const[,e]=t,i=n.get_column(e);if(null==i)r[o].textContent=`${e} unknown`;else{const e=(0,C.isNumber)(s)?i[s]:null;null!=e&&(l[o].style.backgroundColor=(0,g.color2css)(e),(0,w.display)(l[o]))}}if(null!=_){const[,e=\"\",t]=_,i=n.get_column(t);if(null==i){r[o].textContent=`${t} unknown`;continue}const a=e.indexOf(\"hex\")>=0,c=e.indexOf(\"swatch\")>=0,d=(0,C.isNumber)(s)?i[s]:null;if(null==d){r[o].textContent=\"(null)\";continue}r[o].textContent=a?(0,g.color2hex)(d):(0,g.color2css)(d),c&&(l[o].style.backgroundColor=(0,g.color2css)(d),(0,w.display)(l[o]))}}else{const t=(0,v.replace_placeholders)(e.replace(\"$~\",\"$data_\"),n,s,this.model.formatters,i);if((0,C.isString)(t))r[o].textContent=t;else for(const e of t)r[o].appendChild(e)}}return o}_render_tooltips(e,t,n){var s;const{tooltips:i}=this.model;if((0,C.isString)(i)){const s=(0,v.replace_placeholders)({html:i},e,t,this.model.formatters,n);return(0,w.div)(s)}if((0,C.isFunction)(i))return i(e,n);if(i instanceof V.Template)return this._template_view.update(e,t,n),this._template_view.el;if(null!=i){const o=null!==(s=this._template_el)&&void 0!==s?s:this._template_el=this._create_template(i);return this._render_template(o,i,e,t,n)}return null}}n.HoverToolView=z,z.__name__=\"HoverToolView\";class P extends l.InspectTool{constructor(e){super(e),this.tool_name=\"Hover\",this.icon=$.tool_icon_hover}}n.HoverTool=P,r=P,P.__name__=\"HoverTool\",r.prototype.default_view=z,r.define((({Any:e,Boolean:t,String:n,Array:s,Tuple:i,Dict:o,Or:r,Ref:l,Function:c,Auto:_,Nullable:d})=>({tooltips:[d(r(l(V.Template),n,s(i(n,n)),c())),[[\"index\",\"$index\"],[\"data (x, y)\",\"($x, $y)\"],[\"screen (x, y)\",\"($sx, $sy)\"]]],formatters:[o(r(l(a.CustomJSHover),v.FormatterType)),{}],renderers:[r(s(l(p.DataRenderer)),_),\"auto\"],names:[s(n),[]],mode:[T.HoverMode,\"mouse\"],muted_policy:[T.MutedPolicy,\"show\"],point_policy:[T.PointPolicy,\"snap_to_data\"],line_policy:[T.LinePolicy,\"nearest\"],show_arrow:[t,!0],anchor:[T.Anchor,\"center\"],attachment:[T.TooltipAttachment,\"horizontal\"],callback:[d(e)]}))),r.register_alias(\"hover\",(()=>new P))},\n", + " function _(e,t,s,n,a){n();const l=e(1);var i,_,o,r,c,d,p,u,m,w,f,h,x;const v=e(53),y=e(309),V=e(393);a(\"Styles\",V.Styles);const g=e(43),T=e(42),b=e(226),R=e(113),D=e(8),M=e(13),S=(0,l.__importStar)(e(242)),O=e(152);class C extends b.DOMView{}s.DOMNodeView=C,C.__name__=\"DOMNodeView\";class z extends v.Model{constructor(e){super(e)}}s.DOMNode=z,z.__name__=\"DOMNode\",z.__module__=\"bokeh.models.dom\";class P extends C{render(){super.render(),this.el.textContent=this.model.content}_createElement(){return document.createTextNode(\"\")}}s.TextView=P,P.__name__=\"TextView\";class A extends z{constructor(e){super(e)}}s.Text=A,i=A,A.__name__=\"Text\",i.prototype.default_view=P,i.define((({String:e})=>({content:[e,\"\"]})));class N extends C{}s.PlaceholderView=N,N.__name__=\"PlaceholderView\",N.tag_name=\"span\";class E extends z{constructor(e){super(e)}}s.Placeholder=E,_=E,E.__name__=\"Placeholder\",_.define((({})=>({})));class G extends N{update(e,t,s){this.el.textContent=t.toString()}}s.IndexView=G,G.__name__=\"IndexView\";class I extends E{constructor(e){super(e)}}s.Index=I,o=I,I.__name__=\"Index\",o.prototype.default_view=G,o.define((({})=>({})));class k extends N{update(e,t,s){const n=(0,O._get_column_value)(this.model.field,e,t),a=null==n?\"???\":`${n}`;this.el.textContent=a}}s.ValueRefView=k,k.__name__=\"ValueRefView\";class $ extends E{constructor(e){super(e)}}s.ValueRef=$,r=$,$.__name__=\"ValueRef\",r.prototype.default_view=k,r.define((({String:e})=>({field:[e]})));class B extends k{render(){super.render(),this.value_el=(0,g.span)(),this.swatch_el=(0,g.span)({class:S.tooltip_color_block},\" \"),this.el.appendChild(this.value_el),this.el.appendChild(this.swatch_el)}update(e,t,s){const n=(0,O._get_column_value)(this.model.field,e,t),a=null==n?\"???\":`${n}`;this.el.textContent=a}}s.ColorRefView=B,B.__name__=\"ColorRefView\";class L extends ${constructor(e){super(e)}}s.ColorRef=L,c=L,L.__name__=\"ColorRef\",c.prototype.default_view=B,c.define((({Boolean:e})=>({hex:[e,!0],swatch:[e,!0]})));class j extends C{constructor(){super(...arguments),this.child_views=new Map}async lazy_initialize(){await super.lazy_initialize();const e=this.model.children.filter((e=>e instanceof v.Model));await(0,R.build_views)(this.child_views,e,{parent:this})}render(){super.render();const{style:e}=this.model;if(null!=e)if(e instanceof V.Styles)for(const t of e){const e=t.get_value();if((0,D.isString)(e)){const s=t.attr.replace(/_/g,\"-\");this.el.style.hasOwnProperty(s)&&this.el.style.setProperty(s,e)}}else for(const[t,s]of(0,M.entries)(e)){const e=t.replace(/_/g,\"-\");this.el.style.hasOwnProperty(e)&&this.el.style.setProperty(e,s)}for(const e of this.model.children)if((0,D.isString)(e)){const t=document.createTextNode(e);this.el.appendChild(t)}else{this.child_views.get(e).renderTo(this.el)}}}s.DOMElementView=j,j.__name__=\"DOMElementView\";class q extends z{constructor(e){super(e)}}s.DOMElement=q,d=q,q.__name__=\"DOMElement\",d.define((({String:e,Array:t,Dict:s,Or:n,Nullable:a,Ref:l})=>({style:[a(n(l(V.Styles),s(e))),null],children:[t(n(e,l(z),l(y.LayoutDOM))),[]]})));class F extends T.View{}s.ActionView=F,F.__name__=\"ActionView\";class H extends v.Model{constructor(e){super(e)}}s.Action=H,p=H,H.__name__=\"Action\",H.__module__=\"bokeh.models.dom\",p.define((({})=>({})));class J extends j{constructor(){super(...arguments),this.action_views=new Map}async lazy_initialize(){await super.lazy_initialize(),await(0,R.build_views)(this.action_views,this.model.actions,{parent:this})}remove(){(0,R.remove_views)(this.action_views),super.remove()}update(e,t,s={}){!function n(a){for(const l of a.child_views.values())l instanceof N?l.update(e,t,s):l instanceof j&&n(l)}(this);for(const n of this.action_views.values())n.update(e,t,s)}}s.TemplateView=J,J.__name__=\"TemplateView\",J.tag_name=\"div\";class K extends q{}s.Template=K,u=K,K.__name__=\"Template\",u.prototype.default_view=J,u.define((({Array:e,Ref:t})=>({actions:[e(t(H)),[]]})));class Q extends j{}s.SpanView=Q,Q.__name__=\"SpanView\",Q.tag_name=\"span\";class U extends q{}s.Span=U,m=U,U.__name__=\"Span\",m.prototype.default_view=Q;class W extends j{}s.DivView=W,W.__name__=\"DivView\",W.tag_name=\"div\";class X extends q{}s.Div=X,w=X,X.__name__=\"Div\",w.prototype.default_view=W;class Y extends j{}s.TableView=Y,Y.__name__=\"TableView\",Y.tag_name=\"table\";class Z extends q{}s.Table=Z,f=Z,Z.__name__=\"Table\",f.prototype.default_view=Y;class ee extends j{}s.TableRowView=ee,ee.__name__=\"TableRowView\",ee.tag_name=\"tr\";class te extends q{}s.TableRow=te,h=te,te.__name__=\"TableRow\",h.prototype.default_view=ee;const se=e(41),ne=e(234);class ae extends F{update(e,t,s){for(const[e,s]of(0,ne.enumerate)(this.model.groups))e.visible=t==s}}s.ToggleGroupView=ae,ae.__name__=\"ToggleGroupView\";class le extends H{constructor(e){super(e)}}s.ToggleGroup=le,x=le,le.__name__=\"ToggleGroup\",x.prototype.default_view=ae,x.define((({Array:e,Ref:t})=>({groups:[e(t(se.RendererGroup)),[]]})))},\n", + " function _(l,n,u,_,e){var t;_();const o=l(53);class r extends o.Model{constructor(l){super(l)}}u.Styles=r,t=r,r.__name__=\"Styles\",r.__module__=\"bokeh.models.css\",t.define((({String:l,Nullable:n})=>({align_content:[n(l),null],align_items:[n(l),null],align_self:[n(l),null],alignment_baseline:[n(l),null],all:[n(l),null],animation:[n(l),null],animation_delay:[n(l),null],animation_direction:[n(l),null],animation_duration:[n(l),null],animation_fill_mode:[n(l),null],animation_iteration_count:[n(l),null],animation_name:[n(l),null],animation_play_state:[n(l),null],animation_timing_function:[n(l),null],backface_visibility:[n(l),null],background:[n(l),null],background_attachment:[n(l),null],background_clip:[n(l),null],background_color:[n(l),null],background_image:[n(l),null],background_origin:[n(l),null],background_position:[n(l),null],background_position_x:[n(l),null],background_position_y:[n(l),null],background_repeat:[n(l),null],background_size:[n(l),null],baseline_shift:[n(l),null],block_size:[n(l),null],border:[n(l),null],border_block_end:[n(l),null],border_block_end_color:[n(l),null],border_block_end_style:[n(l),null],border_block_end_width:[n(l),null],border_block_start:[n(l),null],border_block_start_color:[n(l),null],border_block_start_style:[n(l),null],border_block_start_width:[n(l),null],border_bottom:[n(l),null],border_bottom_color:[n(l),null],border_bottom_left_radius:[n(l),null],border_bottom_right_radius:[n(l),null],border_bottom_style:[n(l),null],border_bottom_width:[n(l),null],border_collapse:[n(l),null],border_color:[n(l),null],border_image:[n(l),null],border_image_outset:[n(l),null],border_image_repeat:[n(l),null],border_image_slice:[n(l),null],border_image_source:[n(l),null],border_image_width:[n(l),null],border_inline_end:[n(l),null],border_inline_end_color:[n(l),null],border_inline_end_style:[n(l),null],border_inline_end_width:[n(l),null],border_inline_start:[n(l),null],border_inline_start_color:[n(l),null],border_inline_start_style:[n(l),null],border_inline_start_width:[n(l),null],border_left:[n(l),null],border_left_color:[n(l),null],border_left_style:[n(l),null],border_left_width:[n(l),null],border_radius:[n(l),null],border_right:[n(l),null],border_right_color:[n(l),null],border_right_style:[n(l),null],border_right_width:[n(l),null],border_spacing:[n(l),null],border_style:[n(l),null],border_top:[n(l),null],border_top_color:[n(l),null],border_top_left_radius:[n(l),null],border_top_right_radius:[n(l),null],border_top_style:[n(l),null],border_top_width:[n(l),null],border_width:[n(l),null],bottom:[n(l),null],box_shadow:[n(l),null],box_sizing:[n(l),null],break_after:[n(l),null],break_before:[n(l),null],break_inside:[n(l),null],caption_side:[n(l),null],caret_color:[n(l),null],clear:[n(l),null],clip:[n(l),null],clip_path:[n(l),null],clip_rule:[n(l),null],color:[n(l),null],color_interpolation:[n(l),null],color_interpolation_filters:[n(l),null],column_count:[n(l),null],column_fill:[n(l),null],column_gap:[n(l),null],column_rule:[n(l),null],column_rule_color:[n(l),null],column_rule_style:[n(l),null],column_rule_width:[n(l),null],column_span:[n(l),null],column_width:[n(l),null],columns:[n(l),null],content:[n(l),null],counter_increment:[n(l),null],counter_reset:[n(l),null],css_float:[n(l),null],css_text:[n(l),null],cursor:[n(l),null],direction:[n(l),null],display:[n(l),null],dominant_baseline:[n(l),null],empty_cells:[n(l),null],fill:[n(l),null],fill_opacity:[n(l),null],fill_rule:[n(l),null],filter:[n(l),null],flex:[n(l),null],flex_basis:[n(l),null],flex_direction:[n(l),null],flex_flow:[n(l),null],flex_grow:[n(l),null],flex_shrink:[n(l),null],flex_wrap:[n(l),null],float:[n(l),null],flood_color:[n(l),null],flood_opacity:[n(l),null],font:[n(l),null],font_family:[n(l),null],font_feature_settings:[n(l),null],font_kerning:[n(l),null],font_size:[n(l),null],font_size_adjust:[n(l),null],font_stretch:[n(l),null],font_style:[n(l),null],font_synthesis:[n(l),null],font_variant:[n(l),null],font_variant_caps:[n(l),null],font_variant_east_asian:[n(l),null],font_variant_ligatures:[n(l),null],font_variant_numeric:[n(l),null],font_variant_position:[n(l),null],font_weight:[n(l),null],gap:[n(l),null],glyph_orientation_vertical:[n(l),null],grid:[n(l),null],grid_area:[n(l),null],grid_auto_columns:[n(l),null],grid_auto_flow:[n(l),null],grid_auto_rows:[n(l),null],grid_column:[n(l),null],grid_column_end:[n(l),null],grid_column_gap:[n(l),null],grid_column_start:[n(l),null],grid_gap:[n(l),null],grid_row:[n(l),null],grid_row_end:[n(l),null],grid_row_gap:[n(l),null],grid_row_start:[n(l),null],grid_template:[n(l),null],grid_template_areas:[n(l),null],grid_template_columns:[n(l),null],grid_template_rows:[n(l),null],height:[n(l),null],hyphens:[n(l),null],image_orientation:[n(l),null],image_rendering:[n(l),null],inline_size:[n(l),null],justify_content:[n(l),null],justify_items:[n(l),null],justify_self:[n(l),null],left:[n(l),null],letter_spacing:[n(l),null],lighting_color:[n(l),null],line_break:[n(l),null],line_height:[n(l),null],list_style:[n(l),null],list_style_image:[n(l),null],list_style_position:[n(l),null],list_style_type:[n(l),null],margin:[n(l),null],margin_block_end:[n(l),null],margin_block_start:[n(l),null],margin_bottom:[n(l),null],margin_inline_end:[n(l),null],margin_inline_start:[n(l),null],margin_left:[n(l),null],margin_right:[n(l),null],margin_top:[n(l),null],marker:[n(l),null],marker_end:[n(l),null],marker_mid:[n(l),null],marker_start:[n(l),null],mask:[n(l),null],mask_composite:[n(l),null],mask_image:[n(l),null],mask_position:[n(l),null],mask_repeat:[n(l),null],mask_size:[n(l),null],mask_type:[n(l),null],max_block_size:[n(l),null],max_height:[n(l),null],max_inline_size:[n(l),null],max_width:[n(l),null],min_block_size:[n(l),null],min_height:[n(l),null],min_inline_size:[n(l),null],min_width:[n(l),null],object_fit:[n(l),null],object_position:[n(l),null],opacity:[n(l),null],order:[n(l),null],orphans:[n(l),null],outline:[n(l),null],outline_color:[n(l),null],outline_offset:[n(l),null],outline_style:[n(l),null],outline_width:[n(l),null],overflow:[n(l),null],overflow_anchor:[n(l),null],overflow_wrap:[n(l),null],overflow_x:[n(l),null],overflow_y:[n(l),null],overscroll_behavior:[n(l),null],overscroll_behavior_block:[n(l),null],overscroll_behavior_inline:[n(l),null],overscroll_behavior_x:[n(l),null],overscroll_behavior_y:[n(l),null],padding:[n(l),null],padding_block_end:[n(l),null],padding_block_start:[n(l),null],padding_bottom:[n(l),null],padding_inline_end:[n(l),null],padding_inline_start:[n(l),null],padding_left:[n(l),null],padding_right:[n(l),null],padding_top:[n(l),null],page_break_after:[n(l),null],page_break_before:[n(l),null],page_break_inside:[n(l),null],paint_order:[n(l),null],perspective:[n(l),null],perspective_origin:[n(l),null],place_content:[n(l),null],place_items:[n(l),null],place_self:[n(l),null],pointer_events:[n(l),null],position:[n(l),null],quotes:[n(l),null],resize:[n(l),null],right:[n(l),null],rotate:[n(l),null],row_gap:[n(l),null],ruby_align:[n(l),null],ruby_position:[n(l),null],scale:[n(l),null],scroll_behavior:[n(l),null],shape_rendering:[n(l),null],stop_color:[n(l),null],stop_opacity:[n(l),null],stroke:[n(l),null],stroke_dasharray:[n(l),null],stroke_dashoffset:[n(l),null],stroke_linecap:[n(l),null],stroke_linejoin:[n(l),null],stroke_miterlimit:[n(l),null],stroke_opacity:[n(l),null],stroke_width:[n(l),null],tab_size:[n(l),null],table_layout:[n(l),null],text_align:[n(l),null],text_align_last:[n(l),null],text_anchor:[n(l),null],text_combine_upright:[n(l),null],text_decoration:[n(l),null],text_decoration_color:[n(l),null],text_decoration_line:[n(l),null],text_decoration_style:[n(l),null],text_emphasis:[n(l),null],text_emphasis_color:[n(l),null],text_emphasis_position:[n(l),null],text_emphasis_style:[n(l),null],text_indent:[n(l),null],text_justify:[n(l),null],text_orientation:[n(l),null],text_overflow:[n(l),null],text_rendering:[n(l),null],text_shadow:[n(l),null],text_transform:[n(l),null],text_underline_position:[n(l),null],top:[n(l),null],touch_action:[n(l),null],transform:[n(l),null],transform_box:[n(l),null],transform_origin:[n(l),null],transform_style:[n(l),null],transition:[n(l),null],transition_delay:[n(l),null],transition_duration:[n(l),null],transition_property:[n(l),null],transition_timing_function:[n(l),null],translate:[n(l),null],unicode_bidi:[n(l),null],user_select:[n(l),null],vertical_align:[n(l),null],visibility:[n(l),null],white_space:[n(l),null],widows:[n(l),null],width:[n(l),null],will_change:[n(l),null],word_break:[n(l),null],word_spacing:[n(l),null],word_wrap:[n(l),null],writing_mode:[n(l),null],z_index:[n(l),null]})))},\n", + " function _(t,o,e,n,s){var i;n();const l=t(15),c=t(53),r=t(224),a=t(232),u=t(234);class h extends c.Model{constructor(t){super(t)}get button_view(){return this.tools[0].button_view}get event_type(){return this.tools[0].event_type}get tooltip(){return this.tools[0].tooltip}get tool_name(){return this.tools[0].tool_name}get icon(){return this.tools[0].computed_icon}get computed_icon(){return this.icon}get toggleable(){const t=this.tools[0];return t instanceof a.InspectTool&&t.toggleable}initialize(){super.initialize(),this.do=new l.Signal0(this,\"do\")}connect_signals(){super.connect_signals(),this.connect(this.do,(()=>this.doit())),this.connect(this.properties.active.change,(()=>this.set_active()));for(const t of this.tools)this.connect(t.properties.active.change,(()=>{this.active=t.active}))}doit(){for(const t of this.tools)t.do.emit()}set_active(){for(const t of this.tools)t.active=this.active}get menu(){const{menu:t}=this.tools[0];if(null==t)return null;const o=[];for(const[e,n]of(0,u.enumerate)(t))if(null==e)o.push(null);else{const t=()=>{var t,o,e;for(const s of this.tools)null===(e=null===(o=null===(t=s.menu)||void 0===t?void 0:t[n])||void 0===o?void 0:o.handler)||void 0===e||e.call(o)};o.push(Object.assign(Object.assign({},e),{handler:t}))}return o}}e.ToolProxy=h,i=h,h.__name__=\"ToolProxy\",i.define((({Boolean:t,Array:o,Ref:e})=>({tools:[o(e(r.ButtonTool)),[]],active:[t,!1],disabled:[t,!1]})))},\n", + " function _(o,t,s,e,i){var n,r;e();const l=o(20),c=o(9),h=o(13),a=o(233),_=o(221),p=o(394),u=o(309),f=o(207);class y extends a.ToolbarBase{constructor(o){super(o)}initialize(){super.initialize(),this._merge_tools()}_merge_tools(){this._proxied_tools=[];const o={},t={},s={},e=[],i=[];for(const o of this.help)(0,c.includes)(i,o.redirect)||(e.push(o),i.push(o.redirect));this._proxied_tools.push(...e),this.help=e;for(const[o,t]of(0,h.entries)(this.gestures)){o in s||(s[o]={});for(const e of t.tools)e.type in s[o]||(s[o][e.type]=[]),s[o][e.type].push(e)}for(const t of this.inspectors)t.type in o||(o[t.type]=[]),o[t.type].push(t);for(const o of this.actions)o.type in t||(t[o.type]=[]),t[o.type].push(o);const n=(o,t=!1)=>{const s=new p.ToolProxy({tools:o,active:t});return this._proxied_tools.push(s),s};for(const o of(0,h.keys)(s)){const t=this.gestures[o];t.tools=[];for(const e of(0,h.keys)(s[o])){const i=s[o][e];if(i.length>0)if(\"multi\"==o)for(const o of i){const s=n([o]);t.tools.push(s),this.connect(s.properties.active.change,(()=>this._active_change(s)))}else{const o=n(i);t.tools.push(o),this.connect(o.properties.active.change,(()=>this._active_change(o)))}}}this.actions=[];for(const[o,s]of(0,h.entries)(t))if(\"CustomAction\"==o)for(const o of s)this.actions.push(n([o]));else s.length>0&&this.actions.push(n(s));this.inspectors=[];for(const t of(0,h.values)(o))t.length>0&&this.inspectors.push(n(t,!0));for(const[o,t]of(0,h.entries)(this.gestures))0!=t.tools.length&&(t.tools=(0,c.sort_by)(t.tools,(o=>o.default_order)),\"pinch\"!=o&&\"scroll\"!=o&&\"multi\"!=o&&(t.tools[0].active=!0))}}s.ProxyToolbar=y,n=y,y.__name__=\"ProxyToolbar\",n.define((({Array:o,Ref:t})=>({toolbars:[o(t(_.Toolbar)),[]]})));class d extends u.LayoutDOMView{initialize(){this.model.toolbar.toolbar_location=this.model.toolbar_location,super.initialize()}get child_models(){return[this.model.toolbar]}_update_layout(){this.layout=new f.ContentBox(this.child_views[0].el);const{toolbar:o}=this.model;o.horizontal?this.layout.set_sizing({width_policy:\"fit\",min_width:100,height_policy:\"fixed\"}):this.layout.set_sizing({width_policy:\"fixed\",height_policy:\"fit\",min_height:100})}after_layout(){super.after_layout();const o=this.child_views[0];o.layout.bbox=this.layout.bbox,o.render()}}s.ToolbarBoxView=d,d.__name__=\"ToolbarBoxView\";class b extends u.LayoutDOM{constructor(o){super(o)}}s.ToolbarBox=b,r=b,b.__name__=\"ToolbarBox\",r.prototype.default_view=d,r.define((({Ref:o})=>({toolbar:[o(a.ToolbarBase)],toolbar_location:[l.Location,\"right\"]})))},\n", + " function _(e,n,r,t,o){t();const s=e(1),u=e(53),c=(0,s.__importStar)(e(21)),a=e(8),l=e(13);r.resolve_defs=function(e,n){var r,t,o,s;function i(e){return null!=e.module?`${e.module}.${e.name}`:e.name}function f(e){if((0,a.isString)(e))switch(e){case\"Any\":return c.Any;case\"Unknown\":return c.Unknown;case\"Boolean\":return c.Boolean;case\"Number\":return c.Number;case\"Int\":return c.Int;case\"String\":return c.String;case\"Null\":return c.Null}else switch(e[0]){case\"Nullable\":{const[,n]=e;return c.Nullable(f(n))}case\"Or\":{const[,...n]=e;return c.Or(...n.map(f))}case\"Tuple\":{const[,n,...r]=e;return c.Tuple(f(n),...r.map(f))}case\"Array\":{const[,n]=e;return c.Array(f(n))}case\"Struct\":{const[,...n]=e,r=n.map((([e,n])=>[e,f(n)]));return c.Struct((0,l.to_object)(r))}case\"Dict\":{const[,n]=e;return c.Dict(f(n))}case\"Map\":{const[,n,r]=e;return c.Map(f(n),f(r))}case\"Enum\":{const[,...n]=e;return c.Enum(...n)}case\"Ref\":{const[,r]=e,t=n.get(i(r));if(null!=t)return c.Ref(t);throw new Error(`${i(r)} wasn't defined before referencing it`)}case\"AnyRef\":return c.AnyRef()}}for(const c of e){const e=(()=>{if(null==c.extends)return u.Model;{const e=n.get(i(c.extends));if(null!=e)return e;throw new Error(`base model ${i(c.extends)} of ${i(c)} is not defined`)}})(),a=((s=class extends e{}).__name__=c.name,s.__module__=c.module,s);for(const e of null!==(r=c.properties)&&void 0!==r?r:[]){const n=f(null!==(t=e.kind)&&void 0!==t?t:\"Unknown\");a.define({[e.name]:[n,e.default]})}for(const e of null!==(o=c.overrides)&&void 0!==o?o:[])a.override({[e.name]:e.default});n.register(a)}}},\n", + " function _(n,e,t,o,i){o();const d=n(5),c=n(226),s=n(113),a=n(43),l=n(398);t.index={},t.add_document_standalone=async function(n,e,o=[],i=!1){const u=new Map;async function f(i){let d;const f=n.roots().indexOf(i),r=o[f];null!=r?d=r:e.classList.contains(l.BOKEH_ROOT)?d=e:(d=(0,a.div)({class:l.BOKEH_ROOT}),e.appendChild(d));const w=await(0,s.build_view)(i,{parent:null});return w instanceof c.DOMView&&w.renderTo(d),u.set(i,w),t.index[i.id]=w,w}for(const e of n.roots())await f(e);return i&&(window.document.title=n.title()),n.on_change((n=>{n instanceof d.RootAddedEvent?f(n.model):n instanceof d.RootRemovedEvent?function(n){const e=u.get(n);null!=e&&(e.remove(),u.delete(n),delete t.index[n.id])}(n.model):i&&n instanceof d.TitleChangedEvent&&(window.document.title=n.title)})),[...u.values()]}},\n", + " function _(o,e,n,t,r){t();const l=o(43),d=o(44);function u(o){let e=document.getElementById(o);if(null==e)throw new Error(`Error rendering Bokeh model: could not find #${o} HTML tag`);if(!document.body.contains(e))throw new Error(`Error rendering Bokeh model: element #${o} must be under `);if(\"SCRIPT\"==e.tagName){const o=(0,l.div)({class:n.BOKEH_ROOT});(0,l.replaceWith)(e,o),e=o}return e}n.BOKEH_ROOT=d.root,n._resolve_element=function(o){const{elementid:e}=o;return null!=e?u(e):document.body},n._resolve_root_elements=function(o){const e=[];if(null!=o.root_ids&&null!=o.roots)for(const n of o.root_ids)e.push(u(o.roots[n]));return e}},\n", + " function _(n,o,t,s,e){s();const c=n(400),r=n(19),a=n(397);t._get_ws_url=function(n,o){let t,s=\"ws:\";return\"https:\"==window.location.protocol&&(s=\"wss:\"),null!=o?(t=document.createElement(\"a\"),t.href=o):t=window.location,null!=n?\"/\"==n&&(n=\"\"):n=t.pathname.replace(/\\/+$/,\"\"),`${s}//${t.host}${n}/ws`};const i={};t.add_document_from_session=async function(n,o,t,s=[],e=!1){const l=window.location.search.substr(1);let d;try{d=await function(n,o,t){const s=(0,c.parse_token)(o).session_id;n in i||(i[n]={});const e=i[n];return s in e||(e[s]=(0,c.pull_session)(n,o,t)),e[s]}(n,o,l)}catch(n){const t=(0,c.parse_token)(o).session_id;throw r.logger.error(`Failed to load Bokeh session ${t}: ${n}`),n}return(0,a.add_document_standalone)(d.document,t,s,e)}},\n", + " function _(e,s,n,t,o){t();const r=e(19),i=e(5),c=e(401),l=e(402),_=e(403);n.DEFAULT_SERVER_WEBSOCKET_URL=\"ws://localhost:5006/ws\",n.DEFAULT_TOKEN=\"eyJzZXNzaW9uX2lkIjogImRlZmF1bHQifQ\";let h=0;function a(e){let s=e.split(\".\")[0];const n=s.length%4;return 0!=n&&(s+=\"=\".repeat(4-n)),JSON.parse(atob(s.replace(/_/g,\"/\").replace(/-/g,\"+\")))}n.parse_token=a;class d{constructor(e=n.DEFAULT_SERVER_WEBSOCKET_URL,s=n.DEFAULT_TOKEN,t=null){this.url=e,this.token=s,this.args_string=t,this._number=h++,this.socket=null,this.session=null,this.closed_permanently=!1,this._current_handler=null,this._pending_replies=new Map,this._pending_messages=[],this._receiver=new l.Receiver,this.id=a(s).session_id.split(\".\")[0],r.logger.debug(`Creating websocket ${this._number} to '${this.url}' session '${this.id}'`)}async connect(){if(this.closed_permanently)throw new Error(\"Cannot connect() a closed ClientConnection\");if(null!=this.socket)throw new Error(\"Already connected\");this._current_handler=null,this._pending_replies.clear(),this._pending_messages=[];try{let e=`${this.url}`;return null!=this.args_string&&this.args_string.length>0&&(e+=`?${this.args_string}`),this.socket=new WebSocket(e,[\"bokeh\",this.token]),new Promise(((e,s)=>{this.socket.binaryType=\"arraybuffer\",this.socket.onopen=()=>this._on_open(e,s),this.socket.onmessage=e=>this._on_message(e),this.socket.onclose=e=>this._on_close(e,s),this.socket.onerror=()=>this._on_error(s)}))}catch(e){throw r.logger.error(`websocket creation failed to url: ${this.url}`),r.logger.error(` - ${e}`),e}}close(){this.closed_permanently||(r.logger.debug(`Permanently closing websocket connection ${this._number}`),this.closed_permanently=!0,null!=this.socket&&this.socket.close(1e3,`close method called on ClientConnection ${this._number}`),this.session._connection_closed())}_schedule_reconnect(e){setTimeout((()=>{this.closed_permanently||r.logger.info(`Websocket connection ${this._number} disconnected, will not attempt to reconnect`)}),e)}send(e){if(null==this.socket)throw new Error(`not connected so cannot send ${e}`);e.send(this.socket)}async send_with_reply(e){const s=await new Promise(((s,n)=>{this._pending_replies.set(e.msgid(),{resolve:s,reject:n}),this.send(e)}));if(\"ERROR\"===s.msgtype())throw new Error(`Error reply ${s.content.text}`);return s}async _pull_doc_json(){const e=c.Message.create(\"PULL-DOC-REQ\",{}),s=await this.send_with_reply(e);if(!(\"doc\"in s.content))throw new Error(\"No 'doc' field in PULL-DOC-REPLY\");return s.content.doc}async _repull_session_doc(e,s){var n;r.logger.debug(this.session?\"Repulling session\":\"Pulling session for first time\");try{const n=await this._pull_doc_json();if(null==this.session)if(this.closed_permanently)r.logger.debug(\"Got new document after connection was already closed\"),s(new Error(\"The connection has been closed\"));else{const s=i.Document.from_json(n),t=i.Document._compute_patch_since_json(n,s);if(t.events.length>0){r.logger.debug(`Sending ${t.events.length} changes from model construction back to server`);const e=c.Message.create(\"PATCH-DOC\",{},t);this.send(e)}this.session=new _.ClientSession(this,s,this.id);for(const e of this._pending_messages)this.session.handle(e);this._pending_messages=[],r.logger.debug(\"Created a new session from new pulled doc\"),e(this.session)}else this.session.document.replace_with_json(n),r.logger.debug(\"Updated existing session with new pulled doc\")}catch(e){null===(n=console.trace)||void 0===n||n.call(console,e),r.logger.error(`Failed to repull session ${e}`),s(e instanceof Error?e:`${e}`)}}_on_open(e,s){r.logger.info(`Websocket connection ${this._number} is now open`),this._current_handler=n=>{this._awaiting_ack_handler(n,e,s)}}_on_message(e){null==this._current_handler&&r.logger.error(\"Got a message with no current handler set\");try{this._receiver.consume(e.data)}catch(e){this._close_bad_protocol(`${e}`)}const s=this._receiver.message;if(null!=s){const e=s.problem();null!=e&&this._close_bad_protocol(e),this._current_handler(s)}}_on_close(e,s){r.logger.info(`Lost websocket ${this._number} connection, ${e.code} (${e.reason})`),this.socket=null,this._pending_replies.forEach((e=>e.reject(\"Disconnected\"))),this._pending_replies.clear(),this.closed_permanently||this._schedule_reconnect(2e3),s(new Error(`Lost websocket connection, ${e.code} (${e.reason})`))}_on_error(e){r.logger.debug(`Websocket error on socket ${this._number}`);const s=\"Could not open websocket\";r.logger.error(`Failed to connect to Bokeh server: ${s}`),e(new Error(s))}_close_bad_protocol(e){r.logger.error(`Closing connection: ${e}`),null!=this.socket&&this.socket.close(1002,e)}_awaiting_ack_handler(e,s,n){\"ACK\"===e.msgtype()?(this._current_handler=e=>this._steady_state_handler(e),this._repull_session_doc(s,n)):this._close_bad_protocol(\"First message was not an ACK\")}_steady_state_handler(e){const s=e.reqid(),n=this._pending_replies.get(s);n?(this._pending_replies.delete(s),n.resolve(e)):this.session?this.session.handle(e):\"PATCH-DOC\"!=e.msgtype()&&this._pending_messages.push(e)}}n.ClientConnection=d,d.__name__=\"ClientConnection\",n.pull_session=function(e,s,n){return new d(e,s,n).connect()}},\n", + " function _(e,s,t,r,n){r();const i=e(34);class a{constructor(e,s,t){this.header=e,this.metadata=s,this.content=t,this.buffers=new Map}static assemble(e,s,t){const r=JSON.parse(e),n=JSON.parse(s),i=JSON.parse(t);return new a(r,n,i)}assemble_buffer(e,s){const t=null!=this.header.num_buffers?this.header.num_buffers:0;if(t<=this.buffers.size)throw new Error(`too many buffers received, expecting ${t}`);const{id:r}=JSON.parse(e);this.buffers.set(r,s)}static create(e,s,t={}){const r=a.create_header(e);return new a(r,s,t)}static create_header(e){return{msgid:(0,i.uniqueId)(),msgtype:e}}complete(){return null!=this.header&&null!=this.metadata&&null!=this.content&&(null==this.header.num_buffers||this.buffers.size==this.header.num_buffers)}send(e){if((null!=this.header.num_buffers?this.header.num_buffers:0)>0)throw new Error(\"BokehJS only supports receiving buffers, not sending\");const s=JSON.stringify(this.header),t=JSON.stringify(this.metadata),r=JSON.stringify(this.content);e.send(s),e.send(t),e.send(r)}msgid(){return this.header.msgid}msgtype(){return this.header.msgtype}reqid(){return this.header.reqid}problem(){return\"msgid\"in this.header?\"msgtype\"in this.header?null:\"No msgtype in header\":\"No msgid in header\"}}t.Message=a,a.__name__=\"Message\"},\n", + " function _(e,t,s,_,r){_();const i=e(401),h=e(8);class a{constructor(){this.message=null,this._partial=null,this._fragments=[],this._buf_header=null,this._current_consumer=this._HEADER}consume(e){this._current_consumer(e)}_HEADER(e){this._assume_text(e),this.message=null,this._partial=null,this._fragments=[e],this._buf_header=null,this._current_consumer=this._METADATA}_METADATA(e){this._assume_text(e),this._fragments.push(e),this._current_consumer=this._CONTENT}_CONTENT(e){this._assume_text(e),this._fragments.push(e);const[t,s,_]=this._fragments.slice(0,3);this._partial=i.Message.assemble(t,s,_),this._check_complete()}_BUFFER_HEADER(e){this._assume_text(e),this._buf_header=e,this._current_consumer=this._BUFFER_PAYLOAD}_BUFFER_PAYLOAD(e){this._assume_binary(e),this._partial.assemble_buffer(this._buf_header,e),this._check_complete()}_assume_text(e){if(!(0,h.isString)(e))throw new Error(\"Expected text fragment but received binary fragment\")}_assume_binary(e){if(!(e instanceof ArrayBuffer))throw new Error(\"Expected binary fragment but received text fragment\")}_check_complete(){this._partial.complete()?(this.message=this._partial,this._current_consumer=this._HEADER):this._current_consumer=this._BUFFER_HEADER}}s.Receiver=a,a.__name__=\"Receiver\"},\n", + " function _(e,t,n,s,o){s();const c=e(5),i=e(401),_=e(19);class r{constructor(e,t,n){this._connection=e,this.document=t,this.id=n,this._document_listener=e=>{this._document_changed(e)},this.document.on_change(this._document_listener,!0)}handle(e){const t=e.msgtype();\"PATCH-DOC\"===t?this._handle_patch(e):\"OK\"===t?this._handle_ok(e):\"ERROR\"===t?this._handle_error(e):_.logger.debug(`Doing nothing with message ${e.msgtype()}`)}close(){this._connection.close()}_connection_closed(){this.document.remove_on_change(this._document_listener)}async request_server_info(){const e=i.Message.create(\"SERVER-INFO-REQ\",{});return(await this._connection.send_with_reply(e)).content}async force_roundtrip(){await this.request_server_info()}_document_changed(e){if(e.setter_id===this.id)return;const t=e instanceof c.DocumentEventBatch?e.events:[e],n=this.document.create_json_patch(t),s=i.Message.create(\"PATCH-DOC\",{},n);this._connection.send(s)}_handle_patch(e){this.document.apply_json_patch(e.content,e.buffers,this.id)}_handle_ok(e){_.logger.trace(`Unhandled OK reply to ${e.reqid()}`)}_handle_error(e){_.logger.error(`Unhandled ERROR reply to ${e.reqid()}: ${e.content.text}`)}}n.ClientSession=r,r.__name__=\"ClientSession\"},\n", + " function _(e,o,t,n,r){n();const s=e(1),l=e(5),i=e(402),a=e(19),c=e(43),g=e(13),f=e(397),u=e(398),m=(0,s.__importDefault)(e(44)),p=(0,s.__importDefault)(e(240)),d=(0,s.__importDefault)(e(405));function _(e,o){o.buffers.length>0?e.consume(o.buffers[0].buffer):e.consume(o.content.data);const t=e.message;null!=t&&this.apply_json_patch(t.content,t.buffers)}function b(e,o){if(\"undefined\"!=typeof Jupyter&&null!=Jupyter.notebook.kernel){a.logger.info(`Registering Jupyter comms for target ${e}`);const t=Jupyter.notebook.kernel.comm_manager;try{t.register_target(e,(t=>{a.logger.info(`Registering Jupyter comms for target ${e}`);const n=new i.Receiver;t.on_msg(_.bind(o,n))}))}catch(e){a.logger.warn(`Jupyter comms failed to register. push_notebook() will not function. (exception reported: ${e})`)}}else if(o.roots()[0].id in t.kernels){a.logger.info(`Registering JupyterLab comms for target ${e}`);const n=t.kernels[o.roots()[0].id];try{n.registerCommTarget(e,(t=>{a.logger.info(`Registering JupyterLab comms for target ${e}`);const n=new i.Receiver;t.onMsg=_.bind(o,n)}))}catch(e){a.logger.warn(`Jupyter comms failed to register. push_notebook() will not function. (exception reported: ${e})`)}}else if(\"undefined\"!=typeof google&&null!=google.colab.kernel){a.logger.info(`Registering Google Colab comms for target ${e}`);const t=google.colab.kernel.comms;try{t.registerTarget(e,(async t=>{var n,r,l;a.logger.info(`Registering Google Colab comms for target ${e}`);const c=new i.Receiver;try{for(var g,f=(0,s.__asyncValues)(t.messages);!(g=await f.next()).done;){const e=g.value,t={data:e.data},n=[];for(const o of null!==(l=e.buffers)&&void 0!==l?l:[])n.push(new DataView(o));const r={content:t,buffers:n};_.bind(o)(c,r)}}catch(e){n={error:e}}finally{try{g&&!g.done&&(r=f.return)&&await r.call(f)}finally{if(n)throw n.error}}}))}catch(e){a.logger.warn(`Google Colab comms failed to register. push_notebook() will not function. (exception reported: ${e})`)}}else console.warn(\"Jupyter notebooks comms not available. push_notebook() will not function. If running JupyterLab ensure the latest @bokeh/jupyter_bokeh extension is installed. In an exported notebook this warning is expected.\")}c.stylesheet.append(m.default),c.stylesheet.append(p.default),c.stylesheet.append(d.default),t.kernels={},t.embed_items_notebook=function(e,o){if(1!=(0,g.size)(e))throw new Error(\"embed_items_notebook expects exactly one document in docs_json\");const t=l.Document.from_json((0,g.values)(e)[0]);for(const e of o){null!=e.notebook_comms_target&&b(e.notebook_comms_target,t);const o=(0,u._resolve_element)(e),n=(0,u._resolve_root_elements)(e);(0,f.add_document_standalone)(t,o,n)}}},\n", + " function _(t,o,r,e,d){e(),r.root=\"bk-root\",r.tooltip=\"bk-tooltip\",r.default=\".rendered_html .bk-root .bk-tooltip table,.rendered_html .bk-root .bk-tooltip tr,.rendered_html .bk-root .bk-tooltip th,.rendered_html .bk-root .bk-tooltip td{border:none;padding:1px;}\"},\n", + " function _(t,_,o,r,n){r();const a=t(1);(0,a.__exportStar)(t(401),o),(0,a.__exportStar)(t(402),o)},\n", + " function _(e,t,n,s,o){function l(){const e=document.getElementsByTagName(\"body\")[0],t=document.getElementsByClassName(\"bokeh-test-div\");1==t.length&&(e.removeChild(t[0]),delete t[0]);const n=document.createElement(\"div\");n.classList.add(\"bokeh-test-div\"),n.style.display=\"none\",e.insertBefore(n,e.firstChild)}s(),n.results={},n.init=function(){l()},n.record0=function(e,t){n.results[e]=t},n.record=function(e,t){n.results[e]=t,l()},n.count=function(e){null==n.results[e]&&(n.results[e]=0),n.results[e]+=1,l()}},\n", + " function _(e,t,o,n,l){n(),o.safely=function(e,t=!1){try{return e()}catch(e){if(function(e){const t=document.createElement(\"div\");t.style.backgroundColor=\"#f2dede\",t.style.border=\"1px solid #a94442\",t.style.borderRadius=\"4px\",t.style.display=\"inline-block\",t.style.fontFamily=\"sans-serif\",t.style.marginTop=\"5px\",t.style.minWidth=\"200px\",t.style.padding=\"5px 5px 5px 10px\",t.classList.add(\"bokeh-error-box-into-flames\");const o=document.createElement(\"span\");o.style.backgroundColor=\"#a94442\",o.style.borderRadius=\"0px 4px 0px 0px\",o.style.color=\"white\",o.style.cursor=\"pointer\",o.style.cssFloat=\"right\",o.style.fontSize=\"0.8em\",o.style.margin=\"-6px -6px 0px 0px\",o.style.padding=\"2px 5px 4px 5px\",o.title=\"close\",o.setAttribute(\"aria-label\",\"close\"),o.appendChild(document.createTextNode(\"x\")),o.addEventListener(\"click\",(()=>s.removeChild(t)));const n=document.createElement(\"h3\");n.style.color=\"#a94442\",n.style.margin=\"8px 0px 0px 0px\",n.style.padding=\"0px\",n.appendChild(document.createTextNode(\"Bokeh Error\"));const l=document.createElement(\"pre\");l.style.whiteSpace=\"unset\",l.style.overflowX=\"auto\",l.appendChild(document.createTextNode(e)),t.appendChild(o),t.appendChild(n),t.appendChild(l);const s=document.getElementsByTagName(\"body\")[0];s.insertBefore(t,s.firstChild)}(e instanceof Error&&e.stack?e.stack:`${e}`),t)return;throw e}}},\n", + " ], 0, {\"main\":0,\"tslib\":1,\"index\":2,\"version\":3,\"embed/index\":4,\"document/index\":5,\"document/document\":6,\"base\":7,\"core/util/types\":8,\"core/util/array\":9,\"core/util/math\":10,\"core/util/assert\":11,\"core/util/arrayable\":12,\"core/util/object\":13,\"core/has_props\":14,\"core/signaling\":15,\"core/util/defer\":16,\"core/util/refs\":17,\"core/properties\":18,\"core/logging\":19,\"core/enums\":20,\"core/kinds\":21,\"core/util/color\":22,\"core/util/svg_colors\":23,\"core/types\":24,\"core/util/bitset\":25,\"core/util/eq\":26,\"core/util/platform\":27,\"core/settings\":28,\"core/util/ndarray\":29,\"core/serializer\":30,\"core/util/serialization\":31,\"core/util/buffer\":32,\"core/uniforms\":33,\"core/util/string\":34,\"document/events\":35,\"core/util/pretty\":36,\"core/util/cloneable\":37,\"models/index\":38,\"models/annotations/index\":39,\"models/annotations/annotation\":40,\"models/renderers/renderer\":41,\"core/view\":42,\"core/dom\":43,\"styles/root.css\":44,\"core/visuals/index\":45,\"core/visuals/line\":46,\"core/visuals/visual\":47,\"core/property_mixins\":48,\"core/visuals/fill\":49,\"core/visuals/text\":50,\"core/visuals/hatch\":51,\"core/visuals/patterns\":52,\"model\":53,\"models/canvas/coordinates\":54,\"models/scales/scale\":55,\"models/transforms/transform\":56,\"models/ranges/range\":57,\"models/ranges/range1d\":58,\"models/scales/linear_scale\":59,\"models/scales/continuous_scale\":60,\"models/scales/log_scale\":61,\"models/scales/categorical_scale\":62,\"models/ranges/data_range1d\":63,\"models/ranges/data_range\":64,\"core/util/bbox\":65,\"models/util\":66,\"models/ranges/factor_range\":67,\"models/annotations/arrow\":68,\"models/annotations/data_annotation\":69,\"models/sources/columnar_data_source\":70,\"models/sources/data_source\":71,\"models/selections/selection\":72,\"core/selection_manager\":73,\"models/selections/interaction_policy\":74,\"models/sources/column_data_source\":75,\"core/util/typed_array\":76,\"core/util/set\":77,\"core/util/projections\":78,\"models/annotations/arrow_head\":112,\"core/build_views\":113,\"models/annotations/band\":114,\"models/annotations/upper_lower\":115,\"models/annotations/box_annotation\":116,\"models/annotations/color_bar\":117,\"models/annotations/title\":118,\"models/annotations/text_annotation\":119,\"core/graphics\":120,\"core/util/text\":121,\"core/util/affine\":122,\"core/layout/side_panel\":123,\"core/layout/types\":124,\"core/layout/layoutable\":125,\"models/canvas/cartesian_frame\":126,\"models/axes/index\":127,\"models/axes/axis\":128,\"models/renderers/guide_renderer\":129,\"models/tickers/ticker\":130,\"models/formatters/tick_formatter\":131,\"models/policies/labeling\":132,\"models/text/base_text\":133,\"models/text/utils\":134,\"models/text/math_text\":135,\"core/util/image\":136,\"models/text/providers\":137,\"core/util/modules\":138,\"models/text/plain_text\":139,\"models/axes/categorical_axis\":140,\"models/tickers/categorical_ticker\":141,\"models/formatters/categorical_tick_formatter\":142,\"models/axes/continuous_axis\":143,\"models/axes/datetime_axis\":144,\"models/axes/linear_axis\":145,\"models/formatters/basic_tick_formatter\":146,\"models/tickers/basic_ticker\":147,\"models/tickers/adaptive_ticker\":148,\"models/tickers/continuous_ticker\":149,\"models/formatters/datetime_tick_formatter\":150,\"core/util/templating\":152,\"models/tickers/datetime_ticker\":155,\"models/tickers/composite_ticker\":156,\"models/tickers/days_ticker\":157,\"models/tickers/single_interval_ticker\":158,\"models/tickers/util\":159,\"models/tickers/months_ticker\":160,\"models/tickers/years_ticker\":161,\"models/axes/log_axis\":162,\"models/formatters/log_tick_formatter\":163,\"models/tickers/log_ticker\":164,\"models/axes/mercator_axis\":165,\"models/formatters/mercator_tick_formatter\":166,\"models/tickers/mercator_ticker\":167,\"models/tickers/index\":168,\"models/tickers/fixed_ticker\":169,\"models/tickers/binned_ticker\":170,\"models/mappers/scanning_color_mapper\":171,\"models/mappers/continuous_color_mapper\":172,\"models/mappers/color_mapper\":173,\"models/mappers/mapper\":174,\"models/renderers/glyph_renderer\":175,\"models/renderers/data_renderer\":176,\"models/glyphs/line\":177,\"models/glyphs/xy_glyph\":178,\"models/glyphs/glyph\":179,\"core/util/ragged_array\":180,\"core/util/spatial\":181,\"models/glyphs/utils\":184,\"core/hittest\":185,\"models/glyphs/patch\":186,\"models/glyphs/harea\":187,\"models/glyphs/area\":188,\"models/glyphs/varea\":189,\"models/sources/cds_view\":190,\"models/filters/filter\":191,\"models/formatters/index\":192,\"models/formatters/func_tick_formatter\":193,\"models/formatters/numeral_tick_formatter\":194,\"models/formatters/printf_tick_formatter\":195,\"models/mappers/index\":196,\"models/mappers/categorical_color_mapper\":197,\"models/mappers/categorical_mapper\":198,\"models/mappers/categorical_marker_mapper\":199,\"models/mappers/categorical_pattern_mapper\":200,\"models/mappers/linear_color_mapper\":201,\"models/mappers/log_color_mapper\":202,\"models/mappers/eqhist_color_mapper\":203,\"models/scales/index\":204,\"models/scales/linear_interpolation_scale\":205,\"models/ranges/index\":206,\"core/layout/index\":207,\"core/layout/alignments\":208,\"core/layout/grid\":209,\"core/layout/html\":210,\"core/layout/border\":211,\"models/annotations/label\":212,\"models/annotations/label_set\":213,\"models/annotations/legend\":214,\"models/annotations/legend_item\":215,\"core/vectorization\":216,\"models/annotations/poly_annotation\":217,\"models/annotations/slope\":218,\"models/annotations/span\":219,\"models/annotations/toolbar_panel\":220,\"models/tools/toolbar\":221,\"models/tools/tool\":222,\"models/tools/gestures/gesture_tool\":223,\"models/tools/button_tool\":224,\"core/dom_view\":226,\"styles/toolbar.css\":227,\"styles/icons.css\":228,\"styles/menus.css\":229,\"core/util/menus\":230,\"models/tools/on_off_button\":231,\"models/tools/inspectors/inspect_tool\":232,\"models/tools/toolbar_base\":233,\"core/util/iterator\":234,\"core/util/canvas\":235,\"core/util/svg\":236,\"core/util/random\":237,\"models/tools/actions/action_tool\":238,\"models/tools/actions/help_tool\":239,\"styles/logo.css\":240,\"models/annotations/tooltip\":241,\"styles/tooltips.css\":242,\"models/annotations/whisker\":243,\"models/callbacks/index\":244,\"models/callbacks/customjs\":245,\"models/callbacks/callback\":246,\"models/callbacks/open_url\":247,\"models/canvas/index\":248,\"models/canvas/canvas\":249,\"core/ui_events\":250,\"core/bokeh_events\":251,\"core/util/wheel\":252,\"models/expressions/index\":253,\"models/expressions/expression\":254,\"models/expressions/customjs_expr\":255,\"models/expressions/stack\":256,\"models/expressions/cumsum\":257,\"models/expressions/minimum\":258,\"models/expressions/maximum\":259,\"models/expressions/coordinate_transform\":260,\"models/expressions/polar\":261,\"models/filters/index\":262,\"models/filters/boolean_filter\":263,\"models/filters/customjs_filter\":264,\"models/filters/group_filter\":265,\"models/filters/index_filter\":266,\"models/glyphs/index\":267,\"models/glyphs/annular_wedge\":268,\"models/glyphs/annulus\":269,\"models/glyphs/arc\":270,\"models/glyphs/bezier\":271,\"models/glyphs/circle\":272,\"models/glyphs/ellipse\":273,\"models/glyphs/ellipse_oval\":274,\"models/glyphs/center_rotatable\":275,\"models/glyphs/hbar\":276,\"models/glyphs/box\":277,\"models/glyphs/hex_tile\":278,\"models/glyphs/image\":279,\"models/glyphs/image_base\":280,\"models/glyphs/image_rgba\":281,\"models/glyphs/image_url\":282,\"models/glyphs/multi_line\":283,\"models/glyphs/multi_polygons\":284,\"models/glyphs/oval\":285,\"models/glyphs/patches\":286,\"models/glyphs/quad\":287,\"models/glyphs/quadratic\":288,\"models/glyphs/ray\":289,\"models/glyphs/rect\":290,\"models/glyphs/scatter\":291,\"models/glyphs/marker\":292,\"models/glyphs/defs\":293,\"models/glyphs/segment\":294,\"models/glyphs/spline\":295,\"core/util/interpolation\":296,\"models/glyphs/step\":297,\"models/glyphs/text\":298,\"models/glyphs/vbar\":299,\"models/glyphs/wedge\":300,\"models/graphs/index\":301,\"models/graphs/graph_hit_test_policy\":302,\"models/graphs/layout_provider\":303,\"models/graphs/static_layout_provider\":304,\"models/grids/index\":305,\"models/grids/grid\":306,\"models/layouts/index\":307,\"models/layouts/box\":308,\"models/layouts/layout_dom\":309,\"models/layouts/column\":310,\"models/layouts/grid_box\":311,\"models/layouts/html_box\":312,\"models/layouts/panel\":313,\"models/layouts/row\":314,\"models/layouts/spacer\":315,\"models/layouts/tabs\":316,\"styles/tabs.css\":317,\"styles/buttons.css\":318,\"models/layouts/widget_box\":319,\"models/text/index\":320,\"models/transforms/index\":321,\"models/transforms/customjs_transform\":322,\"models/transforms/dodge\":323,\"models/transforms/range_transform\":324,\"models/transforms/interpolator\":325,\"models/transforms/jitter\":326,\"models/transforms/linear_interpolator\":327,\"models/transforms/step_interpolator\":328,\"models/plots/index\":329,\"models/plots/gmap_plot\":330,\"models/plots/plot\":331,\"models/plots/plot_canvas\":332,\"core/util/throttle\":333,\"models/plots/range_manager\":334,\"models/plots/state_manager\":335,\"models/plots/gmap_plot_canvas\":336,\"models/policies/index\":337,\"models/renderers/index\":338,\"models/renderers/graph_renderer\":339,\"models/selections/index\":340,\"models/sources/index\":341,\"models/sources/server_sent_data_source\":342,\"models/sources/web_data_source\":343,\"models/sources/ajax_data_source\":344,\"models/sources/geojson_data_source\":345,\"models/tiles/index\":346,\"models/tiles/bbox_tile_source\":347,\"models/tiles/mercator_tile_source\":348,\"models/tiles/tile_source\":349,\"models/tiles/tile_utils\":350,\"models/tiles/quadkey_tile_source\":351,\"models/tiles/tile_renderer\":352,\"models/tiles/wmts_tile_source\":353,\"styles/tiles.css\":354,\"models/tiles/tms_tile_source\":355,\"models/textures/index\":356,\"models/textures/canvas_texture\":357,\"models/textures/texture\":358,\"models/textures/image_url_texture\":359,\"models/tools/index\":360,\"models/tools/actions/custom_action\":361,\"models/tools/actions/redo_tool\":362,\"models/tools/actions/reset_tool\":363,\"models/tools/actions/save_tool\":364,\"models/tools/actions/undo_tool\":365,\"models/tools/actions/zoom_in_tool\":366,\"models/tools/actions/zoom_base_tool\":367,\"core/util/zoom\":368,\"models/tools/actions/zoom_out_tool\":369,\"models/tools/edit/edit_tool\":370,\"models/tools/edit/box_edit_tool\":371,\"models/tools/edit/freehand_draw_tool\":372,\"models/tools/edit/point_draw_tool\":373,\"models/tools/edit/poly_draw_tool\":374,\"models/tools/edit/poly_tool\":375,\"models/tools/edit/poly_edit_tool\":376,\"models/tools/gestures/box_select_tool\":377,\"models/tools/gestures/select_tool\":378,\"models/tools/gestures/box_zoom_tool\":379,\"models/tools/gestures/lasso_select_tool\":380,\"models/tools/gestures/poly_select_tool\":381,\"models/tools/edit/line_edit_tool\":382,\"models/tools/edit/line_tool\":383,\"models/tools/gestures/pan_tool\":384,\"models/tools/gestures/range_tool\":385,\"models/tools/gestures/tap_tool\":386,\"models/tools/gestures/wheel_pan_tool\":387,\"models/tools/gestures/wheel_zoom_tool\":388,\"models/tools/inspectors/crosshair_tool\":389,\"models/tools/inspectors/customjs_hover\":390,\"models/tools/inspectors/hover_tool\":391,\"models/dom/index\":392,\"models/dom/styles\":393,\"models/tools/tool_proxy\":394,\"models/tools/toolbar_box\":395,\"document/defs\":396,\"embed/standalone\":397,\"embed/dom\":398,\"embed/server\":399,\"client/connection\":400,\"protocol/message\":401,\"protocol/receiver\":402,\"client/session\":403,\"embed/notebook\":404,\"styles/notebook.css\":405,\"protocol/index\":406,\"testing\":407,\"safely\":408}, {});});\n", + "\n", + " /* END bokeh.min.js */\n", + " },\n", + " function(Bokeh) {\n", + " /* BEGIN bokeh-gl.min.js */\n", + " /*!\n", + " * Copyright (c) 2012 - 2022, Anaconda, Inc., and Bokeh Contributors\n", + " * All rights reserved.\n", + " * \n", + " * Redistribution and use in source and binary forms, with or without modification,\n", + " * are permitted provided that the following conditions are met:\n", + " * \n", + " * Redistributions of source code must retain the above copyright notice,\n", + " * this list of conditions and the following disclaimer.\n", + " * \n", + " * Redistributions in binary form must reproduce the above copyright notice,\n", + " * this list of conditions and the following disclaimer in the documentation\n", + " * and/or other materials provided with the distribution.\n", + " * \n", + " * Neither the name of Anaconda nor the names of any contributors\n", + " * may be used to endorse or promote products derived from this software\n", + " * without specific prior written permission.\n", + " * \n", + " * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\n", + " * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n", + " * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n", + " * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE\n", + " * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n", + " * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n", + " * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n", + " * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\n", + " * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n", + " * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF\n", + " * THE POSSIBILITY OF SUCH DAMAGE.\n", + " */\n", + " (function(root, factory) {\n", + " factory(root[\"Bokeh\"], \"2.4.3\");\n", + " })(this, function(Bokeh, version) {\n", + " let define;\n", + " return (function(modules, entry, aliases, externals) {\n", + " const bokeh = typeof Bokeh !== \"undefined\" && (version != null ? Bokeh[version] : Bokeh);\n", + " if (bokeh != null) {\n", + " return bokeh.register_plugin(modules, entry, aliases);\n", + " } else {\n", + " throw new Error(\"Cannot find Bokeh \" + version + \". You have to load it prior to loading plugins.\");\n", + " }\n", + " })\n", + " ({\n", + " 409: function _(n,c,f,i,o){i(),n(410)},\n", + " 410: function _(t,_,r,e,o){e();const a=t(1);o(\"get_regl\",t(411).get_regl),(0,a.__exportStar)(t(419),r),(0,a.__exportStar)(t(423),r),(0,a.__exportStar)(t(425),r),(0,a.__exportStar)(t(426),r),(0,a.__exportStar)(t(427),r),(0,a.__exportStar)(t(428),r),(0,a.__exportStar)(t(429),r),(0,a.__exportStar)(t(424),r)},\n", + " 411: function _(t,i,e,_,a){_();const r=t(1),o=(0,r.__importDefault)(t(412)),n=t(413),s=(0,r.__importDefault)(t(415)),l=(0,r.__importDefault)(t(416)),p=(0,r.__importDefault)(t(417)),h=(0,r.__importDefault)(t(418));let c;e.get_regl=function(t){return null==c&&(c=new u(t)),c};class u{constructor(t){try{this._regl=(0,o.default)({gl:t,extensions:[\"ANGLE_instanced_arrays\",\"EXT_blend_minmax\"]}),this._regl_available=!0,this._line_geometry=this._regl.buffer({usage:\"static\",type:\"float\",data:[[-2,0],[-1,-1],[1,-1],[2,0],[1,1],[-1,1]]}),this._line_triangles=this._regl.elements({usage:\"static\",primitive:\"triangles\",data:[[0,1,5],[1,2,5],[5,2,4],[2,3,4]]})}catch(t){this._regl_available=!1}}buffer(t){return this._regl.buffer(t)}clear(t,i){this._viewport={x:0,y:0,width:t,height:i},this._regl.clear({color:[0,0,0,0]})}get has_webgl(){return this._regl_available}get scissor(){return this._scissor}set_scissor(t,i,e,_){this._scissor={x:t,y:i,width:e,height:_}}get viewport(){return this._viewport}dashed_line(){return null==this._dashed_line&&(this._dashed_line=function(t,i,e){const _={vert:`#define DASHED\\n\\n${s.default}`,frag:`#define DASHED\\n\\n${l.default}`,attributes:{a_position:{buffer:i,divisor:0},a_point_prev:(t,i)=>i.points.to_attribute_config(),a_point_start:(t,i)=>i.points.to_attribute_config(2*Float32Array.BYTES_PER_ELEMENT),a_point_end:(t,i)=>i.points.to_attribute_config(4*Float32Array.BYTES_PER_ELEMENT),a_point_next:(t,i)=>i.points.to_attribute_config(6*Float32Array.BYTES_PER_ELEMENT),a_show_prev:(t,i)=>i.show.to_attribute_config(),a_show_curr:(t,i)=>i.show.to_attribute_config(Uint8Array.BYTES_PER_ELEMENT),a_show_next:(t,i)=>i.show.to_attribute_config(2*Uint8Array.BYTES_PER_ELEMENT),a_length_so_far:(t,i)=>i.length_so_far.to_attribute_config()},uniforms:{u_canvas_size:t.prop(\"canvas_size\"),u_pixel_ratio:t.prop(\"pixel_ratio\"),u_antialias:t.prop(\"antialias\"),u_line_color:t.prop(\"line_color\"),u_linewidth:t.prop(\"linewidth\"),u_miter_limit:t.prop(\"miter_limit\"),u_line_join:t.prop(\"line_join\"),u_line_cap:t.prop(\"line_cap\"),u_dash_tex:t.prop(\"dash_tex\"),u_dash_tex_info:t.prop(\"dash_tex_info\"),u_dash_scale:t.prop(\"dash_scale\"),u_dash_offset:t.prop(\"dash_offset\")},elements:e,instances:t.prop(\"nsegments\"),blend:{enable:!0,equation:\"max\",func:{srcRGB:1,srcAlpha:1,dstRGB:1,dstAlpha:1}},depth:{enable:!1},scissor:{enable:!0,box:t.prop(\"scissor\")},viewport:t.prop(\"viewport\")};return t(_)}(this._regl,this._line_geometry,this._line_triangles)),this._dashed_line}get_dash(t){return null==this._dash_cache&&(this._dash_cache=new n.DashCache(this._regl)),this._dash_cache.get(t)}marker_no_hatch(t){null==this._marker_no_hatch_map&&(this._marker_no_hatch_map=new Map);let i=this._marker_no_hatch_map.get(t);return null==i&&(i=function(t,i){const e={vert:p.default,frag:`#define USE_${i.toUpperCase()}\\n${h.default}`,attributes:{a_position:{buffer:t.buffer([[-.5,-.5],[-.5,.5],[.5,.5],[.5,-.5]]),divisor:0},a_center:(t,i)=>i.center.to_attribute_config(),a_width:(t,i)=>i.width.to_attribute_config(),a_height:(t,i)=>i.height.to_attribute_config(),a_angle:(t,i)=>i.angle.to_attribute_config(),a_linewidth:(t,i)=>i.linewidth.to_attribute_config(),a_line_color:(t,i)=>i.line_color.to_attribute_config(),a_fill_color:(t,i)=>i.fill_color.to_attribute_config(),a_line_cap:(t,i)=>i.line_cap.to_attribute_config(),a_line_join:(t,i)=>i.line_join.to_attribute_config(),a_show:(t,i)=>i.show.to_attribute_config()},uniforms:{u_canvas_size:t.prop(\"canvas_size\"),u_pixel_ratio:t.prop(\"pixel_ratio\"),u_antialias:t.prop(\"antialias\"),u_size_hint:t.prop(\"size_hint\")},count:4,primitive:\"triangle fan\",instances:t.prop(\"nmarkers\"),blend:{enable:!0,func:{srcRGB:\"one\",srcAlpha:\"one\",dstRGB:\"one minus src alpha\",dstAlpha:\"one minus src alpha\"}},depth:{enable:!1},scissor:{enable:!0,box:t.prop(\"scissor\")},viewport:t.prop(\"viewport\")};return t(e)}(this._regl,t),this._marker_no_hatch_map.set(t,i)),i}marker_hatch(t){null==this._marker_hatch_map&&(this._marker_hatch_map=new Map);let i=this._marker_hatch_map.get(t);return null==i&&(i=function(t,i){const e={vert:`#define HATCH\\n${p.default}`,frag:`#define USE_${i.toUpperCase()}\\n#define HATCH\\n${h.default}`,attributes:{a_position:{buffer:t.buffer([[-.5,-.5],[-.5,.5],[.5,.5],[.5,-.5]]),divisor:0},a_center:(t,i)=>i.center.to_attribute_config(),a_width:(t,i)=>i.width.to_attribute_config(),a_height:(t,i)=>i.height.to_attribute_config(),a_angle:(t,i)=>i.angle.to_attribute_config(),a_linewidth:(t,i)=>i.linewidth.to_attribute_config(),a_line_color:(t,i)=>i.line_color.to_attribute_config(),a_fill_color:(t,i)=>i.fill_color.to_attribute_config(),a_line_cap:(t,i)=>i.line_cap.to_attribute_config(),a_line_join:(t,i)=>i.line_join.to_attribute_config(),a_show:(t,i)=>i.show.to_attribute_config(),a_hatch_pattern:(t,i)=>i.hatch_pattern.to_attribute_config(),a_hatch_scale:(t,i)=>i.hatch_scale.to_attribute_config(),a_hatch_weight:(t,i)=>i.hatch_weight.to_attribute_config(),a_hatch_color:(t,i)=>i.hatch_color.to_attribute_config()},uniforms:{u_canvas_size:t.prop(\"canvas_size\"),u_pixel_ratio:t.prop(\"pixel_ratio\"),u_antialias:t.prop(\"antialias\"),u_size_hint:t.prop(\"size_hint\")},count:4,primitive:\"triangle fan\",instances:t.prop(\"nmarkers\"),blend:{enable:!0,func:{srcRGB:\"one\",srcAlpha:\"one\",dstRGB:\"one minus src alpha\",dstAlpha:\"one minus src alpha\"}},depth:{enable:!1},scissor:{enable:!0,box:t.prop(\"scissor\")},viewport:t.prop(\"viewport\")};return t(e)}(this._regl,t),this._marker_hatch_map.set(t,i)),i}solid_line(){return null==this._solid_line&&(this._solid_line=function(t,i,e){const _={vert:s.default,frag:l.default,attributes:{a_position:{buffer:i,divisor:0},a_point_prev:(t,i)=>i.points.to_attribute_config(),a_point_start:(t,i)=>i.points.to_attribute_config(2*Float32Array.BYTES_PER_ELEMENT),a_point_end:(t,i)=>i.points.to_attribute_config(4*Float32Array.BYTES_PER_ELEMENT),a_point_next:(t,i)=>i.points.to_attribute_config(6*Float32Array.BYTES_PER_ELEMENT),a_show_prev:(t,i)=>i.show.to_attribute_config(),a_show_curr:(t,i)=>i.show.to_attribute_config(Uint8Array.BYTES_PER_ELEMENT),a_show_next:(t,i)=>i.show.to_attribute_config(2*Uint8Array.BYTES_PER_ELEMENT)},uniforms:{u_canvas_size:t.prop(\"canvas_size\"),u_pixel_ratio:t.prop(\"pixel_ratio\"),u_antialias:t.prop(\"antialias\"),u_line_color:t.prop(\"line_color\"),u_linewidth:t.prop(\"linewidth\"),u_miter_limit:t.prop(\"miter_limit\"),u_line_join:t.prop(\"line_join\"),u_line_cap:t.prop(\"line_cap\")},elements:e,instances:t.prop(\"nsegments\"),blend:{enable:!0,equation:\"max\",func:{srcRGB:1,srcAlpha:1,dstRGB:1,dstAlpha:1}},depth:{enable:!1},scissor:{enable:!0,box:t.prop(\"scissor\")},viewport:t.prop(\"viewport\")};return t(_)}(this._regl,this._line_geometry,this._line_triangles)),this._solid_line}}e.ReglWrapper=u,u.__name__=\"ReglWrapper\"},\n", + " 412: function _(e,t,r,n,a){var i,o;i=this,o=function(){\"use strict\";var e=function(e){return e instanceof Uint8Array||e instanceof Uint16Array||e instanceof Uint32Array||e instanceof Int8Array||e instanceof Int16Array||e instanceof Int32Array||e instanceof Float32Array||e instanceof Float64Array||e instanceof Uint8ClampedArray},t=function(e,t){for(var r=Object.keys(t),n=0;n=0&&(0|e)===e||n(\"invalid parameter type, (\"+e+\")\"+i(t)+\". must be a nonnegative integer\")},oneOf:f,shaderError:function(e,t,n,i,o){if(!e.getShaderParameter(t,e.COMPILE_STATUS)){var f=e.getShaderInfoLog(t),u=i===e.FRAGMENT_SHADER?\"fragment\":\"vertex\";g(n,\"string\",u+\" shader source must be a string\",o);var c=h(n,o),l=function(e){var t=[];return e.split(\"\\n\").forEach((function(e){if(!(e.length<5)){var r=/^ERROR:\\s+(\\d+):(\\d+):\\s*(.*)$/.exec(e);r?t.push(new d(0|r[1],0|r[2],r[3].trim())):e.length>0&&t.push(new d(\"unknown\",0,e))}})),t}(f);!function(e,t){t.forEach((function(t){var r=e[t.file];if(r){var n=r.index[t.line];if(n)return n.errors.push(t),void(r.hasErrors=!0)}e.unknown.hasErrors=!0,e.unknown.lines[0].errors.push(t)}))}(c,l),Object.keys(c).forEach((function(e){var t=c[e];if(t.hasErrors){var n=[\"\"],a=[\"\"];i(\"file number \"+e+\": \"+t.name+\"\\n\",\"color:red;text-decoration:underline;font-weight:bold\"),t.lines.forEach((function(e){if(e.errors.length>0){i(s(e.number,4)+\"| \",\"background-color:yellow; font-weight:bold\"),i(e.line+r,\"color:red; background-color:yellow; font-weight:bold\");var t=0;e.errors.forEach((function(n){var a=n.message,o=/^\\s*'(.*)'\\s*:\\s*(.*)$/.exec(a);if(o){var f=o[1];a=o[2],\"assign\"===f&&(f=\"=\"),t=Math.max(e.line.indexOf(f,t),0)}else t=0;i(s(\"| \",6)),i(s(\"^^^\",t+3)+r,\"font-weight:bold\"),i(s(\"| \",6)),i(a+r,\"font-weight:bold\")})),i(s(\"| \",6)+r)}else i(s(e.number,4)+\"| \"),i(e.line+r,\"color:red\")})),\"undefined\"==typeof document||window.chrome?console.log(n.join(\"\")):(a[0]=n.join(\"%c\"),console.log.apply(console,a))}function i(e,t){n.push(e),a.push(t||\"\")}})),a.raise(\"Error compiling \"+u+\" shader, \"+c[0].name)}},linkError:function(e,t,n,i,o){if(!e.getProgramParameter(t,e.LINK_STATUS)){var f=e.getProgramInfoLog(t),u=h(n,o),s='Error linking program with vertex shader, \"'+h(i,o)[0].name+'\", and fragment shader \"'+u[0].name+'\"';\"undefined\"!=typeof document?console.log(\"%c\"+s+\"\\n%c\"+f,\"color:red;text-decoration:underline;font-weight:bold\",\"color:red\"):console.log(s+r+f),a.raise(s)}},callSite:p,saveCommandRef:b,saveDrawInfo:function(e,t,r,n){function a(e){return e?n.id(e):0}function i(e,t){Object.keys(t).forEach((function(t){e[n.id(t)]=!0}))}b(e),e._fragId=a(e.static.frag),e._vertId=a(e.static.vert);var o=e._uniformSet={};i(o,t.static),i(o,t.dynamic);var f=e._attributeSet={};i(f,r.static),i(f,r.dynamic),e._hasCount=\"count\"in e.static||\"count\"in e.dynamic||\"elements\"in e.static||\"elements\"in e.dynamic},framebufferFormat:function(e,t,r){e.texture?f(e.texture._texture.internalformat,t,\"unsupported texture format for attachment\"):f(e.renderbuffer._renderbuffer.format,r,\"unsupported renderbuffer format for attachment\")},guessCommand:m,texture2D:function(e,t,r){var n,i=t.width,o=t.height,f=t.channels;a(i>0&&i<=r.maxTextureSize&&o>0&&o<=r.maxTextureSize,\"invalid texture shape\"),e.wrapS===y&&e.wrapT===y||a(A(i)&&A(o),\"incompatible wrap mode for texture, both width and height must be power of 2\"),1===t.mipmask?1!==i&&1!==o&&a(9984!==e.minFilter&&9986!==e.minFilter&&9985!==e.minFilter&&9987!==e.minFilter,\"min filter requires mipmap\"):(a(A(i)&&A(o),\"texture must be a square power of 2 to support mipmapping\"),a(t.mipmask===(i<<1)-1,\"missing or incomplete mipmap data\")),5126===t.type&&(r.extensions.indexOf(\"oes_texture_float_linear\")<0&&a(9728===e.minFilter&&9728===e.magFilter,\"filter not supported, must enable oes_texture_float_linear\"),a(!e.genMipmaps,\"mipmap generation not supported with float textures\"));var u=t.images;for(n=0;n<16;++n)if(u[n]){var s=i>>n,c=o>>n;a(t.mipmask&1<0&&i<=n.maxTextureSize&&o>0&&o<=n.maxTextureSize,\"invalid texture shape\"),a(i===o,\"cube map must be square\"),a(t.wrapS===y&&t.wrapT===y,\"wrap mode not supported by cube map\");for(var u=0;u>l,p=o>>l;a(s.mipmask&1<1&&t===r&&('\"'===t||\"'\"===t))return['\"'+O(e.substr(1,e.length-2))+'\"'];var n=/\\[(false|true|null|\\d+|'[^']*'|\"[^\"]*\")\\]/.exec(e);if(n)return E(e.substr(0,n.index)).concat(E(n[1])).concat(E(e.substr(n.index+n[0].length)));var a=e.split(\".\");if(1===a.length)return['\"'+O(e)+'\"'];for(var i=[],o=0;o0,\"invalid pixel ratio\"))):_.raise(\"invalid arguments to regl\"),r&&(\"canvas\"===r.nodeName.toLowerCase()?a=r:n=r),!i){if(!a){_(\"undefined\"!=typeof document,\"must manually specify webgl context outside of DOM environments\");var h=function(e,r,n){var a,i=document.createElement(\"canvas\");function o(){var t=window.innerWidth,r=window.innerHeight;if(e!==document.body){var a=i.getBoundingClientRect();t=a.right-a.left,r=a.bottom-a.top}i.width=n*t,i.height=n*r}return t(i.style,{border:0,margin:0,padding:0,top:0,left:0,width:\"100%\",height:\"100%\"}),e.appendChild(i),e===document.body&&(i.style.position=\"absolute\",t(e.style,{margin:0,padding:0})),e!==document.body&&\"function\"==typeof ResizeObserver?(a=new ResizeObserver((function(){setTimeout(o)}))).observe(e):window.addEventListener(\"resize\",o,!1),o(),{canvas:i,onDestroy:function(){a?a.disconnect():window.removeEventListener(\"resize\",o),e.removeChild(i)}}}(n||document.body,0,l);if(!h)return null;a=h.canvas,p=h.onDestroy}void 0===u.premultipliedAlpha&&(u.premultipliedAlpha=!0),i=function(e,t){function r(r){try{return e.getContext(r,t)}catch(e){return null}}return r(\"webgl\")||r(\"experimental-webgl\")||r(\"webgl-experimental\")}(a,u)}return i?{gl:i,canvas:a,container:n,extensions:s,optionalExtensions:c,pixelRatio:l,profile:d,onDone:m,onDestroy:p}:(p(),m(\"webgl not supported, try upgrading your browser or graphics drivers http://get.webgl.org\"),null)}function V(e,t){for(var r=Array(e),n=0;n65535)<<4,t|=r=((e>>>=t)>255)<<3,t|=r=((e>>>=r)>15)<<2,(t|=r=((e>>>=r)>3)<<1)|(e>>>=r)>>1}function P(){var e=V(8,(function(){return[]}));function t(t){var r=function(e){for(var t=16;t<=1<<28;t*=16)if(e<=t)return t;return 0}(t),n=e[I(r)>>2];return n.length>0?n.pop():new ArrayBuffer(r)}function r(t){e[I(t.byteLength)>>2].push(t)}return{alloc:t,free:r,allocType:function(e,r){var n=null;switch(e){case 5120:n=new Int8Array(t(r),0,r);break;case 5121:n=new Uint8Array(t(r),0,r);break;case 5122:n=new Int16Array(t(2*r),0,r);break;case 5123:n=new Uint16Array(t(2*r),0,r);break;case 5124:n=new Int32Array(t(4*r),0,r);break;case 5125:n=new Uint32Array(t(4*r),0,r);break;case 5126:n=new Float32Array(t(4*r),0,r);break;default:return null}return n.length!==r?n.subarray(0,r):n},freeType:function(e){r(e.buffer)}}}var L=P();L.zero=P();var R=3553,M=6408,W=5126,U=36160;function G(t){return!!t&&\"object\"==typeof t&&Array.isArray(t.shape)&&Array.isArray(t.stride)&&\"number\"==typeof t.offset&&t.shape.length===t.stride.length&&(Array.isArray(t.data)||e(t.data))}var H=function(e){return Object.keys(e).map((function(t){return e[t]}))},N={shape:function(e){for(var t=[],r=e;r.length;r=r[0])t.push(r.length);return t},flatten:function(e,t,r,n){var a=1;if(t.length)for(var i=0;i>>31<<15,i=(n<<1>>>24)-127,o=n>>13&1023;if(i<-24)t[r]=a;else if(i<-14){var f=-14-i;t[r]=a+(o+1024>>f)}else t[r]=i>15?a+31744:a+(i+15<<10)+o}return t}function me(t){return Array.isArray(t)||e(t)}var pe=function(e){return!(e&e-1||!e)},he=3553,be=34067,ve=34069,ge=6408,ye=6406,xe=6407,we=6409,Ae=6410,_e=32855,ke=6402,Se=34041,Oe=35904,Ee=35906,Te=36193,De=33776,je=33777,Ce=33778,ze=33779,Fe=5121,Be=5123,Ve=5125,Ie=5126,Pe=33071,Le=9728,Re=9984,Me=9987,We=4352,Ue=33984,Ge=[Re,9986,9985,Me],He=[0,we,Ae,xe,ge],Ne={};function qe(e){return\"[object \"+e+\"]\"}Ne[6409]=Ne[6406]=Ne[6402]=1,Ne[34041]=Ne[6410]=2,Ne[6407]=Ne[35904]=3,Ne[6408]=Ne[35906]=4;var Qe=qe(\"HTMLCanvasElement\"),Ye=qe(\"OffscreenCanvas\"),Xe=qe(\"CanvasRenderingContext2D\"),$e=qe(\"ImageBitmap\"),Ke=qe(\"HTMLImageElement\"),Je=qe(\"HTMLVideoElement\"),Ze=Object.keys(Y).concat([Qe,Ye,Xe,$e,Ke,Je]),et=[];et[5121]=1,et[5126]=4,et[36193]=2,et[5123]=2,et[5125]=4;var tt=[];function rt(e){return Array.isArray(e)&&(0===e.length||\"number\"==typeof e[0])}function nt(e){return!!Array.isArray(e)&&!(0===e.length||!me(e[0]))}function at(e){return Object.prototype.toString.call(e)}function it(e){return at(e)===Qe}function ot(e){return at(e)===Ye}function ft(e){if(!e)return!1;var t=at(e);return Ze.indexOf(t)>=0||rt(e)||nt(e)||G(e)}function ut(e){return 0|Y[Object.prototype.toString.call(e)]}function st(e,t){return L.allocType(e.type===Te?Ie:e.type,t)}function ct(e,t){e.type===Te?(e.data=de(t),L.freeType(t)):e.data=t}function lt(e,t,r,n,a,i){var o;if(o=void 0!==tt[e]?tt[e]:Ne[e]*et[t],i&&(o*=6),a){for(var f=0,u=r;u>=1;)f+=o*u*u,u/=2;return f}return o*r*n}function dt(r,n,a,i,o,f,u){var s={\"don't care\":We,\"dont care\":We,nice:4354,fast:4353},c={repeat:10497,clamp:Pe,mirror:33648},l={nearest:Le,linear:9729},d=t({mipmap:Me,\"nearest mipmap nearest\":Re,\"linear mipmap nearest\":9985,\"nearest mipmap linear\":9986,\"linear mipmap linear\":Me},l),m={none:0,browser:37444},p={uint8:Fe,rgba4:32819,rgb565:33635,\"rgb5 a1\":32820},h={alpha:ye,luminance:we,\"luminance alpha\":Ae,rgb:xe,rgba:ge,rgba4:32854,\"rgb5 a1\":_e,rgb565:36194},b={};n.ext_srgb&&(h.srgb=Oe,h.srgba=Ee),n.oes_texture_float&&(p.float32=p.float=Ie),n.oes_texture_half_float&&(p.float16=p[\"half float\"]=Te),n.webgl_depth_texture&&(t(h,{depth:ke,\"depth stencil\":Se}),t(p,{uint16:Be,uint32:Ve,\"depth stencil\":34042})),n.webgl_compressed_texture_s3tc&&t(b,{\"rgb s3tc dxt1\":De,\"rgba s3tc dxt1\":je,\"rgba s3tc dxt3\":Ce,\"rgba s3tc dxt5\":ze}),n.webgl_compressed_texture_atc&&t(b,{\"rgb atc\":35986,\"rgba atc explicit alpha\":35987,\"rgba atc interpolated alpha\":34798}),n.webgl_compressed_texture_pvrtc&&t(b,{\"rgb pvrtc 4bppv1\":35840,\"rgb pvrtc 2bppv1\":35841,\"rgba pvrtc 4bppv1\":35842,\"rgba pvrtc 2bppv1\":35843}),n.webgl_compressed_texture_etc1&&(b[\"rgb etc1\"]=36196);var v=Array.prototype.slice.call(r.getParameter(34467));Object.keys(b).forEach((function(e){var t=b[e];v.indexOf(t)>=0&&(h[e]=t)}));var g=Object.keys(h);a.textureFormats=g;var y=[];Object.keys(h).forEach((function(e){var t=h[e];y[t]=e}));var x=[];Object.keys(p).forEach((function(e){var t=p[e];x[t]=e}));var w=[];Object.keys(l).forEach((function(e){w[l[e]]=e}));var A=[];Object.keys(d).forEach((function(e){var t=d[e];A[t]=e}));var k=[];Object.keys(c).forEach((function(e){k[c[e]]=e}));var S=g.reduce((function(e,t){var r=h[t];return r===we||r===ye||r===we||r===Ae||r===ke||r===Se||n.ext_srgb&&(r===Oe||r===Ee)?e[r]=r:r===_e||t.indexOf(\"rgba\")>=0?e[r]=ge:e[r]=xe,e}),{});function O(){this.internalformat=ge,this.format=ge,this.type=Fe,this.compressed=!1,this.premultiplyAlpha=!1,this.flipY=!1,this.unpackAlignment=1,this.colorSpace=37444,this.width=0,this.height=0,this.channels=0}function E(e,t){e.internalformat=t.internalformat,e.format=t.format,e.type=t.type,e.compressed=t.compressed,e.premultiplyAlpha=t.premultiplyAlpha,e.flipY=t.flipY,e.unpackAlignment=t.unpackAlignment,e.colorSpace=t.colorSpace,e.width=t.width,e.height=t.height,e.channels=t.channels}function T(e,t){if(\"object\"==typeof t&&t){if(\"premultiplyAlpha\"in t&&(_.type(t.premultiplyAlpha,\"boolean\",\"invalid premultiplyAlpha\"),e.premultiplyAlpha=t.premultiplyAlpha),\"flipY\"in t&&(_.type(t.flipY,\"boolean\",\"invalid texture flip\"),e.flipY=t.flipY),\"alignment\"in t&&(_.oneOf(t.alignment,[1,2,4,8],\"invalid texture unpack alignment\"),e.unpackAlignment=t.alignment),\"colorSpace\"in t&&(_.parameter(t.colorSpace,m,\"invalid colorSpace\"),e.colorSpace=m[t.colorSpace]),\"type\"in t){var r=t.type;_(n.oes_texture_float||!(\"float\"===r||\"float32\"===r),\"you must enable the OES_texture_float extension in order to use floating point textures.\"),_(n.oes_texture_half_float||!(\"half float\"===r||\"float16\"===r),\"you must enable the OES_texture_half_float extension in order to use 16-bit floating point textures.\"),_(n.webgl_depth_texture||!(\"uint16\"===r||\"uint32\"===r||\"depth stencil\"===r),\"you must enable the WEBGL_depth_texture extension in order to use depth/stencil textures.\"),_.parameter(r,p,\"invalid texture type\"),e.type=p[r]}var i=e.width,o=e.height,f=e.channels,u=!1;\"shape\"in t?(_(Array.isArray(t.shape)&&t.shape.length>=2,\"shape must be an array\"),i=t.shape[0],o=t.shape[1],3===t.shape.length&&(f=t.shape[2],_(f>0&&f<=4,\"invalid number of channels\"),u=!0),_(i>=0&&i<=a.maxTextureSize,\"invalid width\"),_(o>=0&&o<=a.maxTextureSize,\"invalid height\")):(\"radius\"in t&&(i=o=t.radius,_(i>=0&&i<=a.maxTextureSize,\"invalid radius\")),\"width\"in t&&(i=t.width,_(i>=0&&i<=a.maxTextureSize,\"invalid width\")),\"height\"in t&&(o=t.height,_(o>=0&&o<=a.maxTextureSize,\"invalid height\")),\"channels\"in t&&(f=t.channels,_(f>0&&f<=4,\"invalid number of channels\"),u=!0)),e.width=0|i,e.height=0|o,e.channels=0|f;var s=!1;if(\"format\"in t){var c=t.format;_(n.webgl_depth_texture||!(\"depth\"===c||\"depth stencil\"===c),\"you must enable the WEBGL_depth_texture extension in order to use depth/stencil textures.\"),_.parameter(c,h,\"invalid texture format\");var l=e.internalformat=h[c];e.format=S[l],c in p&&(\"type\"in t||(e.type=p[c])),c in b&&(e.compressed=!0),s=!0}!u&&s?e.channels=Ne[e.format]:u&&!s?e.channels!==He[e.format]&&(e.format=e.internalformat=He[e.channels]):s&&u&&_(e.channels===Ne[e.format],\"number of channels inconsistent with specified format\")}}function D(e){r.pixelStorei(37440,e.flipY),r.pixelStorei(37441,e.premultiplyAlpha),r.pixelStorei(37443,e.colorSpace),r.pixelStorei(3317,e.unpackAlignment)}function j(){O.call(this),this.xOffset=0,this.yOffset=0,this.data=null,this.needsFree=!1,this.element=null,this.needsCopy=!1}function C(t,r){var n=null;if(ft(r)?n=r:r&&(_.type(r,\"object\",\"invalid pixel data type\"),T(t,r),\"x\"in r&&(t.xOffset=0|r.x),\"y\"in r&&(t.yOffset=0|r.y),ft(r.data)&&(n=r.data)),_(!t.compressed||n instanceof Uint8Array,\"compressed texture data must be stored in a uint8array\"),r.copy){_(!n,\"can not specify copy and data field for the same texture\");var i=o.viewportWidth,f=o.viewportHeight;t.width=t.width||i-t.xOffset,t.height=t.height||f-t.yOffset,t.needsCopy=!0,_(t.xOffset>=0&&t.xOffset=0&&t.yOffset0&&t.width<=i&&t.height>0&&t.height<=f,\"copy texture read out of bounds\")}else if(n){if(e(n))t.channels=t.channels||4,t.data=n,\"type\"in r||t.type!==Fe||(t.type=ut(n));else if(rt(n))t.channels=t.channels||4,function(e,t){var r=t.length;switch(e.type){case Fe:case Be:case Ve:case Ie:var n=L.allocType(e.type,r);n.set(t),e.data=n;break;case Te:e.data=de(t);break;default:_.raise(\"unsupported texture type, must specify a typed array\")}}(t,n),t.alignment=1,t.needsFree=!0;else if(G(n)){var u=n.data;Array.isArray(u)||t.type!==Fe||(t.type=ut(u));var s,c,l,d,m,p,h=n.shape,b=n.stride;3===h.length?(l=h[2],p=b[2]):(_(2===h.length,\"invalid ndarray pixel data, must be 2 or 3D\"),l=1,p=1),s=h[0],c=h[1],d=b[0],m=b[1],t.alignment=1,t.width=s,t.height=c,t.channels=l,t.format=t.internalformat=He[l],t.needsFree=!0,function(e,t,r,n,a,i){for(var o=e.width,f=e.height,u=e.channels,s=st(e,o*f*u),c=0,l=0;l=0,\"oes_texture_float extension not enabled\"):t.type===Te&&_(a.extensions.indexOf(\"oes_texture_half_float\")>=0,\"oes_texture_half_float extension not enabled\")}function z(e,t,n){var a=e.element,o=e.data,f=e.internalformat,u=e.format,s=e.type,c=e.width,l=e.height;D(e),a?r.texImage2D(t,n,u,u,s,a):e.compressed?r.compressedTexImage2D(t,n,f,c,l,0,o):e.needsCopy?(i(),r.copyTexImage2D(t,n,u,e.xOffset,e.yOffset,c,l,0)):r.texImage2D(t,n,u,c,l,0,u,s,o||null)}function F(e,t,n,a,o){var f=e.element,u=e.data,s=e.internalformat,c=e.format,l=e.type,d=e.width,m=e.height;D(e),f?r.texSubImage2D(t,o,n,a,c,l,f):e.compressed?r.compressedTexSubImage2D(t,o,n,a,s,d,m,u):e.needsCopy?(i(),r.copyTexSubImage2D(t,o,n,a,e.xOffset,e.yOffset,d,m)):r.texSubImage2D(t,o,n,a,d,m,c,l,u)}var B=[];function V(){return B.pop()||new j}function I(e){e.needsFree&&L.freeType(e.data),j.call(e),B.push(e)}function P(){O.call(this),this.genMipmaps=!1,this.mipmapHint=We,this.mipmask=0,this.images=Array(16)}function R(e,t,r){var n=e.images[0]=V();e.mipmask=1,n.width=e.width=t,n.height=e.height=r,n.channels=e.channels=4}function M(e,t){var r=null;if(ft(t))E(r=e.images[0]=V(),e),C(r,t),e.mipmask=1;else if(T(e,t),Array.isArray(t.mipmap))for(var n=t.mipmap,a=0;a>=a,r.height>>=a,C(r,n[a]),e.mipmask|=1<=0&&!(\"faces\"in t)&&(e.genMipmaps=!0)}if(\"mag\"in t){var n=t.mag;_.parameter(n,l),e.magFilter=l[n]}var i=e.wrapS,o=e.wrapT;if(\"wrap\"in t){var f=t.wrap;\"string\"==typeof f?(_.parameter(f,c),i=o=c[f]):Array.isArray(f)&&(_.parameter(f[0],c),_.parameter(f[1],c),i=c[f[0]],o=c[f[1]])}else{if(\"wrapS\"in t){var u=t.wrapS;_.parameter(u,c),i=c[u]}if(\"wrapT\"in t){var m=t.wrapT;_.parameter(m,c),o=c[m]}}if(e.wrapS=i,e.wrapT=o,\"anisotropic\"in t){var p=t.anisotropic;_(\"number\"==typeof p&&p>=1&&p<=a.maxAnisotropic,\"aniso samples must be between 1 and \"),e.anisotropic=t.anisotropic}if(\"mipmap\"in t){var h=!1;switch(typeof t.mipmap){case\"string\":_.parameter(t.mipmap,s,\"invalid mipmap hint\"),e.mipmapHint=s[t.mipmap],e.genMipmaps=!0,h=!0;break;case\"boolean\":h=e.genMipmaps=t.mipmap;break;case\"object\":_(Array.isArray(t.mipmap),\"invalid mipmap type\"),e.genMipmaps=!1,h=!0;break;default:_.raise(\"invalid mipmap type\")}h&&!(\"min\"in t)&&(e.minFilter=Re)}}function $(e,t){r.texParameteri(t,10241,e.minFilter),r.texParameteri(t,10240,e.magFilter),r.texParameteri(t,10242,e.wrapS),r.texParameteri(t,10243,e.wrapT),n.ext_texture_filter_anisotropic&&r.texParameteri(t,34046,e.anisotropic),e.genMipmaps&&(r.hint(33170,e.mipmapHint),r.generateMipmap(t))}var K=0,J={},Z=a.maxTextureUnits,ee=Array(Z).map((function(){return null}));function te(e){O.call(this),this.mipmask=0,this.internalformat=ge,this.id=K++,this.refCount=1,this.target=e,this.texture=r.createTexture(),this.unit=-1,this.bindCount=0,this.texInfo=new Y,u.profile&&(this.stats={size:0})}function re(e){r.activeTexture(Ue),r.bindTexture(e.target,e.texture)}function ne(){var e=ee[0];e?r.bindTexture(e.target,e.texture):r.bindTexture(he,null)}function ae(e){var t=e.texture;_(t,\"must not double destroy texture\");var n=e.unit,a=e.target;n>=0&&(r.activeTexture(Ue+n),r.bindTexture(a,null),ee[n]=null),r.deleteTexture(t),e.texture=null,e.params=null,e.pixels=null,e.refCount=0,delete J[e.id],f.textureCount--}return t(te.prototype,{bind:function(){var e=this;e.bindCount+=1;var t=e.unit;if(t<0){for(var n=0;n0)continue;a.unit=-1}ee[n]=e,t=n;break}t>=Z&&_.raise(\"insufficient number of texture units\"),u.profile&&f.maxTextureUnits>u)-o,s.height=s.height||(n.height>>u)-f,_(n.type===s.type&&n.format===s.format&&n.internalformat===s.internalformat,\"incompatible format for texture.subimage\"),_(o>=0&&f>=0&&o+s.width<=n.width&&f+s.height<=n.height,\"texture.subimage write out of bounds\"),_(n.mipmask&1<>f;++f){var s=a>>f,c=o>>f;if(!s||!c)break;r.texImage2D(he,f,n.format,s,c,0,n.format,n.type,null)}return ne(),u.profile&&(n.stats.size=lt(n.internalformat,n.type,a,o,!1,!1)),i},i._reglType=\"texture2d\",i._texture=n,u.profile&&(i.stats=n.stats),i.destroy=function(){n.decRef()},i},createCube:function(e,t,n,i,o,s){var c=new te(be);J[c.id]=c,f.cubeCount++;var l=new Array(6);function d(e,t,r,n,i,o){var f,s=c.texInfo;for(Y.call(s),f=0;f<6;++f)l[f]=q();if(\"number\"!=typeof e&&e)if(\"object\"==typeof e)if(t)M(l[0],e),M(l[1],t),M(l[2],r),M(l[3],n),M(l[4],i),M(l[5],o);else if(X(s,e),T(c,e),\"faces\"in e){var m=e.faces;for(_(Array.isArray(m)&&6===m.length,\"cube faces must be a length 6 array\"),f=0;f<6;++f)_(\"object\"==typeof m[f]&&!!m[f],\"invalid input for cube map face\"),E(l[f],c),M(l[f],m[f])}else for(f=0;f<6;++f)M(l[f],e);else _.raise(\"invalid arguments to cube map\");else{var p=0|e||1;for(f=0;f<6;++f)R(l[f],p,p)}for(E(c,l[0]),_.optional((function(){a.npotTextureCube||_(pe(c.width)&&pe(c.height),\"your browser does not support non power or two texture dimensions\")})),s.genMipmaps?c.mipmask=(l[0].width<<1)-1:c.mipmask=l[0].mipmask,_.textureCube(c,s,l,a),c.internalformat=l[0].internalformat,d.width=l[0].width,d.height=l[0].height,re(c),f=0;f<6;++f)W(l[f],ve+f);for($(s,be),ne(),u.profile&&(c.stats.size=lt(c.internalformat,c.type,d.width,d.height,s.genMipmaps,!0)),d.format=y[c.internalformat],d.type=x[c.type],d.mag=w[s.magFilter],d.min=A[s.minFilter],d.wrapS=k[s.wrapS],d.wrapT=k[s.wrapT],f=0;f<6;++f)Q(l[f]);return d}return d(e,t,n,i,o,s),d.subimage=function(e,t,r,n,a){_(!!t,\"must specify image data\"),_(\"number\"==typeof e&&e===(0|e)&&e>=0&&e<6,\"invalid face\");var i=0|r,o=0|n,f=0|a,u=V();return E(u,c),u.width=0,u.height=0,C(u,t),u.width=u.width||(c.width>>f)-i,u.height=u.height||(c.height>>f)-o,_(c.type===u.type&&c.format===u.format&&c.internalformat===u.internalformat,\"incompatible format for texture.subimage\"),_(i>=0&&o>=0&&i+u.width<=c.width&&o+u.height<=c.height,\"texture.subimage write out of bounds\"),_(c.mipmask&1<>a;++a)r.texImage2D(ve+n,a,c.format,t>>a,t>>a,0,c.format,c.type,null);return ne(),u.profile&&(c.stats.size=lt(c.internalformat,c.type,d.width,d.height,!1,!0)),d}},d._reglType=\"textureCube\",d._texture=c,u.profile&&(d.stats=c.stats),d.destroy=function(){c.decRef()},d},clear:function(){for(var e=0;e>t,e.height>>t,0,e.internalformat,e.type,null);else for(var n=0;n<6;++n)r.texImage2D(ve+n,t,e.internalformat,e.width>>t,e.height>>t,0,e.internalformat,e.type,null);$(e.texInfo,e.target)}))},refresh:function(){for(var e=0;e=0&&c=0&&l0&&d+c<=a.framebufferWidth,\"invalid width for read pixels\"),_(m>0&&m+l<=a.framebufferHeight,\"invalid height for read pixels\"),n();var h=d*m*4;return p||(s===Dt?p=new Uint8Array(h):s===jt&&(p=p||new Float32Array(h))),_.isTypedArray(p,\"data buffer for regl.read() must be a typedarray\"),_(p.byteLength>=h,\"data buffer for regl.read() too small\"),t.pixelStorei(3333,4),t.readPixels(c,l,d,m,6408,s,p),p}return function(e){return e&&\"framebuffer\"in e?function(e){var t;return r.setFBO({framebuffer:e.framebuffer},(function(){t=u(e)})),t}(e):u(e)}}function zt(e){return Array.prototype.slice.call(e)}function Ft(e){return zt(e).join(\"\")}var Bt=\"xyzw\".split(\"\"),Vt=\"dither\",It=\"blend.enable\",Pt=\"blend.color\",Lt=\"blend.equation\",Rt=\"blend.func\",Mt=\"depth.enable\",Wt=\"depth.func\",Ut=\"depth.range\",Gt=\"depth.mask\",Ht=\"colorMask\",Nt=\"cull.enable\",qt=\"cull.face\",Qt=\"frontFace\",Yt=\"lineWidth\",Xt=\"polygonOffset.enable\",$t=\"polygonOffset.offset\",Kt=\"sample.alpha\",Jt=\"sample.enable\",Zt=\"sample.coverage\",er=\"stencil.enable\",tr=\"stencil.mask\",rr=\"stencil.func\",nr=\"stencil.opFront\",ar=\"stencil.opBack\",ir=\"scissor.enable\",or=\"scissor.box\",fr=\"viewport\",ur=\"profile\",sr=\"framebuffer\",cr=\"vert\",lr=\"frag\",dr=\"elements\",mr=\"primitive\",pr=\"count\",hr=\"offset\",br=\"instances\",vr=\"vao\",gr=\"Width\",yr=\"Height\",xr=sr+gr,wr=sr+yr,Ar=\"drawingBufferWidth\",_r=\"drawingBufferHeight\",kr=[Rt,Lt,rr,nr,ar,Zt,fr,or,$t],Sr=34962,Or=34963,Er=5126,Tr=35664,Dr=35665,jr=35666,Cr=5124,zr=35667,Fr=35668,Br=35669,Vr=35670,Ir=35671,Pr=35672,Lr=35673,Rr=35674,Mr=35675,Wr=35676,Ur=35678,Gr=35680,Hr=1028,Nr=1029,qr=2305,Qr=7680,Yr={0:0,1:1,zero:0,one:1,\"src color\":768,\"one minus src color\":769,\"src alpha\":770,\"one minus src alpha\":771,\"dst color\":774,\"one minus dst color\":775,\"dst alpha\":772,\"one minus dst alpha\":773,\"constant color\":32769,\"one minus constant color\":32770,\"constant alpha\":32771,\"one minus constant alpha\":32772,\"src alpha saturate\":776},Xr=[\"constant color, constant alpha\",\"one minus constant color, constant alpha\",\"constant color, one minus constant alpha\",\"one minus constant color, one minus constant alpha\",\"constant alpha, constant color\",\"constant alpha, one minus constant color\",\"one minus constant alpha, constant color\",\"one minus constant alpha, one minus constant color\"],$r={never:512,less:513,\"<\":513,equal:514,\"=\":514,\"==\":514,\"===\":514,lequal:515,\"<=\":515,greater:516,\">\":516,notequal:517,\"!=\":517,\"!==\":517,gequal:518,\">=\":518,always:519},Kr={0:0,zero:0,keep:7680,replace:7681,increment:7682,decrement:7683,\"increment wrap\":34055,\"decrement wrap\":34056,invert:5386},Jr={frag:35632,vert:35633},Zr={cw:2304,ccw:qr};function en(t){return Array.isArray(t)||e(t)||G(t)}function tn(e){return e.sort((function(e,t){return e===fr?-1:t===fr?1:e=1,n>=2,t)}if(4===r){var a=e.data;return new rn(a.thisDep,a.contextDep,a.propDep,t)}if(5===r)return new rn(!1,!1,!1,t);if(6===r){for(var i=!1,o=!1,f=!1,u=0;u=1&&(o=!0),c>=2&&(f=!0)}else 4===s.type&&(i=i||s.data.thisDep,o=o||s.data.contextDep,f=f||s.data.propDep)}return new rn(i,o,f,t)}return new rn(3===r,2===r,1===r,t)}var fn=new rn(!1,!1,!1,(function(){}));function un(e,r,n,a,i,o,f,u,s,c,l,d,m,p,h){var b=c.Record,v={add:32774,subtract:32778,\"reverse subtract\":32779};n.ext_blend_minmax&&(v.min=32775,v.max=32776);var g=n.angle_instanced_arrays,y=n.webgl_draw_buffers,x=n.oes_vertex_array_object,w={dirty:!0,profile:h.profile},A={},k=[],S={},O={};function E(e){return e.replace(\".\",\"_\")}function T(e,t,r){var n=E(e);k.push(e),A[n]=w[n]=!!r,S[n]=t}function j(e,t,r){var n=E(e);k.push(e),Array.isArray(r)?(w[n]=r.slice(),A[n]=r.slice()):w[n]=A[n]=r,O[n]=t}T(Vt,3024),T(It,3042),j(Pt,\"blendColor\",[0,0,0,0]),j(Lt,\"blendEquationSeparate\",[32774,32774]),j(Rt,\"blendFuncSeparate\",[1,0,1,0]),T(Mt,2929,!0),j(Wt,\"depthFunc\",513),j(Ut,\"depthRange\",[0,1]),j(Gt,\"depthMask\",!0),j(Ht,Ht,[!0,!0,!0,!0]),T(Nt,2884),j(qt,\"cullFace\",Nr),j(Qt,Qt,qr),j(Yt,Yt,1),T(Xt,32823),j($t,\"polygonOffset\",[0,0]),T(Kt,32926),T(Jt,32928),j(Zt,\"sampleCoverage\",[1,!1]),T(er,2960),j(tr,\"stencilMask\",-1),j(rr,\"stencilFunc\",[519,0,-1]),j(nr,\"stencilOpSeparate\",[Hr,Qr,Qr,Qr]),j(ar,\"stencilOpSeparate\",[Nr,Qr,Qr,Qr]),T(ir,3089),j(or,\"scissor\",[0,0,e.drawingBufferWidth,e.drawingBufferHeight]),j(fr,fr,[0,0,e.drawingBufferWidth,e.drawingBufferHeight]);var C={gl:e,context:m,strings:r,next:A,current:w,draw:d,elements:o,buffer:i,shader:l,attributes:c.state,vao:c,uniforms:s,framebuffer:u,extensions:n,timer:p,isBufferArgs:en},z={primTypes:ie,compareFuncs:$r,blendFuncs:Yr,blendEquations:v,stencilOps:Kr,glTypes:X,orientationType:Zr};_.optional((function(){C.isArrayLike=me})),y&&(z.backBuffer=[Nr],z.drawBuffer=V(a.maxDrawbuffers,(function(e){return 0===e?[0]:V(e,(function(e){return 36064+e}))})));var F=0;function B(){var e=function(){var e=0,r=[],n=[];function a(){var r=[],n=[];return t((function(){r.push.apply(r,zt(arguments))}),{def:function(){var t=\"v\"+e++;return n.push(t),arguments.length>0&&(r.push(t,\"=\"),r.push.apply(r,zt(arguments)),r.push(\";\")),t},toString:function(){return Ft([n.length>0?\"var \"+n.join(\",\")+\";\":\"\",Ft(r)])}})}function i(){var e=a(),r=a(),n=e.toString,i=r.toString;function o(t,n){r(t,n,\"=\",e.def(t,n),\";\")}return t((function(){e.apply(e,zt(arguments))}),{def:e.def,entry:e,exit:r,save:o,set:function(t,r,n){o(t,r),e(t,r,\"=\",n,\";\")},toString:function(){return n()+i()}})}var o=a(),f={};return{global:o,link:function(t){for(var a=0;a=0,'unknown parameter \"'+t+'\"',d.commandStr)}))}t(m),t(p)}));var h=function(e,t){var r=e.static;if(\"string\"==typeof r[lr]&&\"string\"==typeof r[cr]){if(Object.keys(t.dynamic).length>0)return null;var n=t.static,a=Object.keys(n);if(a.length>0&&\"number\"==typeof n[a[0]]){for(var i=[],o=0;o=0,\"invalid \"+e,r.commandStr)):u=!1,\"height\"in i?(f=0|i.height,_.command(f>=0,\"invalid \"+e,r.commandStr)):u=!1,new rn(!u&&t&&t.thisDep,!u&&t&&t.contextDep,!u&&t&&t.propDep,(function(e,t){var r=e.shared.context,n=o;\"width\"in i||(n=t.def(r,\".\",xr,\"-\",s));var a=f;return\"height\"in i||(a=t.def(r,\".\",wr,\"-\",c)),[s,c,n,a]}))}if(e in a){var l=a[e],d=on(l,(function(t,r){var n=t.invoke(r,l);_.optional((function(){t.assert(r,n+\"&&typeof \"+n+'===\"object\"',\"invalid \"+e)}));var a=t.shared.context,i=r.def(n,\".x|0\"),o=r.def(n,\".y|0\"),f=r.def('\"width\" in ',n,\"?\",n,\".width|0:\",\"(\",a,\".\",xr,\"-\",i,\")\"),u=r.def('\"height\" in ',n,\"?\",n,\".height|0:\",\"(\",a,\".\",wr,\"-\",o,\")\");return _.optional((function(){t.assert(r,f+\">=0&&\"+u+\">=0\",\"invalid \"+e)})),[i,o,f,u]}));return t&&(d.thisDep=d.thisDep||t.thisDep,d.contextDep=d.contextDep||t.contextDep,d.propDep=d.propDep||t.propDep),d}return t?new rn(t.thisDep,t.contextDep,t.propDep,(function(e,t){var r=e.shared.context;return[0,0,t.def(r,\".\",xr),t.def(r,\".\",wr)]})):null}var o=i(fr);if(o){var f=o;o=new rn(o.thisDep,o.contextDep,o.propDep,(function(e,t){var r=f.append(e,t),n=e.shared.context;return t.set(n,\".viewportWidth\",r[2]),t.set(n,\".viewportHeight\",r[3]),r}))}return{viewport:o,scissor_box:i(or)}}(e,y,d),w=function(e,t){var r=e.static,n=e.dynamic,a={},i=!1,f=function(){if(vr in r){var e=r[vr];return null!==e&&null===c.getVAO(e)&&(e=c.createVAO(e)),i=!0,a.vao=e,an((function(t){var r=c.getVAO(e);return r?t.link(r):\"null\"}))}if(vr in n){i=!0;var t=n[vr];return on(t,(function(e,r){var n=e.invoke(r,t);return r.def(e.shared.vao+\".getVAO(\"+n+\")\")}))}return null}(),u=!1,s=function(){if(dr in r){var e=r[dr];if(a.elements=e,en(e)){var s=a.elements=o.create(e,!0);e=o.getElements(s),u=!0}else e&&(e=o.getElements(e),u=!0,_.command(e,\"invalid elements\",t.commandStr));var c=an((function(t,r){if(e){var n=t.link(e);return t.ELEMENTS=n,n}return t.ELEMENTS=null,null}));return c.value=e,c}if(dr in n){u=!0;var l=n[dr];return on(l,(function(e,t){var r=e.shared,n=r.isBufferArgs,a=r.elements,i=e.invoke(t,l),o=t.def(\"null\"),f=t.def(n,\"(\",i,\")\"),u=e.cond(f).then(o,\"=\",a,\".createStream(\",i,\");\").else(o,\"=\",a,\".getElements(\",i,\");\");return _.optional((function(){e.assert(u.else,\"!\"+i+\"||\"+o,\"invalid elements\")})),t.entry(u),t.exit(e.cond(f).then(a,\".destroyStream(\",o,\");\")),e.ELEMENTS=o,o}))}return i?new rn(f.thisDep,f.contextDep,f.propDep,(function(e,t){return t.def(e.shared.vao+\".currentVAO?\"+e.shared.elements+\".getElements(\"+e.shared.vao+\".currentVAO.elements):null\")})):null}();function l(e,o){if(e in r){var s=0|r[e];return o?a.offset=s:a.instances=s,_.command(!o||s>=0,\"invalid \"+e,t.commandStr),an((function(e,t){return o&&(e.OFFSET=s),s}))}if(e in n){var c=n[e];return on(c,(function(t,r){var n=t.invoke(r,c);return o&&(t.OFFSET=n,_.optional((function(){t.assert(r,n+\">=0\",\"invalid \"+e)}))),n}))}if(o){if(u)return an((function(e,t){return e.OFFSET=0,0}));if(i)return new rn(f.thisDep,f.contextDep,f.propDep,(function(e,t){return t.def(e.shared.vao+\".currentVAO?\"+e.shared.vao+\".currentVAO.offset:0\")}))}else if(i)return new rn(f.thisDep,f.contextDep,f.propDep,(function(e,t){return t.def(e.shared.vao+\".currentVAO?\"+e.shared.vao+\".currentVAO.instances:-1\")}));return null}var d=l(hr,!0),m=function(){if(mr in r){var e=r[mr];return a.primitive=e,_.commandParameter(e,ie,\"invalid primitve\",t.commandStr),an((function(t,r){return ie[e]}))}if(mr in n){var o=n[mr];return on(o,(function(e,t){var r=e.constants.primTypes,n=e.invoke(t,o);return _.optional((function(){e.assert(t,n+\" in \"+r,\"invalid primitive, must be one of \"+Object.keys(ie))})),t.def(r,\"[\",n,\"]\")}))}return u?nn(s)?s.value?an((function(e,t){return t.def(e.ELEMENTS,\".primType\")})):an((function(){return 4})):new rn(s.thisDep,s.contextDep,s.propDep,(function(e,t){var r=e.ELEMENTS;return t.def(r,\"?\",r,\".primType:\",4)})):i?new rn(f.thisDep,f.contextDep,f.propDep,(function(e,t){return t.def(e.shared.vao+\".currentVAO?\"+e.shared.vao+\".currentVAO.primitive:4\")})):null}(),p=function(){if(pr in r){var e=0|r[pr];return a.count=e,_.command(\"number\"==typeof e&&e>=0,\"invalid vertex count\",t.commandStr),an((function(){return e}))}if(pr in n){var o=n[pr];return on(o,(function(e,t){var r=e.invoke(t,o);return _.optional((function(){e.assert(t,\"typeof \"+r+'===\"number\"&&'+r+\">=0&&\"+r+\"===(\"+r+\"|0)\",\"invalid vertex count\")})),r}))}if(u){if(nn(s)){if(s)return d?new rn(d.thisDep,d.contextDep,d.propDep,(function(e,t){var r=t.def(e.ELEMENTS,\".vertCount-\",e.OFFSET);return _.optional((function(){e.assert(t,r+\">=0\",\"invalid vertex offset/element buffer too small\")})),r})):an((function(e,t){return t.def(e.ELEMENTS,\".vertCount\")}));var c=an((function(){return-1}));return _.optional((function(){c.MISSING=!0})),c}var l=new rn(s.thisDep||d.thisDep,s.contextDep||d.contextDep,s.propDep||d.propDep,(function(e,t){var r=e.ELEMENTS;return e.OFFSET?t.def(r,\"?\",r,\".vertCount-\",e.OFFSET,\":-1\"):t.def(r,\"?\",r,\".vertCount:-1\")}));return _.optional((function(){l.DYNAMIC=!0})),l}if(i){var m=new rn(f.thisDep,f.contextDep,f.propDep,(function(e,t){return t.def(e.shared.vao,\".currentVAO?\",e.shared.vao,\".currentVAO.count:-1\")}));return m}return null}(),h=l(br,!1);return{elements:s,primitive:m,count:p,instances:h,offset:d,vao:f,vaoActive:i,elementsActive:u,static:a}}(e,d),A=function(e,t){var r=e.static,n=e.dynamic,i={};return k.forEach((function(e){var o=E(e);function f(t,a){if(e in r){var f=t(r[e]);i[o]=an((function(){return f}))}else if(e in n){var u=n[e];i[o]=on(u,(function(e,t){return a(e,t,e.invoke(t,u))}))}}switch(e){case Nt:case It:case Vt:case er:case Mt:case ir:case Xt:case Kt:case Jt:case Gt:return f((function(r){return _.commandType(r,\"boolean\",e,t.commandStr),r}),(function(t,r,n){return _.optional((function(){t.assert(r,\"typeof \"+n+'===\"boolean\"',\"invalid flag \"+e,t.commandStr)})),n}));case Wt:return f((function(r){return _.commandParameter(r,$r,\"invalid \"+e,t.commandStr),$r[r]}),(function(t,r,n){var a=t.constants.compareFuncs;return _.optional((function(){t.assert(r,n+\" in \"+a,\"invalid \"+e+\", must be one of \"+Object.keys($r))})),r.def(a,\"[\",n,\"]\")}));case Ut:return f((function(e){return _.command(me(e)&&2===e.length&&\"number\"==typeof e[0]&&\"number\"==typeof e[1]&&e[0]<=e[1],\"depth range is 2d array\",t.commandStr),e}),(function(e,t,r){return _.optional((function(){e.assert(t,e.shared.isArrayLike+\"(\"+r+\")&&\"+r+\".length===2&&typeof \"+r+'[0]===\"number\"&&typeof '+r+'[1]===\"number\"&&'+r+\"[0]<=\"+r+\"[1]\",\"depth range must be a 2d array\")})),[t.def(\"+\",r,\"[0]\"),t.def(\"+\",r,\"[1]\")]}));case Rt:return f((function(e){_.commandType(e,\"object\",\"blend.func\",t.commandStr);var r=\"srcRGB\"in e?e.srcRGB:e.src,n=\"srcAlpha\"in e?e.srcAlpha:e.src,a=\"dstRGB\"in e?e.dstRGB:e.dst,i=\"dstAlpha\"in e?e.dstAlpha:e.dst;return _.commandParameter(r,Yr,o+\".srcRGB\",t.commandStr),_.commandParameter(n,Yr,o+\".srcAlpha\",t.commandStr),_.commandParameter(a,Yr,o+\".dstRGB\",t.commandStr),_.commandParameter(i,Yr,o+\".dstAlpha\",t.commandStr),_.command(-1===Xr.indexOf(r+\", \"+a),\"unallowed blending combination (srcRGB, dstRGB) = (\"+r+\", \"+a+\")\",t.commandStr),[Yr[r],Yr[a],Yr[n],Yr[i]]}),(function(t,r,n){var a=t.constants.blendFuncs;function i(i,o){var f=r.def('\"',i,o,'\" in ',n,\"?\",n,\".\",i,o,\":\",n,\".\",i);return _.optional((function(){t.assert(r,f+\" in \"+a,\"invalid \"+e+\".\"+i+o+\", must be one of \"+Object.keys(Yr))})),f}_.optional((function(){t.assert(r,n+\"&&typeof \"+n+'===\"object\"',\"invalid blend func, must be an object\")}));var o=i(\"src\",\"RGB\"),f=i(\"dst\",\"RGB\");_.optional((function(){var e=t.constants.invalidBlendCombinations;t.assert(r,e+\".indexOf(\"+o+'+\", \"+'+f+\") === -1 \",\"unallowed blending combination for (srcRGB, dstRGB)\")}));var u=r.def(a,\"[\",o,\"]\"),s=r.def(a,\"[\",i(\"src\",\"Alpha\"),\"]\");return[u,r.def(a,\"[\",f,\"]\"),s,r.def(a,\"[\",i(\"dst\",\"Alpha\"),\"]\")]}));case Lt:return f((function(r){return\"string\"==typeof r?(_.commandParameter(r,v,\"invalid \"+e,t.commandStr),[v[r],v[r]]):\"object\"==typeof r?(_.commandParameter(r.rgb,v,e+\".rgb\",t.commandStr),_.commandParameter(r.alpha,v,e+\".alpha\",t.commandStr),[v[r.rgb],v[r.alpha]]):void _.commandRaise(\"invalid blend.equation\",t.commandStr)}),(function(t,r,n){var a=t.constants.blendEquations,i=r.def(),o=r.def(),f=t.cond(\"typeof \",n,'===\"string\"');return _.optional((function(){function r(e,r,n){t.assert(e,n+\" in \"+a,\"invalid \"+r+\", must be one of \"+Object.keys(v))}r(f.then,e,n),t.assert(f.else,n+\"&&typeof \"+n+'===\"object\"',\"invalid \"+e),r(f.else,e+\".rgb\",n+\".rgb\"),r(f.else,e+\".alpha\",n+\".alpha\")})),f.then(i,\"=\",o,\"=\",a,\"[\",n,\"];\"),f.else(i,\"=\",a,\"[\",n,\".rgb];\",o,\"=\",a,\"[\",n,\".alpha];\"),r(f),[i,o]}));case Pt:return f((function(e){return _.command(me(e)&&4===e.length,\"blend.color must be a 4d array\",t.commandStr),V(4,(function(t){return+e[t]}))}),(function(e,t,r){return _.optional((function(){e.assert(t,e.shared.isArrayLike+\"(\"+r+\")&&\"+r+\".length===4\",\"blend.color must be a 4d array\")})),V(4,(function(e){return t.def(\"+\",r,\"[\",e,\"]\")}))}));case tr:return f((function(e){return _.commandType(e,\"number\",o,t.commandStr),0|e}),(function(e,t,r){return _.optional((function(){e.assert(t,\"typeof \"+r+'===\"number\"',\"invalid stencil.mask\")})),t.def(r,\"|0\")}));case rr:return f((function(r){_.commandType(r,\"object\",o,t.commandStr);var n=r.cmp||\"keep\",a=r.ref||0,i=\"mask\"in r?r.mask:-1;return _.commandParameter(n,$r,e+\".cmp\",t.commandStr),_.commandType(a,\"number\",e+\".ref\",t.commandStr),_.commandType(i,\"number\",e+\".mask\",t.commandStr),[$r[n],a,i]}),(function(e,t,r){var n=e.constants.compareFuncs;return _.optional((function(){function a(){e.assert(t,Array.prototype.join.call(arguments,\"\"),\"invalid stencil.func\")}a(r+\"&&typeof \",r,'===\"object\"'),a('!(\"cmp\" in ',r,\")||(\",r,\".cmp in \",n,\")\")})),[t.def('\"cmp\" in ',r,\"?\",n,\"[\",r,\".cmp]\",\":\",Qr),t.def(r,\".ref|0\"),t.def('\"mask\" in ',r,\"?\",r,\".mask|0:-1\")]}));case nr:case ar:return f((function(r){_.commandType(r,\"object\",o,t.commandStr);var n=r.fail||\"keep\",a=r.zfail||\"keep\",i=r.zpass||\"keep\";return _.commandParameter(n,Kr,e+\".fail\",t.commandStr),_.commandParameter(a,Kr,e+\".zfail\",t.commandStr),_.commandParameter(i,Kr,e+\".zpass\",t.commandStr),[e===ar?Nr:Hr,Kr[n],Kr[a],Kr[i]]}),(function(t,r,n){var a=t.constants.stencilOps;function i(i){return _.optional((function(){t.assert(r,'!(\"'+i+'\" in '+n+\")||(\"+n+\".\"+i+\" in \"+a+\")\",\"invalid \"+e+\".\"+i+\", must be one of \"+Object.keys(Kr))})),r.def('\"',i,'\" in ',n,\"?\",a,\"[\",n,\".\",i,\"]:\",Qr)}return _.optional((function(){t.assert(r,n+\"&&typeof \"+n+'===\"object\"',\"invalid \"+e)})),[e===ar?Nr:Hr,i(\"fail\"),i(\"zfail\"),i(\"zpass\")]}));case $t:return f((function(e){_.commandType(e,\"object\",o,t.commandStr);var r=0|e.factor,n=0|e.units;return _.commandType(r,\"number\",o+\".factor\",t.commandStr),_.commandType(n,\"number\",o+\".units\",t.commandStr),[r,n]}),(function(t,r,n){return _.optional((function(){t.assert(r,n+\"&&typeof \"+n+'===\"object\"',\"invalid \"+e)})),[r.def(n,\".factor|0\"),r.def(n,\".units|0\")]}));case qt:return f((function(e){var r=0;return\"front\"===e?r=Hr:\"back\"===e&&(r=Nr),_.command(!!r,o,t.commandStr),r}),(function(e,t,r){return _.optional((function(){e.assert(t,r+'===\"front\"||'+r+'===\"back\"',\"invalid cull.face\")})),t.def(r,'===\"front\"?',Hr,\":\",Nr)}));case Yt:return f((function(e){return _.command(\"number\"==typeof e&&e>=a.lineWidthDims[0]&&e<=a.lineWidthDims[1],\"invalid line width, must be a positive number between \"+a.lineWidthDims[0]+\" and \"+a.lineWidthDims[1],t.commandStr),e}),(function(e,t,r){return _.optional((function(){e.assert(t,\"typeof \"+r+'===\"number\"&&'+r+\">=\"+a.lineWidthDims[0]+\"&&\"+r+\"<=\"+a.lineWidthDims[1],\"invalid line width\")})),r}));case Qt:return f((function(e){return _.commandParameter(e,Zr,o,t.commandStr),Zr[e]}),(function(e,t,r){return _.optional((function(){e.assert(t,r+'===\"cw\"||'+r+'===\"ccw\"',\"invalid frontFace, must be one of cw,ccw\")})),t.def(r+'===\"cw\"?2304:'+qr)}));case Ht:return f((function(e){return _.command(me(e)&&4===e.length,\"color.mask must be length 4 array\",t.commandStr),e.map((function(e){return!!e}))}),(function(e,t,r){return _.optional((function(){e.assert(t,e.shared.isArrayLike+\"(\"+r+\")&&\"+r+\".length===4\",\"invalid color.mask\")})),V(4,(function(e){return\"!!\"+r+\"[\"+e+\"]\"}))}));case Zt:return f((function(e){_.command(\"object\"==typeof e&&e,o,t.commandStr);var r=\"value\"in e?e.value:1,n=!!e.invert;return _.command(\"number\"==typeof r&&r>=0&&r<=1,\"sample.coverage.value must be a number between 0 and 1\",t.commandStr),[r,n]}),(function(e,t,r){return _.optional((function(){e.assert(t,r+\"&&typeof \"+r+'===\"object\"',\"invalid sample.coverage\")})),[t.def('\"value\" in ',r,\"?+\",r,\".value:1\"),t.def(\"!!\",r,\".invert\")]}))}})),i}(e,d),S=function(e,t,n){var a=e.static,i=e.dynamic;function o(e){if(e in a){var t=r.id(a[e]);_.optional((function(){l.shader(Jr[e],t,_.guessCommand())}));var n=an((function(){return t}));return n.id=t,n}if(e in i){var o=i[e];return on(o,(function(t,r){var n=t.invoke(r,o),a=r.def(t.shared.strings,\".id(\",n,\")\");return _.optional((function(){r(t.shared.shader,\".shader(\",Jr[e],\",\",a,\",\",t.command,\");\")})),a}))}return null}var f,u=o(lr),s=o(cr),c=null;return nn(u)&&nn(s)?(c=l.program(s.id,u.id,null,n),f=an((function(e,t){return e.link(c)}))):f=new rn(u&&u.thisDep||s&&s.thisDep,u&&u.contextDep||s&&s.contextDep,u&&u.propDep||s&&s.propDep,(function(e,t){var r,n=e.shared.shader;r=u?u.append(e,t):t.def(n,\".\",lr);var a=n+\".program(\"+(s?s.append(e,t):t.def(n,\".\",cr))+\",\"+r;return _.optional((function(){a+=\",\"+e.command})),t.def(a+\")\")})),{frag:u,vert:s,progVar:f,program:c}}(e,0,h);function O(e){var t=x[e];t&&(A[e]=t)}O(fr),O(E(or));var T=Object.keys(A).length>0,D={framebuffer:y,draw:w,shader:S,state:A,dirty:T,scopeVAO:null,drawVAO:null,useVAO:!1,attributes:{}};if(D.profile=function(e){var t,r=e.static,n=e.dynamic;if(ur in r){var a=!!r[ur];(t=an((function(e,t){return a}))).enable=a}else if(ur in n){var i=n[ur];t=on(i,(function(e,t){return e.invoke(t,i)}))}return t}(e),D.uniforms=function(e,t){var r=e.static,n=e.dynamic,a={};return Object.keys(r).forEach((function(e){var n,i=r[e];if(\"number\"==typeof i||\"boolean\"==typeof i)n=an((function(){return i}));else if(\"function\"==typeof i){var o=i._reglType;\"texture2d\"===o||\"textureCube\"===o?n=an((function(e){return e.link(i)})):\"framebuffer\"===o||\"framebufferCube\"===o?(_.command(i.color.length>0,'missing color attachment for framebuffer sent to uniform \"'+e+'\"',t.commandStr),n=an((function(e){return e.link(i.color[0])}))):_.commandRaise('invalid data for uniform \"'+e+'\"',t.commandStr)}else me(i)?n=an((function(t){return t.global.def(\"[\",V(i.length,(function(r){return _.command(\"number\"==typeof i[r]||\"boolean\"==typeof i[r],\"invalid uniform \"+e,t.commandStr),i[r]})),\"]\")})):_.commandRaise('invalid or missing data for uniform \"'+e+'\"',t.commandStr);n.value=i,a[e]=n})),Object.keys(n).forEach((function(e){var t=n[e];a[e]=on(t,(function(e,r){return e.invoke(r,t)}))})),a}(f,d),D.drawVAO=D.scopeVAO=w.vao,!D.drawVAO&&S.program&&!h&&n.angle_instanced_arrays&&w.static.elements){var j=!0,C=S.program.attributes.map((function(e){var r=t.static[e];return j=j&&!!r,r}));if(j&&C.length>0){var z=c.getVAO(c.createVAO({attributes:C,elements:w.static.elements}));D.drawVAO=new rn(null,null,null,(function(e,t){return e.link(z)})),D.useVAO=!0}}return h?D.useVAO=!0:D.attributes=function(e,t){var n=e.static,a=e.dynamic,o={};return Object.keys(n).forEach((function(e){var a=n[e],f=r.id(e),u=new b;if(en(a))u.state=1,u.buffer=i.getBuffer(i.create(a,Sr,!1,!0)),u.type=0;else{var s=i.getBuffer(a);if(s)u.state=1,u.buffer=s,u.type=0;else if(_.command(\"object\"==typeof a&&a,\"invalid data for attribute \"+e,t.commandStr),\"constant\"in a){var c=a.constant;u.buffer=\"null\",u.state=2,\"number\"==typeof c?u.x=c:(_.command(me(c)&&c.length>0&&c.length<=4,\"invalid constant for attribute \"+e,t.commandStr),Bt.forEach((function(e,t){t=0,'invalid offset for attribute \"'+e+'\"',t.commandStr);var d=0|a.stride;_.command(d>=0&&d<256,'invalid stride for attribute \"'+e+'\", must be integer betweeen [0, 255]',t.commandStr);var m=0|a.size;_.command(!(\"size\"in a)||m>0&&m<=4,'invalid size for attribute \"'+e+'\", must be 1,2,3,4',t.commandStr);var p=!!a.normalized,h=0;\"type\"in a&&(_.commandParameter(a.type,X,\"invalid type for attribute \"+e,t.commandStr),h=X[a.type]);var v=0|a.divisor;_.optional((function(){\"divisor\"in a&&(_.command(0===v||g,'cannot specify divisor for attribute \"'+e+'\", instancing not supported',t.commandStr),_.command(v>=0,'invalid divisor for attribute \"'+e+'\"',t.commandStr));var r=t.commandStr,n=[\"buffer\",\"offset\",\"divisor\",\"normalized\",\"type\",\"size\",\"stride\"];Object.keys(a).forEach((function(t){_.command(n.indexOf(t)>=0,'unknown parameter \"'+t+'\" for attribute pointer \"'+e+'\" (valid parameters are '+n+\")\",r)}))})),u.buffer=s,u.state=1,u.size=m,u.normalized=p,u.type=h||s.dtype,u.offset=l,u.stride=d,u.divisor=v}}o[e]=an((function(e,t){var r=e.attribCache;if(f in r)return r[f];var n={isStream:!1};return Object.keys(u).forEach((function(e){n[e]=u[e]})),u.buffer&&(n.buffer=e.link(u.buffer),n.type=n.type||n.buffer+\".dtype\"),r[f]=n,n}))})),Object.keys(a).forEach((function(e){var t=a[e];o[e]=on(t,(function(r,n){var a=r.invoke(n,t),i=r.shared,o=r.constants,f=i.isBufferArgs,u=i.buffer;_.optional((function(){r.assert(n,a+\"&&(typeof \"+a+'===\"object\"||typeof '+a+'===\"function\")&&('+f+\"(\"+a+\")||\"+u+\".getBuffer(\"+a+\")||\"+u+\".getBuffer(\"+a+\".buffer)||\"+f+\"(\"+a+'.buffer)||(\"constant\" in '+a+\"&&(typeof \"+a+'.constant===\"number\"||'+i.isArrayLike+\"(\"+a+\".constant))))\",'invalid dynamic attribute \"'+e+'\"')}));var s={isStream:n.def(!1)},c=new b;c.state=1,Object.keys(c).forEach((function(e){s[e]=n.def(\"\"+c[e])}));var l=s.buffer,d=s.type;function m(e){n(s[e],\"=\",a,\".\",e,\"|0;\")}return n(\"if(\",f,\"(\",a,\")){\",s.isStream,\"=true;\",l,\"=\",u,\".createStream(\",Sr,\",\",a,\");\",d,\"=\",l,\".dtype;\",\"}else{\",l,\"=\",u,\".getBuffer(\",a,\");\",\"if(\",l,\"){\",d,\"=\",l,\".dtype;\",'}else if(\"constant\" in ',a,\"){\",s.state,\"=\",2,\";\",\"if(typeof \"+a+'.constant === \"number\"){',s[Bt[0]],\"=\",a,\".constant;\",Bt.slice(1).map((function(e){return s[e]})).join(\"=\"),\"=0;\",\"}else{\",Bt.map((function(e,t){return s[e]+\"=\"+a+\".constant.length>\"+t+\"?\"+a+\".constant[\"+t+\"]:0;\"})).join(\"\"),\"}}else{\",\"if(\",f,\"(\",a,\".buffer)){\",l,\"=\",u,\".createStream(\",Sr,\",\",a,\".buffer);\",\"}else{\",l,\"=\",u,\".getBuffer(\",a,\".buffer);\",\"}\",d,'=\"type\" in ',a,\"?\",o.glTypes,\"[\",a,\".type]:\",l,\".dtype;\",s.normalized,\"=!!\",a,\".normalized;\"),m(\"size\"),m(\"offset\"),m(\"stride\"),m(\"divisor\"),n(\"}}\"),n.exit(\"if(\",s.isStream,\"){\",u,\".destroyStream(\",l,\");\",\"}\"),s}))})),o}(t,d),D.context=function(e){var t=e.static,r=e.dynamic,n={};return Object.keys(t).forEach((function(e){var r=t[e];n[e]=an((function(e,t){return\"number\"==typeof r||\"boolean\"==typeof r?\"\"+r:e.link(r)}))})),Object.keys(r).forEach((function(e){var t=r[e];n[e]=on(t,(function(e,r){return e.invoke(r,t)}))})),n}(s),D}function P(e,t,r){var n=e.shared.context,a=e.scope();Object.keys(r).forEach((function(i){t.save(n,\".\"+i);var o=r[i].append(e,t);Array.isArray(o)?a(n,\".\",i,\"=[\",o.join(),\"];\"):a(n,\".\",i,\"=\",o,\";\")})),t(a)}function L(e,t,r,n){var a,i=e.shared,o=i.gl,f=i.framebuffer;y&&(a=t.def(i.extensions,\".webgl_draw_buffers\"));var u,s=e.constants,c=s.drawBuffer,l=s.backBuffer;u=r?r.append(e,t):t.def(f,\".next\"),n||t(\"if(\",u,\"!==\",f,\".cur){\"),t(\"if(\",u,\"){\",o,\".bindFramebuffer(\",36160,\",\",u,\".framebuffer);\"),y&&t(a,\".drawBuffersWEBGL(\",c,\"[\",u,\".colorAttachments.length]);\"),t(\"}else{\",o,\".bindFramebuffer(\",36160,\",null);\"),y&&t(a,\".drawBuffersWEBGL(\",l,\");\"),t(\"}\",f,\".cur=\",u,\";\"),n||t(\"}\")}function R(e,t,r){var n=e.shared,a=n.gl,i=e.current,o=e.next,f=n.current,u=n.next,s=e.cond(f,\".dirty\");k.forEach((function(t){var n,c,l=E(t);if(!(l in r.state))if(l in o){n=o[l],c=i[l];var d=V(w[l].length,(function(e){return s.def(n,\"[\",e,\"]\")}));s(e.cond(d.map((function(e,t){return e+\"!==\"+c+\"[\"+t+\"]\"})).join(\"||\")).then(a,\".\",O[l],\"(\",d,\");\",d.map((function(e,t){return c+\"[\"+t+\"]=\"+e})).join(\";\"),\";\"))}else{n=s.def(u,\".\",l);var m=e.cond(n,\"!==\",f,\".\",l);s(m),l in S?m(e.cond(n).then(a,\".enable(\",S[l],\");\").else(a,\".disable(\",S[l],\");\"),f,\".\",l,\"=\",n,\";\"):m(a,\".\",O[l],\"(\",n,\");\",f,\".\",l,\"=\",n,\";\")}})),0===Object.keys(r.state).length&&s(f,\".dirty=false;\"),t(s)}function M(e,t,r,n){var a=e.shared,i=e.current,o=a.current,f=a.gl;tn(Object.keys(r)).forEach((function(a){var u=r[a];if(!n||n(u)){var s=u.append(e,t);if(S[a]){var c=S[a];nn(u)?t(f,s?\".enable(\":\".disable(\",c,\");\"):t(e.cond(s).then(f,\".enable(\",c,\");\").else(f,\".disable(\",c,\");\")),t(o,\".\",a,\"=\",s,\";\")}else if(me(s)){var l=i[a];t(f,\".\",O[a],\"(\",s,\");\",s.map((function(e,t){return l+\"[\"+t+\"]=\"+e})).join(\";\"),\";\")}else t(f,\".\",O[a],\"(\",s,\");\",o,\".\",a,\"=\",s,\";\")}}))}function W(e,t){g&&(e.instancing=t.def(e.shared.extensions,\".angle_instanced_arrays\"))}function U(e,t,r,n,a){var i,o,f,u=e.shared,s=e.stats,c=u.current,l=u.timer,d=r.profile;function m(){return\"undefined\"==typeof performance?\"Date.now()\":\"performance.now()\"}function h(e){e(i=t.def(),\"=\",m(),\";\"),\"string\"==typeof a?e(s,\".count+=\",a,\";\"):e(s,\".count++;\"),p&&(n?e(o=t.def(),\"=\",l,\".getNumPendingQueries();\"):e(l,\".beginQuery(\",s,\");\"))}function b(e){e(s,\".cpuTime+=\",m(),\"-\",i,\";\"),p&&(n?e(l,\".pushScopeStats(\",o,\",\",l,\".getNumPendingQueries(),\",s,\");\"):e(l,\".endQuery();\"))}function v(e){var r=t.def(c,\".profile\");t(c,\".profile=\",e,\";\"),t.exit(c,\".profile=\",r,\";\")}if(d){if(nn(d))return void(d.enable?(h(t),b(t.exit),v(\"true\")):v(\"false\"));v(f=d.append(e,t))}else f=t.def(c,\".profile\");var g=e.block();h(g),t(\"if(\",f,\"){\",g,\"}\");var y=e.block();b(y),t.exit(\"if(\",f,\"){\",y,\"}\")}function G(e,t,r,n,a){var i=e.shared;n.forEach((function(n){var o,f=n.name,u=r.attributes[f];if(u){if(!a(u))return;o=u.append(e,t)}else{if(!a(fn))return;var s=e.scopeAttrib(f);_.optional((function(){e.assert(t,s+\".state\",\"missing attribute \"+f)})),o={},Object.keys(new b).forEach((function(e){o[e]=t.def(s,\".\",e)}))}!function(r,n,a){var o=i.gl,f=t.def(r,\".location\"),u=t.def(i.attributes,\"[\",f,\"]\"),s=a.state,c=a.buffer,l=[a.x,a.y,a.z,a.w],d=[\"buffer\",\"normalized\",\"offset\",\"stride\"];function m(){t(\"if(!\",u,\".buffer){\",o,\".enableVertexAttribArray(\",f,\");}\");var r,i=a.type;if(r=a.size?t.def(a.size,\"||\",n):n,t(\"if(\",u,\".type!==\",i,\"||\",u,\".size!==\",r,\"||\",d.map((function(e){return u+\".\"+e+\"!==\"+a[e]})).join(\"||\"),\"){\",o,\".bindBuffer(\",Sr,\",\",c,\".buffer);\",o,\".vertexAttribPointer(\",[f,r,i,a.normalized,a.stride,a.offset],\");\",u,\".type=\",i,\";\",u,\".size=\",r,\";\",d.map((function(e){return u+\".\"+e+\"=\"+a[e]+\";\"})).join(\"\"),\"}\"),g){var s=a.divisor;t(\"if(\",u,\".divisor!==\",s,\"){\",e.instancing,\".vertexAttribDivisorANGLE(\",[f,s],\");\",u,\".divisor=\",s,\";}\")}}function p(){t(\"if(\",u,\".buffer){\",o,\".disableVertexAttribArray(\",f,\");\",u,\".buffer=null;\",\"}if(\",Bt.map((function(e,t){return u+\".\"+e+\"!==\"+l[t]})).join(\"||\"),\"){\",o,\".vertexAttrib4f(\",f,\",\",l,\");\",Bt.map((function(e,t){return u+\".\"+e+\"=\"+l[t]+\";\"})).join(\"\"),\"}\")}1===s?m():2===s?p():(t(\"if(\",s,\"===\",1,\"){\"),m(),t(\"}else{\"),p(),t(\"}\"))}(e.link(n),function(e){switch(e){case Tr:case zr:case Ir:return 2;case Dr:case Fr:case Pr:return 3;case jr:case Br:case Lr:return 4;default:return 1}}(n.info.type),o)}))}function H(e,t,n,a,i,o){for(var f,u=e.shared,s=u.gl,c={},l=0;l1){if(!b)continue;var v=m.replace(\"[0]\",\"\");if(c[v])continue;c[v]=1}var g,y=e.link(d)+\".location\";if(b){if(!i(b))continue;if(nn(b)){var x=b.value;if(_.command(null!=x,'missing uniform \"'+m+'\"',e.commandStr),p===Ur||p===Gr){_.command(\"function\"==typeof x&&(p===Ur&&(\"texture2d\"===x._reglType||\"framebuffer\"===x._reglType)||p===Gr&&(\"textureCube\"===x._reglType||\"framebufferCube\"===x._reglType)),\"invalid texture for uniform \"+m,e.commandStr);var w=e.link(x._texture||x.color[0]._texture);t(s,\".uniform1i(\",y,\",\",w+\".bind());\"),t.exit(w,\".unbind();\")}else if(p===Rr||p===Mr||p===Wr){_.optional((function(){_.command(me(x),\"invalid matrix for uniform \"+m,e.commandStr),_.command(p===Rr&&4===x.length||p===Mr&&9===x.length||p===Wr&&16===x.length,\"invalid length for matrix uniform \"+m,e.commandStr)}));var A=e.global.def(\"new Float32Array([\"+Array.prototype.slice.call(x)+\"])\"),k=2;p===Mr?k=3:p===Wr&&(k=4),t(s,\".uniformMatrix\",k,\"fv(\",y,\",false,\",A,\");\")}else{switch(p){case Er:1===h?_.commandType(x,\"number\",\"uniform \"+m,e.commandStr):_.command(me(x)&&x.length===h,\"uniform \"+m,e.commandStr),f=\"1f\";break;case Tr:_.command(me(x)&&x.length&&x.length%2==0&&x.length<=2*h,\"uniform \"+m,e.commandStr),f=\"2f\";break;case Dr:_.command(me(x)&&x.length&&x.length%3==0&&x.length<=3*h,\"uniform \"+m,e.commandStr),f=\"3f\";break;case jr:_.command(me(x)&&x.length&&x.length%4==0&&x.length<=4*h,\"uniform \"+m,e.commandStr),f=\"4f\";break;case Vr:1===h?_.commandType(x,\"boolean\",\"uniform \"+m,e.commandStr):_.command(me(x)&&x.length===h,\"uniform \"+m,e.commandStr),f=\"1i\";break;case Cr:1===h?_.commandType(x,\"number\",\"uniform \"+m,e.commandStr):_.command(me(x)&&x.length===h,\"uniform \"+m,e.commandStr),f=\"1i\";break;case Ir:case zr:_.command(me(x)&&x.length&&x.length%2==0&&x.length<=2*h,\"uniform \"+m,e.commandStr),f=\"2i\";break;case Pr:case Fr:_.command(me(x)&&x.length&&x.length%3==0&&x.length<=3*h,\"uniform \"+m,e.commandStr),f=\"3i\";break;case Lr:case Br:_.command(me(x)&&x.length&&x.length%4==0&&x.length<=4*h,\"uniform \"+m,e.commandStr),f=\"4i\"}h>1?(f+=\"v\",x=e.global.def(\"[\"+Array.prototype.slice.call(x)+\"]\")):x=me(x)?Array.prototype.slice.call(x):x,t(s,\".uniform\",f,\"(\",y,\",\",x,\");\")}continue}g=b.append(e,t)}else{if(!i(fn))continue;g=t.def(u.uniforms,\"[\",r.id(m),\"]\")}p===Ur?(_(!Array.isArray(g),\"must specify a scalar prop for textures\"),t(\"if(\",g,\"&&\",g,'._reglType===\"framebuffer\"){',g,\"=\",g,\".color[0];\",\"}\")):p===Gr&&(_(!Array.isArray(g),\"must specify a scalar prop for cube maps\"),t(\"if(\",g,\"&&\",g,'._reglType===\"framebufferCube\"){',g,\"=\",g,\".color[0];\",\"}\")),_.optional((function(){function r(r,n){e.assert(t,r,'bad data or missing for uniform \"'+m+'\". '+n)}function n(e,t){1===t&&_(!Array.isArray(g),\"must not specify an array type for uniform\"),r(\"Array.isArray(\"+g+\") && typeof \"+g+'[0]===\" '+e+'\" || typeof '+g+'===\"'+e+'\"',\"invalid type, expected \"+e)}function a(t,n,a){Array.isArray(g)?_(g.length&&g.length%t==0&&g.length<=t*a,\"must have length of \"+(1===a?\"\":\"n * \")+t):r(u.isArrayLike+\"(\"+g+\")&&\"+g+\".length && \"+g+\".length % \"+t+\" === 0 && \"+g+\".length<=\"+t*a,\"invalid vector, should have length of \"+(1===a?\"\":\"n * \")+t,e.commandStr)}function i(t){_(!Array.isArray(g),\"must not specify a value type\"),r(\"typeof \"+g+'===\"function\"&&'+g+'._reglType===\"texture'+(3553===t?\"2d\":\"Cube\")+'\"',\"invalid texture type\",e.commandStr)}switch(p){case Cr:n(\"number\",h);break;case zr:a(2,0,h);break;case Fr:a(3,0,h);break;case Br:a(4,0,h);break;case Er:n(\"number\",h);break;case Tr:a(2,0,h);break;case Dr:a(3,0,h);break;case jr:a(4,0,h);break;case Vr:n(\"boolean\",h);break;case Ir:a(2,0,h);break;case Pr:a(3,0,h);break;case Lr:case Rr:a(4,0,h);break;case Mr:a(9,0,h);break;case Wr:a(16,0,h);break;case Ur:i(3553);break;case Gr:i(34067)}}));var S=1;switch(p){case Ur:case Gr:var O=t.def(g,\"._texture\");t(s,\".uniform1i(\",y,\",\",O,\".bind());\"),t.exit(O,\".unbind();\");continue;case Cr:case Vr:f=\"1i\";break;case zr:case Ir:f=\"2i\",S=2;break;case Fr:case Pr:f=\"3i\",S=3;break;case Br:case Lr:f=\"4i\",S=4;break;case Er:f=\"1f\";break;case Tr:f=\"2f\",S=2;break;case Dr:f=\"3f\",S=3;break;case jr:f=\"4f\",S=4;break;case Rr:f=\"Matrix2fv\";break;case Mr:f=\"Matrix3fv\";break;case Wr:f=\"Matrix4fv\"}if(-1===f.indexOf(\"Matrix\")&&h>1&&(f+=\"v\",S=1),\"M\"===f.charAt(0)){t(s,\".uniform\",f,\"(\",y,\",\");var E=Math.pow(p-Rr+2,2),T=e.global.def(\"new Float32Array(\",E,\")\");Array.isArray(g)?t(\"false,(\",V(E,(function(e){return T+\"[\"+e+\"]=\"+g[e]})),\",\",T,\")\"):t(\"false,(Array.isArray(\",g,\")||\",g,\" instanceof Float32Array)?\",g,\":(\",V(E,(function(e){return T+\"[\"+e+\"]=\"+g+\"[\"+e+\"]\"})),\",\",T,\")\"),t(\");\")}else if(S>1){for(var D=[],j=[],C=0;C=0\",\"missing vertex count\")}))):(a=u.def(o,\".\",pr),_.optional((function(){e.assert(u,a+\">=0\",\"missing vertex count\")}))),a}();if(\"number\"==typeof p){if(0===p)return}else r(\"if(\",p,\"){\"),r.exit(\"}\");g&&(c=s(br),l=e.instancing);var h=u+\".type\",b=f.elements&&nn(f.elements)&&!f.vaoActive;function v(){function e(){r(l,\".drawElementsInstancedANGLE(\",[d,p,h,m+\"<<((\"+h+\"-5121)>>1)\",c],\");\")}function t(){r(l,\".drawArraysInstancedANGLE(\",[d,m,p,c],\");\")}u&&\"null\"!==u?b?e():(r(\"if(\",u,\"){\"),e(),r(\"}else{\"),t(),r(\"}\")):t()}function y(){function e(){r(i+\".drawElements(\"+[d,p,h,m+\"<<((\"+h+\"-5121)>>1)\"]+\");\")}function t(){r(i+\".drawArrays(\"+[d,m,p]+\");\")}u&&\"null\"!==u?b?e():(r(\"if(\",u,\"){\"),e(),r(\"}else{\"),t(),r(\"}\")):t()}g&&(\"number\"!=typeof c||c>=0)?\"string\"==typeof c?(r(\"if(\",c,\">0){\"),v(),r(\"}else if(\",c,\"<0){\"),y(),r(\"}\")):v():y()}function q(e,t,r,n,a){var i=B(),o=i.proc(\"body\",a);return _.optional((function(){i.commandStr=t.commandStr,i.command=i.link(t.commandStr)})),g&&(i.instancing=o.def(i.shared.extensions,\".angle_instanced_arrays\")),e(i,o,r,n),i.compile().body}function Q(e,t,r,n){W(e,t),r.useVAO?r.drawVAO?t(e.shared.vao,\".setVAO(\",r.drawVAO.append(e,t),\");\"):t(e.shared.vao,\".setVAO(\",e.shared.vao,\".targetVAO);\"):(t(e.shared.vao,\".setVAO(null);\"),G(e,t,r,n.attributes,(function(){return!0}))),H(e,t,r,n.uniforms,(function(){return!0}),!1),N(e,t,t,r)}function Y(e,t,r,n){function a(){return!0}e.batchId=\"a1\",W(e,t),G(e,t,r,n.attributes,a),H(e,t,r,n.uniforms,a,!1),N(e,t,t,r)}function $(e,t,r,n){W(e,t);var a=r.contextDep,i=t.def(),o=t.def();e.shared.props=o,e.batchId=i;var f=e.scope(),u=e.scope();function s(e){return e.contextDep&&a||e.propDep}function c(e){return!s(e)}if(t(f.entry,\"for(\",i,\"=0;\",i,\"<\",\"a1\",\";++\",i,\"){\",o,\"=\",\"a0\",\"[\",i,\"];\",u,\"}\",f.exit),r.needsContext&&P(e,u,r.context),r.needsFramebuffer&&L(e,u,r.framebuffer),M(e,u,r.state,s),r.profile&&s(r.profile)&&U(e,u,r,!1,!0),n)r.useVAO?r.drawVAO?s(r.drawVAO)?u(e.shared.vao,\".setVAO(\",r.drawVAO.append(e,u),\");\"):f(e.shared.vao,\".setVAO(\",r.drawVAO.append(e,f),\");\"):f(e.shared.vao,\".setVAO(\",e.shared.vao,\".targetVAO);\"):(f(e.shared.vao,\".setVAO(null);\"),G(e,f,r,n.attributes,c),G(e,u,r,n.attributes,s)),H(e,f,r,n.uniforms,c,!1),H(e,u,r,n.uniforms,s,!0),N(e,f,u,r);else{var l=e.global.def(\"{}\"),d=r.shader.progVar.append(e,u),m=u.def(d,\".id\"),p=u.def(l,\"[\",m,\"]\");u(e.shared.gl,\".useProgram(\",d,\".program);\",\"if(!\",p,\"){\",p,\"=\",l,\"[\",m,\"]=\",e.link((function(t){return q(Y,e,r,t,2)})),\"(\",d,\");}\",p,\".call(this,a0[\",i,\"],\",i,\");\")}}function K(e,t,r){var n=t.static[r];if(n&&function(e){if(\"object\"==typeof e&&!me(e)){for(var t=Object.keys(e),r=0;r0&&r(e.shared.current,\".dirty=true;\"),e.shared.vao&&r(e.shared.vao,\".setVAO(null);\")}(f,u),function(e,t){var n=e.proc(\"scope\",3);e.batchId=\"a2\";var a=e.shared,i=a.current;function o(r){var i=t.shader[r];i&&n.set(a.shader,\".\"+r,i.append(e,n))}P(e,n,t.context),t.framebuffer&&t.framebuffer.append(e,n),tn(Object.keys(t.state)).forEach((function(r){var i=t.state[r].append(e,n);me(i)?i.forEach((function(t,a){n.set(e.next[r],\"[\"+a+\"]\",t)})):n.set(a.next,\".\"+r,i)})),U(e,n,t,!0,!0),[dr,hr,pr,br,mr].forEach((function(r){var i=t.draw[r];i&&n.set(a.draw,\".\"+r,\"\"+i.append(e,n))})),Object.keys(t.uniforms).forEach((function(i){var o=t.uniforms[i].append(e,n);Array.isArray(o)&&(o=\"[\"+o.join()+\"]\"),n.set(a.uniforms,\"[\"+r.id(i)+\"]\",o)})),Object.keys(t.attributes).forEach((function(r){var a=t.attributes[r].append(e,n),i=e.scopeAttrib(r);Object.keys(new b).forEach((function(e){n.set(i,\".\"+e,a[e])}))})),t.scopeVAO&&n.set(a.vao,\".targetVAO\",t.scopeVAO.append(e,n)),o(cr),o(lr),Object.keys(t.state).length>0&&(n(i,\".dirty=true;\"),n.exit(i,\".dirty=true;\")),n(\"a1(\",e.shared.context,\",a0,\",e.batchId,\");\")}(f,u),function(e,t){var r=e.proc(\"batch\",2);e.batchId=\"0\",W(e,r);var n=!1,a=!0;Object.keys(t.context).forEach((function(e){n=n||t.context[e].propDep})),n||(P(e,r,t.context),a=!1);var i=t.framebuffer,o=!1;function f(e){return e.contextDep&&n||e.propDep}i?(i.propDep?n=o=!0:i.contextDep&&n&&(o=!0),o||L(e,r,i)):L(e,r,null),t.state.viewport&&t.state.viewport.propDep&&(n=!0),R(e,r,t),M(e,r,t.state,(function(e){return!f(e)})),t.profile&&f(t.profile)||U(e,r,t,!1,\"a1\"),t.contextDep=n,t.needsContext=a,t.needsFramebuffer=o;var u=t.shader.progVar;if(u.contextDep&&n||u.propDep)$(e,r,t,null);else{var s=u.append(e,r);if(r(e.shared.gl,\".useProgram(\",s,\".program);\"),t.shader.program)$(e,r,t,t.shader.program);else{r(e.shared.vao,\".setVAO(null);\");var c=e.global.def(\"{}\"),l=r.def(s,\".id\"),d=r.def(c,\"[\",l,\"]\");r(e.cond(d).then(d,\".call(this,a0,a1);\").else(d,\"=\",c,\"[\",l,\"]=\",e.link((function(r){return q($,e,t,r,2)})),\"(\",s,\");\",d,\".call(this,a0,a1);\"))}}Object.keys(t.state).length>0&&r(e.shared.current,\".dirty=true;\"),e.shared.vao&&r(e.shared.vao,\".setVAO(null);\")}(f,u),t(f.compile(),{destroy:function(){u.shader.program.destroy()}})}}}var sn=function(e,t){if(!t.ext_disjoint_timer_query)return null;var r=[];function n(e){r.push(e)}var a=[];function i(){this.startQueryIndex=-1,this.endQueryIndex=-1,this.sum=0,this.stats=null}var o=[];function f(e){o.push(e)}var u=[];function s(e,t,r){var n=o.pop()||new i;n.startQueryIndex=e,n.endQueryIndex=t,n.sum=0,n.stats=r,u.push(n)}var c=[],l=[];return{beginQuery:function(e){var n=r.pop()||t.ext_disjoint_timer_query.createQueryEXT();t.ext_disjoint_timer_query.beginQueryEXT(35007,n),a.push(n),s(a.length-1,a.length,e)},endQuery:function(){t.ext_disjoint_timer_query.endQueryEXT(35007)},pushScopeStats:s,update:function(){var e,r,i=a.length;if(0!==i){l.length=Math.max(l.length,i+1),c.length=Math.max(c.length,i+1),c[0]=0,l[0]=0;var o=0;for(e=0,r=0;r0)if(Array.isArray(r[0])){f=J(r);for(var c=1,l=1;l0)if(\"number\"==typeof t[0]){var i=L.allocType(d.dtype,t.length);ne(i,t),p(i,a),L.freeType(i)}else if(Array.isArray(t[0])||e(t[0])){n=J(t);var o=K(t,n,d.dtype);p(o,a),L.freeType(o)}else _.raise(\"invalid buffer data\")}else if(G(t)){n=t.shape;var f=t.stride,u=0,s=0,c=0,l=0;1===n.length?(u=n[0],s=1,c=f[0],l=0):2===n.length?(u=n[0],s=n[1],c=f[0],l=f[1]):_.raise(\"invalid shape\");var h=Array.isArray(t.data)?d.dtype:re(t.data),b=L.allocType(h,u*s);ae(b,t.data,u,s,c,l,t.offset),p(b,a),L.freeType(b)}else _.raise(\"invalid data for buffer subdata\");return m},n.profile&&(m.stats=d.stats),m.destroy=function(){l(d)},m},createStream:function(e,t){var r=u.pop();return r||(r=new f(e)),r.bind(),c(r,t,35040,0,1,!1),r},destroyStream:function(e){u.push(e)},clear:function(){H(o).forEach(l),u.forEach(l)},getBuffer:function(e){return e&&e._buffer instanceof f?e._buffer:null},restore:function(){H(o).forEach((function(e){e.buffer=t.createBuffer(),t.bindBuffer(e.type,e.buffer),t.bufferData(e.type,e.persistentData||e.byteLength,e.usage)}))},_initBuffer:c}}(a,l,n,(function(e){return A.destroyBuffer(e)})),w=function(t,r,n,a){var i={},o=0,f={uint8:oe,uint16:fe};function u(e){this.id=o++,i[this.id]=this,this.buffer=e,this.primType=4,this.vertCount=0,this.type=0}r.oes_element_index_uint&&(f.uint32=ue),u.prototype.bind=function(){this.buffer.bind()};var s=[];function c(a,i,o,f,u,s,c){var l;if(a.buffer.bind(),i){var d=c;c||e(i)&&(!G(i)||e(i.data))||(d=r.oes_element_index_uint?ue:fe),n._initBuffer(a.buffer,i,o,d,3)}else t.bufferData(se,s,o),a.buffer.dtype=l||oe,a.buffer.usage=o,a.buffer.dimension=3,a.buffer.byteLength=s;if(l=c,!c){switch(a.buffer.dtype){case oe:case 5120:l=oe;break;case fe:case 5122:l=fe;break;case ue:case 5124:l=ue;break;default:_.raise(\"unsupported type for element array\")}a.buffer.dtype=l}a.type=l,_(l!==ue||!!r.oes_element_index_uint,\"32 bit element buffers not supported, enable oes_element_index_uint first\");var m=u;m<0&&(m=a.buffer.byteLength,l===fe?m>>=1:l===ue&&(m>>=2)),a.vertCount=m;var p=f;if(f<0){p=4;var h=a.buffer.dimension;1===h&&(p=0),2===h&&(p=1),3===h&&(p=4)}a.primType=p}function l(e){a.elementsCount--,_(null!==e.buffer,\"must not double destroy elements\"),delete i[e.id],e.buffer.destroy(),e.buffer=null}return{create:function(t,r){var i=n.create(null,se,!0),o=new u(i._buffer);function s(t){if(t)if(\"number\"==typeof t)i(t),o.primType=4,o.vertCount=0|t,o.type=oe;else{var r=null,n=35044,a=-1,u=-1,l=0,d=0;Array.isArray(t)||e(t)||G(t)?r=t:(_.type(t,\"object\",\"invalid arguments for elements\"),\"data\"in t&&(r=t.data,_(Array.isArray(r)||e(r)||G(r),\"invalid data for element buffer\")),\"usage\"in t&&(_.parameter(t.usage,$,\"invalid element buffer usage\"),n=$[t.usage]),\"primitive\"in t&&(_.parameter(t.primitive,ie,\"invalid element buffer primitive\"),a=ie[t.primitive]),\"count\"in t&&(_(\"number\"==typeof t.count&&t.count>=0,\"invalid vertex count for elements\"),u=0|t.count),\"type\"in t&&(_.parameter(t.type,f,\"invalid buffer type\"),d=f[t.type]),\"length\"in t?l=0|t.length:(l=u,d===fe||5122===d?l*=2:d!==ue&&5124!==d||(l*=4))),c(o,r,n,a,u,l,d)}else i(),o.primType=4,o.vertCount=0,o.type=oe;return s}return a.elementsCount++,s(t),s._reglType=\"elements\",s._elements=o,s.subdata=function(e,t){return i.subdata(e,t),s},s.destroy=function(){l(o)},s},createStream:function(e){var t=s.pop();return t||(t=new u(n.create(null,se,!0,!1)._buffer)),c(t,e,35040,-1,-1,0,0),t},destroyStream:function(e){s.push(e)},getElements:function(e){return\"function\"==typeof e&&e._elements instanceof u?e._elements:null},clear:function(){H(i).forEach(l)}}}(a,d,x,l),A=function(t,r,n,a,i,o,f){for(var u=n.maxAttributes,s=new Array(u),c=0;c{for(var e=Object.keys(t),r=0;r=0,'invalid option for vao: \"'+e[r]+'\" valid options are '+Et)})),_(Array.isArray(a),\"attributes must be an array\")}_(a.length0,\"must specify at least one attribute\");var c={},l=n.attributes;l.length=a.length;for(var d=0;d=b.byteLength?m.subdata(b):(m.destroy(),n.buffers[d]=null)),n.buffers[d]||(m=n.buffers[d]=i.create(p,34962,!1,!0)),h.buffer=i.getBuffer(m),h.size=0|h.buffer.dimension,h.normalized=!1,h.type=h.buffer.dtype,h.offset=0,h.stride=0,h.divisor=0,h.state=1,c[d]=1):i.getBuffer(p)?(h.buffer=i.getBuffer(p),h.size=0|h.buffer.dimension,h.normalized=!1,h.type=h.buffer.dtype,h.offset=0,h.stride=0,h.divisor=0,h.state=1):i.getBuffer(p.buffer)?(h.buffer=i.getBuffer(p.buffer),h.size=0|(+p.size||h.buffer.dimension),h.normalized=!!p.normalized||!1,\"type\"in p?(_.parameter(p.type,X,\"invalid buffer type\"),h.type=X[p.type]):h.type=h.buffer.dtype,h.offset=0|(p.offset||0),h.stride=0|(p.stride||0),h.divisor=0|(p.divisor||0),h.state=1,_(h.size>=1&&h.size<=4,\"size must be between 1 and 4\"),_(h.offset>=0,\"invalid offset\"),_(h.stride>=0&&h.stride<=255,\"stride must be between 0 and 255\"),_(h.divisor>=0,\"divisor must be positive\"),_(!h.divisor||!!r.angle_instanced_arrays,\"ANGLE_instanced_arrays must be enabled to use divisor\")):\"x\"in p?(_(d>0,\"first attribute must not be a constant\"),h.x=+p.x||0,h.y=+p.y||0,h.z=+p.z||0,h.w=+p.w||0,h.state=2):_(!1,\"invalid attribute spec for location \"+d)}for(var v=0;v1)for(var v=0;v1&&(y=y.replace(\"[0]\",\"\")),u(b,new f(y,r.id(y),e.getUniformLocation(m,y),c))}var x=e.getProgramParameter(m,35721);a.profile&&(t.stats.attributesCount=x);var w=t.attributes;for(o=0;oe&&(e=t.stats.uniformsCount)})),e},n.getMaxAttributesCount=function(){var e=0;return l.forEach((function(t){t.stats.attributesCount>e&&(e=t.stats.attributesCount)})),e}),{clear:function(){var t=e.deleteShader.bind(e);H(i).forEach(t),i={},H(o).forEach(t),o={},l.forEach((function(t){e.deleteProgram(t.program)})),l.length=0,c={},n.shaderCount=0},program:function(r,a,f,u){_.command(r>=0,\"missing vertex shader\",f),_.command(a>=0,\"missing fragment shader\",f);var s=c[a];s||(s=c[a]={});var d=s[r];if(d&&(d.refCount++,!u))return d;var h=new m(a,r);return n.shaderCount++,p(h,f,u),d||(s[r]=h),l.push(h),t(h,{destroy:function(){if(h.refCount--,h.refCount<=0){e.deleteProgram(h.program);var t=l.indexOf(h);l.splice(t,1),n.shaderCount--}s[h.vertId].refCount<=0&&(e.deleteShader(o[h.vertId]),delete o[h.vertId],delete c[h.fragId][h.vertId]),Object.keys(c[h.fragId]).length||(e.deleteShader(i[h.fragId]),delete i[h.fragId],delete c[h.fragId])}})},restore:function(){i={},o={};for(var e=0;e=2,\"invalid renderbuffer shape\"),f=0|m[0],u=0|m[1]}else\"radius\"in d&&(f=u=0|d.radius),\"width\"in d&&(f=0|d.width),\"height\"in d&&(u=0|d.height);\"format\"in d&&(_.parameter(d.format,i,\"invalid renderbuffer format\"),s=i[d.format])}else\"number\"==typeof t?(f=0|t,u=\"number\"==typeof n?0|n:f):t?_.raise(\"invalid arguments to renderbuffer constructor\"):f=u=1;if(_(f>0&&u>0&&f<=r.maxRenderbufferSize&&u<=r.maxRenderbufferSize,\"invalid renderbuffer size\"),f!==c.width||u!==c.height||s!==c.format)return l.width=c.width=f,l.height=c.height=u,c.format=s,e.bindRenderbuffer(mt,c.renderbuffer),e.renderbufferStorage(mt,s,f,u),_(0===e.getError(),\"invalid render buffer format\"),a.profile&&(c.stats.size=bt(c.format,c.width,c.height)),l.format=o[c.format],l}return u[c.id]=c,n.renderbufferCount++,l(t,f),l.resize=function(t,n){var i=0|t,o=0|n||i;return i===c.width&&o===c.height||(_(i>0&&o>0&&i<=r.maxRenderbufferSize&&o<=r.maxRenderbufferSize,\"invalid renderbuffer size\"),l.width=c.width=i,l.height=c.height=o,e.bindRenderbuffer(mt,c.renderbuffer),e.renderbufferStorage(mt,c.format,i,o),_(0===e.getError(),\"invalid render buffer format\"),a.profile&&(c.stats.size=bt(c.format,c.width,c.height))),l},l._reglType=\"renderbuffer\",l._renderbuffer=c,a.profile&&(l.stats=c.stats),l.destroy=function(){c.decRef()},l},clear:function(){H(u).forEach(c)},restore:function(){H(u).forEach((function(t){t.renderbuffer=e.createRenderbuffer(),e.bindRenderbuffer(mt,t.renderbuffer),e.renderbufferStorage(mt,t.format,t.width,t.height)})),e.bindRenderbuffer(mt,null)}}}(a,d,y,l,n),E=function(e,r,n,a,i,o){var f={cur:null,next:null,dirty:!1,setFBO:null},u=[\"rgba\"],s=[\"rgba4\",\"rgb565\",\"rgb5 a1\"];r.ext_srgb&&s.push(\"srgba\"),r.ext_color_buffer_half_float&&s.push(\"rgba16f\",\"rgb16f\"),r.webgl_color_buffer_float&&s.push(\"rgba32f\");var c=[\"uint8\"];function l(e,t,r){this.target=e,this.texture=t,this.renderbuffer=r;var n=0,a=0;t?(n=t.width,a=t.height):r&&(n=r.width,a=r.height),this.width=n,this.height=a}function d(e){e&&(e.texture&&e.texture._texture.decRef(),e.renderbuffer&&e.renderbuffer._renderbuffer.decRef())}function m(e,t,r){if(e)if(e.texture){var n=e.texture._texture,a=Math.max(1,n.width),i=Math.max(1,n.height);_(a===t&&i===r,\"inconsistent width/height for supplied texture\"),n.refCount+=1}else{var o=e.renderbuffer._renderbuffer;_(o.width===t&&o.height===r,\"inconsistent width/height for renderbuffer\"),o.refCount+=1}}function p(t,r){r&&(r.texture?e.framebufferTexture2D(vt,t,r.target,r.texture._texture.texture,0):e.framebufferRenderbuffer(vt,t,gt,r.renderbuffer._renderbuffer.renderbuffer))}function h(e){var t=yt,r=null,n=null,a=e;\"object\"==typeof e&&(a=e.data,\"target\"in e&&(t=0|e.target)),_.type(a,\"function\",\"invalid attachment data\");var i=a._reglType;return\"texture2d\"===i?(r=a,_(t===yt)):\"textureCube\"===i?(r=a,_(t>=xt&&t<34075,\"invalid cube map target\")):\"renderbuffer\"===i?(n=a,t=gt):_.raise(\"invalid regl object for attachment\"),new l(t,r,n)}function b(e,t,r,n,o){if(r){var f=a.create2D({width:e,height:t,format:n,type:o});return f._texture.refCount=0,new l(yt,f,null)}var u=i.create({width:e,height:t,format:n});return u._renderbuffer.refCount=0,new l(gt,null,u)}function v(e){return e&&(e.texture||e.renderbuffer)}function g(e,t,r){e&&(e.texture?e.texture.resize(t,r):e.renderbuffer&&e.renderbuffer.resize(t,r),e.width=t,e.height=r)}r.oes_texture_half_float&&c.push(\"half float\",\"float16\"),r.oes_texture_float&&c.push(\"float\",\"float32\");var y=0,x={};function w(){this.id=y++,x[this.id]=this,this.framebuffer=e.createFramebuffer(),this.width=0,this.height=0,this.colorAttachments=[],this.depthAttachment=null,this.stencilAttachment=null,this.depthStencilAttachment=null}function A(e){e.colorAttachments.forEach(d),d(e.depthAttachment),d(e.stencilAttachment),d(e.depthStencilAttachment)}function k(t){var r=t.framebuffer;_(r,\"must not double destroy framebuffer\"),e.deleteFramebuffer(r),t.framebuffer=null,o.framebufferCount--,delete x[t.id]}function S(t){var r;e.bindFramebuffer(vt,t.framebuffer);var a=t.colorAttachments;for(r=0;r=2,\"invalid shape for framebuffer\"),o=z[0],d=z[1]}else\"radius\"in C&&(o=d=C.radius),\"width\"in C&&(o=C.width),\"height\"in C&&(d=C.height);(\"color\"in C||\"colors\"in C)&&(y=C.color||C.colors,Array.isArray(y)&&_(1===y.length||r.webgl_draw_buffers,\"multiple render targets not supported\")),y||(\"colorCount\"in C&&(O=0|C.colorCount,_(O>0,\"invalid color buffer count\")),\"colorTexture\"in C&&(x=!!C.colorTexture,w=\"rgba4\"),\"colorType\"in C&&(k=C.colorType,x?(_(r.oes_texture_float||!(\"float\"===k||\"float32\"===k),\"you must enable OES_texture_float in order to use floating point framebuffer objects\"),_(r.oes_texture_half_float||!(\"half float\"===k||\"float16\"===k),\"you must enable OES_texture_half_float in order to use 16-bit floating point framebuffer objects\")):\"half float\"===k||\"float16\"===k?(_(r.ext_color_buffer_half_float,\"you must enable EXT_color_buffer_half_float to use 16-bit render buffers\"),w=\"rgba16f\"):\"float\"!==k&&\"float32\"!==k||(_(r.webgl_color_buffer_float,\"you must enable WEBGL_color_buffer_float in order to use 32-bit floating point renderbuffers\"),w=\"rgba32f\"),_.oneOf(k,c,\"invalid color type\")),\"colorFormat\"in C&&(w=C.colorFormat,u.indexOf(w)>=0?x=!0:s.indexOf(w)>=0?x=!1:_.optional((function(){x?_.oneOf(C.colorFormat,u,\"invalid color format for texture\"):_.oneOf(C.colorFormat,s,\"invalid color format for renderbuffer\")})))),(\"depthTexture\"in C||\"depthStencilTexture\"in C)&&(j=!(!C.depthTexture&&!C.depthStencilTexture),_(!j||r.webgl_depth_texture,\"webgl_depth_texture extension not supported\")),\"depth\"in C&&(\"boolean\"==typeof C.depth?p=C.depth:(E=C.depth,g=!1)),\"stencil\"in C&&(\"boolean\"==typeof C.stencil?g=C.stencil:(T=C.stencil,p=!1)),\"depthStencil\"in C&&(\"boolean\"==typeof C.depthStencil?p=g=C.depthStencil:(D=C.depthStencil,p=!1,g=!1))}else o=d=1;var F=null,B=null,V=null,I=null;if(Array.isArray(y))F=y.map(h);else if(y)F=[h(y)];else for(F=new Array(O),a=0;a=0||F[a].renderbuffer&&kt.indexOf(F[a].renderbuffer._renderbuffer.format)>=0,\"framebuffer color attachment \"+a+\" is invalid\"),F[a]&&F[a].texture){var L=At[F[a].texture._texture.format]*_t[F[a].texture._texture.type];null===P?P=L:_(P===L,\"all color attachments much have the same number of bits per pixel.\")}return m(B,o,d),_(!B||B.texture&&6402===B.texture._texture.format||B.renderbuffer&&33189===B.renderbuffer._renderbuffer.format,\"invalid depth attachment for framebuffer object\"),m(V,o,d),_(!V||V.renderbuffer&&36168===V.renderbuffer._renderbuffer.format,\"invalid stencil attachment for framebuffer object\"),m(I,o,d),_(!I||I.texture&&34041===I.texture._texture.format||I.renderbuffer&&34041===I.renderbuffer._renderbuffer.format,\"invalid depth-stencil attachment for framebuffer object\"),A(i),i.width=o,i.height=d,i.colorAttachments=F,i.depthAttachment=B,i.stencilAttachment=V,i.depthStencilAttachment=I,l.color=F.map(v),l.depth=v(B),l.stencil=v(V),l.depthStencil=v(I),l.width=i.width,l.height=i.height,S(i),l}return o.framebufferCount++,l(e,a),t(l,{resize:function(e,t){_(f.next!==i,\"can not resize a framebuffer which is currently in use\");var r=Math.max(0|e,1),n=Math.max(0|t||r,1);if(r===i.width&&n===i.height)return l;for(var a=i.colorAttachments,o=0;o=2,\"invalid shape for framebuffer\"),_(g[0]===g[1],\"cube framebuffer must be square\"),d=g[0]}else\"radius\"in v&&(d=0|v.radius),\"width\"in v?(d=0|v.width,\"height\"in v&&_(v.height===d,\"must be square\")):\"height\"in v&&(d=0|v.height);(\"color\"in v||\"colors\"in v)&&(m=v.color||v.colors,Array.isArray(m)&&_(1===m.length||r.webgl_draw_buffers,\"multiple render targets not supported\")),m||(\"colorCount\"in v&&(b=0|v.colorCount,_(b>0,\"invalid color buffer count\")),\"colorType\"in v&&(_.oneOf(v.colorType,c,\"invalid color type\"),h=v.colorType),\"colorFormat\"in v&&(p=v.colorFormat,_.oneOf(v.colorFormat,u,\"invalid color format for texture\"))),\"depth\"in v&&(l.depth=v.depth),\"stencil\"in v&&(l.stencil=v.stencil),\"depthStencil\"in v&&(l.depthStencil=v.depthStencil)}else d=1;if(m)if(Array.isArray(m))for(s=[],n=0;n0&&(l.depth=i[0].depth,l.stencil=i[0].stencil,l.depthStencil=i[0].depthStencil),i[n]?i[n](l):i[n]=O(l)}return t(o,{width:d,height:d,color:s})}return o(e),t(o,{faces:i,resize:function(e){var t,r=0|e;if(_(r>0&&r<=n.maxCubeMapSize,\"invalid radius for cube fbo\"),r===o.width)return o;var a=o.color;for(t=0;t=0;--e){var t=I[e];t&&t(v,null,0)}a.flush(),m&&m.update()}function ce(){!Q&&I.length>0&&(Q=j.next(Y))}function le(){Q&&(j.cancel(Y),Q=null)}function de(e){e.preventDefault(),o=!0,le(),P.forEach((function(e){e()}))}function me(e){a.getError(),o=!1,f.restore(),k.restore(),x.restore(),S.restore(),O.restore(),E.restore(),A.restore(),m&&m.restore(),T.procs.refresh(),ce(),N.forEach((function(e){e()}))}function pe(e){function r(e,t){var r={},n={};return Object.keys(e).forEach((function(a){var i=e[a];if(D.isDynamic(i))n[a]=D.unbox(i,a);else{if(t&&Array.isArray(i))for(var o=0;o0)return l.call(this,function(e){for(;m.length=0,\"cannot cancel a frame twice\"),I[t]=function e(){var t=dn(I,e);I[t]=I[I.length-1],I.length-=1,I.length<=0&&le()}}}}function ge(){var e=F.viewport,t=F.scissor_box;e[0]=e[1]=t[0]=t[1]=0,v.viewportWidth=v.framebufferWidth=v.drawingBufferWidth=e[2]=t[2]=a.drawingBufferWidth,v.viewportHeight=v.framebufferHeight=v.drawingBufferHeight=e[3]=t[3]=a.drawingBufferHeight}function ye(){v.tick+=1,v.time=we(),ge(),T.procs.poll()}function xe(){S.refresh(),ge(),T.procs.refresh(),m&&m.update()}function we(){return(C()-p)/1e3}xe();var Ae=t(pe,{clear:function(e){if(_(\"object\"==typeof e&&e,\"regl.clear() takes an object as input\"),\"framebuffer\"in e)if(e.framebuffer&&\"framebufferCube\"===e.framebuffer_reglType)for(var r=0;r<6;++r)he(t({framebuffer:e.framebuffer.faces[r]},e),be);else he(e,be);else be(0,e)},prop:D.define.bind(null,1),context:D.define.bind(null,2),this:D.define.bind(null,3),draw:pe({}),buffer:function(e){return x.create(e,34962,!1,!1)},elements:function(e){return w.create(e,!1)},texture:S.create2D,cube:S.createCube,renderbuffer:O.create,framebuffer:E.create,framebufferCube:E.createCube,vao:A.createVAO,attributes:i,frame:ve,on:function(e,t){var r;switch(_.type(t,\"function\",\"listener callback must be a function\"),e){case\"frame\":return ve(t);case\"lost\":r=P;break;case\"restore\":r=N;break;case\"destroy\":r=q;break;default:_.raise(\"invalid event, must be one of frame,lost,restore,destroy\")}return r.push(t),{cancel:function(){for(var e=0;e=0},read:z,destroy:function(){I.length=0,le(),V&&(V.removeEventListener(cn,de),V.removeEventListener(ln,me)),k.clear(),E.clear(),O.clear(),A.clear(),S.clear(),w.clear(),x.clear(),m&&m.clear(),q.forEach((function(e){e()}))},_gl:a,_refresh:xe,poll:function(){ye(),m&&m.update()},now:we,stats:l});return n.onDone(null,Ae),Ae}},\"object\"==typeof r&&void 0!==t?t.exports=o():\"function\"==typeof define&&define.amd?define(o):i.createREGL=o()},\n", + " 413: function _(t,e,a,s,r){s();const n=t(414),_=t(9),o=t(12);class c{constructor(t){this._regl=t,this._map=new Map}_create_texture(t){const e=t.length;let a=0;const s=[];let r=0,_=0;for(let n=0;nc[f+1]&&f++;const s=t[f],n=c[f]+.5*s;let o=.5*s-Math.abs(a-n);f%2==1&&(o=-o),m[e]=Math.round(255*(o-r)/(_-r))}return[[a,u,r,_],this._regl.texture({shape:[l,1,1],data:m,wrapS:\"repeat\",format:\"alpha\",type:\"uint8\",mag:\"linear\",min:\"linear\"})]}_get_key(t){return t.join(\",\")}_get_or_create(t){const e=this._get_key(t);let a=this._map.get(e);if(null==a){const s=(0,n.gcd)(t);if(s>1){t=(0,o.map)(t,(t=>t/s)),a=this._get_or_create(t);const[r,n,_]=a;a=[r,n,s],this._map.set(e,a)}else{const[r,n]=this._create_texture(t);a=[r,n,s],this._map.set(e,a)}}return a}get(t){return t.length%2==1&&(t=(0,_.concat)([t,t])),this._get_or_create(t)}}a.DashCache=c,c.__name__=\"DashCache\"},\n", + " 414: function _(n,t,e,r,o){function u(n,t){let e,r;n>t?(e=n,r=t):(e=t,r=n);let o=e%r;for(;0!=o;)e=r,r=o,o=e%r;return r}r(),e.gcd=function(n){let t=n[0];for(let e=1;e= 0.0 ? 1.0 : -1.0;\\n}\\n\\nvoid main()\\n{\\n if (a_show_curr < 0.5) {\\n // Line segment has non-finite value at one or both ends, do not render.\\n gl_Position = vec4(-2.0, -2.0, 0.0, 1.0);\\n return;\\n }\\n\\n const float min_miter_factor_round_join_mesh = sqrt(2.0);\\n\\n int join_type = int(u_line_join + 0.5);\\n int cap_type = int(u_line_cap + 0.5);\\n float halfwidth = 0.5*(u_linewidth + u_antialias);\\n vec2 segment_along = normalize(a_point_end - a_point_start); // unit vector.\\n v_segment_length = length(a_point_end - a_point_start);\\n vec2 segment_right = right_vector(segment_along); // unit vector.\\n vec2 xy;\\n\\n bool miter_too_large_start = false;\\n bool miter_too_large_end = false;\\n\\n v_coords.y = a_position.y*halfwidth; // Overwritten later for end points.\\n\\n bool has_start_cap = a_show_prev < 0.5;\\n bool has_end_cap = a_show_next < 0.5;\\n\\n vec2 point_normal_start;\\n float cos_theta_start;\\n float turn_right_start;\\n if (has_start_cap)\\n point_normal_start = segment_right;\\n else {\\n vec2 prev_right = right_vector(normalize(a_point_start - a_point_prev));\\n point_normal_start = normalize(segment_right + prev_right);\\n cos_theta_start = dot(segment_right, point_normal_start); // Always +ve\\n turn_right_start = sign_no_zero(dot(segment_right, a_point_prev - a_point_start));\\n }\\n\\n vec2 point_normal_end;\\n float cos_theta_end;\\n float turn_right_end;\\n if (has_end_cap)\\n point_normal_end = segment_right;\\n else {\\n vec2 next_right = right_vector(normalize(a_point_next - a_point_end));\\n point_normal_end = normalize(segment_right + next_right);\\n cos_theta_end = dot(segment_right, point_normal_end); // Always +ve\\n turn_right_end = sign_no_zero(dot(segment_right, a_point_next - a_point_end));\\n }\\n\\n float miter_factor_start = 1.0 / dot(segment_right, point_normal_start);\\n float miter_factor_end = 1.0 / dot(segment_right, point_normal_end);\\n if (join_type == miter_join) {\\n // If miter too large, use bevel join instead.\\n miter_too_large_start = (miter_factor_start > u_miter_limit);\\n miter_too_large_end = (miter_factor_end > u_miter_limit);\\n }\\n\\n float sign_at_start = -sign(a_position.x); // +ve at segment start, -ve end.\\n vec2 point = sign_at_start > 0.0 ? a_point_start : a_point_end;\\n vec2 adjacent_point =\\n sign_at_start > 0.0 ? (has_start_cap ? a_point_start : a_point_prev)\\n : (has_end_cap ? a_point_end : a_point_next);\\n\\n if ( (has_start_cap && sign_at_start > 0.0) ||\\n (has_end_cap && sign_at_start < 0.0) ) {\\n // Cap.\\n xy = point - segment_right*(halfwidth*a_position.y);\\n if (cap_type == butt_cap)\\n xy -= sign_at_start*0.5*u_antialias*segment_along;\\n else\\n xy -= sign_at_start*halfwidth*segment_along;\\n }\\n else { // Join.\\n // +ve if turning to right, -ve if to left.\\n float turn_sign = sign_at_start > 0.0 ? turn_right_start : turn_right_end;\\n\\n vec2 adjacent_right = sign_at_start*normalize(right_vector(point - adjacent_point));\\n vec2 point_right = normalize(segment_right + adjacent_right);\\n float miter_factor = sign_at_start > 0.0 ? miter_factor_start : miter_factor_end;\\n bool miter_too_large = sign_at_start > 0.0 ? miter_too_large_start : miter_too_large_end;\\n\\n if (abs(a_position.x) > 1.5) {\\n // Outer point, meets prev/next segment.\\n float factor; // multiplied by halfwidth...\\n\\n if (join_type == bevel_join || (join_type == miter_join && miter_too_large))\\n factor = 1.0 / miter_factor; // cos_theta.\\n else if (join_type == round_join &&\\n miter_factor > min_miter_factor_round_join_mesh)\\n factor = 1.0;\\n else // miter, or round (small angle only).\\n factor = miter_factor;\\n\\n xy = point - point_right*(halfwidth*turn_sign*factor);\\n v_coords.y = turn_sign*halfwidth*factor / miter_factor;\\n }\\n else if (turn_sign*a_position.y < 0.0) {\\n // Inner point, meets prev/next segment.\\n float len = halfwidth*miter_factor;\\n float segment_len = v_segment_length;\\n float adjacent_len = distance(point, adjacent_point);\\n\\n if (len <= min(segment_len, adjacent_len))\\n // Normal behaviour.\\n xy = point - point_right*(len*a_position.y);\\n else\\n // For short wide line segments the inner point using the above\\n // calculation can be outside of the line. Here clipping it.\\n xy = point + segment_right*(halfwidth*turn_sign);\\n }\\n else {\\n // Point along outside edge.\\n xy = point - segment_right*(halfwidth*a_position.y);\\n if (join_type == round_join &&\\n miter_factor > min_miter_factor_round_join_mesh) {\\n xy = line_intersection(xy, segment_along,\\n point - turn_sign*point_right*halfwidth,\\n right_vector(point_right));\\n }\\n }\\n }\\n\\n vec2 pos = xy + 0.5; // Bokeh's offset.\\n pos /= u_canvas_size / u_pixel_ratio; // in 0..1\\n gl_Position = vec4(2.0*pos.x - 1.0, 1.0 - 2.0*pos.y, 0.0, 1.0);\\n\\n v_coords.x = dot(xy - a_point_start, segment_along);\\n v_flags = float(int(has_start_cap) +\\n 2*int(has_end_cap) +\\n 4*int(miter_too_large_start) +\\n 8*int(miter_too_large_end));\\n v_cos_theta_turn_right_start = cos_theta_start*turn_right_start;\\n v_cos_theta_turn_right_end = cos_theta_end*turn_right_end;\\n\\n#ifdef DASHED\\n v_length_so_far = a_length_so_far;\\n#endif\\n}\\n\"},\n", + " 416: function _(n,t,a,i,e){i();a.default=\"\\nprecision mediump float;\\n\\nconst int butt_cap = 0;\\nconst int round_cap = 1;\\nconst int square_cap = 2;\\n\\nconst int miter_join = 0;\\nconst int round_join = 1;\\nconst int bevel_join = 2;\\n\\nuniform float u_linewidth;\\nuniform float u_antialias;\\nuniform float u_line_join;\\nuniform float u_line_cap;\\nuniform vec4 u_line_color;\\n#ifdef DASHED\\nuniform sampler2D u_dash_tex;\\nuniform vec4 u_dash_tex_info;\\nuniform float u_dash_scale;\\nuniform float u_dash_offset;\\n#endif\\n\\nvarying float v_segment_length;\\nvarying vec2 v_coords;\\nvarying float v_flags;\\nvarying float v_cos_theta_turn_right_start;\\nvarying float v_cos_theta_turn_right_end;\\n#ifdef DASHED\\nvarying float v_length_so_far;\\n#endif\\n\\nfloat cross_z(in vec2 v0, in vec2 v1)\\n{\\n return v0.x*v1.y - v0.y*v1.x;\\n}\\n\\nfloat point_line_side(in vec2 point, in vec2 start, in vec2 end)\\n{\\n // +ve if point to right of line.\\n // Alternatively could do dot product with right_vector.\\n return cross_z(point - start, end - start);\\n}\\n\\nfloat point_line_distance(in vec2 point, in vec2 start, in vec2 end)\\n{\\n return point_line_side(point, start, end) / distance(start, end);\\n}\\n\\nvec2 right_vector(in vec2 v)\\n{\\n return vec2(v.y, -v.x);\\n}\\n\\nfloat bevel_join_distance(in float sign_start, in float halfwidth)\\n{\\n float cos_theta_turn_right = sign_start > 0.0 ? v_cos_theta_turn_right_start\\n : v_cos_theta_turn_right_end;\\n float cos_theta = abs(cos_theta_turn_right);\\n float turn_right = sign(cos_theta_turn_right);\\n float distance_along = sign_start > 0.0 ? 0.0 : v_segment_length;\\n\\n // In v_coords reference frame (x is along segment, y across).\\n vec2 line_start = vec2(distance_along, halfwidth*turn_right);\\n float sin_alpha = cos_theta;\\n float cos_alpha = sqrt(1.0 - sin_alpha*sin_alpha);\\n vec2 line_along = vec2(-sign_start*turn_right*sin_alpha, -cos_alpha);\\n\\n return halfwidth + sign_start*point_line_distance(\\n v_coords, line_start, line_start+line_along);\\n}\\n\\nfloat cap(in int cap_type, in float x, in float y)\\n{\\n // x is distance along segment in direction away from end of segment,\\n // y is distance across segment.\\n if (cap_type == butt_cap)\\n return max(0.5*u_linewidth - x, abs(y));\\n else if (cap_type == square_cap)\\n return max(-x, abs(y));\\n else // cap_type == round_cap\\n return distance(vec2(min(x, 0.0), y), vec2(0.0, 0.0));\\n}\\n\\nfloat distance_to_alpha(in float dist)\\n{\\n return 1.0 - smoothstep(0.5*(u_linewidth - u_antialias),\\n 0.5*(u_linewidth + u_antialias), dist);\\n}\\n\\n#ifdef DASHED\\nfloat dash_distance(in float x)\\n{\\n // x is in direction of v_coords.x, i.e. along segment.\\n float tex_length = u_dash_tex_info.x;\\n float tex_offset = u_dash_tex_info.y;\\n float tex_dist_min = u_dash_tex_info.z;\\n float tex_dist_max = u_dash_tex_info.w;\\n\\n // Apply offset.\\n x += v_length_so_far - u_dash_scale*tex_offset + u_dash_offset;\\n\\n // Interpolate within texture to obtain distance to dash.\\n float dist = texture2D(u_dash_tex,\\n vec2(x / (tex_length*u_dash_scale), 0.0)).a;\\n\\n // Scale distance within min and max limits.\\n dist = tex_dist_min + dist*(tex_dist_max - tex_dist_min);\\n\\n return u_dash_scale*dist;\\n}\\n\\nfloat clip_dash_distance(in float x, in float offset, in float sign_along)\\n{\\n // Return clipped dash distance, sign_along is +1.0 if looking forward\\n // into next segment and -1.0 if looking backward into previous segment.\\n float half_antialias = 0.5*u_antialias;\\n\\n if (sign_along*x > half_antialias) {\\n // Outside antialias region, use usual dash distance.\\n return dash_distance(offset + x);\\n }\\n else {\\n // Inside antialias region.\\n // Dash distance at edge of antialias region clipped to half_antialias.\\n float edge_dist = min(dash_distance(offset + sign_along*half_antialias), half_antialias);\\n\\n // Physical distance from dash distance at edge of antialias region.\\n return edge_dist + sign_along*x - half_antialias;\\n }\\n}\\n\\nmat2 rotation_matrix(in float sign_start)\\n{\\n // Rotation matrix for v_coords from this segment to prev or next segment.\\n float cos_theta_turn_right = sign_start > 0.0 ? v_cos_theta_turn_right_start\\n : v_cos_theta_turn_right_end;\\n float cos_theta = abs(cos_theta_turn_right);\\n float turn_right = sign(cos_theta_turn_right);\\n\\n float sin_theta = sqrt(1.0 - cos_theta*cos_theta)*sign_start*turn_right;\\n float cos_2theta = 2.0*cos_theta*cos_theta - 1.0;\\n float sin_2theta = 2.0*sin_theta*cos_theta;\\n return mat2(cos_2theta, -sin_2theta, sin_2theta, cos_2theta);\\n}\\n#endif\\n\\nvoid main()\\n{\\n int join_type = int(u_line_join + 0.5);\\n int cap_type = int(u_line_cap + 0.5);\\n float halfwidth = 0.5*(u_linewidth + u_antialias);\\n float half_antialias = 0.5*u_antialias;\\n\\n // Extract flags.\\n int flags = int(v_flags + 0.5);\\n bool miter_too_large_end = (flags / 8 > 0);\\n flags -= 8*int(miter_too_large_end);\\n bool miter_too_large_start = (flags / 4 > 0);\\n flags -= 4*int(miter_too_large_start);\\n bool has_end_cap = (flags / 2 > 0);\\n flags -= 2*int(has_end_cap);\\n bool has_start_cap = flags > 0;\\n\\n float dist = v_coords.y; // For straight segment, and miter join.\\n\\n // Along-segment coords with respect to end of segment, +ve inside segment\\n // so equivalent to v_coords.x at start of segment.\\n float end_coords_x = v_segment_length - v_coords.x;\\n\\n if (v_coords.x <= half_antialias) {\\n // At start of segment, either cap or join.\\n if (has_start_cap)\\n dist = cap(cap_type, v_coords.x, v_coords.y);\\n else if (join_type == round_join)\\n dist = distance(v_coords, vec2(0.0, 0.0));\\n else if (join_type == bevel_join ||\\n (join_type == miter_join && miter_too_large_start))\\n dist = max(abs(dist), bevel_join_distance(1.0, halfwidth));\\n // else a miter join which uses the default dist calculation.\\n }\\n else if (end_coords_x <= half_antialias) {\\n // At end of segment, either cap or join.\\n if (has_end_cap)\\n dist = cap(cap_type, end_coords_x, v_coords.y);\\n else if (join_type == round_join)\\n dist = distance(v_coords, vec2(v_segment_length, 0));\\n else if ((join_type == bevel_join ||\\n (join_type == miter_join && miter_too_large_end)))\\n dist = max(abs(dist), bevel_join_distance(-1.0, halfwidth));\\n // else a miter join which uses the default dist calculation.\\n }\\n\\n float alpha = distance_to_alpha(abs(dist));\\n\\n#ifdef DASHED\\n if (u_dash_tex_info.x >= 0.0) {\\n // Dashes in straight segments (outside of joins) are easily calculated.\\n dist = dash_distance(v_coords.x);\\n\\n if (!has_start_cap && cap_type == butt_cap) {\\n if (v_coords.x < half_antialias) {\\n // Outer of start join rendered solid color or not at all\\n // depending on whether corner point is in dash or gap, with\\n // antialiased ends.\\n if (dash_distance(0.0) > 0.0) {\\n // Corner is solid color.\\n dist = max(dist, min(half_antialias, -v_coords.x));\\n // Avoid visible antialiasing band between corner and dash.\\n dist = max(dist, dash_distance(half_antialias));\\n }\\n else {\\n // Use large negative value so corner not colored.\\n dist = -halfwidth;\\n\\n if (v_coords.x > -half_antialias) {\\n // Consider antialias region of dash after start region.\\n float edge_dist = min(dash_distance(half_antialias), half_antialias);\\n dist = max(dist, edge_dist + v_coords.x - half_antialias);\\n }\\n }\\n }\\n\\n vec2 prev_coords = rotation_matrix(1.0)*v_coords;\\n\\n if (abs(prev_coords.y) < halfwidth && prev_coords.x < half_antialias) {\\n // Extend dashes across from end of previous segment, with antialiased end.\\n float new_dist = clip_dash_distance(prev_coords.x, 0.0, -1.0);\\n new_dist = min(new_dist, 0.5*u_linewidth - abs(prev_coords.y));\\n dist = max(dist, new_dist);\\n }\\n }\\n\\n if (!has_end_cap && cap_type == butt_cap) {\\n if (end_coords_x < half_antialias) {\\n // Similar for end join.\\n if (dash_distance(v_segment_length) > 0.0) {\\n // Corner is solid color.\\n dist = max(dist, min(half_antialias, -end_coords_x));\\n // Avoid visible antialiasing band between corner and dash.\\n dist = max(dist, dash_distance(v_segment_length - half_antialias));\\n }\\n else {\\n // Use large negative value so corner not colored.\\n dist = -halfwidth;\\n\\n if (end_coords_x > -half_antialias) {\\n // Consider antialias region of dash before end region.\\n float edge_dist = min(dash_distance(v_segment_length - half_antialias),\\n half_antialias);\\n dist = max(dist, edge_dist + end_coords_x - half_antialias);\\n }\\n }\\n }\\n\\n vec2 next_coords = rotation_matrix(-1.0)*(v_coords - vec2(v_segment_length, 0.0));\\n\\n if (abs(next_coords.y) < halfwidth && next_coords.x > -half_antialias) {\\n // Extend dashes across from next segment, with antialiased end.\\n float new_dist = clip_dash_distance(next_coords.x, v_segment_length, 1.0);\\n new_dist = min(new_dist, 0.5*u_linewidth - abs(next_coords.y));\\n dist = max(dist, new_dist);\\n }\\n }\\n\\n dist = cap(cap_type, dist, v_coords.y);\\n\\n float dash_alpha = distance_to_alpha(dist);\\n alpha = min(alpha, dash_alpha);\\n }\\n#endif\\n\\n alpha = u_line_color.a*alpha;\\n gl_FragColor = vec4(u_line_color.rgb*alpha, alpha); // Premultiplied alpha.\\n}\\n\"},\n", + " 417: function _(n,i,e,t,a){t();e.default=\"\\nprecision mediump float;\\n\\nattribute vec2 a_position;\\nattribute vec2 a_center;\\nattribute float a_width;\\nattribute float a_height;\\nattribute float a_angle; // In radians\\nattribute float a_linewidth;\\nattribute vec4 a_line_color;\\nattribute vec4 a_fill_color;\\nattribute float a_line_cap;\\nattribute float a_line_join;\\nattribute float a_show;\\n#ifdef HATCH\\nattribute float a_hatch_pattern;\\nattribute float a_hatch_scale;\\nattribute float a_hatch_weight;\\nattribute vec4 a_hatch_color;\\n#endif\\n\\nuniform float u_pixel_ratio;\\nuniform vec2 u_canvas_size;\\nuniform float u_antialias;\\nuniform float u_size_hint;\\n\\nvarying float v_linewidth;\\nvarying vec2 v_size; // 2D size for rects compared to 1D for markers.\\nvarying vec4 v_line_color;\\nvarying vec4 v_fill_color;\\nvarying float v_line_cap;\\nvarying float v_line_join;\\nvarying vec2 v_coords;\\n#ifdef HATCH\\nvarying float v_hatch_pattern;\\nvarying float v_hatch_scale;\\nvarying float v_hatch_weight;\\nvarying vec4 v_hatch_color;\\nvarying vec2 v_hatch_coords;\\n#endif\\n\\nvoid main()\\n{\\n if (a_show < 0.5) {\\n // Do not show this rect.\\n gl_Position = vec4(-2.0, -2.0, 0.0, 1.0);\\n return;\\n }\\n\\n v_size = vec2(a_width, a_height);\\n v_linewidth = a_linewidth;\\n v_line_color = a_line_color;\\n v_fill_color = a_fill_color;\\n v_line_cap = a_line_cap;\\n v_line_join = a_line_join;\\n\\n if (v_linewidth < 1.0) {\\n // Linewidth less than 1 is implemented as 1 but with reduced alpha.\\n v_line_color.a *= v_linewidth;\\n v_linewidth = 1.0;\\n }\\n\\n#ifdef HATCH\\n v_hatch_pattern = a_hatch_pattern;\\n v_hatch_scale = a_hatch_scale;\\n v_hatch_weight = a_hatch_weight;\\n v_hatch_color = a_hatch_color;\\n#endif\\n\\n vec2 enclosing_size;\\n // Need extra size of (v_linewidth+u_antialias) if edge of marker parallel to\\n // edge of bounding box. If symmetric spike towards edge then multiply by\\n // 1/cos(theta) where theta is angle between spike and bbox edges.\\n int size_hint = int(u_size_hint + 0.5);\\n if (size_hint == 1) // Dash\\n enclosing_size = vec2(v_size.x + v_linewidth + u_antialias,\\n v_linewidth + u_antialias);\\n else if (size_hint == 2) // Dot\\n enclosing_size = 0.25*v_size + u_antialias;\\n else if (size_hint == 3) // Diamond\\n enclosing_size = vec2(v_size.x*(2.0/3.0) + (v_linewidth + u_antialias)*1.20185,\\n v_size.y + (v_linewidth + u_antialias)*1.80278);\\n else if (size_hint == 4) // Hex\\n enclosing_size = v_size + (v_linewidth + u_antialias)*vec2(2.0/sqrt(3.0), 1.0);\\n else if (size_hint == 5) // Square pin\\n enclosing_size = v_size + (v_linewidth + u_antialias)*3.1;\\n else if (size_hint == 6) // Triangle\\n enclosing_size = vec2(v_size.x + (v_linewidth + u_antialias)*sqrt(3.0),\\n v_size.y*(2.0/sqrt(3.0)) + (v_linewidth + u_antialias)*2.0);\\n else if (size_hint == 7) // Triangle pin\\n enclosing_size = v_size + (v_linewidth + u_antialias)*vec2(4.8, 6.0);\\n else if (size_hint == 8) // Star\\n enclosing_size = vec2(v_size.x*0.95106 + (v_linewidth + u_antialias)*3.0,\\n v_size.y + (v_linewidth + u_antialias)*3.2);\\n else\\n enclosing_size = v_size + v_linewidth + u_antialias;\\n\\n // Coordinates in rotated frame with respect to center of marker, used for\\n // distance functions in fragment shader.\\n v_coords = a_position*enclosing_size;\\n\\n float c = cos(-a_angle);\\n float s = sin(-a_angle);\\n mat2 rotation = mat2(c, -s, s, c);\\n\\n vec2 pos = a_center + rotation*v_coords;\\n#ifdef HATCH\\n // Coordinates for hatching in unrotated frame of reference.\\n v_hatch_coords = pos - 0.5;\\n#endif\\n pos += 0.5; // Make up for Bokeh's offset.\\n pos /= u_canvas_size / u_pixel_ratio; // 0 to 1.\\n gl_Position = vec4(2.0*pos.x - 1.0, 1.0 - 2.0*pos.y, 0.0, 1.0);\\n}\\n\"},\n", + " 418: function _(n,i,e,t,a){t();e.default=\"\\nprecision mediump float;\\n\\nconst float SQRT2 = sqrt(2.0);\\nconst float SQRT3 = sqrt(3.0);\\nconst float PI = 3.14159265358979323846;\\n\\nconst int butt_cap = 0;\\nconst int round_cap = 1;\\nconst int square_cap = 2;\\n\\nconst int miter_join = 0;\\nconst int round_join = 1;\\nconst int bevel_join = 2;\\n\\n#ifdef HATCH\\nconst int hatch_dot = 1;\\nconst int hatch_ring = 2;\\nconst int hatch_horizontal_line = 3;\\nconst int hatch_vertical_line = 4;\\nconst int hatch_cross = 5;\\nconst int hatch_horizontal_dash = 6;\\nconst int hatch_vertical_dash = 7;\\nconst int hatch_spiral = 8;\\nconst int hatch_right_diagonal_line = 9;\\nconst int hatch_left_diagonal_line = 10;\\nconst int hatch_diagonal_cross = 11;\\nconst int hatch_right_diagonal_dash = 12;\\nconst int hatch_left_diagonal_dash = 13;\\nconst int hatch_horizontal_wave = 14;\\nconst int hatch_vertical_wave = 15;\\nconst int hatch_criss_cross = 16;\\n#endif\\n\\nuniform float u_antialias;\\n\\nvarying float v_linewidth;\\nvarying vec2 v_size;\\nvarying vec4 v_line_color;\\nvarying vec4 v_fill_color;\\nvarying float v_line_cap;\\nvarying float v_line_join;\\nvarying vec2 v_coords;\\n#ifdef HATCH\\nvarying float v_hatch_pattern;\\nvarying float v_hatch_scale;\\nvarying float v_hatch_weight;\\nvarying vec4 v_hatch_color;\\nvarying vec2 v_hatch_coords;\\n#endif\\n\\n// Lines within the marker (dot, cross, x and y) are added at the end as they are\\n// on top of the fill rather than astride it.\\n#if defined(USE_CIRCLE_DOT) || defined(USE_DIAMOND_DOT) || defined(USE_DOT) || defined(USE_HEX_DOT) || defined(USE_SQUARE_DOT) || defined(USE_STAR_DOT) || defined(USE_TRIANGLE_DOT)\\n #define APPEND_DOT\\n#endif\\n\\n#if defined(USE_CIRCLE_CROSS) || defined(USE_SQUARE_CROSS)\\n #define APPEND_CROSS\\n#endif\\n\\n#ifdef USE_DIAMOND_CROSS\\n #define APPEND_CROSS_2\\n#endif\\n\\n#ifdef USE_CIRCLE_X\\n #define APPEND_X\\n #define APPEND_X_LEN (0.5*v_size.x)\\n#endif\\n\\n#ifdef USE_SQUARE_X\\n #define APPEND_X\\n #define APPEND_X_LEN (v_size.x/SQRT2)\\n#endif\\n\\n#ifdef USE_CIRCLE_Y\\n #define APPEND_Y\\n#endif\\n\\n#if defined(USE_ASTERISK) || defined(USE_CROSS) || defined(USE_DASH) || defined(USE_DOT) || defined(USE_X) || defined(USE_Y)\\n // No fill.\\n #define LINE_ONLY\\n#endif\\n\\n#if defined(LINE_ONLY) || defined(APPEND_CROSS) || defined(APPEND_CROSS_2) || defined(APPEND_X) || defined(APPEND_Y)\\nfloat end_cap_distance(in vec2 p, in vec2 end_point, in vec2 unit_direction, in int line_cap)\\n{\\n vec2 offset = p - end_point;\\n if (line_cap == butt_cap)\\n return dot(offset, unit_direction) + 0.5*v_linewidth;\\n else if (line_cap == square_cap)\\n return dot(offset, unit_direction);\\n else if (line_cap == round_cap && dot(offset, unit_direction) > 0.0)\\n return length(offset);\\n else\\n // Default is outside of line and should be -0.5*(v_linewidth+u_antialias) or less,\\n // so here avoid the multiplication.\\n return -v_linewidth-u_antialias;\\n}\\n#endif\\n\\n#if !(defined(LINE_ONLY) || defined(USE_SQUARE_PIN) || defined(USE_TRIANGLE_PIN))\\n// For line join at a vec2 corner where 2 line segments meet, consider bevel points which are the 2\\n// points obtained by moving half a linewidth away from the corner point in the directions normal to\\n// the line segments. The line through these points is the bevel line, characterised by a vec2\\n// unit_normal and offset distance from the corner point. Edge of bevel join straddles this line,\\n// round join occurs outside of this line centred on the corner point. In general\\n// offset = (linewidth/2)*sin(alpha/2)\\n// where alpha is the angle between the 2 line segments at the corner.\\nfloat line_join_distance_no_miter(\\n in vec2 p, in vec2 corner, in vec2 unit_normal, in float offset, in int line_join)\\n{\\n // Simplified version of line_join_distance ignoring miter which most markers do implicitly\\n // as they are composed of straight line segments.\\n float dist_outside = dot((p - corner), unit_normal) - offset;\\n\\n if (line_join == bevel_join && dist_outside > -0.5*u_antialias)\\n return dist_outside + 0.5*v_linewidth;\\n else if (dist_outside > 0.0) // round_join\\n return distance(p, corner);\\n else\\n // Default is outside of line and should be -0.5*(v_linewidth+u_antialias) or less,\\n // so here avoid the multiplication.\\n return -v_linewidth-u_antialias;\\n}\\n#endif\\n\\n#if defined(USE_SQUARE_PIN) || defined(USE_TRIANGLE_PIN)\\n// Line join distance including miter but only one-sided check as assuming use of symmetry in\\n// calling function.\\nfloat line_join_distance_incl_miter(\\n in vec2 p, in vec2 corner, in vec2 unit_normal, in float offset, in int line_join,\\n vec2 miter_unit_normal)\\n{\\n float dist_outside = dot((p - corner), unit_normal) - offset;\\n\\n if (line_join == miter_join && dist_outside > 0.0)\\n return dot((p - corner), miter_unit_normal);\\n else if (line_join == bevel_join && dist_outside > -0.5*u_antialias)\\n return dist_outside + 0.5*v_linewidth;\\n else if (dist_outside > 0.0) // round_join\\n return distance(p, corner);\\n else\\n return -v_linewidth-u_antialias;\\n}\\n#endif\\n\\n#if defined(APPEND_CROSS) || defined(APPEND_X) || defined(USE_ASTERISK) || defined(USE_CROSS) || defined(USE_X)\\nfloat one_cross(in vec2 p, in int line_cap, in float len)\\n{\\n p = abs(p);\\n p = (p.y > p.x) ? p.yx : p.xy;\\n float dist = p.y;\\n float end_dist = end_cap_distance(p, vec2(len, 0.0), vec2(1.0, 0.0), line_cap);\\n return max(dist, end_dist);\\n}\\n#endif\\n\\n#ifdef APPEND_CROSS_2\\nfloat one_cross_2(in vec2 p, in int line_cap, in vec2 lengths)\\n{\\n // Cross with different length in x and y directions.\\n p = abs(p);\\n bool switch_xy = (p.y > p.x);\\n p = switch_xy ? p.yx : p.xy;\\n float len = switch_xy ? lengths.y : lengths.x;\\n float dist = p.y;\\n float end_dist = end_cap_distance(p, vec2(len, 0.0), vec2(1.0, 0.0), line_cap);\\n return max(dist, end_dist);\\n}\\n#endif\\n\\n#if defined(APPEND_Y) || defined(USE_Y)\\nfloat one_y(in vec2 p, in int line_cap, in float len)\\n{\\n p = vec2(abs(p.x), -p.y);\\n\\n // End point of line to right is (1/2, 1/3)*len*SQRT3.\\n // Unit vector along line is (1/2, 1/3)*k where k = 6/SQRT13.\\n const float k = 6.0/sqrt(13.0);\\n vec2 unit_along = vec2(0.5*k, k/3.0);\\n vec2 end_point = vec2(0.5*len*SQRT3, len*SQRT3/3.0);\\n float dist = max(abs(dot(p, vec2(-unit_along.y, unit_along.x))),\\n end_cap_distance(p, end_point, unit_along, line_cap));\\n\\n if (p.y < 0.0) {\\n // Vertical line.\\n float vert_dist = max(p.x,\\n end_cap_distance(p, vec2(0.0, -len), vec2(0.0, -1.0), line_cap));\\n dist = min(dist, vert_dist);\\n }\\n return dist;\\n}\\n#endif\\n\\n// One marker_distance function per marker type.\\n// Distance is zero on edge of marker, +ve outside and -ve inside.\\n\\n#ifdef USE_ASTERISK\\nfloat marker_distance(in vec2 p, in int line_cap, in int line_join)\\n{\\n // Assuming v_size.x == v.size_y\\n vec2 p_diag = vec2((p.x + p.y)/SQRT2, (p.x - p.y)/SQRT2);\\n float len = 0.5*v_size.x;\\n return min(one_cross(p, line_cap, len), // cross\\n one_cross(p_diag, line_cap, len)); // x\\n}\\n#endif\\n\\n#if defined(USE_CIRCLE) || defined(USE_CIRCLE_CROSS) || defined(USE_CIRCLE_DOT) || defined(USE_CIRCLE_X) || defined(USE_CIRCLE_Y)\\nfloat marker_distance(in vec2 p, in int line_cap, in int line_join)\\n{\\n // Assuming v_size.x == v.size_y\\n return length(p) - 0.5*v_size.x;\\n}\\n#endif\\n\\n#ifdef USE_CROSS\\nfloat marker_distance(in vec2 p, in int line_cap, in int line_join)\\n{\\n // Assuming v_size.x == v.size_y\\n return one_cross(p, line_cap, 0.5*v_size.x);\\n}\\n#endif\\n\\n#ifdef USE_DASH\\nfloat marker_distance(in vec2 p, in int line_cap, in int line_join)\\n{\\n p = abs(p);\\n float dist = p.y;\\n float end_dist = end_cap_distance(p, vec2(0.5*v_size.x, 0.0), vec2(1.0, 0.0), line_cap);\\n return max(dist, end_dist);\\n}\\n#endif\\n\\n#if defined(USE_DIAMOND) || defined(USE_DIAMOND_CROSS) || defined(USE_DIAMOND_DOT)\\nfloat marker_distance(in vec2 p, in int line_cap, in int line_join)\\n{\\n // Assuming v_size.x == v.size_y\\n // Only need to consider +ve quadrant, the 2 end points are (2r/3, 0) and (0, r)\\n // where r = radius = v_size.x/2.\\n // Line has outward-facing unit normal vec2(1, 2/3)/k where k = SQRT13/3\\n // hence vec2(3, 2)/SQRT13, and distance from origin of 2r/(3k) = 2r/SQRT13.\\n p = abs(p);\\n float r = 0.5*v_size.x;\\n const float SQRT13 = sqrt(13.0);\\n float dist = dot(p, vec2(3.0, 2.0))/SQRT13 - 2.0*r/SQRT13;\\n\\n if (line_join != miter_join) {\\n dist = max(dist, line_join_distance_no_miter(\\n p, vec2(0.0, r), vec2(0.0, 1.0), v_linewidth/SQRT13, line_join));\\n\\n dist = max(dist, line_join_distance_no_miter(\\n p, vec2(r*2.0/3.0, 0.0), vec2(1.0, 0.0), v_linewidth*(1.5/SQRT13), line_join));\\n }\\n\\n return dist;\\n}\\n#endif\\n\\n#ifdef USE_DOT\\nfloat marker_distance(in vec2 p, in int line_cap, in int line_join)\\n{\\n // Dot is always appended.\\n return v_linewidth+u_antialias;\\n}\\n#endif\\n\\n#if defined(USE_HEX) || defined(USE_HEX_DOT)\\nfloat marker_distance(in vec2 p, in int line_cap, in int line_join)\\n{\\n // A regular hexagon has v_size.x == v.size_y = r where r is the length of\\n // each of the 3 sides of the 6 equilateral triangles that comprise the hex.\\n // Only consider +ve quadrant, the 3 corners are at (0, h), (rx/2, h), (rx, 0)\\n // where rx = 0.5*v_size.x, ry = 0.5*v_size.y and h = ry*SQRT3/2.\\n // Sloping line has outward normal vec2(h, rx/2). Length of this is\\n // len = sqrt(h**2 + rx**2/4) to give unit normal (h, rx/2)/len and distance\\n // from origin of this line is rx*h/len.\\n p = abs(p);\\n float rx = v_size.x/2.0;\\n float h = v_size.y*(SQRT3/4.0);\\n float len_normal = sqrt(h*h + 0.25*rx*rx);\\n vec2 unit_normal = vec2(h, 0.5*rx) / len_normal;\\n float dist = max(dot(p, unit_normal) - rx*h/len_normal, // Distance from sloping line.\\n p.y - h); // Distance from horizontal line.\\n\\n if (line_join != miter_join) {\\n dist = max(dist, line_join_distance_no_miter(\\n p, vec2(rx, 0.0), vec2(1.0, 0.0), 0.5*v_linewidth*unit_normal.x, line_join));\\n\\n unit_normal = normalize(unit_normal + vec2(0.0, 1.0)); // At (rx/2, h) corner.\\n dist = max(dist, line_join_distance_no_miter(\\n p, vec2(0.5*rx, h), unit_normal, 0.5*v_linewidth*unit_normal.y, line_join));\\n }\\n return dist;\\n}\\n#endif\\n\\n#ifdef USE_PLUS\\nfloat marker_distance(in vec2 p, in int line_cap, in int line_join)\\n{\\n // Assuming v_size.x == v.size_y\\n // Only need to consider one octant, the +ve quadrant with x >= y.\\n p = abs(p);\\n p = (p.y > p.x) ? p.yx : p.xy;\\n\\n // 3 corners are (r, 0), (r, 3r/8) and (3r/8, 3r/8).\\n float r = 0.5*v_size.x;\\n p = p - vec2(r, 0.375*r); // Distance with respect to outside corner\\n float dist = max(p.x, p.y);\\n\\n if (line_join != miter_join) {\\n // Outside corner\\n dist = max(dist, line_join_distance_no_miter(\\n p, vec2(0.0, 0.0), vec2(1.0/SQRT2, 1.0/SQRT2), v_linewidth/(2.0*SQRT2), line_join));\\n\\n // Inside corner\\n dist = min(dist, -line_join_distance_no_miter(\\n p, vec2(-5.0*r/8.0, 0.0), vec2(-1.0/SQRT2, -1.0/SQRT2), v_linewidth/(2.0*SQRT2), line_join));\\n }\\n\\n return dist;\\n}\\n#endif\\n\\n#if defined(USE_SQUARE) || defined(USE_SQUARE_CROSS) || defined(USE_SQUARE_DOT) || defined(USE_SQUARE_X)\\nfloat marker_distance(in vec2 p, in int line_cap, in int line_join)\\n{\\n vec2 p2 = abs(p) - v_size/2.0; // Offset from corner\\n float dist = max(p2.x, p2.y);\\n\\n if (line_join != miter_join)\\n dist = max(dist, line_join_distance_no_miter(\\n p2, vec2(0.0, 0.0), vec2(1.0/SQRT2, 1.0/SQRT2), v_linewidth/(2.0*SQRT2), line_join));\\n\\n return dist;\\n}\\n#endif\\n\\n#ifdef USE_SQUARE_PIN\\nfloat marker_distance(in vec2 p, in int line_cap, in int line_join)\\n{\\n // Assuming v_size.x == v.size_y\\n p = abs(p);\\n p = (p.y > p.x) ? p.yx : p.xy;\\n // p is in octant between y=0 and y=x.\\n // Quadratic bezier curve passes through (r, r), (11r/16, 0) and (r, -r).\\n // Circular arc that passes through the same points has center at\\n // x = r + 231r/160 = 2.44275r and y = 0 and hence radius is\\n // x - 11r/16 = 1.75626 precisely.\\n float r = 0.5*v_size.x;\\n float center_x = r*2.44375;\\n float radius = r*1.75626;\\n float dist = radius - distance(p, vec2(center_x, 0.0));\\n\\n // Magic number is 0.5*sin(atan(8/5) - pi/4)\\n dist = max(dist, line_join_distance_incl_miter(\\n p, vec2(r, r), vec2(1.0/SQRT2, 1.0/SQRT2), v_linewidth*0.1124297533493792, line_join,\\n vec2(8.0/sqrt(89.0), -5.0/sqrt(89.0))));\\n\\n return dist;\\n}\\n#endif\\n\\n#if defined(USE_STAR) || defined(USE_STAR_DOT)\\nfloat marker_distance(in vec2 p, in int line_cap, in int line_join)\\n{\\n // Assuming v_size.x == v.size_y\\n const float SQRT5 = sqrt(5.0);\\n const float COS72 = 0.25*(SQRT5 - 1.0);\\n const float SIN72 = sqrt((5.0+SQRT5) / 8.0);\\n\\n float angle = atan(p.x, p.y); // In range -pi to +pi clockwise from +y direction.\\n angle = mod(angle, 0.4*PI) - 0.2*PI; // In range -pi/5 to +pi/5 clockwise from +y direction.\\n p = length(p)*vec2(cos(angle), abs(sin(angle))); // (x,y) in pi/10 (36 degree) sector.\\n\\n // 2 corners are at (r, 0) and (r-a*SIN72, a*COS72) where a = r sqrt(5-2*sqrt(5)).\\n // Line has outward-facing unit normal vec2(COS72, SIN72) and distance from\\n // origin of dot(vec2(r, 0), vec2(COS72, SIN72)) = r*COS72\\n float r = 0.5*v_size.x;\\n float a = r*sqrt(5.0 - 2.0*SQRT5);\\n float dist = dot(p, vec2(COS72, SIN72)) - r*COS72;\\n\\n if (line_join != miter_join) {\\n // Outside corner\\n dist = max(dist, line_join_distance_no_miter(\\n p, vec2(r, 0.0), vec2(1.0, 0.0), v_linewidth*(0.5*COS72), line_join));\\n\\n // Inside corner\\n const float COS36 = sqrt(0.5 + COS72/2.0);\\n const float SIN36 = sqrt(0.5 - COS72/2.0);\\n dist = min(dist, -line_join_distance_no_miter(\\n p, vec2(r-a*SIN72, a*COS72), vec2(-COS36, -SIN36), v_linewidth*(0.5*COS36), line_join));\\n }\\n\\n return dist;\\n}\\n#endif\\n\\n#if defined(USE_TRIANGLE) || defined(USE_TRIANGLE_DOT) || defined(USE_INVERTED_TRIANGLE)\\nfloat marker_distance(in vec2 p, in int line_cap, in int line_join)\\n{\\n // Assuming v_size.x == v.size_y\\n // For normal triangle 3 corners are at (-r, a), (r, a), (0, a-h)=(0, -2h/3)\\n // given r = radius = v_size.x/2, h = SQRT3*r, a = h/3.\\n // Sloping line has outward-facing unit normal vec2(h, -r)/2r = vec2(SQRT3, -1)/2\\n // and distance from origin of a. Horizontal line has outward-facing unit normal\\n // vec2(0, 1) and distance from origin of a.\\n float r = 0.5*v_size.x;\\n float a = r*SQRT3/3.0;\\n\\n // Only need to consider +ve x.\\n#ifdef USE_INVERTED_TRIANGLE\\n p = vec2(abs(p.x), -p.y);\\n#else\\n p = vec2(abs(p.x), p.y);\\n#endif\\n\\n float dist = max(0.5*dot(p, vec2(SQRT3, -1.0)) - a, // Distance from sloping line.\\n p.y - a); // Distance from horizontal line.\\n\\n if (line_join != miter_join) {\\n dist = max(dist, line_join_distance_no_miter(\\n p, vec2(0.0, -(2.0/SQRT3)*r), vec2(0.0, -1.0), v_linewidth*0.25, line_join));\\n\\n dist = max(dist, line_join_distance_no_miter(\\n p, vec2(r, a), vec2(SQRT3/2.0, 0.5), v_linewidth*0.25, line_join));\\n }\\n\\n return dist;\\n}\\n#endif\\n\\n#ifdef USE_TRIANGLE_PIN\\nfloat marker_distance(in vec2 p, in int line_cap, in int line_join)\\n{\\n // Assuming v_size.x == v.size_y\\n float angle = atan(p.x, -p.y); // In range -pi to +pi.\\n angle = mod(angle, PI*2.0/3.0) - PI/3.0; // In range -pi/3 to pi/3.\\n p = length(p)*vec2(cos(angle), abs(sin(angle))); // (x,y) in range 0 to pi/3.\\n // Quadratic bezier curve passes through (a, r), ((a+b)/2, 0) and (a, -r) where\\n // a = r/SQRT3, b = 3a/8 = r SQRT3/8. Circular arc that passes through the same points has\\n // center at (a+x, 0) and radius x+c where c = (a-b)/2 and x = (r**2 - c**2) / (2c).\\n // Ignore r factor until the end so can use const.\\n const float a = 1.0/SQRT3;\\n const float b = SQRT3/8.0;\\n const float c = (a-b)/2.0;\\n const float x = (1.0 - c*c) / (2.0*c);\\n const float center_x = x + a;\\n const float radius = x + c;\\n float r = 0.5*v_size.x;\\n float dist = r*radius - distance(p, vec2(r*center_x, 0.0));\\n\\n // Magic number is 0.5*sin(atan(8*sqrt(3)/5) - pi/3)\\n dist = max(dist, line_join_distance_incl_miter(\\n p, vec2(a*r, r), vec2(0.5, 0.5*SQRT3), v_linewidth*0.0881844526878324, line_join,\\n vec2(8.0*SQRT3, -5.0)/sqrt(217.0)));\\n\\n return dist;\\n}\\n#endif\\n\\n#ifdef USE_X\\nfloat marker_distance(in vec2 p, in int line_cap, in int line_join)\\n{\\n // Assuming v_size.x == v.size_y\\n p = vec2((p.x + p.y)/SQRT2, (p.x - p.y)/SQRT2);\\n return one_cross(p, line_cap, 0.5*v_size.x);\\n}\\n#endif\\n\\n#ifdef USE_Y\\nfloat marker_distance(in vec2 p, in int line_cap, in int line_join)\\n{\\n // Assuming v_size.x == v.size_y\\n return one_y(p, line_cap, 0.5*v_size.x);\\n}\\n#endif\\n\\n// Convert distance from edge of marker to fraction in range 0 to 1, depending\\n// on antialiasing width.\\nfloat distance_to_fraction(in float dist)\\n{\\n return 1.0 - smoothstep(-0.5*u_antialias, 0.5*u_antialias, dist);\\n}\\n\\n// Return fraction from 0 (no fill color) to 1 (full fill color).\\nfloat fill_fraction(in float dist)\\n{\\n return distance_to_fraction(dist);\\n}\\n\\n// Return fraction in range 0 (no line color) to 1 (full line color).\\nfloat line_fraction(in float dist)\\n{\\n return distance_to_fraction(abs(dist) - 0.5*v_linewidth);\\n}\\n\\n// Return fraction (in range 0 to 1) of a color, with premultiplied alpha.\\nvec4 fractional_color(in vec4 color, in float fraction)\\n{\\n color.a *= fraction;\\n color.rgb *= color.a;\\n return color;\\n}\\n\\n// Blend colors that have premultiplied alpha.\\nvec4 blend_colors(in vec4 src, in vec4 dest)\\n{\\n return (1.0 - src.a)*dest + src;\\n}\\n\\n#ifdef APPEND_DOT\\nfloat dot_fraction(in vec2 p)\\n{\\n // Assuming v_size.x == v_size.y\\n float radius = 0.125*v_size.x;\\n float dot_distance = max(length(p) - radius, -0.5*u_antialias);\\n return fill_fraction(dot_distance);\\n}\\n#endif\\n\\n#ifdef HATCH\\n// Wrap coordinate(s) by removing integer part to give distance from center of\\n// repeat, in the range -0.5 to +0.5.\\nfloat wrap(in float x)\\n{\\n return fract(x) - 0.5;\\n}\\n\\nvec2 wrap(in vec2 xy)\\n{\\n return fract(xy) - 0.5;\\n}\\n\\n// Return fraction from 0 (no hatch color) to 1 (full hatch color).\\nfloat hatch_fraction(in vec2 coords, in int hatch_pattern)\\n{\\n float scale = v_hatch_scale; // Hatch repeat distance.\\n\\n // Coordinates and linewidth/halfwidth are scaled to hatch repeat distance.\\n coords = coords / scale;\\n float halfwidth = 0.5*v_hatch_weight / scale; // Half the hatch linewidth.\\n\\n // Default is to return fraction of zero, i.e. no pattern.\\n float dist = u_antialias;\\n\\n if (hatch_pattern == hatch_dot) {\\n const float dot_radius = 0.25;\\n dist = length(wrap(coords)) - dot_radius;\\n }\\n else if (hatch_pattern == hatch_ring) {\\n const float ring_radius = 0.25;\\n dist = abs(length(wrap(coords)) - ring_radius) - halfwidth;\\n }\\n else if (hatch_pattern == hatch_horizontal_line) {\\n dist = abs(wrap(coords.y)) - halfwidth;\\n }\\n else if (hatch_pattern == hatch_vertical_line) {\\n dist = abs(wrap(coords.x)) - halfwidth;\\n }\\n else if (hatch_pattern == hatch_cross) {\\n dist = min(abs(wrap(coords.x)), abs(wrap(coords.y))) - halfwidth;\\n }\\n else if (hatch_pattern == hatch_horizontal_dash) {\\n // Dashes have square caps.\\n const float halflength = 0.25;\\n dist = max(abs(wrap(coords.y)),\\n abs(wrap(coords.x) + 0.25) - halflength) - halfwidth;\\n }\\n else if (hatch_pattern == hatch_vertical_dash) {\\n const float halflength = 0.25;\\n dist = max(abs(wrap(coords.x)),\\n abs(wrap(coords.y) + 0.25) - halflength) - halfwidth;\\n }\\n else if (hatch_pattern == hatch_spiral) {\\n vec2 wrap2 = wrap(coords);\\n float angle = wrap(atan(wrap2.y, wrap2.x) / (2.0*PI));\\n // Canvas spiral radius increases by scale*pi/15 each rotation.\\n const float dr = PI/15.0;\\n float radius = length(wrap2);\\n // At any angle, spiral lines are equally spaced dr apart.\\n // Find distance to nearest of these lines.\\n float frac = fract((radius - dr*angle) / dr); // 0 to 1.\\n dist = dr*(abs(frac - 0.5));\\n dist = min(dist, radius) - halfwidth; // Consider center point also.\\n }\\n else if (hatch_pattern == hatch_right_diagonal_line) {\\n dist = abs(wrap(2.0*coords.x + coords.y))/sqrt(5.0) - halfwidth;\\n }\\n else if (hatch_pattern == hatch_left_diagonal_line) {\\n dist = abs(wrap(2.0*coords.x - coords.y))/sqrt(5.0) - halfwidth;\\n }\\n else if (hatch_pattern == hatch_diagonal_cross) {\\n coords = vec2(coords.x + coords.y + 0.5, coords.x - coords.y + 0.5);\\n dist = min(abs(wrap(coords.x)), abs(wrap(coords.y))) / SQRT2 - halfwidth;\\n }\\n else if (hatch_pattern == hatch_right_diagonal_dash) {\\n float across = coords.x + coords.y + 0.5;\\n dist = abs(wrap(across)) / SQRT2; // Distance to nearest solid line.\\n\\n across = floor(across); // Offset for dash.\\n float along = wrap(0.5*(coords.x - coords.y + across));\\n const float halflength = 0.25;\\n along = abs(along) - halflength; // Distance along line.\\n\\n dist = max(dist, along) - halfwidth;\\n }\\n else if (hatch_pattern == hatch_left_diagonal_dash) {\\n float across = coords.x - coords.y + 0.5;\\n dist = abs(wrap(across)) / SQRT2; // Distance to nearest solid line.\\n\\n across = floor(across); // Offset for dash.\\n float along = wrap(0.5*(coords.x + coords.y + across));\\n const float halflength = 0.25;\\n along = abs(along) - halflength; // Distance along line.\\n\\n dist = max(dist, along) - halfwidth;\\n }\\n else if (hatch_pattern == hatch_horizontal_wave) {\\n float wrapx = wrap(coords.x);\\n float wrapy = wrap(coords.y - 0.25 + abs(wrapx));\\n dist = abs(wrapy) / SQRT2 - halfwidth;\\n }\\n else if (hatch_pattern == hatch_vertical_wave) {\\n float wrapy = wrap(coords.y);\\n float wrapx = wrap(coords.x - 0.25 + abs(wrapy));\\n dist = abs(wrapx) / SQRT2 - halfwidth;\\n }\\n else if (hatch_pattern == hatch_criss_cross) {\\n float plus = min(abs(wrap(coords.x)), abs(wrap(coords.y)));\\n\\n coords = vec2(coords.x + coords.y + 0.5, coords.x - coords.y + 0.5);\\n float X = min(abs(wrap(coords.x)), abs(wrap(coords.y))) / SQRT2;\\n\\n dist = min(plus, X) - halfwidth;\\n }\\n\\n return distance_to_fraction(dist*scale);\\n}\\n#endif\\n\\nvoid main()\\n{\\n int line_cap = int(v_line_cap + 0.5);\\n int line_join = int(v_line_join + 0.5);\\n#ifdef HATCH\\n int hatch_pattern = int(v_hatch_pattern + 0.5);\\n#endif\\n\\n float dist = marker_distance(v_coords, line_cap, line_join);\\n\\n#ifdef LINE_ONLY\\n vec4 color = vec4(0.0, 0.0, 0.0, 0.0);\\n#else\\n float fill_frac = fill_fraction(dist);\\n vec4 color = fractional_color(v_fill_color, fill_frac);\\n#endif\\n\\n#if defined(HATCH) && !defined(LINE_ONLY)\\n if (hatch_pattern > 0 && fill_frac > 0.0) {\\n float hatch_frac = hatch_fraction(v_hatch_coords, hatch_pattern);\\n vec4 hatch_color = fractional_color(v_hatch_color, hatch_frac*fill_frac);\\n color = blend_colors(hatch_color, color);\\n }\\n#endif\\n\\n float line_frac = line_fraction(dist);\\n\\n#ifdef APPEND_DOT\\n line_frac = max(line_frac, dot_fraction(v_coords));\\n#endif\\n#ifdef APPEND_CROSS\\n line_frac = max(line_frac, line_fraction(one_cross(v_coords, line_cap, 0.5*v_size.x)));\\n#endif\\n#ifdef APPEND_CROSS_2\\n vec2 lengths = vec2(v_size.x/3.0, v_size.x/2.0);\\n line_frac = max(line_frac, line_fraction(one_cross_2(v_coords, line_cap, lengths)));\\n#endif\\n#ifdef APPEND_X\\n vec2 p = vec2((v_coords.x + v_coords.y)/SQRT2, (v_coords.x - v_coords.y)/SQRT2);\\n line_frac = max(line_frac, line_fraction(one_cross(p, line_cap, APPEND_X_LEN)));\\n#endif\\n#ifdef APPEND_Y\\n line_frac = max(line_frac, line_fraction(one_y(v_coords, line_cap, 0.5*v_size.x)));\\n#endif\\n\\n if (line_frac > 0.0) {\\n vec4 line_color = fractional_color(v_line_color, line_frac);\\n color = blend_colors(line_color, color);\\n }\\n\\n gl_FragColor = color;\\n}\\n\"},\n", + " 419: function _(t,_,i,h,e){h();const s=t(420),a=t(421),r=t(422);class l extends s.BaseGLGlyph{constructor(t,_){super(t,_),this.glyph=_,this._antialias=1.5,this._show_all=!1}_draw_one_marker_type(t,_,i){const h={scissor:this.regl_wrapper.scissor,viewport:this.regl_wrapper.viewport,canvas_size:[_.width,_.height],pixel_ratio:_.pixel_ratio,center:i._centers,width:i._widths,height:i._heights,angle:i._angles,size_hint:(0,r.marker_type_to_size_hint)(t),nmarkers:i.nvertices,antialias:this._antialias,linewidth:this._linewidths,line_color:this._line_rgba,fill_color:this._fill_rgba,line_cap:this._line_caps,line_join:this._line_joins,show:this._show};if(this._have_hatch){const _=Object.assign(Object.assign({},h),{hatch_pattern:this._hatch_patterns,hatch_scale:this._hatch_scales,hatch_weight:this._hatch_weights,hatch_color:this._hatch_rgba});this.regl_wrapper.marker_hatch(t)(_)}else this.regl_wrapper.marker_no_hatch(t)(h)}_set_visuals(){const t=this._get_visuals(),_=t.fill,i=t.line;if(null==this._linewidths&&(this._linewidths=new a.Float32Buffer(this.regl_wrapper),this._line_caps=new a.Uint8Buffer(this.regl_wrapper),this._line_joins=new a.Uint8Buffer(this.regl_wrapper),this._line_rgba=new a.NormalizedUint8Buffer(this.regl_wrapper),this._fill_rgba=new a.NormalizedUint8Buffer(this.regl_wrapper)),this._linewidths.set_from_prop(i.line_width),this._line_caps.set_from_line_cap(i.line_cap),this._line_joins.set_from_line_join(i.line_join),this._line_rgba.set_from_color(i.line_color,i.line_alpha),this._fill_rgba.set_from_color(_.fill_color,_.fill_alpha),this._have_hatch=t.hatch.doit,this._have_hatch){const _=t.hatch;null==this._hatch_patterns&&(this._hatch_patterns=new a.Uint8Buffer(this.regl_wrapper),this._hatch_scales=new a.Float32Buffer(this.regl_wrapper),this._hatch_weights=new a.Float32Buffer(this.regl_wrapper),this._hatch_rgba=new a.NormalizedUint8Buffer(this.regl_wrapper)),this._hatch_patterns.set_from_hatch_pattern(_.hatch_pattern),this._hatch_scales.set_from_prop(_.hatch_scale),this._hatch_weights.set_from_prop(_.hatch_weight),this._hatch_rgba.set_from_color(_.hatch_color,_.hatch_alpha)}}}i.BaseMarkerGL=l,l.__name__=\"BaseMarkerGL\",l.missing_point=-1e4},\n", + " 420: function _(e,t,s,i,h){i();class a{constructor(e,t){this.glyph=t,this.nvertices=0,this.size_changed=!1,this.data_changed=!1,this.visuals_changed=!1,this.regl_wrapper=e}set_data_changed(){const{data_size:e}=this.glyph;e!=this.nvertices&&(this.nvertices=e,this.size_changed=!0),this.data_changed=!0}set_visuals_changed(){this.visuals_changed=!0}render(e,t,s){if(0==t.length)return!0;const{width:i,height:h}=this.glyph.renderer.plot_view.canvas_view.webgl.canvas,a={pixel_ratio:this.glyph.renderer.plot_view.canvas_view.pixel_ratio,width:i,height:h};return this.draw(t,s,a),!0}}s.BaseGLGlyph=a,a.__name__=\"BaseGLGlyph\"},\n", + " 421: function _(r,t,a,e,s){e();const i=r(422),_=r(22);class n{constructor(r){this.regl_wrapper=r,this.is_scalar=!0}get_sized_array(r){return null!=this.array&&this.array.length==r||(this.array=this.new_array(r)),this.array}is_normalized(){return!1}get length(){return null!=this.array?this.array.length:0}set_from_array(r){const t=r.length,a=this.get_sized_array(t);for(let e=0;e0}_set_data(){const s=this.glyph.sx.length,i=s-1;this._is_closed=s>2&&this.glyph.sx[0]==this.glyph.sx[s-1]&&this.glyph.sy[0]==this.glyph.sy[s-1]&&isFinite(this.glyph.sx[0])&&isFinite(this.glyph.sy[0]),null==this._points&&(this._points=new o.Float32Buffer(this.regl_wrapper));const t=this._points.get_sized_array(2*(s+2));for(let i=1;is/255)),this._linewidth=s.line_width.value,this._linewidth<1&&(this._color[3]*=this._linewidth,this._linewidth=1),this._line_dash=(0,a.resolve_line_dash)(s.line_dash.value),this._is_dashed()&&([this._dash_tex_info,this._dash_tex,this._dash_scale]=this.regl_wrapper.get_dash(this._line_dash),this._dash_offset=s.line_dash_offset.value)}}t.LineGL=r,r.__name__=\"LineGL\"},\n", + " 427: function _(s,t,i,e,r){e();const h=s(421),a=s(424);class n extends a.SingleMarkerGL{constructor(s,t){super(s,t),this.glyph=t}draw(s,t,i){this._draw_impl(s,i,t.glglyph,\"square\")}_get_visuals(){return this.glyph.visuals}_set_data(){const s=this.nvertices;null==this._centers&&(this._centers=new h.Float32Buffer(this.regl_wrapper),this._widths=new h.Float32Buffer(this.regl_wrapper),this._heights=new h.Float32Buffer(this.regl_wrapper),this._angles=new h.Float32Buffer(this.regl_wrapper),this._angles.set_from_scalar(0));const t=this._centers.get_sized_array(2*s),i=this._heights.get_sized_array(s),e=this._widths.get_sized_array(s);for(let r=0;r1||s.length<_){this._show_all=!1,n.fill(0),r=0;for(const e of s)1!=h&&i._marker_types.get(e)!=t||(n[e]=255,r++)}else this._show_all&&a==_||(this._show_all=!0,n.fill(255));this._show.update(),0!=r&&this._draw_one_marker_type(t,e,i)}}_get_visuals(){return this.glyph.visuals}_set_data(){const s=this.nvertices;null==this._centers&&(this._centers=new r.Float32Buffer(this.regl_wrapper),this._widths=new r.Float32Buffer(this.regl_wrapper),this._heights=this._widths,this._angles=new r.Float32Buffer(this.regl_wrapper));const t=this._centers.get_sized_array(2*s);for(let e=0;ethis.render()))}remove(){null!=this.icon_view&&this.icon_view.remove(),super.remove()}styles(){return[...super.styles(),d.default]}_render_button(...t){return(0,c.button)({type:\"button\",disabled:this.model.disabled,class:[h.btn,h[`btn_${this.model.button_type}`]]},...t)}render(){super.render(),this.button_el=this._render_button(this.model.label),this.button_el.addEventListener(\"click\",(()=>this.click())),null!=this.icon_view&&(\"\"!=this.model.label?(0,c.prepend)(this.button_el,this.icon_view.el,(0,c.nbsp)()):(0,c.prepend)(this.button_el,this.icon_view.el),this.icon_view.render()),this.group_el=(0,c.div)({class:h.btn_group},this.button_el),this.el.appendChild(this.group_el)}click(){}}n.AbstractButtonView=b,b.__name__=\"AbstractButtonView\";class p extends _.Control{constructor(t){super(t)}}n.AbstractButton=p,o=p,p.__name__=\"AbstractButton\",o.define((({String:t,Ref:e,Nullable:n})=>({label:[t,\"Button\"],icon:[n(e(a.AbstractIcon)),null],button_type:[r.ButtonType,\"default\"]})))},\n", + " 442: function _(t,e,o,s,n){s();const i=t(512),l=t(43);class c extends i.WidgetView{connect_signals(){super.connect_signals();const t=this.model.properties;this.on_change(t.disabled,(()=>{for(const t of this.controls())(0,l.toggle_attribute)(t,\"disabled\",this.model.disabled)}))}}o.ControlView=c,c.__name__=\"ControlView\";class r extends i.Widget{constructor(t){super(t)}}o.Control=r,r.__name__=\"Control\"},\n", + " 512: function _(i,e,t,n,o){var r;n();const s=i(312);class _ extends s.HTMLBoxView{get orientation(){return\"horizontal\"}get default_size(){return this.model.default_size}_width_policy(){return\"horizontal\"==this.orientation?super._width_policy():\"fixed\"}_height_policy(){return\"horizontal\"==this.orientation?\"fixed\":super._height_policy()}box_sizing(){const i=super.box_sizing();return\"horizontal\"==this.orientation?null==i.width&&(i.width=this.default_size):null==i.height&&(i.height=this.default_size),i}}t.WidgetView=_,_.__name__=\"WidgetView\";class h extends s.HTMLBox{constructor(i){super(i)}}t.Widget=h,r=h,h.__name__=\"Widget\",r.define((({Number:i})=>({default_size:[i,300]}))),r.override({margin:[5,5,5,5]})},\n", + " 444: function _(c,t,s,n,e){n();const o=c(53),_=c(226);class a extends _.DOMView{}s.AbstractIconView=a,a.__name__=\"AbstractIconView\";class r extends o.Model{constructor(c){super(c)}}s.AbstractIcon=r,r.__name__=\"AbstractIcon\"},\n", + " 445: function _(e,t,n,s,i){s();const h=e(1);var o;const _=e(446),u=e(43),r=e(10),c=(0,h.__importStar)(e(229)),a=c;class l extends _.TextInputView{constructor(){super(...arguments),this._open=!1,this._last_value=\"\",this._hover_index=0}styles(){return[...super.styles(),c.default]}render(){super.render(),this.input_el.addEventListener(\"keydown\",(e=>this._keydown(e))),this.input_el.addEventListener(\"keyup\",(e=>this._keyup(e))),this.menu=(0,u.div)({class:[a.menu,a.below]}),this.menu.addEventListener(\"click\",(e=>this._menu_click(e))),this.menu.addEventListener(\"mouseover\",(e=>this._menu_hover(e))),this.el.appendChild(this.menu),(0,u.undisplay)(this.menu)}change_input(){this._open&&this.menu.children.length>0?(this.model.value=this.menu.children[this._hover_index].textContent,this.input_el.focus(),this._hide_menu()):this.model.restrict||super.change_input()}_update_completions(e){(0,u.empty)(this.menu);for(const t of e){const e=(0,u.div)(t);this.menu.appendChild(e)}e.length>0&&this.menu.children[0].classList.add(a.active)}_show_menu(){if(!this._open){this._open=!0,this._hover_index=0,this._last_value=this.model.value,(0,u.display)(this.menu);const e=t=>{const{target:n}=t;n instanceof HTMLElement&&!this.el.contains(n)&&(document.removeEventListener(\"click\",e),this._hide_menu())};document.addEventListener(\"click\",e)}}_hide_menu(){this._open&&(this._open=!1,(0,u.undisplay)(this.menu))}_menu_click(e){e.target!=e.currentTarget&&e.target instanceof Element&&(this.model.value=e.target.textContent,this.input_el.focus(),this._hide_menu())}_menu_hover(e){if(e.target!=e.currentTarget&&e.target instanceof Element){let t=0;for(t=0;t0&&(this.menu.children[this._hover_index].classList.remove(a.active),this._hover_index=(0,r.clamp)(e,0,t-1),this.menu.children[this._hover_index].classList.add(a.active))}_keydown(e){}_keyup(e){switch(e.keyCode){case u.Keys.Enter:this.change_input();break;case u.Keys.Esc:this._hide_menu();break;case u.Keys.Up:this._bump_hover(this._hover_index-1);break;case u.Keys.Down:this._bump_hover(this._hover_index+1);break;default:{const e=this.input_el.value;if(e.lengthe:e=>e.toLowerCase();for(const n of this.model.completions)s(n).startsWith(s(e))&&t.push(n);this._update_completions(t),0==t.length?this._hide_menu():this._show_menu()}}}}n.AutocompleteInputView=l,l.__name__=\"AutocompleteInputView\";class d extends _.TextInput{constructor(e){super(e)}}n.AutocompleteInput=d,o=d,d.__name__=\"AutocompleteInput\",o.prototype.default_view=l,o.define((({Boolean:e,Int:t,String:n,Array:s})=>({completions:[s(n),[]],min_characters:[t,2],case_sensitive:[e,!0],restrict:[e,!0]})))},\n", + " 446: function _(t,e,n,p,_){p();const u=t(1);var i;const s=t(447),r=t(43),x=(0,u.__importStar)(t(449));class a extends s.TextLikeInputView{_render_input(){this.input_el=(0,r.input)({type:\"text\",class:x.input})}}n.TextInputView=a,a.__name__=\"TextInputView\";class c extends s.TextLikeInput{constructor(t){super(t)}}n.TextInput=c,i=c,c.__name__=\"TextInput\",i.prototype.default_view=a},\n", + " 447: function _(e,t,n,i,l){var s;i();const h=e(448);class a extends h.InputWidgetView{connect_signals(){super.connect_signals(),this.connect(this.model.properties.name.change,(()=>{var e;return this.input_el.name=null!==(e=this.model.name)&&void 0!==e?e:\"\"})),this.connect(this.model.properties.value.change,(()=>this.input_el.value=this.model.value)),this.connect(this.model.properties.value_input.change,(()=>this.input_el.value=this.model.value_input)),this.connect(this.model.properties.disabled.change,(()=>this.input_el.disabled=this.model.disabled)),this.connect(this.model.properties.placeholder.change,(()=>this.input_el.placeholder=this.model.placeholder)),this.connect(this.model.properties.max_length.change,(()=>{const{max_length:e}=this.model;null!=e?this.input_el.maxLength=e:this.input_el.removeAttribute(\"maxLength\")}))}render(){var e;super.render(),this._render_input();const{input_el:t}=this;t.name=null!==(e=this.model.name)&&void 0!==e?e:\"\",t.value=this.model.value,t.disabled=this.model.disabled,t.placeholder=this.model.placeholder,null!=this.model.max_length&&(t.maxLength=this.model.max_length),t.addEventListener(\"change\",(()=>this.change_input())),t.addEventListener(\"input\",(()=>this.change_input_value())),this.group_el.appendChild(t)}change_input(){this.model.value=this.input_el.value,super.change_input()}change_input_value(){this.model.value_input=this.input_el.value,super.change_input()}}n.TextLikeInputView=a,a.__name__=\"TextLikeInputView\";class u extends h.InputWidget{constructor(e){super(e)}}n.TextLikeInput=u,s=u,u.__name__=\"TextLikeInput\",s.define((({Int:e,String:t,Nullable:n})=>({value:[t,\"\"],value_input:[t,\"\"],placeholder:[t,\"\"],max_length:[n(e),null]})))},\n", + " 448: function _(e,t,n,s,l){s();const i=e(1);var o;const r=e(442),_=e(43),p=(0,i.__importStar)(e(449)),a=p;class c extends r.ControlView{*controls(){yield this.input_el}connect_signals(){super.connect_signals(),this.connect(this.model.properties.title.change,(()=>{this.label_el.textContent=this.model.title}))}styles(){return[...super.styles(),p.default]}render(){super.render();const{title:e}=this.model;this.label_el=(0,_.label)({style:{display:0==e.length?\"none\":\"\"}},e),this.group_el=(0,_.div)({class:a.input_group},this.label_el),this.el.appendChild(this.group_el)}change_input(){}}n.InputWidgetView=c,c.__name__=\"InputWidgetView\";class d extends r.Control{constructor(e){super(e)}}n.InputWidget=d,o=d,d.__name__=\"InputWidget\",o.define((({String:e})=>({title:[e,\"\"]})))},\n", + " 449: function _(o,p,t,n,i){n(),t.root=\"bk-root\",t.input=\"bk-input\",t.input_group=\"bk-input-group\",t.inline=\"bk-inline\",t.spin_wrapper=\"bk-spin-wrapper\",t.spin_btn=\"bk-spin-btn\",t.spin_btn_up=\"bk-spin-btn-up\",t.spin_btn_down=\"bk-spin-btn-down\",t.default='.bk-root .bk-input{display:inline-block;width:100%;flex-grow:1;min-height:31px;padding:0 12px;background-color:#fff;border:1px solid #ccc;border-radius:4px;}.bk-root .bk-input:focus{border-color:#66afe9;outline:0;box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);}.bk-root .bk-input::placeholder,.bk-root .bk-input:-ms-input-placeholder,.bk-root .bk-input::-moz-placeholder,.bk-root .bk-input::-webkit-input-placeholder{color:#999;opacity:1;}.bk-root .bk-input[disabled]{cursor:not-allowed;background-color:#eee;opacity:1;}.bk-root select:not([multiple]).bk-input,.bk-root select:not([size]).bk-input{height:auto;appearance:none;-webkit-appearance:none;background-image:url(\\'data:image/svg+xml;utf8,\\');background-position:right 0.5em center;background-size:8px 6px;background-repeat:no-repeat;}.bk-root select[multiple].bk-input,.bk-root select[size].bk-input,.bk-root textarea.bk-input{height:auto;}.bk-root .bk-input-group{width:100%;height:100%;display:inline-flex;flex-wrap:nowrap;align-items:start;flex-direction:column;white-space:nowrap;}.bk-root .bk-input-group.bk-inline{flex-direction:row;}.bk-root .bk-input-group.bk-inline > *:not(:first-child){margin-left:5px;}.bk-root .bk-input-group input[type=\"checkbox\"] + span,.bk-root .bk-input-group input[type=\"radio\"] + span{position:relative;top:-2px;margin-left:3px;}.bk-root .bk-input-group > .bk-spin-wrapper{display:inherit;width:inherit;height:inherit;position:relative;overflow:hidden;padding:0;vertical-align:middle;}.bk-root .bk-input-group > .bk-spin-wrapper input{padding-right:20px;}.bk-root .bk-input-group > .bk-spin-wrapper > .bk-spin-btn{position:absolute;display:block;height:50%;min-height:0;min-width:0;width:30px;padding:0;margin:0;right:0;border:none;background:none;cursor:pointer;}.bk-root .bk-input-group > .bk-spin-wrapper > .bk-spin-btn:before{content:\"\";display:inline-block;transform:translateY(-50%);border-left:5px solid transparent;border-right:5px solid transparent;}.bk-root .bk-input-group > .bk-spin-wrapper > .bk-spin-btn.bk-spin-btn-up{top:0;}.bk-root .bk-input-group > .bk-spin-wrapper > .bk-spin-btn.bk-spin-btn-up:before{border-bottom:5px solid black;}.bk-root .bk-input-group > .bk-spin-wrapper > .bk-spin-btn.bk-spin-btn-up:disabled:before{border-bottom-color:grey;}.bk-root .bk-input-group > .bk-spin-wrapper > .bk-spin-btn.bk-spin-btn-down{bottom:0;}.bk-root .bk-input-group > .bk-spin-wrapper > .bk-spin-btn.bk-spin-btn-down:before{border-top:5px solid black;}.bk-root .bk-input-group > .bk-spin-wrapper > .bk-spin-btn.bk-spin-btn-down:disabled:before{border-top-color:grey;}'},\n", + " 450: function _(t,e,n,o,c){var s;o();const u=t(441),r=t(251);class i extends u.AbstractButtonView{click(){this.model.trigger_event(new r.ButtonClick),super.click()}}n.ButtonView=i,i.__name__=\"ButtonView\";class _ extends u.AbstractButton{constructor(t){super(t)}}n.Button=_,s=_,_.__name__=\"Button\",s.prototype.default_view=i,s.override({label:\"Button\"})},\n", + " 451: function _(t,e,o,c,a){c();const s=t(1);var n;const i=t(452),r=t(43),u=(0,s.__importStar)(t(318));class _ extends i.ButtonGroupView{get active(){return new Set(this.model.active)}change_active(t){const{active:e}=this;e.has(t)?e.delete(t):e.add(t),this.model.active=[...e].sort()}_update_active(){const{active:t}=this;this._buttons.forEach(((e,o)=>{(0,r.classes)(e).toggle(u.active,t.has(o))}))}}o.CheckboxButtonGroupView=_,_.__name__=\"CheckboxButtonGroupView\";class h extends i.ButtonGroup{constructor(t){super(t)}}o.CheckboxButtonGroup=h,n=h,h.__name__=\"CheckboxButtonGroup\",n.prototype.default_view=_,n.define((({Int:t,Array:e})=>({active:[e(t),[]]})))},\n", + " 452: function _(t,e,n,s,i){s();const o=t(1);var r;const a=t(453),l=t(20),d=t(43),u=(0,o.__importStar)(t(318)),_=u;class c extends a.OrientedControlView{get default_size(){return\"horizontal\"==this.orientation?this.model.default_size:void 0}*controls(){yield*this._buttons}connect_signals(){super.connect_signals();const t=this.model.properties;this.on_change(t.button_type,(()=>this.render())),this.on_change(t.labels,(()=>this.render())),this.on_change(t.active,(()=>this._update_active()))}styles(){return[...super.styles(),u.default]}render(){super.render(),this._buttons=this.model.labels.map(((t,e)=>{const n=(0,d.div)({class:[_.btn,_[`btn_${this.model.button_type}`]],disabled:this.model.disabled},t);return n.addEventListener(\"click\",(()=>this.change_active(e))),n})),this._update_active();const t=\"horizontal\"==this.model.orientation?_.horizontal:_.vertical,e=(0,d.div)({class:[_.btn_group,t]},this._buttons);this.el.appendChild(e)}}n.ButtonGroupView=c,c.__name__=\"ButtonGroupView\";class h extends a.OrientedControl{constructor(t){super(t)}}n.ButtonGroup=h,r=h,h.__name__=\"ButtonGroup\",r.define((({String:t,Array:e})=>({labels:[e(t),[]],button_type:[l.ButtonType,\"default\"]})))},\n", + " 453: function _(n,t,e,o,r){var i;o();const a=n(442),l=n(20);class s extends a.ControlView{get orientation(){return this.model.orientation}}e.OrientedControlView=s,s.__name__=\"OrientedControlView\";class _ extends a.Control{constructor(n){super(n)}}e.OrientedControl=_,i=_,_.__name__=\"OrientedControl\",i.define((()=>({orientation:[l.Orientation,\"horizontal\"]})))},\n", + " 454: function _(e,t,n,i,s){i();const o=e(1);var a;const c=e(455),l=e(43),d=e(9),p=(0,o.__importStar)(e(449));class r extends c.InputGroupView{render(){super.render();const e=(0,l.div)({class:[p.input_group,this.model.inline?p.inline:null]});this.el.appendChild(e);const{active:t,labels:n}=this.model;this._inputs=[];for(let i=0;ithis.change_active(i))),this._inputs.push(s),this.model.disabled&&(s.disabled=!0),(0,d.includes)(t,i)&&(s.checked=!0);const o=(0,l.label)(s,(0,l.span)(n[i]));e.appendChild(o)}}change_active(e){const t=new Set(this.model.active);t.has(e)?t.delete(e):t.add(e),this.model.active=[...t].sort()}}n.CheckboxGroupView=r,r.__name__=\"CheckboxGroupView\";class h extends c.InputGroup{constructor(e){super(e)}}n.CheckboxGroup=h,a=h,h.__name__=\"CheckboxGroup\",a.prototype.default_view=r,a.define((({Boolean:e,Int:t,String:n,Array:i})=>({active:[i(t),[]],labels:[i(n),[]],inline:[e,!1]})))},\n", + " 455: function _(n,t,e,s,o){s();const r=n(1),u=n(442),c=(0,r.__importDefault)(n(449));class _ extends u.ControlView{*controls(){yield*this._inputs}connect_signals(){super.connect_signals(),this.connect(this.model.change,(()=>this.render()))}styles(){return[...super.styles(),c.default]}}e.InputGroupView=_,_.__name__=\"InputGroupView\";class i extends u.Control{constructor(n){super(n)}}e.InputGroup=i,i.__name__=\"InputGroup\"},\n", + " 456: function _(e,t,i,n,o){n();const s=e(1);var l;const r=e(448),c=e(43),a=e(22),d=(0,s.__importStar)(e(449));class h extends r.InputWidgetView{connect_signals(){super.connect_signals(),this.connect(this.model.properties.name.change,(()=>{var e;return this.input_el.name=null!==(e=this.model.name)&&void 0!==e?e:\"\"})),this.connect(this.model.properties.color.change,(()=>this.input_el.value=(0,a.color2hexrgb)(this.model.color))),this.connect(this.model.properties.disabled.change,(()=>this.input_el.disabled=this.model.disabled))}render(){super.render(),this.input_el=(0,c.input)({type:\"color\",class:d.input,name:this.model.name,value:this.model.color,disabled:this.model.disabled}),this.input_el.addEventListener(\"change\",(()=>this.change_input())),this.group_el.appendChild(this.input_el)}change_input(){this.model.color=this.input_el.value,super.change_input()}}i.ColorPickerView=h,h.__name__=\"ColorPickerView\";class p extends r.InputWidget{constructor(e){super(e)}}i.ColorPicker=p,l=p,p.__name__=\"ColorPicker\",l.prototype.default_view=h,l.define((({Color:e})=>({color:[e,\"#000000\"]})))},\n", + " 457: function _(e,t,i,n,s){n();const a=e(1);var l;const o=(0,a.__importDefault)(e(458)),d=e(448),r=e(43),c=e(20),u=e(8),h=(0,a.__importStar)(e(449)),_=(0,a.__importDefault)(e(459));function p(e){const t=[];for(const i of e)if((0,u.isString)(i))t.push(i);else{const[e,n]=i;t.push({from:e,to:n})}return t}class m extends d.InputWidgetView{connect_signals(){super.connect_signals();const{value:e,min_date:t,max_date:i,disabled_dates:n,enabled_dates:s,position:a,inline:l}=this.model.properties;this.connect(e.change,(()=>{var e;return null===(e=this._picker)||void 0===e?void 0:e.setDate(this.model.value)})),this.connect(t.change,(()=>{var e;return null===(e=this._picker)||void 0===e?void 0:e.set(\"minDate\",this.model.min_date)})),this.connect(i.change,(()=>{var e;return null===(e=this._picker)||void 0===e?void 0:e.set(\"maxDate\",this.model.max_date)})),this.connect(n.change,(()=>{var e;return null===(e=this._picker)||void 0===e?void 0:e.set(\"disable\",this.model.disabled_dates)})),this.connect(s.change,(()=>{var e;return null===(e=this._picker)||void 0===e?void 0:e.set(\"enable\",this.model.enabled_dates)})),this.connect(a.change,(()=>{var e;return null===(e=this._picker)||void 0===e?void 0:e.set(\"position\",this.model.position)})),this.connect(l.change,(()=>{var e;return null===(e=this._picker)||void 0===e?void 0:e.set(\"inline\",this.model.inline)}))}remove(){var e;null===(e=this._picker)||void 0===e||e.destroy(),super.remove()}styles(){return[...super.styles(),_.default]}render(){var e,t;null==this._picker&&(super.render(),this.input_el=(0,r.input)({type:\"text\",class:h.input,disabled:this.model.disabled}),this.group_el.appendChild(this.input_el),this._picker=(0,o.default)(this.input_el,{defaultDate:this.model.value,minDate:null!==(e=this.model.min_date)&&void 0!==e?e:void 0,maxDate:null!==(t=this.model.max_date)&&void 0!==t?t:void 0,inline:this.model.inline,position:this.model.position,disable:p(this.model.disabled_dates),enable:p(this.model.enabled_dates),onChange:(e,t,i)=>this._on_change(e,t,i)}))}_on_change(e,t,i){this.model.value=t,this.change_input()}}i.DatePickerView=m,m.__name__=\"DatePickerView\";class v extends d.InputWidget{constructor(e){super(e)}}i.DatePicker=v,l=v,v.__name__=\"DatePicker\",l.prototype.default_view=m,l.define((({Boolean:e,String:t,Array:i,Tuple:n,Or:s,Nullable:a})=>{const l=i(s(t,n(t,t)));return{value:[t],min_date:[a(t),null],max_date:[a(t),null],disabled_dates:[l,[]],enabled_dates:[l,[]],position:[c.CalendarPosition,\"auto\"],inline:[e,!1]}}))},\n", + " 458: function _(e,n,t,a,i){\n", + " /* flatpickr v4.6.6, @license MIT */var o,r;o=this,r=function(){\"use strict\";\n", + " /*! *****************************************************************************\n", + " Copyright (c) Microsoft Corporation.\n", + " \n", + " Permission to use, copy, modify, and/or distribute this software for any\n", + " purpose with or without fee is hereby granted.\n", + " \n", + " THE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\n", + " REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\n", + " AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\n", + " INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\n", + " LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\n", + " OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\n", + " PERFORMANCE OF THIS SOFTWARE.\n", + " ***************************************************************************** */var e=function(){return e=Object.assign||function(e){for(var n,t=1,a=arguments.length;t\",noCalendar:!1,now:new Date,onChange:[],onClose:[],onDayCreate:[],onDestroy:[],onKeyDown:[],onMonthChange:[],onOpen:[],onParseConfig:[],onReady:[],onValueUpdate:[],onYearChange:[],onPreCalendarPosition:[],plugins:[],position:\"auto\",positionElement:void 0,prevArrow:\"\",shorthandCurrentMonth:!1,showMonths:1,static:!1,time_24hr:!1,weekNumbers:!1,wrap:!1},i={weekdays:{shorthand:[\"Sun\",\"Mon\",\"Tue\",\"Wed\",\"Thu\",\"Fri\",\"Sat\"],longhand:[\"Sunday\",\"Monday\",\"Tuesday\",\"Wednesday\",\"Thursday\",\"Friday\",\"Saturday\"]},months:{shorthand:[\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\"],longhand:[\"January\",\"February\",\"March\",\"April\",\"May\",\"June\",\"July\",\"August\",\"September\",\"October\",\"November\",\"December\"]},daysInMonth:[31,28,31,30,31,30,31,31,30,31,30,31],firstDayOfWeek:0,ordinal:function(e){var n=e%100;if(n>3&&n<21)return\"th\";switch(n%10){case 1:return\"st\";case 2:return\"nd\";case 3:return\"rd\";default:return\"th\"}},rangeSeparator:\" to \",weekAbbreviation:\"Wk\",scrollTitle:\"Scroll to increment\",toggleTitle:\"Click to toggle\",amPM:[\"AM\",\"PM\"],yearAriaLabel:\"Year\",monthAriaLabel:\"Month\",hourAriaLabel:\"Hour\",minuteAriaLabel:\"Minute\",time_24hr:!1},o=function(e,n){return void 0===n&&(n=2),(\"000\"+e).slice(-1*n)},r=function(e){return!0===e?1:0};function l(e,n,t){var a;return void 0===t&&(t=!1),function(){var i=this,o=arguments;null!==a&&clearTimeout(a),a=window.setTimeout((function(){a=null,t||e.apply(i,o)}),n),t&&!a&&e.apply(i,o)}}var c=function(e){return e instanceof Array?e:[e]};function d(e,n,t){if(!0===t)return e.classList.add(n);e.classList.remove(n)}function s(e,n,t){var a=window.document.createElement(e);return n=n||\"\",t=t||\"\",a.className=n,void 0!==t&&(a.textContent=t),a}function u(e){for(;e.firstChild;)e.removeChild(e.firstChild)}function f(e,n){return n(e)?e:e.parentNode?f(e.parentNode,n):void 0}function m(e,n){var t=s(\"div\",\"numInputWrapper\"),a=s(\"input\",\"numInput \"+e),i=s(\"span\",\"arrowUp\"),o=s(\"span\",\"arrowDown\");if(-1===navigator.userAgent.indexOf(\"MSIE 9.0\")?a.type=\"number\":(a.type=\"text\",a.pattern=\"\\\\d*\"),void 0!==n)for(var r in n)a.setAttribute(r,n[r]);return t.appendChild(a),t.appendChild(i),t.appendChild(o),t}function g(e){try{return\"function\"==typeof e.composedPath?e.composedPath()[0]:e.target}catch(n){return e.target}}var p=function(){},h=function(e,n,t){return t.months[n?\"shorthand\":\"longhand\"][e]},v={D:p,F:function(e,n,t){e.setMonth(t.months.longhand.indexOf(n))},G:function(e,n){e.setHours(parseFloat(n))},H:function(e,n){e.setHours(parseFloat(n))},J:function(e,n){e.setDate(parseFloat(n))},K:function(e,n,t){e.setHours(e.getHours()%12+12*r(new RegExp(t.amPM[1],\"i\").test(n)))},M:function(e,n,t){e.setMonth(t.months.shorthand.indexOf(n))},S:function(e,n){e.setSeconds(parseFloat(n))},U:function(e,n){return new Date(1e3*parseFloat(n))},W:function(e,n,t){var a=parseInt(n),i=new Date(e.getFullYear(),0,2+7*(a-1),0,0,0,0);return i.setDate(i.getDate()-i.getDay()+t.firstDayOfWeek),i},Y:function(e,n){e.setFullYear(parseFloat(n))},Z:function(e,n){return new Date(n)},d:function(e,n){e.setDate(parseFloat(n))},h:function(e,n){e.setHours(parseFloat(n))},i:function(e,n){e.setMinutes(parseFloat(n))},j:function(e,n){e.setDate(parseFloat(n))},l:p,m:function(e,n){e.setMonth(parseFloat(n)-1)},n:function(e,n){e.setMonth(parseFloat(n)-1)},s:function(e,n){e.setSeconds(parseFloat(n))},u:function(e,n){return new Date(parseFloat(n))},w:p,y:function(e,n){e.setFullYear(2e3+parseFloat(n))}},D={D:\"(\\\\w+)\",F:\"(\\\\w+)\",G:\"(\\\\d\\\\d|\\\\d)\",H:\"(\\\\d\\\\d|\\\\d)\",J:\"(\\\\d\\\\d|\\\\d)\\\\w+\",K:\"\",M:\"(\\\\w+)\",S:\"(\\\\d\\\\d|\\\\d)\",U:\"(.+)\",W:\"(\\\\d\\\\d|\\\\d)\",Y:\"(\\\\d{4})\",Z:\"(.+)\",d:\"(\\\\d\\\\d|\\\\d)\",h:\"(\\\\d\\\\d|\\\\d)\",i:\"(\\\\d\\\\d|\\\\d)\",j:\"(\\\\d\\\\d|\\\\d)\",l:\"(\\\\w+)\",m:\"(\\\\d\\\\d|\\\\d)\",n:\"(\\\\d\\\\d|\\\\d)\",s:\"(\\\\d\\\\d|\\\\d)\",u:\"(.+)\",w:\"(\\\\d\\\\d|\\\\d)\",y:\"(\\\\d{2})\"},w={Z:function(e){return e.toISOString()},D:function(e,n,t){return n.weekdays.shorthand[w.w(e,n,t)]},F:function(e,n,t){return h(w.n(e,n,t)-1,!1,n)},G:function(e,n,t){return o(w.h(e,n,t))},H:function(e){return o(e.getHours())},J:function(e,n){return void 0!==n.ordinal?e.getDate()+n.ordinal(e.getDate()):e.getDate()},K:function(e,n){return n.amPM[r(e.getHours()>11)]},M:function(e,n){return h(e.getMonth(),!0,n)},S:function(e){return o(e.getSeconds())},U:function(e){return e.getTime()/1e3},W:function(e,n,t){return t.getWeek(e)},Y:function(e){return o(e.getFullYear(),4)},d:function(e){return o(e.getDate())},h:function(e){return e.getHours()%12?e.getHours()%12:12},i:function(e){return o(e.getMinutes())},j:function(e){return e.getDate()},l:function(e,n){return n.weekdays.longhand[e.getDay()]},m:function(e){return o(e.getMonth()+1)},n:function(e){return e.getMonth()+1},s:function(e){return e.getSeconds()},u:function(e){return e.getTime()},w:function(e){return e.getDay()},y:function(e){return String(e.getFullYear()).substring(2)}},b=function(e){var n=e.config,t=void 0===n?a:n,o=e.l10n,r=void 0===o?i:o,l=e.isMobile,c=void 0!==l&&l;return function(e,n,a){var i=a||r;return void 0===t.formatDate||c?n.split(\"\").map((function(n,a,o){return w[n]&&\"\\\\\"!==o[a-1]?w[n](e,i,t):\"\\\\\"!==n?n:\"\"})).join(\"\"):t.formatDate(e,n,i)}},C=function(e){var n=e.config,t=void 0===n?a:n,o=e.l10n,r=void 0===o?i:o;return function(e,n,i,o){if(0===e||e){var l,c=o||r,d=e;if(e instanceof Date)l=new Date(e.getTime());else if(\"string\"!=typeof e&&void 0!==e.toFixed)l=new Date(e);else if(\"string\"==typeof e){var s=n||(t||a).dateFormat,u=String(e).trim();if(\"today\"===u)l=new Date,i=!0;else if(/Z$/.test(u)||/GMT$/.test(u))l=new Date(e);else if(t&&t.parseDate)l=t.parseDate(e,s);else{l=t&&t.noCalendar?new Date((new Date).setHours(0,0,0,0)):new Date((new Date).getFullYear(),0,1,0,0,0,0);for(var f=void 0,m=[],g=0,p=0,h=\"\";gl&&(u=a===w.hourElement?u-l-r(!w.amPM):i,m&&H(void 0,1,w.hourElement)),w.amPM&&f&&(1===c?u+d===23:Math.abs(u-d)>c)&&(w.amPM.textContent=w.l10n.amPM[r(w.amPM.textContent===w.l10n.amPM[0])]),a.value=o(u)}}(e);var c=w._input.value;I(),be(),w._input.value!==c&&w._debouncedChange()}function I(){if(void 0!==w.hourElement&&void 0!==w.minuteElement){var e,n,t=(parseInt(w.hourElement.value.slice(-2),10)||0)%24,a=(parseInt(w.minuteElement.value,10)||0)%60,i=void 0!==w.secondElement?(parseInt(w.secondElement.value,10)||0)%60:0;void 0!==w.amPM&&(e=t,n=w.amPM.textContent,t=e%12+12*r(n===w.l10n.amPM[1]));var o=void 0!==w.config.minTime||w.config.minDate&&w.minDateHasTime&&w.latestSelectedDateObj&&0===M(w.latestSelectedDateObj,w.config.minDate,!0);if(void 0!==w.config.maxTime||w.config.maxDate&&w.maxDateHasTime&&w.latestSelectedDateObj&&0===M(w.latestSelectedDateObj,w.config.maxDate,!0)){var l=void 0!==w.config.maxTime?w.config.maxTime:w.config.maxDate;(t=Math.min(t,l.getHours()))===l.getHours()&&(a=Math.min(a,l.getMinutes())),a===l.getMinutes()&&(i=Math.min(i,l.getSeconds()))}if(o){var c=void 0!==w.config.minTime?w.config.minTime:w.config.minDate;(t=Math.max(t,c.getHours()))===c.getHours()&&(a=Math.max(a,c.getMinutes())),a===c.getMinutes()&&(i=Math.max(i,c.getSeconds()))}O(t,a,i)}}function S(e){var n=e||w.latestSelectedDateObj;n&&O(n.getHours(),n.getMinutes(),n.getSeconds())}function _(){var e=w.config.defaultHour,n=w.config.defaultMinute,t=w.config.defaultSeconds;if(void 0!==w.config.minDate){var a=w.config.minDate.getHours(),i=w.config.minDate.getMinutes();(e=Math.max(e,a))===a&&(n=Math.max(i,n)),e===a&&n===i&&(t=w.config.minDate.getSeconds())}if(void 0!==w.config.maxDate){var o=w.config.maxDate.getHours(),r=w.config.maxDate.getMinutes();(e=Math.min(e,o))===o&&(n=Math.min(r,n)),e===o&&n===r&&(t=w.config.maxDate.getSeconds())}return{hours:e,minutes:n,seconds:t}}function O(e,n,t){void 0!==w.latestSelectedDateObj&&w.latestSelectedDateObj.setHours(e%24,n,t||0,0),w.hourElement&&w.minuteElement&&!w.isMobile&&(w.hourElement.value=o(w.config.time_24hr?e:(12+e)%12+12*r(e%12==0)),w.minuteElement.value=o(n),void 0!==w.amPM&&(w.amPM.textContent=w.l10n.amPM[r(e>=12)]),void 0!==w.secondElement&&(w.secondElement.value=o(t)))}function F(e){var n=g(e),t=parseInt(n.value)+(e.delta||0);(t/1e3>1||\"Enter\"===e.key&&!/[^\\d]/.test(t.toString()))&&Q(t)}function N(e,n,t,a){return n instanceof Array?n.forEach((function(n){return N(e,n,t,a)})):e instanceof Array?e.forEach((function(e){return N(e,n,t,a)})):(e.addEventListener(n,t,a),void w._handlers.push({element:e,event:n,handler:t,options:a}))}function A(){pe(\"onChange\")}function P(e,n){var t=void 0!==e?w.parseDate(e):w.latestSelectedDateObj||(w.config.minDate&&w.config.minDate>w.now?w.config.minDate:w.config.maxDate&&w.config.maxDate=0&&M(e,w.selectedDates[1])<=0}(n)&&!ve(n)&&o.classList.add(\"inRange\"),w.weekNumbers&&1===w.config.showMonths&&\"prevMonthDay\"!==e&&t%7==1&&w.weekNumbers.insertAdjacentHTML(\"beforeend\",\"\"+w.config.getWeek(n)+\"\"),pe(\"onDayCreate\",o),o}function L(e){e.focus(),\"range\"===w.config.mode&&ae(e)}function W(e){for(var n=e>0?0:w.config.showMonths-1,t=e>0?w.config.showMonths:-1,a=n;a!=t;a+=e)for(var i=w.daysContainer.children[a],o=e>0?0:i.children.length-1,r=e>0?i.children.length:-1,l=o;l!=r;l+=e){var c=i.children[l];if(-1===c.className.indexOf(\"hidden\")&&X(c.dateObj))return c}}function R(e,n){var t=ee(document.activeElement||document.body),a=void 0!==e?e:t?document.activeElement:void 0!==w.selectedDateElem&&ee(w.selectedDateElem)?w.selectedDateElem:void 0!==w.todayDateElem&&ee(w.todayDateElem)?w.todayDateElem:W(n>0?1:-1);void 0===a?w._input.focus():t?function(e,n){for(var t=-1===e.className.indexOf(\"Month\")?e.dateObj.getMonth():w.currentMonth,a=n>0?w.config.showMonths:-1,i=n>0?1:-1,o=t-w.currentMonth;o!=a;o+=i)for(var r=w.daysContainer.children[o],l=t-w.currentMonth===o?e.$i+n:n<0?r.children.length-1:0,c=r.children.length,d=l;d>=0&&d0?c:-1);d+=i){var s=r.children[d];if(-1===s.className.indexOf(\"hidden\")&&X(s.dateObj)&&Math.abs(e.$i-d)>=Math.abs(n))return L(s)}w.changeMonth(i),R(W(i),0)}(a,n):L(a)}function B(e,n){for(var t=(new Date(e,n,1).getDay()-w.l10n.firstDayOfWeek+7)%7,a=w.utils.getDaysInMonth((n-1+12)%12,e),i=w.utils.getDaysInMonth(n,e),o=window.document.createDocumentFragment(),r=w.config.showMonths>1,l=r?\"prevMonthDay hidden\":\"prevMonthDay\",c=r?\"nextMonthDay hidden\":\"nextMonthDay\",d=a+1-t,u=0;d<=a;d++,u++)o.appendChild(j(l,new Date(e,n-1,d),d,u));for(d=1;d<=i;d++,u++)o.appendChild(j(\"\",new Date(e,n,d),d,u));for(var f=i+1;f<=42-t&&(1===w.config.showMonths||u%7!=0);f++,u++)o.appendChild(j(c,new Date(e,n+1,f%i),f,u));var m=s(\"div\",\"dayContainer\");return m.appendChild(o),m}function J(){if(void 0!==w.daysContainer){u(w.daysContainer),w.weekNumbers&&u(w.weekNumbers);for(var e=document.createDocumentFragment(),n=0;n1||\"dropdown\"!==w.config.monthSelectorType)){var e=function(e){return!(void 0!==w.config.minDate&&w.currentYear===w.config.minDate.getFullYear()&&ew.config.maxDate.getMonth())};w.monthsDropdownContainer.tabIndex=-1,w.monthsDropdownContainer.innerHTML=\"\";for(var n=0;n<12;n++)if(e(n)){var t=s(\"option\",\"flatpickr-monthDropdown-month\");t.value=new Date(w.currentYear,n).getMonth().toString(),t.textContent=h(n,w.config.shorthandCurrentMonth,w.l10n),t.tabIndex=-1,w.currentMonth===n&&(t.selected=!0),w.monthsDropdownContainer.appendChild(t)}}}function U(){var e,n=s(\"div\",\"flatpickr-month\"),t=window.document.createDocumentFragment();w.config.showMonths>1||\"static\"===w.config.monthSelectorType?e=s(\"span\",\"cur-month\"):(w.monthsDropdownContainer=s(\"select\",\"flatpickr-monthDropdown-months\"),w.monthsDropdownContainer.setAttribute(\"aria-label\",w.l10n.monthAriaLabel),N(w.monthsDropdownContainer,\"change\",(function(e){var n=g(e),t=parseInt(n.value,10);w.changeMonth(t-w.currentMonth),pe(\"onMonthChange\")})),K(),e=w.monthsDropdownContainer);var a=m(\"cur-year\",{tabindex:\"-1\"}),i=a.getElementsByTagName(\"input\")[0];i.setAttribute(\"aria-label\",w.l10n.yearAriaLabel),w.config.minDate&&i.setAttribute(\"min\",w.config.minDate.getFullYear().toString()),w.config.maxDate&&(i.setAttribute(\"max\",w.config.maxDate.getFullYear().toString()),i.disabled=!!w.config.minDate&&w.config.minDate.getFullYear()===w.config.maxDate.getFullYear());var o=s(\"div\",\"flatpickr-current-month\");return o.appendChild(e),o.appendChild(a),t.appendChild(o),n.appendChild(t),{container:n,yearElement:i,monthElement:e}}function q(){u(w.monthNav),w.monthNav.appendChild(w.prevMonthNav),w.config.showMonths&&(w.yearElements=[],w.monthElements=[]);for(var e=w.config.showMonths;e--;){var n=U();w.yearElements.push(n.yearElement),w.monthElements.push(n.monthElement),w.monthNav.appendChild(n.container)}w.monthNav.appendChild(w.nextMonthNav)}function $(){w.weekdayContainer?u(w.weekdayContainer):w.weekdayContainer=s(\"div\",\"flatpickr-weekdays\");for(var e=w.config.showMonths;e--;){var n=s(\"div\",\"flatpickr-weekdaycontainer\");w.weekdayContainer.appendChild(n)}return z(),w.weekdayContainer}function z(){if(w.weekdayContainer){var e=w.l10n.firstDayOfWeek,t=n(w.l10n.weekdays.shorthand);e>0&&e\\n \"+t.join(\"\")+\"\\n \\n \"}}function G(e,n){void 0===n&&(n=!0);var t=n?e:e-w.currentMonth;t<0&&!0===w._hidePrevMonthArrow||t>0&&!0===w._hideNextMonthArrow||(w.currentMonth+=t,(w.currentMonth<0||w.currentMonth>11)&&(w.currentYear+=w.currentMonth>11?1:-1,w.currentMonth=(w.currentMonth+12)%12,pe(\"onYearChange\"),K()),J(),pe(\"onMonthChange\"),De())}function V(e){return!(!w.config.appendTo||!w.config.appendTo.contains(e))||w.calendarContainer.contains(e)}function Z(e){if(w.isOpen&&!w.config.inline){var n=g(e),t=V(n),a=n===w.input||n===w.altInput||w.element.contains(n)||e.path&&e.path.indexOf&&(~e.path.indexOf(w.input)||~e.path.indexOf(w.altInput)),i=\"blur\"===e.type?a&&e.relatedTarget&&!V(e.relatedTarget):!a&&!t&&!V(e.relatedTarget),o=!w.config.ignoredFocusElements.some((function(e){return e.contains(n)}));i&&o&&(void 0!==w.timeContainer&&void 0!==w.minuteElement&&void 0!==w.hourElement&&\"\"!==w.input.value&&void 0!==w.input.value&&T(),w.close(),w.config&&\"range\"===w.config.mode&&1===w.selectedDates.length&&(w.clear(!1),w.redraw()))}}function Q(e){if(!(!e||w.config.minDate&&ew.config.maxDate.getFullYear())){var n=e,t=w.currentYear!==n;w.currentYear=n||w.currentYear,w.config.maxDate&&w.currentYear===w.config.maxDate.getFullYear()?w.currentMonth=Math.min(w.config.maxDate.getMonth(),w.currentMonth):w.config.minDate&&w.currentYear===w.config.minDate.getFullYear()&&(w.currentMonth=Math.max(w.config.minDate.getMonth(),w.currentMonth)),t&&(w.redraw(),pe(\"onYearChange\"),K())}}function X(e,n){void 0===n&&(n=!0);var t=w.parseDate(e,void 0,n);if(w.config.minDate&&t&&M(t,w.config.minDate,void 0!==n?n:!w.minDateHasTime)<0||w.config.maxDate&&t&&M(t,w.config.maxDate,void 0!==n?n:!w.maxDateHasTime)>0)return!1;if(0===w.config.enable.length&&0===w.config.disable.length)return!0;if(void 0===t)return!1;for(var a=w.config.enable.length>0,i=a?w.config.enable:w.config.disable,o=0,r=void 0;o=r.from.getTime()&&t.getTime()<=r.to.getTime())return a}return!a}function ee(e){return void 0!==w.daysContainer&&-1===e.className.indexOf(\"hidden\")&&-1===e.className.indexOf(\"flatpickr-disabled\")&&w.daysContainer.contains(e)}function ne(e){e.target!==w._input||e.relatedTarget&&V(e.relatedTarget)||w.setDate(w._input.value,!0,e.target===w.altInput?w.config.altFormat:w.config.dateFormat)}function te(e){var n=g(e),t=w.config.wrap?p.contains(n):n===w._input,a=w.config.allowInput,i=w.isOpen&&(!a||!t),o=w.config.inline&&t&&!a;if(13===e.keyCode&&t){if(a)return w.setDate(w._input.value,!0,n===w.altInput?w.config.altFormat:w.config.dateFormat),n.blur();w.open()}else if(V(n)||i||o){var r=!!w.timeContainer&&w.timeContainer.contains(n);switch(e.keyCode){case 13:r?(e.preventDefault(),T(),se()):ue(e);break;case 27:e.preventDefault(),se();break;case 8:case 46:t&&!w.config.allowInput&&(e.preventDefault(),w.clear());break;case 37:case 39:if(r||t)w.hourElement&&w.hourElement.focus();else if(e.preventDefault(),void 0!==w.daysContainer&&(!1===a||document.activeElement&&ee(document.activeElement))){var l=39===e.keyCode?1:-1;e.ctrlKey?(e.stopPropagation(),G(l),R(W(1),0)):R(void 0,l)}break;case 38:case 40:e.preventDefault();var c=40===e.keyCode?1:-1;w.daysContainer&&void 0!==n.$i||n===w.input||n===w.altInput?e.ctrlKey?(e.stopPropagation(),Q(w.currentYear-c),R(W(1),0)):r||R(void 0,7*c):n===w.currentYearElement?Q(w.currentYear-c):w.config.enableTime&&(!r&&w.hourElement&&w.hourElement.focus(),T(e),w._debouncedChange());break;case 9:if(r){var d=[w.hourElement,w.minuteElement,w.secondElement,w.amPM].concat(w.pluginElements).filter((function(e){return e})),s=d.indexOf(n);if(-1!==s){var u=d[s+(e.shiftKey?-1:1)];e.preventDefault(),(u||w._input).focus()}}else!w.config.noCalendar&&w.daysContainer&&w.daysContainer.contains(n)&&e.shiftKey&&(e.preventDefault(),w._input.focus())}}if(void 0!==w.amPM&&n===w.amPM)switch(e.key){case w.l10n.amPM[0].charAt(0):case w.l10n.amPM[0].charAt(0).toLowerCase():w.amPM.textContent=w.l10n.amPM[0],I(),be();break;case w.l10n.amPM[1].charAt(0):case w.l10n.amPM[1].charAt(0).toLowerCase():w.amPM.textContent=w.l10n.amPM[1],I(),be()}(t||V(n))&&pe(\"onKeyDown\",e)}function ae(e){if(1===w.selectedDates.length&&(!e||e.classList.contains(\"flatpickr-day\")&&!e.classList.contains(\"flatpickr-disabled\"))){for(var n=e?e.dateObj.getTime():w.days.firstElementChild.dateObj.getTime(),t=w.parseDate(w.selectedDates[0],void 0,!0).getTime(),a=Math.min(n,w.selectedDates[0].getTime()),i=Math.max(n,w.selectedDates[0].getTime()),o=!1,r=0,l=0,c=a;ca&&cr)?r=c:c>t&&(!l||c0&&m0&&m>l;return g?(f.classList.add(\"notAllowed\"),[\"inRange\",\"startRange\",\"endRange\"].forEach((function(e){f.classList.remove(e)})),\"continue\"):o&&!g?\"continue\":([\"startRange\",\"inRange\",\"endRange\",\"notAllowed\"].forEach((function(e){f.classList.remove(e)})),void(void 0!==e&&(e.classList.add(n<=w.selectedDates[0].getTime()?\"startRange\":\"endRange\"),tn&&m===t&&f.classList.add(\"endRange\"),m>=r&&(0===l||m<=l)&&(d=t,u=n,(c=m)>Math.min(d,u)&&c0||t.getMinutes()>0||t.getSeconds()>0),w.selectedDates&&(w.selectedDates=w.selectedDates.filter((function(e){return X(e)})),w.selectedDates.length||\"min\"!==e||S(t),be()),w.daysContainer&&(de(),void 0!==t?w.currentYearElement[e]=t.getFullYear().toString():w.currentYearElement.removeAttribute(e),w.currentYearElement.disabled=!!a&&void 0!==t&&a.getFullYear()===t.getFullYear())}}function re(){return w.config.wrap?p.querySelector(\"[data-input]\"):p}function le(){\"object\"!=typeof w.config.locale&&void 0===k.l10ns[w.config.locale]&&w.config.errorHandler(new Error(\"flatpickr: invalid locale \"+w.config.locale)),w.l10n=e(e({},k.l10ns.default),\"object\"==typeof w.config.locale?w.config.locale:\"default\"!==w.config.locale?k.l10ns[w.config.locale]:void 0),D.K=\"(\"+w.l10n.amPM[0]+\"|\"+w.l10n.amPM[1]+\"|\"+w.l10n.amPM[0].toLowerCase()+\"|\"+w.l10n.amPM[1].toLowerCase()+\")\",void 0===e(e({},v),JSON.parse(JSON.stringify(p.dataset||{}))).time_24hr&&void 0===k.defaultConfig.time_24hr&&(w.config.time_24hr=w.l10n.time_24hr),w.formatDate=b(w),w.parseDate=C({config:w.config,l10n:w.l10n})}function ce(e){if(void 0!==w.calendarContainer){pe(\"onPreCalendarPosition\");var n=e||w._positionElement,t=Array.prototype.reduce.call(w.calendarContainer.children,(function(e,n){return e+n.offsetHeight}),0),a=w.calendarContainer.offsetWidth,i=w.config.position.split(\" \"),o=i[0],r=i.length>1?i[1]:null,l=n.getBoundingClientRect(),c=window.innerHeight-l.bottom,s=\"above\"===o||\"below\"!==o&&ct,u=window.pageYOffset+l.top+(s?-t-2:n.offsetHeight+2);if(d(w.calendarContainer,\"arrowTop\",!s),d(w.calendarContainer,\"arrowBottom\",s),!w.config.inline){var f=window.pageXOffset+l.left,m=!1,g=!1;\"center\"===r?(f-=(a-l.width)/2,m=!0):\"right\"===r&&(f-=a-l.width,g=!0),d(w.calendarContainer,\"arrowLeft\",!m&&!g),d(w.calendarContainer,\"arrowCenter\",m),d(w.calendarContainer,\"arrowRight\",g);var p=window.document.body.offsetWidth-(window.pageXOffset+l.right),h=f+a>window.document.body.offsetWidth,v=p+a>window.document.body.offsetWidth;if(d(w.calendarContainer,\"rightMost\",h),!w.config.static)if(w.calendarContainer.style.top=u+\"px\",h)if(v){var D=function(){for(var e=null,n=0;nw.currentMonth+w.config.showMonths-1)&&\"range\"!==w.config.mode;if(w.selectedDateElem=t,\"single\"===w.config.mode)w.selectedDates=[a];else if(\"multiple\"===w.config.mode){var o=ve(a);o?w.selectedDates.splice(parseInt(o),1):w.selectedDates.push(a)}else\"range\"===w.config.mode&&(2===w.selectedDates.length&&w.clear(!1,!1),w.latestSelectedDateObj=a,w.selectedDates.push(a),0!==M(a,w.selectedDates[0],!0)&&w.selectedDates.sort((function(e,n){return e.getTime()-n.getTime()})));if(I(),i){var r=w.currentYear!==a.getFullYear();w.currentYear=a.getFullYear(),w.currentMonth=a.getMonth(),r&&(pe(\"onYearChange\"),K()),pe(\"onMonthChange\")}if(De(),J(),be(),i||\"range\"===w.config.mode||1!==w.config.showMonths?void 0!==w.selectedDateElem&&void 0===w.hourElement&&w.selectedDateElem&&w.selectedDateElem.focus():L(t),void 0!==w.hourElement&&void 0!==w.hourElement&&w.hourElement.focus(),w.config.closeOnSelect){var l=\"single\"===w.config.mode&&!w.config.enableTime,c=\"range\"===w.config.mode&&2===w.selectedDates.length&&!w.config.enableTime;(l||c)&&se()}A()}}w.parseDate=C({config:w.config,l10n:w.l10n}),w._handlers=[],w.pluginElements=[],w.loadedPlugins=[],w._bind=N,w._setHoursFromDate=S,w._positionCalendar=ce,w.changeMonth=G,w.changeYear=Q,w.clear=function(e,n){if(void 0===e&&(e=!0),void 0===n&&(n=!0),w.input.value=\"\",void 0!==w.altInput&&(w.altInput.value=\"\"),void 0!==w.mobileInput&&(w.mobileInput.value=\"\"),w.selectedDates=[],w.latestSelectedDateObj=void 0,!0===n&&(w.currentYear=w._initialDate.getFullYear(),w.currentMonth=w._initialDate.getMonth()),!0===w.config.enableTime){var t=_(),a=t.hours,i=t.minutes,o=t.seconds;O(a,i,o)}w.redraw(),e&&pe(\"onChange\")},w.close=function(){w.isOpen=!1,w.isMobile||(void 0!==w.calendarContainer&&w.calendarContainer.classList.remove(\"open\"),void 0!==w._input&&w._input.classList.remove(\"active\")),pe(\"onClose\")},w._createElement=s,w.destroy=function(){void 0!==w.config&&pe(\"onDestroy\");for(var e=w._handlers.length;e--;){var n=w._handlers[e];n.element.removeEventListener(n.event,n.handler,n.options)}if(w._handlers=[],w.mobileInput)w.mobileInput.parentNode&&w.mobileInput.parentNode.removeChild(w.mobileInput),w.mobileInput=void 0;else if(w.calendarContainer&&w.calendarContainer.parentNode)if(w.config.static&&w.calendarContainer.parentNode){var t=w.calendarContainer.parentNode;if(t.lastChild&&t.removeChild(t.lastChild),t.parentNode){for(;t.firstChild;)t.parentNode.insertBefore(t.firstChild,t);t.parentNode.removeChild(t)}}else w.calendarContainer.parentNode.removeChild(w.calendarContainer);w.altInput&&(w.input.type=\"text\",w.altInput.parentNode&&w.altInput.parentNode.removeChild(w.altInput),delete w.altInput),w.input&&(w.input.type=w.input._type,w.input.classList.remove(\"flatpickr-input\"),w.input.removeAttribute(\"readonly\")),[\"_showTimeInput\",\"latestSelectedDateObj\",\"_hideNextMonthArrow\",\"_hidePrevMonthArrow\",\"__hideNextMonthArrow\",\"__hidePrevMonthArrow\",\"isMobile\",\"isOpen\",\"selectedDateElem\",\"minDateHasTime\",\"maxDateHasTime\",\"days\",\"daysContainer\",\"_input\",\"_positionElement\",\"innerContainer\",\"rContainer\",\"monthNav\",\"todayDateElem\",\"calendarContainer\",\"weekdayContainer\",\"prevMonthNav\",\"nextMonthNav\",\"monthsDropdownContainer\",\"currentMonthElement\",\"currentYearElement\",\"navigationCurrentMonth\",\"selectedDateElem\",\"config\"].forEach((function(e){try{delete w[e]}catch(e){}}))},w.isEnabled=X,w.jumpToDate=P,w.open=function(e,n){if(void 0===n&&(n=w._positionElement),!0===w.isMobile){if(e){e.preventDefault();var t=g(e);t&&t.blur()}return void 0!==w.mobileInput&&(w.mobileInput.focus(),w.mobileInput.click()),void pe(\"onOpen\")}if(!w._input.disabled&&!w.config.inline){var a=w.isOpen;w.isOpen=!0,a||(w.calendarContainer.classList.add(\"open\"),w._input.classList.add(\"active\"),pe(\"onOpen\"),ce(n)),!0===w.config.enableTime&&!0===w.config.noCalendar&&(!1!==w.config.allowInput||void 0!==e&&w.timeContainer.contains(e.relatedTarget)||setTimeout((function(){return w.hourElement.select()}),50))}},w.redraw=de,w.set=function(e,n){if(null!==e&&\"object\"==typeof e)for(var a in Object.assign(w.config,e),e)void 0!==fe[a]&&fe[a].forEach((function(e){return e()}));else w.config[e]=n,void 0!==fe[e]?fe[e].forEach((function(e){return e()})):t.indexOf(e)>-1&&(w.config[e]=c(n));w.redraw(),be(!0)},w.setDate=function(e,n,t){if(void 0===n&&(n=!1),void 0===t&&(t=w.config.dateFormat),0!==e&&!e||e instanceof Array&&0===e.length)return w.clear(n);me(e,t),w.latestSelectedDateObj=w.selectedDates[w.selectedDates.length-1],w.redraw(),P(void 0,n),S(),0===w.selectedDates.length&&w.clear(!1),be(n),n&&pe(\"onChange\")},w.toggle=function(e){if(!0===w.isOpen)return w.close();w.open(e)};var fe={locale:[le,z],showMonths:[q,E,$],minDate:[P],maxDate:[P]};function me(e,n){var t=[];if(e instanceof Array)t=e.map((function(e){return w.parseDate(e,n)}));else if(e instanceof Date||\"number\"==typeof e)t=[w.parseDate(e,n)];else if(\"string\"==typeof e)switch(w.config.mode){case\"single\":case\"time\":t=[w.parseDate(e,n)];break;case\"multiple\":t=e.split(w.config.conjunction).map((function(e){return w.parseDate(e,n)}));break;case\"range\":t=e.split(w.l10n.rangeSeparator).map((function(e){return w.parseDate(e,n)}))}else w.config.errorHandler(new Error(\"Invalid date supplied: \"+JSON.stringify(e)));w.selectedDates=w.config.allowInvalidPreload?t:t.filter((function(e){return e instanceof Date&&X(e,!1)})),\"range\"===w.config.mode&&w.selectedDates.sort((function(e,n){return e.getTime()-n.getTime()}))}function ge(e){return e.slice().map((function(e){return\"string\"==typeof e||\"number\"==typeof e||e instanceof Date?w.parseDate(e,void 0,!0):e&&\"object\"==typeof e&&e.from&&e.to?{from:w.parseDate(e.from,void 0),to:w.parseDate(e.to,void 0)}:e})).filter((function(e){return e}))}function pe(e,n){if(void 0!==w.config){var t=w.config[e];if(void 0!==t&&t.length>0)for(var a=0;t[a]&&a1||\"static\"===w.config.monthSelectorType?w.monthElements[n].textContent=h(t.getMonth(),w.config.shorthandCurrentMonth,w.l10n)+\" \":w.monthsDropdownContainer.value=t.getMonth().toString(),e.value=t.getFullYear().toString()})),w._hidePrevMonthArrow=void 0!==w.config.minDate&&(w.currentYear===w.config.minDate.getFullYear()?w.currentMonth<=w.config.minDate.getMonth():w.currentYearw.config.maxDate.getMonth():w.currentYear>w.config.maxDate.getFullYear()))}function we(e){return w.selectedDates.map((function(n){return w.formatDate(n,e)})).filter((function(e,n,t){return\"range\"!==w.config.mode||w.config.enableTime||t.indexOf(e)===n})).join(\"range\"!==w.config.mode?w.config.conjunction:w.l10n.rangeSeparator)}function be(e){void 0===e&&(e=!0),void 0!==w.mobileInput&&w.mobileFormatStr&&(w.mobileInput.value=void 0!==w.latestSelectedDateObj?w.formatDate(w.latestSelectedDateObj,w.mobileFormatStr):\"\"),w.input.value=we(w.config.dateFormat),void 0!==w.altInput&&(w.altInput.value=we(w.config.altFormat)),!1!==e&&pe(\"onValueUpdate\")}function Ce(e){var n=g(e),t=w.prevMonthNav.contains(n),a=w.nextMonthNav.contains(n);t||a?G(t?-1:1):w.yearElements.indexOf(n)>=0?n.select():n.classList.contains(\"arrowUp\")?w.changeYear(w.currentYear+1):n.classList.contains(\"arrowDown\")&&w.changeYear(w.currentYear-1)}return function(){w.element=w.input=p,w.isOpen=!1,function(){var n=[\"wrap\",\"weekNumbers\",\"allowInput\",\"allowInvalidPreload\",\"clickOpens\",\"time_24hr\",\"enableTime\",\"noCalendar\",\"altInput\",\"shorthandCurrentMonth\",\"inline\",\"static\",\"enableSeconds\",\"disableMobile\"],i=e(e({},JSON.parse(JSON.stringify(p.dataset||{}))),v),o={};w.config.parseDate=i.parseDate,w.config.formatDate=i.formatDate,Object.defineProperty(w.config,\"enable\",{get:function(){return w.config._enable},set:function(e){w.config._enable=ge(e)}}),Object.defineProperty(w.config,\"disable\",{get:function(){return w.config._disable},set:function(e){w.config._disable=ge(e)}});var r=\"time\"===i.mode;if(!i.dateFormat&&(i.enableTime||r)){var l=k.defaultConfig.dateFormat||a.dateFormat;o.dateFormat=i.noCalendar||r?\"H:i\"+(i.enableSeconds?\":S\":\"\"):l+\" H:i\"+(i.enableSeconds?\":S\":\"\")}if(i.altInput&&(i.enableTime||r)&&!i.altFormat){var d=k.defaultConfig.altFormat||a.altFormat;o.altFormat=i.noCalendar||r?\"h:i\"+(i.enableSeconds?\":S K\":\" K\"):d+\" h:i\"+(i.enableSeconds?\":S\":\"\")+\" K\"}Object.defineProperty(w.config,\"minDate\",{get:function(){return w.config._minDate},set:oe(\"min\")}),Object.defineProperty(w.config,\"maxDate\",{get:function(){return w.config._maxDate},set:oe(\"max\")});var s=function(e){return function(n){w.config[\"min\"===e?\"_minTime\":\"_maxTime\"]=w.parseDate(n,\"H:i:S\")}};Object.defineProperty(w.config,\"minTime\",{get:function(){return w.config._minTime},set:s(\"min\")}),Object.defineProperty(w.config,\"maxTime\",{get:function(){return w.config._maxTime},set:s(\"max\")}),\"time\"===i.mode&&(w.config.noCalendar=!0,w.config.enableTime=!0),Object.assign(w.config,o,i);for(var u=0;u-1?w.config[m]=c(f[m]).map(x).concat(w.config[m]):void 0===i[m]&&(w.config[m]=f[m])}i.altInputClass||(w.config.altInputClass=re().className+\" \"+w.config.altInputClass),pe(\"onParseConfig\")}(),le(),w.input=re(),w.input?(w.input._type=w.input.type,w.input.type=\"text\",w.input.classList.add(\"flatpickr-input\"),w._input=w.input,w.config.altInput&&(w.altInput=s(w.input.nodeName,w.config.altInputClass),w._input=w.altInput,w.altInput.placeholder=w.input.placeholder,w.altInput.disabled=w.input.disabled,w.altInput.required=w.input.required,w.altInput.tabIndex=w.input.tabIndex,w.altInput.type=\"text\",w.input.setAttribute(\"type\",\"hidden\"),!w.config.static&&w.input.parentNode&&w.input.parentNode.insertBefore(w.altInput,w.input.nextSibling)),w.config.allowInput||w._input.setAttribute(\"readonly\",\"readonly\"),w._positionElement=w.config.positionElement||w._input):w.config.errorHandler(new Error(\"Invalid input element specified\")),function(){w.selectedDates=[],w.now=w.parseDate(w.config.now)||new Date;var e=w.config.defaultDate||(\"INPUT\"!==w.input.nodeName&&\"TEXTAREA\"!==w.input.nodeName||!w.input.placeholder||w.input.value!==w.input.placeholder?w.input.value:null);e&&me(e,w.config.dateFormat),w._initialDate=w.selectedDates.length>0?w.selectedDates[0]:w.config.minDate&&w.config.minDate.getTime()>w.now.getTime()?w.config.minDate:w.config.maxDate&&w.config.maxDate.getTime()0&&(w.latestSelectedDateObj=w.selectedDates[0]),void 0!==w.config.minTime&&(w.config.minTime=w.parseDate(w.config.minTime,\"H:i\")),void 0!==w.config.maxTime&&(w.config.maxTime=w.parseDate(w.config.maxTime,\"H:i\")),w.minDateHasTime=!!w.config.minDate&&(w.config.minDate.getHours()>0||w.config.minDate.getMinutes()>0||w.config.minDate.getSeconds()>0),w.maxDateHasTime=!!w.config.maxDate&&(w.config.maxDate.getHours()>0||w.config.maxDate.getMinutes()>0||w.config.maxDate.getSeconds()>0)}(),w.utils={getDaysInMonth:function(e,n){return void 0===e&&(e=w.currentMonth),void 0===n&&(n=w.currentYear),1===e&&(n%4==0&&n%100!=0||n%400==0)?29:w.l10n.daysInMonth[e]}},w.isMobile||function(){var e=window.document.createDocumentFragment();if(w.calendarContainer=s(\"div\",\"flatpickr-calendar\"),w.calendarContainer.tabIndex=-1,!w.config.noCalendar){if(e.appendChild((w.monthNav=s(\"div\",\"flatpickr-months\"),w.yearElements=[],w.monthElements=[],w.prevMonthNav=s(\"span\",\"flatpickr-prev-month\"),w.prevMonthNav.innerHTML=w.config.prevArrow,w.nextMonthNav=s(\"span\",\"flatpickr-next-month\"),w.nextMonthNav.innerHTML=w.config.nextArrow,q(),Object.defineProperty(w,\"_hidePrevMonthArrow\",{get:function(){return w.__hidePrevMonthArrow},set:function(e){w.__hidePrevMonthArrow!==e&&(d(w.prevMonthNav,\"flatpickr-disabled\",e),w.__hidePrevMonthArrow=e)}}),Object.defineProperty(w,\"_hideNextMonthArrow\",{get:function(){return w.__hideNextMonthArrow},set:function(e){w.__hideNextMonthArrow!==e&&(d(w.nextMonthNav,\"flatpickr-disabled\",e),w.__hideNextMonthArrow=e)}}),w.currentYearElement=w.yearElements[0],De(),w.monthNav)),w.innerContainer=s(\"div\",\"flatpickr-innerContainer\"),w.config.weekNumbers){var n=function(){w.calendarContainer.classList.add(\"hasWeeks\");var e=s(\"div\",\"flatpickr-weekwrapper\");e.appendChild(s(\"span\",\"flatpickr-weekday\",w.l10n.weekAbbreviation));var n=s(\"div\",\"flatpickr-weeks\");return e.appendChild(n),{weekWrapper:e,weekNumbers:n}}(),t=n.weekWrapper,a=n.weekNumbers;w.innerContainer.appendChild(t),w.weekNumbers=a,w.weekWrapper=t}w.rContainer=s(\"div\",\"flatpickr-rContainer\"),w.rContainer.appendChild($()),w.daysContainer||(w.daysContainer=s(\"div\",\"flatpickr-days\"),w.daysContainer.tabIndex=-1),J(),w.rContainer.appendChild(w.daysContainer),w.innerContainer.appendChild(w.rContainer),e.appendChild(w.innerContainer)}w.config.enableTime&&e.appendChild(function(){w.calendarContainer.classList.add(\"hasTime\"),w.config.noCalendar&&w.calendarContainer.classList.add(\"noCalendar\"),w.timeContainer=s(\"div\",\"flatpickr-time\"),w.timeContainer.tabIndex=-1;var e=s(\"span\",\"flatpickr-time-separator\",\":\"),n=m(\"flatpickr-hour\",{\"aria-label\":w.l10n.hourAriaLabel});w.hourElement=n.getElementsByTagName(\"input\")[0];var t=m(\"flatpickr-minute\",{\"aria-label\":w.l10n.minuteAriaLabel});if(w.minuteElement=t.getElementsByTagName(\"input\")[0],w.hourElement.tabIndex=w.minuteElement.tabIndex=-1,w.hourElement.value=o(w.latestSelectedDateObj?w.latestSelectedDateObj.getHours():w.config.time_24hr?w.config.defaultHour:function(e){switch(e%24){case 0:case 12:return 12;default:return e%12}}(w.config.defaultHour)),w.minuteElement.value=o(w.latestSelectedDateObj?w.latestSelectedDateObj.getMinutes():w.config.defaultMinute),w.hourElement.setAttribute(\"step\",w.config.hourIncrement.toString()),w.minuteElement.setAttribute(\"step\",w.config.minuteIncrement.toString()),w.hourElement.setAttribute(\"min\",w.config.time_24hr?\"0\":\"1\"),w.hourElement.setAttribute(\"max\",w.config.time_24hr?\"23\":\"12\"),w.minuteElement.setAttribute(\"min\",\"0\"),w.minuteElement.setAttribute(\"max\",\"59\"),w.timeContainer.appendChild(n),w.timeContainer.appendChild(e),w.timeContainer.appendChild(t),w.config.time_24hr&&w.timeContainer.classList.add(\"time24hr\"),w.config.enableSeconds){w.timeContainer.classList.add(\"hasSeconds\");var a=m(\"flatpickr-second\");w.secondElement=a.getElementsByTagName(\"input\")[0],w.secondElement.value=o(w.latestSelectedDateObj?w.latestSelectedDateObj.getSeconds():w.config.defaultSeconds),w.secondElement.setAttribute(\"step\",w.minuteElement.getAttribute(\"step\")),w.secondElement.setAttribute(\"min\",\"0\"),w.secondElement.setAttribute(\"max\",\"59\"),w.timeContainer.appendChild(s(\"span\",\"flatpickr-time-separator\",\":\")),w.timeContainer.appendChild(a)}return w.config.time_24hr||(w.amPM=s(\"span\",\"flatpickr-am-pm\",w.l10n.amPM[r((w.latestSelectedDateObj?w.hourElement.value:w.config.defaultHour)>11)]),w.amPM.title=w.l10n.toggleTitle,w.amPM.tabIndex=-1,w.timeContainer.appendChild(w.amPM)),w.timeContainer}()),d(w.calendarContainer,\"rangeMode\",\"range\"===w.config.mode),d(w.calendarContainer,\"animate\",!0===w.config.animate),d(w.calendarContainer,\"multiMonth\",w.config.showMonths>1),w.calendarContainer.appendChild(e);var i=void 0!==w.config.appendTo&&void 0!==w.config.appendTo.nodeType;if((w.config.inline||w.config.static)&&(w.calendarContainer.classList.add(w.config.inline?\"inline\":\"static\"),w.config.inline&&(!i&&w.element.parentNode?w.element.parentNode.insertBefore(w.calendarContainer,w._input.nextSibling):void 0!==w.config.appendTo&&w.config.appendTo.appendChild(w.calendarContainer)),w.config.static)){var l=s(\"div\",\"flatpickr-wrapper\");w.element.parentNode&&w.element.parentNode.insertBefore(l,w.element),l.appendChild(w.element),w.altInput&&l.appendChild(w.altInput),l.appendChild(w.calendarContainer)}w.config.static||w.config.inline||(void 0!==w.config.appendTo?w.config.appendTo:window.document.body).appendChild(w.calendarContainer)}(),function(){if(w.config.wrap&&[\"open\",\"close\",\"toggle\",\"clear\"].forEach((function(e){Array.prototype.forEach.call(w.element.querySelectorAll(\"[data-\"+e+\"]\"),(function(n){return N(n,\"click\",w[e])}))})),w.isMobile)!function(){var e=w.config.enableTime?w.config.noCalendar?\"time\":\"datetime-local\":\"date\";w.mobileInput=s(\"input\",w.input.className+\" flatpickr-mobile\"),w.mobileInput.tabIndex=1,w.mobileInput.type=e,w.mobileInput.disabled=w.input.disabled,w.mobileInput.required=w.input.required,w.mobileInput.placeholder=w.input.placeholder,w.mobileFormatStr=\"datetime-local\"===e?\"Y-m-d\\\\TH:i:S\":\"date\"===e?\"Y-m-d\":\"H:i:S\",w.selectedDates.length>0&&(w.mobileInput.defaultValue=w.mobileInput.value=w.formatDate(w.selectedDates[0],w.mobileFormatStr)),w.config.minDate&&(w.mobileInput.min=w.formatDate(w.config.minDate,\"Y-m-d\")),w.config.maxDate&&(w.mobileInput.max=w.formatDate(w.config.maxDate,\"Y-m-d\")),w.input.getAttribute(\"step\")&&(w.mobileInput.step=String(w.input.getAttribute(\"step\"))),w.input.type=\"hidden\",void 0!==w.altInput&&(w.altInput.type=\"hidden\");try{w.input.parentNode&&w.input.parentNode.insertBefore(w.mobileInput,w.input.nextSibling)}catch(e){}N(w.mobileInput,\"change\",(function(e){w.setDate(g(e).value,!1,w.mobileFormatStr),pe(\"onChange\"),pe(\"onClose\")}))}();else{var e=l(ie,50);if(w._debouncedChange=l(A,300),w.daysContainer&&!/iPhone|iPad|iPod/i.test(navigator.userAgent)&&N(w.daysContainer,\"mouseover\",(function(e){\"range\"===w.config.mode&&ae(g(e))})),N(window.document.body,\"keydown\",te),w.config.inline||w.config.static||N(window,\"resize\",e),void 0!==window.ontouchstart?N(window.document,\"touchstart\",Z):N(window.document,\"click\",Z),N(window.document,\"focus\",Z,{capture:!0}),!0===w.config.clickOpens&&(N(w._input,\"focus\",w.open),N(w._input,\"click\",w.open)),void 0!==w.daysContainer&&(N(w.monthNav,\"click\",Ce),N(w.monthNav,[\"keyup\",\"increment\"],F),N(w.daysContainer,\"click\",ue)),void 0!==w.timeContainer&&void 0!==w.minuteElement&&void 0!==w.hourElement){var n=function(e){return g(e).select()};N(w.timeContainer,[\"increment\"],T),N(w.timeContainer,\"blur\",T,{capture:!0}),N(w.timeContainer,\"click\",Y),N([w.hourElement,w.minuteElement],[\"focus\",\"click\"],n),void 0!==w.secondElement&&N(w.secondElement,\"focus\",(function(){return w.secondElement&&w.secondElement.select()})),void 0!==w.amPM&&N(w.amPM,\"click\",(function(e){T(e),A()}))}w.config.allowInput&&N(w._input,\"blur\",ne)}}(),(w.selectedDates.length||w.config.noCalendar)&&(w.config.enableTime&&S(w.config.noCalendar?w.latestSelectedDateObj||w.config.minDate:void 0),be(!1)),E();var n=/^((?!chrome|android).)*safari/i.test(navigator.userAgent);!w.isMobile&&n&&ce(),pe(\"onReady\")}(),w}function E(e,n){for(var t=Array.prototype.slice.call(e).filter((function(e){return e instanceof HTMLElement})),a=[],i=0;ithis.render()));const{start:s,end:l,value:o,step:r,title:n}=this.model.properties;this.on_change([s,l,o,r],(()=>{const{start:t,end:e,value:i,step:s}=this._calc_to();this._noUiSlider.updateOptions({range:{min:t,max:e},start:i,step:s},!0)}));const{bar_color:a}=this.model.properties;this.on_change(a,(()=>{this._set_bar_color()}));const{show_value:d}=this.model.properties;this.on_change([o,n,d],(()=>this._update_title()))}styles(){return[...super.styles(),p.default,u.default]}_update_title(){var t;(0,a.empty)(this.title_el);const e=null==this.model.title||0==this.model.title.length&&!this.model.show_value;if(this.title_el.style.display=e?\"none\":\"\",!e&&(0!=(null===(t=this.model.title)||void 0===t?void 0:t.length)&&(this.title_el.textContent=`${this.model.title}: `),this.model.show_value)){const{value:t}=this._calc_to(),e=t.map((t=>this.model.pretty(t))).join(\" .. \");this.title_el.appendChild((0,a.span)({class:m.slider_value},e))}}_set_bar_color(){if(!this.model.disabled){this.slider_el.querySelector(\".noUi-connect\").style.backgroundColor=(0,_.color2css)(this.model.bar_color)}}render(){super.render();const{start:t,end:e,value:i,step:s}=this._calc_to();let l;if(this.model.tooltips){const t={to:t=>this.model.pretty(t)};l=(0,d.repeat)(t,i.length)}else l=!1;if(null==this.slider_el){this.slider_el=(0,a.div)(),this._noUiSlider=n.default.create(this.slider_el,{range:{min:t,max:e},start:i,step:s,behaviour:this.model.behaviour,connect:this.model.connected,tooltips:l,orientation:this.model.orientation,direction:this.model.direction}),this._noUiSlider.on(\"slide\",((t,e,i)=>this._slide(i))),this._noUiSlider.on(\"change\",((t,e,i)=>this._change(i)));const o=(t,e)=>{if(!l)return;this.slider_el.querySelectorAll(\".noUi-handle\")[t].querySelector(\".noUi-tooltip\").style.display=e?\"block\":\"\"};this._noUiSlider.on(\"start\",((t,e)=>o(e,!0))),this._noUiSlider.on(\"end\",((t,e)=>o(e,!1)))}else this._noUiSlider.updateOptions({range:{min:t,max:e},start:i,step:s},!0);this._set_bar_color(),this.model.disabled?this.slider_el.setAttribute(\"disabled\",\"true\"):this.slider_el.removeAttribute(\"disabled\"),this.title_el=(0,a.div)({class:m.slider_title}),this._update_title(),this.group_el=(0,a.div)({class:v.input_group},this.title_el,this.slider_el),this.el.appendChild(this.group_el)}_slide(t){this.model.value=this._calc_from(t)}_change(t){const e=this._calc_from(t);this.model.setv({value:e,value_throttled:e})}}b.__name__=\"AbstractBaseSliderView\";class g extends b{_calc_to(){return{start:this.model.start,end:this.model.end,value:[this.model.value],step:this.model.step}}_calc_from([t]){return Number.isInteger(this.model.start)&&Number.isInteger(this.model.end)&&Number.isInteger(this.model.step)?Math.round(t):t}}i.AbstractSliderView=g,g.__name__=\"AbstractSliderView\";class f extends b{_calc_to(){return{start:this.model.start,end:this.model.end,value:this.model.value,step:this.model.step}}_calc_from(t){return t}}i.AbstractRangeSliderView=f,f.__name__=\"AbstractRangeSliderView\";class S extends h.OrientedControl{constructor(t){super(t),this.connected=!1}pretty(t){return this._formatter(t,this.format)}}i.AbstractSlider=S,r=S,S.__name__=\"AbstractSlider\",r.define((({Any:t,Boolean:e,Number:i,String:s,Color:l,Or:o,Enum:r,Ref:n,Nullable:a})=>({title:[a(s),\"\"],show_value:[e,!0],start:[t],end:[t],value:[t],value_throttled:[t],step:[i,1],format:[o(s,n(c.TickFormatter))],direction:[r(\"ltr\",\"rtl\"),\"ltr\"],tooltips:[e,!0],bar_color:[l,\"#e6e6e6\"]})))},\n", + " 462: function _(t,e,r,n,i){var o,s;o=this,s=function(t){\"use strict\";var e,r;function n(t){return\"object\"==typeof t&&\"function\"==typeof t.to}function i(t){t.parentElement.removeChild(t)}function o(t){return null!=t}function s(t){t.preventDefault()}function a(t){return\"number\"==typeof t&&!isNaN(t)&&isFinite(t)}function l(t,e,r){r>0&&(f(t,e),setTimeout((function(){d(t,e)}),r))}function u(t){return Math.max(Math.min(t,100),0)}function c(t){return Array.isArray(t)?t:[t]}function p(t){var e=(t=String(t)).split(\".\");return e.length>1?e[1].length:0}function f(t,e){t.classList&&!/\\s/.test(e)?t.classList.add(e):t.className+=\" \"+e}function d(t,e){t.classList&&!/\\s/.test(e)?t.classList.remove(e):t.className=t.className.replace(new RegExp(\"(^|\\\\b)\"+e.split(\" \").join(\"|\")+\"(\\\\b|$)\",\"gi\"),\" \")}function h(t){var e=void 0!==window.pageXOffset,r=\"CSS1Compat\"===(t.compatMode||\"\");return{x:e?window.pageXOffset:r?t.documentElement.scrollLeft:t.body.scrollLeft,y:e?window.pageYOffset:r?t.documentElement.scrollTop:t.body.scrollTop}}function m(t,e){return 100/(e-t)}function g(t,e,r){return 100*e/(t[r+1]-t[r])}function v(t,e){for(var r=1;t>=e[r];)r+=1;return r}function b(t,e,r){if(r>=t.slice(-1)[0])return 100;var n=v(r,t),i=t[n-1],o=t[n],s=e[n-1],a=e[n];return s+function(t,e){return g(t,t[0]<0?e+Math.abs(t[0]):e-t[0],0)}([i,o],r)/m(s,a)}function S(t,e,r,n){if(100===n)return n;var i=v(n,t),o=t[i-1],s=t[i];return r?n-o>(s-o)/2?s:o:e[i-1]?t[i-1]+function(t,e){return Math.round(t/e)*e}(n-t[i-1],e[i-1]):n}t.PipsMode=void 0,(e=t.PipsMode||(t.PipsMode={})).Range=\"range\",e.Steps=\"steps\",e.Positions=\"positions\",e.Count=\"count\",e.Values=\"values\",t.PipsType=void 0,(r=t.PipsType||(t.PipsType={}))[r.None=-1]=\"None\",r[r.NoValue=0]=\"NoValue\",r[r.LargeValue=1]=\"LargeValue\",r[r.SmallValue=2]=\"SmallValue\";var x=function(){function t(t,e,r){var n;this.xPct=[],this.xVal=[],this.xSteps=[],this.xNumSteps=[],this.xHighestCompleteStep=[],this.xSteps=[r||!1],this.xNumSteps=[!1],this.snap=e;var i=[];for(Object.keys(t).forEach((function(e){i.push([c(t[e]),e])})),i.sort((function(t,e){return t[0][0]-e[0][0]})),n=0;nthis.xPct[i+1];)i++;else t===this.xPct[this.xPct.length-1]&&(i=this.xPct.length-2);r||t!==this.xPct[i+1]||i++,null===e&&(e=[]);var o=1,s=e[i],a=0,l=0,u=0,c=0;for(n=r?(t-this.xPct[i])/(this.xPct[i+1]-this.xPct[i]):(this.xPct[i+1]-t)/(this.xPct[i+1]-this.xPct[i]);s>0;)a=this.xPct[i+1+c]-this.xPct[i+c],e[i+c]*o+100-100*n>100?(l=a*n,o=(s-100*n)/e[i+c],n=1):(l=e[i+c]*a/100*o,o=0),r?(u-=l,this.xPct.length+c>=1&&c--):(u+=l,this.xPct.length-c>=1&&c++),s=e[i+c]*o;return t+u},t.prototype.toStepping=function(t){return t=b(this.xVal,this.xPct,t)},t.prototype.fromStepping=function(t){return function(t,e,r){if(r>=100)return t.slice(-1)[0];var n=v(r,e),i=t[n-1],o=t[n],s=e[n-1];return function(t,e){return e*(t[1]-t[0])/100+t[0]}([i,o],(r-s)*m(s,e[n]))}(this.xVal,this.xPct,t)},t.prototype.getStep=function(t){return t=S(this.xPct,this.xSteps,this.snap,t)},t.prototype.getDefaultStep=function(t,e,r){var n=v(t,this.xPct);return(100===t||e&&t===this.xPct[n-1])&&(n=Math.max(n-1,1)),(this.xVal[n]-this.xVal[n-1])/r},t.prototype.getNearbySteps=function(t){var e=v(t,this.xPct);return{stepBefore:{startValue:this.xVal[e-2],step:this.xNumSteps[e-2],highestStep:this.xHighestCompleteStep[e-2]},thisStep:{startValue:this.xVal[e-1],step:this.xNumSteps[e-1],highestStep:this.xHighestCompleteStep[e-1]},stepAfter:{startValue:this.xVal[e],step:this.xNumSteps[e],highestStep:this.xHighestCompleteStep[e]}}},t.prototype.countStepDecimals=function(){var t=this.xNumSteps.map(p);return Math.max.apply(null,t)},t.prototype.hasNoSize=function(){return this.xVal[0]===this.xVal[this.xVal.length-1]},t.prototype.convert=function(t){return this.getStep(this.toStepping(t))},t.prototype.handleEntryPoint=function(t,e){var r;if(!a(r=\"min\"===t?0:\"max\"===t?100:parseFloat(t))||!a(e[0]))throw new Error(\"noUiSlider: 'range' value isn't numeric.\");this.xPct.push(r),this.xVal.push(e[0]);var n=Number(e[1]);r?this.xSteps.push(!isNaN(n)&&n):isNaN(n)||(this.xSteps[0]=n),this.xHighestCompleteStep.push(0)},t.prototype.handleStepPoint=function(t,e){if(e)if(this.xVal[t]!==this.xVal[t+1]){this.xSteps[t]=g([this.xVal[t],this.xVal[t+1]],e,0)/m(this.xPct[t],this.xPct[t+1]);var r=(this.xVal[t+1]-this.xVal[t])/this.xNumSteps[t],n=Math.ceil(Number(r.toFixed(3))-1),i=this.xVal[t]+this.xNumSteps[t]*n;this.xHighestCompleteStep[t]=i}else this.xSteps[t]=this.xHighestCompleteStep[t]=this.xVal[t]},t}(),y={to:function(t){return void 0===t?\"\":t.toFixed(2)},from:Number},w={target:\"target\",base:\"base\",origin:\"origin\",handle:\"handle\",handleLower:\"handle-lower\",handleUpper:\"handle-upper\",touchArea:\"touch-area\",horizontal:\"horizontal\",vertical:\"vertical\",background:\"background\",connect:\"connect\",connects:\"connects\",ltr:\"ltr\",rtl:\"rtl\",textDirectionLtr:\"txt-dir-ltr\",textDirectionRtl:\"txt-dir-rtl\",draggable:\"draggable\",drag:\"state-drag\",tap:\"state-tap\",active:\"active\",tooltip:\"tooltip\",pips:\"pips\",pipsHorizontal:\"pips-horizontal\",pipsVertical:\"pips-vertical\",marker:\"marker\",markerHorizontal:\"marker-horizontal\",markerVertical:\"marker-vertical\",markerNormal:\"marker-normal\",markerLarge:\"marker-large\",markerSub:\"marker-sub\",value:\"value\",valueHorizontal:\"value-horizontal\",valueVertical:\"value-vertical\",valueNormal:\"value-normal\",valueLarge:\"value-large\",valueSub:\"value-sub\"},E=\".__tooltips\",P=\".__aria\";function C(t,e){if(!a(e))throw new Error(\"noUiSlider: 'step' is not numeric.\");t.singleStep=e}function N(t,e){if(!a(e))throw new Error(\"noUiSlider: 'keyboardPageMultiplier' is not numeric.\");t.keyboardPageMultiplier=e}function V(t,e){if(!a(e))throw new Error(\"noUiSlider: 'keyboardMultiplier' is not numeric.\");t.keyboardMultiplier=e}function k(t,e){if(!a(e))throw new Error(\"noUiSlider: 'keyboardDefaultStep' is not numeric.\");t.keyboardDefaultStep=e}function M(t,e){if(\"object\"!=typeof e||Array.isArray(e))throw new Error(\"noUiSlider: 'range' is not an object.\");if(void 0===e.min||void 0===e.max)throw new Error(\"noUiSlider: Missing 'min' or 'max' in 'range'.\");t.spectrum=new x(e,t.snap||!1,t.singleStep)}function A(t,e){if(e=c(e),!Array.isArray(e)||!e.length)throw new Error(\"noUiSlider: 'start' option is incorrect.\");t.handles=e.length,t.start=e}function U(t,e){if(\"boolean\"!=typeof e)throw new Error(\"noUiSlider: 'snap' option must be a boolean.\");t.snap=e}function D(t,e){if(\"boolean\"!=typeof e)throw new Error(\"noUiSlider: 'animate' option must be a boolean.\");t.animate=e}function O(t,e){if(\"number\"!=typeof e)throw new Error(\"noUiSlider: 'animationDuration' option must be a number.\");t.animationDuration=e}function L(t,e){var r,n=[!1];if(\"lower\"===e?e=[!0,!1]:\"upper\"===e&&(e=[!1,!0]),!0===e||!1===e){for(r=1;r1)throw new Error(\"noUiSlider: 'padding' option must not exceed 100% of the range.\")}}function F(t,e){switch(e){case\"ltr\":t.dir=0;break;case\"rtl\":t.dir=1;break;default:throw new Error(\"noUiSlider: 'direction' option was not recognized.\")}}function R(t,e){if(\"string\"!=typeof e)throw new Error(\"noUiSlider: 'behaviour' must be a string containing options.\");var r=e.indexOf(\"tap\")>=0,n=e.indexOf(\"drag\")>=0,i=e.indexOf(\"fixed\")>=0,o=e.indexOf(\"snap\")>=0,s=e.indexOf(\"hover\")>=0,a=e.indexOf(\"unconstrained\")>=0,l=e.indexOf(\"drag-all\")>=0;if(i){if(2!==t.handles)throw new Error(\"noUiSlider: 'fixed' behaviour must be used with 2 handles\");j(t,t.start[1]-t.start[0])}if(a&&(t.margin||t.limit))throw new Error(\"noUiSlider: 'unconstrained' behaviour cannot be used with margin or limit\");t.events={tap:r||o,drag:n,dragAll:l,fixed:i,snap:o,hover:s,unconstrained:a}}function _(t,e){if(!1!==e)if(!0===e||n(e)){t.tooltips=[];for(var r=0;r= 2) required for mode 'count'.\");for(var r=e.values-1,n=100/r,i=[];r--;)i[r]=r*n;return i.push(100),q(i,e.stepped)}return e.mode===t.PipsMode.Positions?q(e.values,e.stepped):e.mode===t.PipsMode.Values?e.stepped?e.values.map((function(t){return C.fromStepping(C.getStep(C.toStepping(t)))})):e.values:[]}(e),i={},o=C.xVal[0],s=C.xVal[C.xVal.length-1],a=!1,l=!1,u=0;return r=n.slice().sort((function(t,e){return t-e})),(n=r.filter((function(t){return!this[t]&&(this[t]=!0)}),{}))[0]!==o&&(n.unshift(o),a=!0),n[n.length-1]!==s&&(n.push(s),l=!0),n.forEach((function(r,o){var s,c,p,f,d,h,m,g,v,b,S=r,x=n[o+1],y=e.mode===t.PipsMode.Steps;for(y&&(s=C.xNumSteps[o]),s||(s=x-S),void 0===x&&(x=S),s=Math.max(s,1e-7),c=S;c<=x;c=Number((c+s).toFixed(7))){for(g=(d=(f=C.toStepping(c))-u)/(e.density||1),b=d/(v=Math.round(g)),p=1;p<=v;p+=1)i[(h=u+p*b).toFixed(5)]=[C.fromStepping(h),0];m=n.indexOf(c)>-1?t.PipsType.LargeValue:y?t.PipsType.SmallValue:t.PipsType.NoValue,!o&&a&&c!==x&&(m=0),c===x&&l||(i[f.toFixed(5)]=[c,m]),u=f}})),i}function Y(e,n,i){var o,s,a=U.createElement(\"div\"),l=((o={})[t.PipsType.None]=\"\",o[t.PipsType.NoValue]=r.cssClasses.valueNormal,o[t.PipsType.LargeValue]=r.cssClasses.valueLarge,o[t.PipsType.SmallValue]=r.cssClasses.valueSub,o),u=((s={})[t.PipsType.None]=\"\",s[t.PipsType.NoValue]=r.cssClasses.markerNormal,s[t.PipsType.LargeValue]=r.cssClasses.markerLarge,s[t.PipsType.SmallValue]=r.cssClasses.markerSub,s),c=[r.cssClasses.valueHorizontal,r.cssClasses.valueVertical],p=[r.cssClasses.markerHorizontal,r.cssClasses.markerVertical];function d(t,e){var n=e===r.cssClasses.value,i=n?l:u;return e+\" \"+(n?c:p)[r.ort]+\" \"+i[t]}return f(a,r.cssClasses.pips),f(a,0===r.ort?r.cssClasses.pipsHorizontal:r.cssClasses.pipsVertical),Object.keys(e).forEach((function(o){!function(e,o,s){if((s=n?n(o,s):s)!==t.PipsType.None){var l=T(a,!1);l.className=d(s,r.cssClasses.marker),l.style[r.style]=e+\"%\",s>t.PipsType.NoValue&&((l=T(a,!1)).className=d(s,r.cssClasses.value),l.setAttribute(\"data-value\",String(o)),l.style[r.style]=e+\"%\",l.innerHTML=String(i.to(o)))}}(o,e[o][0],e[o][1])})),a}function I(){g&&(i(g),g=null)}function W(t){I();var e=X(t),r=t.filter,n=t.format||{to:function(t){return String(Math.round(t))}};return g=w.appendChild(Y(e,r,n))}function $(){var t=a.getBoundingClientRect(),e=\"offset\"+[\"Width\",\"Height\"][r.ort];return 0===r.ort?t.width||a[e]:t.height||a[e]}function J(t,e,n,i){var o=function(o){var s,a,l=function(t,e,r){var n=0===t.type.indexOf(\"touch\"),i=0===t.type.indexOf(\"mouse\"),o=0===t.type.indexOf(\"pointer\"),s=0,a=0;if(0===t.type.indexOf(\"MSPointer\")&&(o=!0),\"mousedown\"===t.type&&!t.buttons&&!t.touches)return!1;if(n){var l=function(e){var n=e.target;return n===r||r.contains(n)||t.composed&&t.composedPath().shift()===r};if(\"touchstart\"===t.type){var u=Array.prototype.filter.call(t.touches,l);if(u.length>1)return!1;s=u[0].pageX,a=u[0].pageY}else{var c=Array.prototype.find.call(t.changedTouches,l);if(!c)return!1;s=c.pageX,a=c.pageY}}return e=e||h(U),(i||o)&&(s=t.clientX+e.x,a=t.clientY+e.y),t.pageOffset=e,t.points=[s,a],t.cursor=i||o,t}(o,i.pageOffset,i.target||e);return!!l&&!(F()&&!i.doNotReject)&&(s=w,a=r.cssClasses.tap,!((s.classList?s.classList.contains(a):new RegExp(\"\\\\b\"+a+\"\\\\b\").test(s.className))&&!i.doNotReject)&&!(t===x.start&&void 0!==l.buttons&&l.buttons>1)&&(!i.hover||!l.buttons)&&(y||l.preventDefault(),l.calcPoint=l.points[r.ort],void n(l,i)))},s=[];return t.split(\" \").forEach((function(t){e.addEventListener(t,o,!!y&&{passive:!0}),s.push([t,o])})),s}function K(t){var e,n,i,o,s,l,c=100*(t-(e=a,n=r.ort,i=e.getBoundingClientRect(),o=e.ownerDocument,s=o.documentElement,l=h(o),/webkit.*Chrome.*Mobile/i.test(navigator.userAgent)&&(l.x=0),n?i.top+l.y-s.clientTop:i.left+l.x-s.clientLeft))/$();return c=u(c),r.dir?100-c:c}function Q(t,e){\"mouseout\"===t.type&&\"HTML\"===t.target.nodeName&&null===t.relatedTarget&&tt(t,e)}function Z(t,e){if(-1===navigator.appVersion.indexOf(\"MSIE 9\")&&0===t.buttons&&0!==e.buttonsProperty)return tt(t,e);var n=(r.dir?-1:1)*(t.calcPoint-e.startCalcPoint);ut(n>0,100*n/e.baseSize,e.locations,e.handleNumbers,e.connect)}function tt(t,e){e.handle&&(d(e.handle,r.cssClasses.active),M-=1),e.listeners.forEach((function(t){D.removeEventListener(t[0],t[1])})),0===M&&(d(w,r.cssClasses.drag),pt(),t.cursor&&(O.style.cursor=\"\",O.removeEventListener(\"selectstart\",s))),e.handleNumbers.forEach((function(t){st(\"change\",t),st(\"set\",t),st(\"end\",t)}))}function et(t,e){if(!e.handleNumbers.some(R)){var n;1===e.handleNumbers.length&&(n=p[e.handleNumbers[0]].children[0],M+=1,f(n,r.cssClasses.active)),t.stopPropagation();var i=[],o=J(x.move,D,Z,{target:t.target,handle:n,connect:e.connect,listeners:i,startCalcPoint:t.calcPoint,baseSize:$(),pageOffset:t.pageOffset,handleNumbers:e.handleNumbers,buttonsProperty:t.buttons,locations:V.slice()}),a=J(x.end,D,tt,{target:t.target,handle:n,listeners:i,doNotReject:!0,handleNumbers:e.handleNumbers}),l=J(\"mouseout\",D,Q,{target:t.target,handle:n,listeners:i,doNotReject:!0,handleNumbers:e.handleNumbers});i.push.apply(i,o.concat(a,l)),t.cursor&&(O.style.cursor=getComputedStyle(t.target).cursor,p.length>1&&f(w,r.cssClasses.drag),O.addEventListener(\"selectstart\",s,!1)),e.handleNumbers.forEach((function(t){st(\"start\",t)}))}}function rt(t){t.stopPropagation();var e=K(t.calcPoint),n=function(t){var e=100,r=!1;return p.forEach((function(n,i){if(!R(i)){var o=V[i],s=Math.abs(o-t);(so||100===s&&100===e)&&(r=i,e=s)}})),r}(e);!1!==n&&(r.events.snap||l(w,r.cssClasses.tap,r.animationDuration),ft(n,e,!0,!0),pt(),st(\"slide\",n,!0),st(\"update\",n,!0),r.events.snap?et(t,{handleNumbers:[n]}):(st(\"change\",n,!0),st(\"set\",n,!0)))}function nt(t){var e=K(t.calcPoint),r=C.getStep(e),n=C.fromStepping(r);Object.keys(A).forEach((function(t){\"hover\"===t.split(\".\")[0]&&A[t].forEach((function(t){t.call(bt,n)}))}))}function it(t,e){A[t]=A[t]||[],A[t].push(e),\"update\"===t.split(\".\")[0]&&p.forEach((function(t,e){st(\"update\",e)}))}function ot(t){var e=t&&t.split(\".\")[0],r=e?t.substring(e.length):t;Object.keys(A).forEach((function(t){var n=t.split(\".\")[0],i=t.substring(n.length);e&&e!==n||r&&r!==i||function(t){return t===P||t===E}(i)&&r!==i||delete A[t]}))}function st(t,e,n){Object.keys(A).forEach((function(i){var o=i.split(\".\")[0];t===o&&A[i].forEach((function(t){t.call(bt,N.map(r.format.to),e,N.slice(),n||!1,V.slice(),bt)}))}))}function at(t,e,n,i,o,s){var a;return p.length>1&&!r.events.unconstrained&&(i&&e>0&&(a=C.getAbsoluteDistance(t[e-1],r.margin,!1),n=Math.max(n,a)),o&&e1&&r.limit&&(i&&e>0&&(a=C.getAbsoluteDistance(t[e-1],r.limit,!1),n=Math.min(n,a)),o&&e1?n.forEach((function(t,r){var n=at(o,t,o[t]+e,a[r],l[r],!1);!1===n?e=0:(e=n-o[t],o[t]=n)})):a=l=[!0];var u=!1;n.forEach((function(t,n){u=ft(t,r[t]+e,a[n],l[n])||u})),u&&(n.forEach((function(t){st(\"update\",t),st(\"slide\",t)})),null!=i&&st(\"drag\",s))}function ct(t,e){return r.dir?100-t-e:t}function pt(){k.forEach((function(t){var e=V[t]>50?-1:1,r=3+(p.length+e*t);p[t].style.zIndex=String(r)}))}function ft(t,e,n,i,o){return o||(e=at(V,t,e,n,i,!1)),!1!==e&&(function(t,e){V[t]=e,N[t]=C.fromStepping(e);var n=\"translate(\"+lt(10*(ct(e,0)-L)+\"%\",\"0\")+\")\";p[t].style[r.transformRule]=n,dt(t),dt(t+1)}(t,e),!0)}function dt(t){if(m[t]){var e=0,n=100;0!==t&&(e=V[t-1]),t!==m.length-1&&(n=V[t]);var i=n-e,o=\"translate(\"+lt(ct(e,i)+\"%\",\"0\")+\")\",s=\"scale(\"+lt(i/100,\"1\")+\")\";m[t].style[r.transformRule]=o+\" \"+s}}function ht(t,e){return null===t||!1===t||void 0===t?V[e]:(\"number\"==typeof t&&(t=String(t)),!1!==(t=r.format.from(t))&&(t=C.toStepping(t)),!1===t||isNaN(t)?V[e]:t)}function mt(t,e,n){var i=c(t),o=void 0===V[0];e=void 0===e||e,r.animate&&!o&&l(w,r.cssClasses.tap,r.animationDuration),k.forEach((function(t){ft(t,ht(i[t],t),!0,!1,n)}));var s=1===k.length?0:1;if(o&&C.hasNoSize()&&(n=!0,V[0]=0,k.length>1)){var a=100/(k.length-1);k.forEach((function(t){V[t]=t*a}))}for(;sn.stepAfter.startValue&&(o=n.stepAfter.startValue-i),s=i>n.thisStep.startValue?n.thisStep.step:!1!==n.stepBefore.step&&i-n.stepBefore.highestStep,100===e?o=null:0===e&&(s=null);var a=C.countStepDecimals();return null!==o&&!1!==o&&(o=Number(o.toFixed(a))),null!==s&&!1!==s&&(s=Number(s.toFixed(a))),[s,o]}f(b=w,r.cssClasses.target),0===r.dir?f(b,r.cssClasses.ltr):f(b,r.cssClasses.rtl),0===r.ort?f(b,r.cssClasses.horizontal):f(b,r.cssClasses.vertical),f(b,\"rtl\"===getComputedStyle(b).direction?r.cssClasses.textDirectionRtl:r.cssClasses.textDirectionLtr),a=T(b,r.cssClasses.base),function(t,e){var n=T(e,r.cssClasses.connects);p=[],(m=[]).push(z(n,t[0]));for(var i=0;i=0&&t .noUi-tooltip{-webkit-transform:translate(50%, 0);transform:translate(50%, 0);left:auto;bottom:10px;}.bk-root .noUi-vertical .noUi-origin > .noUi-tooltip{-webkit-transform:translate(0, -18px);transform:translate(0, -18px);top:auto;right:28px;}.bk-root .noUi-handle{cursor:grab;cursor:-webkit-grab;}.bk-root .noUi-handle.noUi-active{cursor:grabbing;cursor:-webkit-grabbing;}.bk-root .noUi-handle:after,.bk-root .noUi-handle:before{display:none;}.bk-root .noUi-tooltip{display:none;white-space:nowrap;}.bk-root .noUi-handle:hover .noUi-tooltip{display:block;}.bk-root .noUi-horizontal{width:100%;height:10px;}.bk-root .noUi-vertical{width:10px;height:100%;}.bk-root .noUi-horizontal .noUi-handle{width:14px;height:18px;right:-7px;top:-5px;}.bk-root .noUi-vertical .noUi-handle{width:18px;height:14px;right:-5px;top:-7px;}.bk-root .noUi-target.noUi-horizontal{margin:5px 0px;}.bk-root .noUi-target.noUi-vertical{margin:0px 5px;}'},\n", + " 465: function _(e,t,r,a,i){a();var s;const d=(0,e(1).__importDefault)(e(151)),o=e(461),_=e(8);class n extends o.AbstractSliderView{}r.DateSliderView=n,n.__name__=\"DateSliderView\";class c extends o.AbstractSlider{constructor(e){super(e),this.behaviour=\"tap\",this.connected=[!0,!1]}_formatter(e,t){return(0,_.isString)(t)?(0,d.default)(e,t):t.compute(e)}}r.DateSlider=c,s=c,c.__name__=\"DateSlider\",s.prototype.default_view=n,s.override({format:\"%d %b %Y\"})},\n", + " 466: function _(e,t,r,a,i){a();var n;const s=(0,e(1).__importDefault)(e(151)),d=e(461),o=e(8);class _ extends d.AbstractRangeSliderView{}r.DatetimeRangeSliderView=_,_.__name__=\"DatetimeRangeSliderView\";class c extends d.AbstractSlider{constructor(e){super(e),this.behaviour=\"drag\",this.connected=[!1,!0,!1]}_formatter(e,t){return(0,o.isString)(t)?(0,s.default)(e,t):t.compute(e)}}r.DatetimeRangeSlider=c,n=c,c.__name__=\"DatetimeRangeSlider\",n.prototype.default_view=_,n.override({format:\"%d %b %Y %H:%M:%S\",step:36e5})},\n", + " 467: function _(e,t,s,r,i){var _;r();const n=e(468);class a extends n.MarkupView{render(){super.render(),this.model.render_as_text?this.markup_el.textContent=this.model.text:this.markup_el.innerHTML=this.has_math_disabled()?this.model.text:this.process_tex()}}s.DivView=a,a.__name__=\"DivView\";class d extends n.Markup{constructor(e){super(e)}}s.Div=d,_=d,d.__name__=\"Div\",_.prototype.default_view=a,_.define((({Boolean:e})=>({render_as_text:[e,!1]})))},\n", + " 468: function _(t,e,s,i,r){i();const a=t(1);var n;const o=t(210),d=t(43),h=t(137),l=t(512),_=(0,a.__importStar)(t(469));class u extends l.WidgetView{get provider(){return h.default_provider}async lazy_initialize(){await super.lazy_initialize(),\"not_started\"==this.provider.status&&await this.provider.fetch(),\"not_started\"!=this.provider.status&&\"loading\"!=this.provider.status||this.provider.ready.connect((()=>{this.contains_tex_string()&&this.rerender()}))}after_layout(){super.after_layout(),\"loading\"===this.provider.status&&(this._has_finished=!1)}rerender(){this.layout.invalidate_cache(),this.render(),this.root.compute_layout()}connect_signals(){super.connect_signals(),this.connect(this.model.change,(()=>{this.rerender()}))}styles(){return[...super.styles(),_.default]}_update_layout(){this.layout=new o.CachedVariadicBox(this.el),this.layout.set_sizing(this.box_sizing())}render(){super.render();const t=Object.assign(Object.assign({},this.model.style),{display:\"inline-block\"});this.markup_el=(0,d.div)({class:_.clearfix,style:t}),this.el.appendChild(this.markup_el),\"failed\"!=this.provider.status&&\"loaded\"!=this.provider.status||(this._has_finished=!0)}has_math_disabled(){return this.model.disable_math||!this.contains_tex_string()}process_tex(){if(!this.provider.MathJax)return this.model.text;const{text:t}=this.model,e=this.provider.MathJax.find_tex(t),s=[];let i=0;for(const r of e)s.push(t.slice(i,r.start.n)),s.push(this.provider.MathJax.tex2svg(r.math,{display:r.display}).outerHTML),i=r.end.n;return i0}}s.MarkupView=u,u.__name__=\"MarkupView\";class p extends l.Widget{constructor(t){super(t)}}s.Markup=p,n=p,p.__name__=\"Markup\",n.define((({Boolean:t,String:e,Dict:s})=>({text:[e,\"\"],style:[s(e),{}],disable_math:[t,!1]})))},\n", + " 469: function _(o,r,e,t,a){t(),e.root=\"bk-root\",e.clearfix=\"bk-clearfix\",e.default='.bk-root .bk-clearfix:before,.bk-root .bk-clearfix:after{content:\"\";display:table;}.bk-root .bk-clearfix:after{clear:both;}'},\n", + " 470: function _(e,t,i,n,s){n();const o=e(1);var l;const r=e(441),d=e(251),_=e(43),u=e(8),c=(0,o.__importStar)(e(318)),h=(0,o.__importStar)(e(229)),m=h;class p extends r.AbstractButtonView{constructor(){super(...arguments),this._open=!1}styles(){return[...super.styles(),h.default]}render(){super.render();const e=(0,_.div)({class:[m.caret,m.down]});if(this.model.is_split){const t=this._render_button(e);t.classList.add(c.dropdown_toggle),t.addEventListener(\"click\",(()=>this._toggle_menu())),this.group_el.appendChild(t)}else this.button_el.appendChild(e);const t=this.model.menu.map(((e,t)=>{if(null==e)return(0,_.div)({class:m.divider});{const i=(0,u.isString)(e)?e:e[0],n=(0,_.div)(i);return n.addEventListener(\"click\",(()=>this._item_click(t))),n}}));this.menu=(0,_.div)({class:[m.menu,m.below]},t),this.el.appendChild(this.menu),(0,_.undisplay)(this.menu)}_show_menu(){if(!this._open){this._open=!0,(0,_.display)(this.menu);const e=t=>{const{target:i}=t;i instanceof HTMLElement&&!this.el.contains(i)&&(document.removeEventListener(\"click\",e),this._hide_menu())};document.addEventListener(\"click\",e)}}_hide_menu(){this._open&&(this._open=!1,(0,_.undisplay)(this.menu))}_toggle_menu(){this._open?this._hide_menu():this._show_menu()}click(){this.model.is_split?(this._hide_menu(),this.model.trigger_event(new d.ButtonClick),super.click()):this._toggle_menu()}_item_click(e){this._hide_menu();const t=this.model.menu[e];if(null!=t){const i=(0,u.isString)(t)?t:t[1];(0,u.isString)(i)?this.model.trigger_event(new d.MenuItemClick(i)):i.execute(this.model,{index:e})}}}i.DropdownView=p,p.__name__=\"DropdownView\";class a extends r.AbstractButton{constructor(e){super(e)}get is_split(){return this.split}}i.Dropdown=a,l=a,a.__name__=\"Dropdown\",l.prototype.default_view=p,l.define((({Null:e,Boolean:t,String:i,Array:n,Tuple:s,Or:o})=>({split:[t,!1],menu:[n(o(i,s(i,o(i)),e)),[]]}))),l.override({label:\"Dropdown\"})},\n", + " 471: function _(e,l,i,t,s){var n;t();const a=e(43),o=e(512);class d extends o.WidgetView{connect_signals(){super.connect_signals(),this.connect(this.model.change,(()=>this.render()))}render(){const{multiple:e,accept:l,disabled:i,width:t}=this.model;null==this.dialog_el&&(this.dialog_el=(0,a.input)({type:\"file\",multiple:e}),this.dialog_el.onchange=()=>{const{files:e}=this.dialog_el;null!=e&&this.load_files(e)},this.el.appendChild(this.dialog_el)),null!=l&&\"\"!=l&&(this.dialog_el.accept=l),this.dialog_el.style.width=`${t}px`,this.dialog_el.disabled=i}async load_files(e){const l=[],i=[],t=[];for(const s of e){const e=await this._read_file(s),[,n=\"\",,a=\"\"]=e.split(/[:;,]/,4);l.push(a),i.push(s.name),t.push(n)}this.model.multiple?this.model.setv({value:l,filename:i,mime_type:t}):this.model.setv({value:l[0],filename:i[0],mime_type:t[0]})}_read_file(e){return new Promise(((l,i)=>{const t=new FileReader;t.onload=()=>{var s;const{result:n}=t;null!=n?l(n):i(null!==(s=t.error)&&void 0!==s?s:new Error(`unable to read '${e.name}'`))},t.readAsDataURL(e)}))}}i.FileInputView=d,d.__name__=\"FileInputView\";class r extends o.Widget{constructor(e){super(e)}}i.FileInput=r,n=r,r.__name__=\"FileInput\",n.prototype.default_view=d,n.define((({Boolean:e,String:l,Array:i,Or:t})=>({value:[t(l,i(l)),\"\"],mime_type:[t(l,i(l)),\"\"],filename:[t(l,i(l)),\"\"],accept:[l,\"\"],multiple:[e,!1]})))},\n", + " 472: function _(e,t,i,s,n){s();const l=e(1);var o;const r=e(43),c=e(8),h=e(448),p=(0,l.__importStar)(e(449));class d extends h.InputWidgetView{connect_signals(){super.connect_signals(),this.connect(this.model.properties.value.change,(()=>this.render_selection())),this.connect(this.model.properties.options.change,(()=>this.render())),this.connect(this.model.properties.name.change,(()=>this.render())),this.connect(this.model.properties.title.change,(()=>this.render())),this.connect(this.model.properties.size.change,(()=>this.render())),this.connect(this.model.properties.disabled.change,(()=>this.render()))}render(){super.render();const e=this.model.options.map((e=>{let t,i;return(0,c.isString)(e)?t=i=e:[t,i]=e,(0,r.option)({value:t},i)}));this.input_el=(0,r.select)({multiple:!0,class:p.input,name:this.model.name,disabled:this.model.disabled},e),this.input_el.addEventListener(\"change\",(()=>this.change_input())),this.group_el.appendChild(this.input_el),this.render_selection()}render_selection(){const e=new Set(this.model.value);for(const t of this.el.querySelectorAll(\"option\"))t.selected=e.has(t.value);this.input_el.size=this.model.size}change_input(){const e=null!=this.el.querySelector(\"select:focus\"),t=[];for(const e of this.el.querySelectorAll(\"option\"))e.selected&&t.push(e.value);this.model.value=t,super.change_input(),e&&this.input_el.focus()}}i.MultiSelectView=d,d.__name__=\"MultiSelectView\";class u extends h.InputWidget{constructor(e){super(e)}}i.MultiSelect=u,o=u,u.__name__=\"MultiSelect\",o.prototype.default_view=d,o.define((({Int:e,String:t,Array:i,Tuple:s,Or:n})=>({value:[i(t),[]],options:[i(n(t,s(t,t))),[]],size:[e,4]})))},\n", + " 473: function _(e,a,r,t,s){var n;t();const p=e(468),_=e(43);class i extends p.MarkupView{render(){super.render();const e=(0,_.p)({style:{margin:0}});this.has_math_disabled()?e.textContent=this.model.text:e.innerHTML=this.process_tex(),this.markup_el.appendChild(e)}}r.ParagraphView=i,i.__name__=\"ParagraphView\";class h extends p.Markup{constructor(e){super(e)}}r.Paragraph=h,n=h,h.__name__=\"Paragraph\",n.prototype.default_view=i},\n", + " 474: function _(e,s,t,n,r){var p;n();const u=e(446);class a extends u.TextInputView{render(){super.render(),this.input_el.type=\"password\"}}t.PasswordInputView=a,a.__name__=\"PasswordInputView\";class o extends u.TextInput{constructor(e){super(e)}}t.PasswordInput=o,p=o,o.__name__=\"PasswordInput\",p.prototype.default_view=a},\n", + " 475: function _(e,t,i,l,s){l();const o=e(1);var n;const h=(0,o.__importDefault)(e(476)),a=e(43),u=e(8),c=e(210),_=(0,o.__importStar)(e(449)),d=(0,o.__importDefault)(e(477)),r=e(448);class m extends r.InputWidgetView{constructor(){super(...arguments),this._last_height=null}connect_signals(){super.connect_signals(),this.connect(this.model.properties.disabled.change,(()=>this.set_disabled()));const{value:e,max_items:t,option_limit:i,search_option_limit:l,delete_button:s,placeholder:o,options:n,name:h,title:a}=this.model.properties;this.on_change([e,t,i,l,s,o,n,h,a],(()=>this.render()))}styles(){return[...super.styles(),d.default]}_update_layout(){this.layout=new c.CachedVariadicBox(this.el),this.layout.set_sizing(this.box_sizing())}render(){super.render(),this.input_el=(0,a.select)({multiple:!0,class:_.input,name:this.model.name,disabled:this.model.disabled}),this.group_el.appendChild(this.input_el);const e=new Set(this.model.value),t=this.model.options.map((t=>{let i,l;return(0,u.isString)(t)?i=l=t:[i,l]=t,{value:i,label:l,selected:e.has(i)}})),i=this.model.solid?\"solid\":\"light\",l=`choices__item ${i}`,s=`choices__button ${i}`,o={choices:t,duplicateItemsAllowed:!1,removeItemButton:this.model.delete_button,classNames:{item:l,button:s}};null!=this.model.placeholder&&(o.placeholderValue=this.model.placeholder),null!=this.model.max_items&&(o.maxItemCount=this.model.max_items),null!=this.model.option_limit&&(o.renderChoiceLimit=this.model.option_limit),null!=this.model.search_option_limit&&(o.searchResultLimit=this.model.search_option_limit),this.choice_el=new h.default(this.input_el,o);const n=()=>this.choice_el.containerOuter.element.getBoundingClientRect().height;null!=this._last_height&&this._last_height!=n()&&this.root.invalidate_layout(),this._last_height=n(),this.input_el.addEventListener(\"change\",(()=>this.change_input()))}set_disabled(){this.model.disabled?this.choice_el.disable():this.choice_el.enable()}change_input(){const e=null!=this.el.querySelector(\"select:focus\"),t=[];for(const e of this.el.querySelectorAll(\"option\"))e.selected&&t.push(e.value);this.model.value=t,super.change_input(),e&&this.input_el.focus()}}i.MultiChoiceView=m,m.__name__=\"MultiChoiceView\";class p extends r.InputWidget{constructor(e){super(e)}}i.MultiChoice=p,n=p,p.__name__=\"MultiChoice\",n.prototype.default_view=m,n.define((({Boolean:e,Int:t,String:i,Array:l,Tuple:s,Or:o,Nullable:n})=>({value:[l(i),[]],options:[l(o(i,s(i,i))),[]],max_items:[n(t),null],delete_button:[e,!0],placeholder:[n(i),null],option_limit:[n(t),null],search_option_limit:[n(t),null],solid:[e,!0]})))},\n", + " 476: function _(e,t,i,n,s){\n", + " /*! choices.js v9.0.1 | © 2019 Josh Johnson | https://github.com/jshjohnson/Choices#readme */\n", + " var r,o;r=window,o=function(){return function(e){var t={};function i(n){if(t[n])return t[n].exports;var s=t[n]={i:n,l:!1,exports:{}};return e[n].call(s.exports,s,s.exports,i),s.l=!0,s.exports}return i.m=e,i.c=t,i.d=function(e,t,n){i.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:n})},i.r=function(e){\"undefined\"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:\"Module\"}),Object.defineProperty(e,\"__esModule\",{value:!0})},i.t=function(e,t){if(1&t&&(e=i(e)),8&t)return e;if(4&t&&\"object\"==typeof e&&e&&e.__esModule)return e;var n=Object.create(null);if(i.r(n),Object.defineProperty(n,\"default\",{enumerable:!0,value:e}),2&t&&\"string\"!=typeof e)for(var s in e)i.d(n,s,function(t){return e[t]}.bind(null,s));return n},i.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return i.d(t,\"a\",t),t},i.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},i.p=\"/public/assets/scripts/\",i(i.s=4)}([function(e,t,i){\"use strict\";var n=function(e){return function(e){return!!e&&\"object\"==typeof e}(e)&&!function(e){var t=Object.prototype.toString.call(e);return\"[object RegExp]\"===t||\"[object Date]\"===t||function(e){return e.$$typeof===s}(e)}(e)},s=\"function\"==typeof Symbol&&Symbol.for?Symbol.for(\"react.element\"):60103;function r(e,t){return!1!==t.clone&&t.isMergeableObject(e)?l((i=e,Array.isArray(i)?[]:{}),e,t):e;var i}function o(e,t,i){return e.concat(t).map((function(e){return r(e,i)}))}function a(e){return Object.keys(e).concat(function(e){return Object.getOwnPropertySymbols?Object.getOwnPropertySymbols(e).filter((function(t){return e.propertyIsEnumerable(t)})):[]}(e))}function c(e,t,i){var n={};return i.isMergeableObject(e)&&a(e).forEach((function(t){n[t]=r(e[t],i)})),a(t).forEach((function(s){(function(e,t){try{return t in e&&!(Object.hasOwnProperty.call(e,t)&&Object.propertyIsEnumerable.call(e,t))}catch(e){return!1}})(e,s)||(i.isMergeableObject(t[s])&&e[s]?n[s]=function(e,t){if(!t.customMerge)return l;var i=t.customMerge(e);return\"function\"==typeof i?i:l}(s,i)(e[s],t[s],i):n[s]=r(t[s],i))})),n}function l(e,t,i){(i=i||{}).arrayMerge=i.arrayMerge||o,i.isMergeableObject=i.isMergeableObject||n,i.cloneUnlessOtherwiseSpecified=r;var s=Array.isArray(t);return s===Array.isArray(e)?s?i.arrayMerge(e,t,i):c(e,t,i):r(t,i)}l.all=function(e,t){if(!Array.isArray(e))throw new Error(\"first argument should be an array\");return e.reduce((function(e,i){return l(e,i,t)}),{})};var h=l;e.exports=h},function(e,t,i){\"use strict\";(function(e,n){var s,r=i(3);s=\"undefined\"!=typeof self?self:\"undefined\"!=typeof window?window:void 0!==e?e:n;var o=Object(r.a)(s);t.a=o}).call(this,i(5),i(6)(e))},function(e,t,i){\n", + " /*!\n", + " * Fuse.js v3.4.5 - Lightweight fuzzy-search (http://fusejs.io)\n", + " *\n", + " * Copyright (c) 2012-2017 Kirollos Risk (http://kiro.me)\n", + " * All Rights Reserved. Apache Software License 2.0\n", + " *\n", + " * http://www.apache.org/licenses/LICENSE-2.0\n", + " */\n", + " e.exports=function(e){var t={};function i(n){if(t[n])return t[n].exports;var s=t[n]={i:n,l:!1,exports:{}};return e[n].call(s.exports,s,s.exports,i),s.l=!0,s.exports}return i.m=e,i.c=t,i.d=function(e,t,n){i.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:n})},i.r=function(e){\"undefined\"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:\"Module\"}),Object.defineProperty(e,\"__esModule\",{value:!0})},i.t=function(e,t){if(1&t&&(e=i(e)),8&t)return e;if(4&t&&\"object\"==typeof e&&e&&e.__esModule)return e;var n=Object.create(null);if(i.r(n),Object.defineProperty(n,\"default\",{enumerable:!0,value:e}),2&t&&\"string\"!=typeof e)for(var s in e)i.d(n,s,function(t){return e[t]}.bind(null,s));return n},i.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return i.d(t,\"a\",t),t},i.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},i.p=\"\",i(i.s=1)}([function(e,t){e.exports=function(e){return Array.isArray?Array.isArray(e):\"[object Array]\"===Object.prototype.toString.call(e)}},function(e,t,i){function n(e){return(n=\"function\"==typeof Symbol&&\"symbol\"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&\"function\"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?\"symbol\":typeof e})(e)}function s(e,t){for(var i=0;i1&&void 0!==arguments[1]?arguments[1]:{limit:!1};this._log('---------\\nSearch pattern: \"'.concat(e,'\"'));var i=this._prepareSearchers(e),n=i.tokenSearchers,s=i.fullSearcher,r=this._search(n,s),o=r.weights,a=r.results;return this._computeScore(o,a),this.options.shouldSort&&this._sort(a),t.limit&&\"number\"==typeof t.limit&&(a=a.slice(0,t.limit)),this._format(a)}},{key:\"_prepareSearchers\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:\"\",t=[];if(this.options.tokenize)for(var i=e.split(this.options.tokenSeparator),n=0,s=i.length;n0&&void 0!==arguments[0]?arguments[0]:[],t=arguments.length>1?arguments[1]:void 0,i=this.list,n={},s=[];if(\"string\"==typeof i[0]){for(var r=0,o=i.length;r1)throw new Error(\"Key weight has to be > 0 and <= 1\");p=p.name}else a[p]={weight:1};this._analyze({key:p,value:this.options.getFn(h,p),record:h,index:c},{resultMap:n,results:s,tokenSearchers:e,fullSearcher:t})}return{weights:a,results:s}}},{key:\"_analyze\",value:function(e,t){var i=e.key,n=e.arrayIndex,s=void 0===n?-1:n,r=e.value,o=e.record,c=e.index,l=t.tokenSearchers,h=void 0===l?[]:l,u=t.fullSearcher,d=void 0===u?[]:u,p=t.resultMap,m=void 0===p?{}:p,f=t.results,v=void 0===f?[]:f;if(null!=r){var g=!1,_=-1,b=0;if(\"string\"==typeof r){this._log(\"\\nKey: \".concat(\"\"===i?\"-\":i));var y=d.search(r);if(this._log('Full text: \"'.concat(r,'\", score: ').concat(y.score)),this.options.tokenize){for(var E=r.split(this.options.tokenSeparator),I=[],S=0;S-1&&(P=(P+_)/2),this._log(\"Score average:\",P);var D=!this.options.tokenize||!this.options.matchAllTokens||b>=h.length;if(this._log(\"\\nCheck Matches: \".concat(D)),(g||y.isMatch)&&D){var M=m[c];M?M.output.push({key:i,arrayIndex:s,value:r,score:P,matchedIndices:y.matchedIndices}):(m[c]={item:o,output:[{key:i,arrayIndex:s,value:r,score:P,matchedIndices:y.matchedIndices}]},v.push(m[c]))}}else if(a(r))for(var N=0,F=r.length;N-1&&(o.arrayIndex=r.arrayIndex),t.matches.push(o)}}})),this.options.includeScore&&s.push((function(e,t){t.score=e.score}));for(var r=0,o=e.length;ri)return s(e,this.pattern,n);var o=this.options,a=o.location,c=o.distance,l=o.threshold,h=o.findAllMatches,u=o.minMatchCharLength;return r(e,this.pattern,this.patternAlphabet,{location:a,distance:c,threshold:l,findAllMatches:h,minMatchCharLength:u})}}])&&n(t.prototype,i),a&&n(t,a),e}();e.exports=a},function(e,t){var i=/[\\-\\[\\]\\/\\{\\}\\(\\)\\*\\+\\?\\.\\\\\\^\\$\\|]/g;e.exports=function(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:/ +/g,s=new RegExp(t.replace(i,\"\\\\$&\").replace(n,\"|\")),r=e.match(s),o=!!r,a=[];if(o)for(var c=0,l=r.length;c=P;N-=1){var F=N-1,j=i[e.charAt(F)];if(j&&(E[F]=1),M[N]=(M[N+1]<<1|1)&j,0!==T&&(M[N]|=(O[N+1]|O[N])<<1|1|O[N+1]),M[N]&L&&(C=n(t,{errors:T,currentLocation:F,expectedLocation:v,distance:l}))<=_){if(_=C,(b=F)<=v)break;P=Math.max(1,2*v-b)}}if(n(t,{errors:T+1,currentLocation:v,expectedLocation:v,distance:l})>_)break;O=M}return{isMatch:b>=0,score:0===C?.001:C,matchedIndices:s(E,f)}}},function(e,t){e.exports=function(e,t){var i=t.errors,n=void 0===i?0:i,s=t.currentLocation,r=void 0===s?0:s,o=t.expectedLocation,a=void 0===o?0:o,c=t.distance,l=void 0===c?100:c,h=n/e.length,u=Math.abs(a-r);return l?h+u/l:u?1:h}},function(e,t){e.exports=function(){for(var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:1,i=[],n=-1,s=-1,r=0,o=e.length;r=t&&i.push([n,s]),n=-1)}return e[r-1]&&r-n>=t&&i.push([n,r-1]),i}},function(e,t){e.exports=function(e){for(var t={},i=e.length,n=0;n/g,\"&rt;\").replace(/-1?e.map((function(e){var i=e;return i.id===parseInt(t.choiceId,10)&&(i.selected=!0),i})):e;case\"REMOVE_ITEM\":return t.choiceId>-1?e.map((function(e){var i=e;return i.id===parseInt(t.choiceId,10)&&(i.selected=!1),i})):e;case\"FILTER_CHOICES\":return e.map((function(e){var i=e;return i.active=t.results.some((function(e){var t=e.item,n=e.score;return t.id===i.id&&(i.score=n,!0)})),i}));case\"ACTIVATE_CHOICES\":return e.map((function(e){var i=e;return i.active=t.active,i}));case\"CLEAR_CHOICES\":return v;default:return e}},general:_}),A=function(e,t){var i=e;if(\"CLEAR_ALL\"===t.type)i=void 0;else if(\"RESET_TO\"===t.type)return O(t.state);return C(i,t)};function L(e,t){for(var i=0;i\"'+I(e)+'\"'},maxItemText:function(e){return\"Only \"+e+\" values can be added\"},valueComparer:function(e,t){return e===t},fuseOptions:{includeScore:!0},callbackOnInit:null,callbackOnCreateTemplates:null,classNames:{containerOuter:\"choices\",containerInner:\"choices__inner\",input:\"choices__input\",inputCloned:\"choices__input--cloned\",list:\"choices__list\",listItems:\"choices__list--multiple\",listSingle:\"choices__list--single\",listDropdown:\"choices__list--dropdown\",item:\"choices__item\",itemSelectable:\"choices__item--selectable\",itemDisabled:\"choices__item--disabled\",itemChoice:\"choices__item--choice\",placeholder:\"choices__placeholder\",group:\"choices__group\",groupHeading:\"choices__heading\",button:\"choices__button\",activeState:\"is-active\",focusState:\"is-focused\",openState:\"is-open\",disabledState:\"is-disabled\",highlightedState:\"is-highlighted\",selectedState:\"is-selected\",flippedState:\"is-flipped\",loadingState:\"is-loading\",noResults:\"has-no-results\",noChoices:\"has-no-choices\"}},D=\"showDropdown\",M=\"hideDropdown\",N=\"change\",F=\"choice\",j=\"search\",K=\"addItem\",R=\"removeItem\",H=\"highlightItem\",B=\"highlightChoice\",V=\"ADD_CHOICE\",G=\"FILTER_CHOICES\",q=\"ACTIVATE_CHOICES\",U=\"CLEAR_CHOICES\",z=\"ADD_GROUP\",W=\"ADD_ITEM\",X=\"REMOVE_ITEM\",$=\"HIGHLIGHT_ITEM\",J=46,Y=8,Z=13,Q=65,ee=27,te=38,ie=40,ne=33,se=34,re=\"text\",oe=\"select-one\",ae=\"select-multiple\",ce=function(){function e(e){var t=e.element,i=e.type,n=e.classNames,s=e.position;this.element=t,this.classNames=n,this.type=i,this.position=s,this.isOpen=!1,this.isFlipped=!1,this.isFocussed=!1,this.isDisabled=!1,this.isLoading=!1,this._onFocus=this._onFocus.bind(this),this._onBlur=this._onBlur.bind(this)}var t=e.prototype;return t.addEventListeners=function(){this.element.addEventListener(\"focus\",this._onFocus),this.element.addEventListener(\"blur\",this._onBlur)},t.removeEventListeners=function(){this.element.removeEventListener(\"focus\",this._onFocus),this.element.removeEventListener(\"blur\",this._onBlur)},t.shouldFlip=function(e){if(\"number\"!=typeof e)return!1;var t=!1;return\"auto\"===this.position?t=!window.matchMedia(\"(min-height: \"+(e+1)+\"px)\").matches:\"top\"===this.position&&(t=!0),t},t.setActiveDescendant=function(e){this.element.setAttribute(\"aria-activedescendant\",e)},t.removeActiveDescendant=function(){this.element.removeAttribute(\"aria-activedescendant\")},t.open=function(e){this.element.classList.add(this.classNames.openState),this.element.setAttribute(\"aria-expanded\",\"true\"),this.isOpen=!0,this.shouldFlip(e)&&(this.element.classList.add(this.classNames.flippedState),this.isFlipped=!0)},t.close=function(){this.element.classList.remove(this.classNames.openState),this.element.setAttribute(\"aria-expanded\",\"false\"),this.removeActiveDescendant(),this.isOpen=!1,this.isFlipped&&(this.element.classList.remove(this.classNames.flippedState),this.isFlipped=!1)},t.focus=function(){this.isFocussed||this.element.focus()},t.addFocusState=function(){this.element.classList.add(this.classNames.focusState)},t.removeFocusState=function(){this.element.classList.remove(this.classNames.focusState)},t.enable=function(){this.element.classList.remove(this.classNames.disabledState),this.element.removeAttribute(\"aria-disabled\"),this.type===oe&&this.element.setAttribute(\"tabindex\",\"0\"),this.isDisabled=!1},t.disable=function(){this.element.classList.add(this.classNames.disabledState),this.element.setAttribute(\"aria-disabled\",\"true\"),this.type===oe&&this.element.setAttribute(\"tabindex\",\"-1\"),this.isDisabled=!0},t.wrap=function(e){!function(e,t){void 0===t&&(t=document.createElement(\"div\")),e.nextSibling?e.parentNode.insertBefore(t,e.nextSibling):e.parentNode.appendChild(t),t.appendChild(e)}(e,this.element)},t.unwrap=function(e){this.element.parentNode.insertBefore(e,this.element),this.element.parentNode.removeChild(this.element)},t.addLoadingState=function(){this.element.classList.add(this.classNames.loadingState),this.element.setAttribute(\"aria-busy\",\"true\"),this.isLoading=!0},t.removeLoadingState=function(){this.element.classList.remove(this.classNames.loadingState),this.element.removeAttribute(\"aria-busy\"),this.isLoading=!1},t._onFocus=function(){this.isFocussed=!0},t._onBlur=function(){this.isFocussed=!1},e}();function le(e,t){for(var i=0;i0?this.element.scrollTop+o-s:e.offsetTop;requestAnimationFrame((function(){i._animateScroll(a,t)}))}},t._scrollDown=function(e,t,i){var n=(i-e)/t,s=n>1?n:1;this.element.scrollTop=e+s},t._scrollUp=function(e,t,i){var n=(e-i)/t,s=n>1?n:1;this.element.scrollTop=e-s},t._animateScroll=function(e,t){var i=this,n=this.element.scrollTop,s=!1;t>0?(this._scrollDown(n,4,e),ne&&(s=!0)),s&&requestAnimationFrame((function(){i._animateScroll(e,t)}))},e}();function de(e,t){for(var i=0;i0?\"treeitem\":\"option\"),Object.assign(g.dataset,{choice:\"\",id:l,value:h,selectText:i}),m?(g.classList.add(a),g.dataset.choiceDisabled=\"\",g.setAttribute(\"aria-disabled\",\"true\")):(g.classList.add(r),g.dataset.choiceSelectable=\"\"),g},input:function(e,t){var i=e.input,n=e.inputCloned,s=Object.assign(document.createElement(\"input\"),{type:\"text\",className:i+\" \"+n,autocomplete:\"off\",autocapitalize:\"off\",spellcheck:!1});return s.setAttribute(\"role\",\"textbox\"),s.setAttribute(\"aria-autocomplete\",\"list\"),s.setAttribute(\"aria-label\",t),s},dropdown:function(e){var t=e.list,i=e.listDropdown,n=document.createElement(\"div\");return n.classList.add(t,i),n.setAttribute(\"aria-expanded\",\"false\"),n},notice:function(e,t,i){var n=e.item,s=e.itemChoice,r=e.noResults,o=e.noChoices;void 0===i&&(i=\"\");var a=[n,s];return\"no-choices\"===i?a.push(o):\"no-results\"===i&&a.push(r),Object.assign(document.createElement(\"div\"),{innerHTML:t,className:a.join(\" \")})},option:function(e){var t=e.label,i=e.value,n=e.customProperties,s=e.active,r=e.disabled,o=new Option(t,i,!1,s);return n&&(o.dataset.customProperties=n),o.disabled=r,o}},be=function(e){return void 0===e&&(e=!0),{type:q,active:e}},ye=function(e,t){return{type:$,id:e,highlighted:t}},Ee=function(e){var t=e.value,i=e.id,n=e.active,s=e.disabled;return{type:z,value:t,id:i,active:n,disabled:s}},Ie=function(e){return{type:\"SET_IS_LOADING\",isLoading:e}};function Se(e,t){for(var i=0;i=0?this._store.getGroupById(s):null;return this._store.dispatch(ye(i,!0)),t&&this.passedElement.triggerEvent(H,{id:i,value:o,label:c,groupValue:l&&l.value?l.value:null}),this},r.unhighlightItem=function(e){if(!e)return this;var t=e.id,i=e.groupId,n=void 0===i?-1:i,s=e.value,r=void 0===s?\"\":s,o=e.label,a=void 0===o?\"\":o,c=n>=0?this._store.getGroupById(n):null;return this._store.dispatch(ye(t,!1)),this.passedElement.triggerEvent(H,{id:t,value:r,label:a,groupValue:c&&c.value?c.value:null}),this},r.highlightAll=function(){var e=this;return this._store.items.forEach((function(t){return e.highlightItem(t)})),this},r.unhighlightAll=function(){var e=this;return this._store.items.forEach((function(t){return e.unhighlightItem(t)})),this},r.removeActiveItemsByValue=function(e){var t=this;return this._store.activeItems.filter((function(t){return t.value===e})).forEach((function(e){return t._removeItem(e)})),this},r.removeActiveItems=function(e){var t=this;return this._store.activeItems.filter((function(t){return t.id!==e})).forEach((function(e){return t._removeItem(e)})),this},r.removeHighlightedItems=function(e){var t=this;return void 0===e&&(e=!1),this._store.highlightedActiveItems.forEach((function(i){t._removeItem(i),e&&t._triggerChange(i.value)})),this},r.showDropdown=function(e){var t=this;return this.dropdown.isActive||requestAnimationFrame((function(){t.dropdown.show(),t.containerOuter.open(t.dropdown.distanceFromTopWindow),!e&&t._canSearch&&t.input.focus(),t.passedElement.triggerEvent(D,{})})),this},r.hideDropdown=function(e){var t=this;return this.dropdown.isActive?(requestAnimationFrame((function(){t.dropdown.hide(),t.containerOuter.close(),!e&&t._canSearch&&(t.input.removeActiveDescendant(),t.input.blur()),t.passedElement.triggerEvent(M,{})})),this):this},r.getValue=function(e){void 0===e&&(e=!1);var t=this._store.activeItems.reduce((function(t,i){var n=e?i.value:i;return t.push(n),t}),[]);return this._isSelectOneElement?t[0]:t},r.setValue=function(e){var t=this;return this.initialised?(e.forEach((function(e){return t._setChoiceOrItem(e)})),this):this},r.setChoiceByValue=function(e){var t=this;return!this.initialised||this._isTextElement||(Array.isArray(e)?e:[e]).forEach((function(e){return t._findAndSelectChoiceByValue(e)})),this},r.setChoices=function(e,t,i,n){var s=this;if(void 0===e&&(e=[]),void 0===t&&(t=\"value\"),void 0===i&&(i=\"label\"),void 0===n&&(n=!1),!this.initialised)throw new ReferenceError(\"setChoices was called on a non-initialized instance of Choices\");if(!this._isSelectElement)throw new TypeError(\"setChoices can't be used with INPUT based Choices\");if(\"string\"!=typeof t||!t)throw new TypeError(\"value parameter must be a name of 'value' field in passed objects\");if(n&&this.clearChoices(),\"function\"==typeof e){var r=e(this);if(\"function\"==typeof Promise&&r instanceof Promise)return new Promise((function(e){return requestAnimationFrame(e)})).then((function(){return s._handleLoadingState(!0)})).then((function(){return r})).then((function(e){return s.setChoices(e,t,i,n)})).catch((function(e){s.config.silent||console.error(e)})).then((function(){return s._handleLoadingState(!1)})).then((function(){return s}));if(!Array.isArray(r))throw new TypeError(\".setChoices first argument function must return either array of choices or Promise, got: \"+typeof r);return this.setChoices(r,t,i,!1)}if(!Array.isArray(e))throw new TypeError(\".setChoices must be called either with array of choices with a function resulting into Promise of array of choices\");return this.containerOuter.removeLoadingState(),this._startLoading(),e.forEach((function(e){e.choices?s._addGroup({id:parseInt(e.id,10)||null,group:e,valueKey:t,labelKey:i}):s._addChoice({value:e[t],label:e[i],isSelected:e.selected,isDisabled:e.disabled,customProperties:e.customProperties,placeholder:e.placeholder})})),this._stopLoading(),this},r.clearChoices=function(){return this._store.dispatch({type:U}),this},r.clearStore=function(){return this._store.dispatch({type:\"CLEAR_ALL\"}),this},r.clearInput=function(){var e=!this._isSelectOneElement;return this.input.clear(e),!this._isTextElement&&this._canSearch&&(this._isSearching=!1,this._store.dispatch(be(!0))),this},r._render=function(){if(!this._store.isLoading()){this._currentState=this._store.state;var e=this._currentState.choices!==this._prevState.choices||this._currentState.groups!==this._prevState.groups||this._currentState.items!==this._prevState.items,t=this._isSelectElement,i=this._currentState.items!==this._prevState.items;e&&(t&&this._renderChoices(),i&&this._renderItems(),this._prevState=this._currentState)}},r._renderChoices=function(){var e=this,t=this._store,i=t.activeGroups,n=t.activeChoices,s=document.createDocumentFragment();if(this.choiceList.clear(),this.config.resetScrollPosition&&requestAnimationFrame((function(){return e.choiceList.scrollToTop()})),i.length>=1&&!this._isSearching){var r=n.filter((function(e){return!0===e.placeholder&&-1===e.groupId}));r.length>=1&&(s=this._createChoicesFragment(r,s)),s=this._createGroupsFragment(i,n,s)}else n.length>=1&&(s=this._createChoicesFragment(n,s));if(s.childNodes&&s.childNodes.length>0){var o=this._store.activeItems,a=this._canAddItem(o,this.input.value);a.response?(this.choiceList.append(s),this._highlightChoice()):this.choiceList.append(this._getTemplate(\"notice\",a.notice))}else{var c,l;this._isSearching?(l=\"function\"==typeof this.config.noResultsText?this.config.noResultsText():this.config.noResultsText,c=this._getTemplate(\"notice\",l,\"no-results\")):(l=\"function\"==typeof this.config.noChoicesText?this.config.noChoicesText():this.config.noChoicesText,c=this._getTemplate(\"notice\",l,\"no-choices\")),this.choiceList.append(c)}},r._renderItems=function(){var e=this._store.activeItems||[];this.itemList.clear();var t=this._createItemsFragment(e);t.childNodes&&this.itemList.append(t)},r._createGroupsFragment=function(e,t,i){var n=this;return void 0===i&&(i=document.createDocumentFragment()),this.config.shouldSort&&e.sort(this.config.sorter),e.forEach((function(e){var s=function(e){return t.filter((function(t){return n._isSelectOneElement?t.groupId===e.id:t.groupId===e.id&&(\"always\"===n.config.renderSelectedChoices||!t.selected)}))}(e);if(s.length>=1){var r=n._getTemplate(\"choiceGroup\",e);i.appendChild(r),n._createChoicesFragment(s,i,!0)}})),i},r._createChoicesFragment=function(e,t,i){var n=this;void 0===t&&(t=document.createDocumentFragment()),void 0===i&&(i=!1);var s=this.config,r=s.renderSelectedChoices,o=s.searchResultLimit,a=s.renderChoiceLimit,c=this._isSearching?w:this.config.sorter,l=function(e){if(\"auto\"!==r||n._isSelectOneElement||!e.selected){var i=n._getTemplate(\"choice\",e,n.config.itemSelectText);t.appendChild(i)}},h=e;\"auto\"!==r||this._isSelectOneElement||(h=e.filter((function(e){return!e.selected})));var u=h.reduce((function(e,t){return t.placeholder?e.placeholderChoices.push(t):e.normalChoices.push(t),e}),{placeholderChoices:[],normalChoices:[]}),d=u.placeholderChoices,p=u.normalChoices;(this.config.shouldSort||this._isSearching)&&p.sort(c);var m=h.length,f=this._isSelectOneElement?[].concat(d,p):p;this._isSearching?m=o:a&&a>0&&!i&&(m=a);for(var v=0;v=n){var o=s?this._searchChoices(e):0;this.passedElement.triggerEvent(j,{value:e,resultCount:o})}else r&&(this._isSearching=!1,this._store.dispatch(be(!0)))}},r._canAddItem=function(e,t){var i=!0,n=\"function\"==typeof this.config.addItemText?this.config.addItemText(t):this.config.addItemText;if(!this._isSelectOneElement){var s=function(e,t,i){return void 0===i&&(i=\"value\"),e.some((function(e){return\"string\"==typeof t?e[i]===t.trim():e[i]===t}))}(e,t);this.config.maxItemCount>0&&this.config.maxItemCount<=e.length&&(i=!1,n=\"function\"==typeof this.config.maxItemText?this.config.maxItemText(this.config.maxItemCount):this.config.maxItemText),!this.config.duplicateItemsAllowed&&s&&i&&(i=!1,n=\"function\"==typeof this.config.uniqueItemText?this.config.uniqueItemText(t):this.config.uniqueItemText),this._isTextElement&&this.config.addItems&&i&&\"function\"==typeof this.config.addItemFilter&&!this.config.addItemFilter(t)&&(i=!1,n=\"function\"==typeof this.config.customAddItemText?this.config.customAddItemText(t):this.config.customAddItemText)}return{response:i,notice:n}},r._searchChoices=function(e){var t=\"string\"==typeof e?e.trim():e,i=\"string\"==typeof this._currentValue?this._currentValue.trim():this._currentValue;if(t.length<1&&t===i+\" \")return 0;var n=this._store.searchableChoices,r=t,o=[].concat(this.config.searchFields),a=Object.assign(this.config.fuseOptions,{keys:o}),c=new s.a(n,a).search(r);return this._currentValue=t,this._highlightPosition=0,this._isSearching=!0,this._store.dispatch(function(e){return{type:G,results:e}}(c)),c.length},r._addEventListeners=function(){var e=document.documentElement;e.addEventListener(\"touchend\",this._onTouchEnd,!0),this.containerOuter.element.addEventListener(\"keydown\",this._onKeyDown,!0),this.containerOuter.element.addEventListener(\"mousedown\",this._onMouseDown,!0),e.addEventListener(\"click\",this._onClick,{passive:!0}),e.addEventListener(\"touchmove\",this._onTouchMove,{passive:!0}),this.dropdown.element.addEventListener(\"mouseover\",this._onMouseOver,{passive:!0}),this._isSelectOneElement&&(this.containerOuter.element.addEventListener(\"focus\",this._onFocus,{passive:!0}),this.containerOuter.element.addEventListener(\"blur\",this._onBlur,{passive:!0})),this.input.element.addEventListener(\"keyup\",this._onKeyUp,{passive:!0}),this.input.element.addEventListener(\"focus\",this._onFocus,{passive:!0}),this.input.element.addEventListener(\"blur\",this._onBlur,{passive:!0}),this.input.element.form&&this.input.element.form.addEventListener(\"reset\",this._onFormReset,{passive:!0}),this.input.addEventListeners()},r._removeEventListeners=function(){var e=document.documentElement;e.removeEventListener(\"touchend\",this._onTouchEnd,!0),this.containerOuter.element.removeEventListener(\"keydown\",this._onKeyDown,!0),this.containerOuter.element.removeEventListener(\"mousedown\",this._onMouseDown,!0),e.removeEventListener(\"click\",this._onClick),e.removeEventListener(\"touchmove\",this._onTouchMove),this.dropdown.element.removeEventListener(\"mouseover\",this._onMouseOver),this._isSelectOneElement&&(this.containerOuter.element.removeEventListener(\"focus\",this._onFocus),this.containerOuter.element.removeEventListener(\"blur\",this._onBlur)),this.input.element.removeEventListener(\"keyup\",this._onKeyUp),this.input.element.removeEventListener(\"focus\",this._onFocus),this.input.element.removeEventListener(\"blur\",this._onBlur),this.input.element.form&&this.input.element.form.removeEventListener(\"reset\",this._onFormReset),this.input.removeEventListeners()},r._onKeyDown=function(e){var t,i=e.target,n=e.keyCode,s=e.ctrlKey,r=e.metaKey,o=this._store.activeItems,a=this.input.isFocussed,c=this.dropdown.isActive,l=this.itemList.hasChildren(),h=String.fromCharCode(n),u=J,d=Y,p=Z,m=Q,f=ee,v=te,g=ie,_=ne,b=se,y=s||r;!this._isTextElement&&/[a-zA-Z0-9-_ ]/.test(h)&&this.showDropdown();var E=((t={})[m]=this._onAKey,t[p]=this._onEnterKey,t[f]=this._onEscapeKey,t[v]=this._onDirectionKey,t[_]=this._onDirectionKey,t[g]=this._onDirectionKey,t[b]=this._onDirectionKey,t[d]=this._onDeleteKey,t[u]=this._onDeleteKey,t);E[n]&&E[n]({event:e,target:i,keyCode:n,metaKey:r,activeItems:o,hasFocusedInput:a,hasActiveDropdown:c,hasItems:l,hasCtrlDownKeyPressed:y})},r._onKeyUp=function(e){var t=e.target,i=e.keyCode,n=this.input.value,s=this._store.activeItems,r=this._canAddItem(s,n),o=J,a=Y;if(this._isTextElement)if(r.notice&&n){var c=this._getTemplate(\"notice\",r.notice);this.dropdown.element.innerHTML=c.outerHTML,this.showDropdown(!0)}else this.hideDropdown(!0);else{var l=(i===o||i===a)&&!t.value,h=!this._isTextElement&&this._isSearching,u=this._canSearch&&r.response;l&&h?(this._isSearching=!1,this._store.dispatch(be(!0))):u&&this._handleSearch(this.input.value)}this._canSearch=this.config.searchEnabled},r._onAKey=function(e){var t=e.hasItems;e.hasCtrlDownKeyPressed&&t&&(this._canSearch=!1,this.config.removeItems&&!this.input.value&&this.input.element===document.activeElement&&this.highlightAll())},r._onEnterKey=function(e){var t=e.event,i=e.target,n=e.activeItems,s=e.hasActiveDropdown,r=Z,o=i.hasAttribute(\"data-button\");if(this._isTextElement&&i.value){var a=this.input.value;this._canAddItem(n,a).response&&(this.hideDropdown(!0),this._addItem({value:a}),this._triggerChange(a),this.clearInput())}if(o&&(this._handleButtonAction(n,i),t.preventDefault()),s){var c=this.dropdown.getChild(\".\"+this.config.classNames.highlightedState);c&&(n[0]&&(n[0].keyCode=r),this._handleChoiceAction(n,c)),t.preventDefault()}else this._isSelectOneElement&&(this.showDropdown(),t.preventDefault())},r._onEscapeKey=function(e){e.hasActiveDropdown&&(this.hideDropdown(!0),this.containerOuter.focus())},r._onDirectionKey=function(e){var t,i,n,s=e.event,r=e.hasActiveDropdown,o=e.keyCode,a=e.metaKey,c=ie,l=ne,h=se;if(r||this._isSelectOneElement){this.showDropdown(),this._canSearch=!1;var u,d=o===c||o===h?1:-1,p=\"[data-choice-selectable]\";if(a||o===h||o===l)u=d>0?this.dropdown.element.querySelector(\"[data-choice-selectable]:last-of-type\"):this.dropdown.element.querySelector(p);else{var m=this.dropdown.element.querySelector(\".\"+this.config.classNames.highlightedState);u=m?function(e,t,i){if(void 0===i&&(i=1),e instanceof Element&&\"string\"==typeof t){for(var n=(i>0?\"next\":\"previous\")+\"ElementSibling\",s=e[n];s;){if(s.matches(t))return s;s=s[n]}return s}}(m,p,d):this.dropdown.element.querySelector(p)}u&&(t=u,i=this.choiceList.element,void 0===(n=d)&&(n=1),t&&(n>0?i.scrollTop+i.offsetHeight>=t.offsetTop+t.offsetHeight:t.offsetTop>=i.scrollTop)||this.choiceList.scrollToChildElement(u,d),this._highlightChoice(u)),s.preventDefault()}},r._onDeleteKey=function(e){var t=e.event,i=e.target,n=e.hasFocusedInput,s=e.activeItems;!n||i.value||this._isSelectOneElement||(this._handleBackspace(s),t.preventDefault())},r._onTouchMove=function(){this._wasTap&&(this._wasTap=!1)},r._onTouchEnd=function(e){var t=(e||e.touches[0]).target;this._wasTap&&this.containerOuter.element.contains(t)&&((t===this.containerOuter.element||t===this.containerInner.element)&&(this._isTextElement?this.input.focus():this._isSelectMultipleElement&&this.showDropdown()),e.stopPropagation()),this._wasTap=!0},r._onMouseDown=function(e){var t=e.target;if(t instanceof HTMLElement){if(we&&this.choiceList.element.contains(t)){var i=this.choiceList.element.firstElementChild,n=\"ltr\"===this._direction?e.offsetX>=i.offsetWidth:e.offsetX0&&this.unhighlightAll(),this.containerOuter.removeFocusState(),this.hideDropdown(!0))},r._onFocus=function(e){var t,i=this,n=e.target;this.containerOuter.element.contains(n)&&((t={}).text=function(){n===i.input.element&&i.containerOuter.addFocusState()},t[\"select-one\"]=function(){i.containerOuter.addFocusState(),n===i.input.element&&i.showDropdown(!0)},t[\"select-multiple\"]=function(){n===i.input.element&&(i.showDropdown(!0),i.containerOuter.addFocusState())},t)[this.passedElement.element.type]()},r._onBlur=function(e){var t=this,i=e.target;if(this.containerOuter.element.contains(i)&&!this._isScrollingOnIe){var n,s=this._store.activeItems.some((function(e){return e.highlighted}));((n={}).text=function(){i===t.input.element&&(t.containerOuter.removeFocusState(),s&&t.unhighlightAll(),t.hideDropdown(!0))},n[\"select-one\"]=function(){t.containerOuter.removeFocusState(),(i===t.input.element||i===t.containerOuter.element&&!t._canSearch)&&t.hideDropdown(!0)},n[\"select-multiple\"]=function(){i===t.input.element&&(t.containerOuter.removeFocusState(),t.hideDropdown(!0),s&&t.unhighlightAll())},n)[this.passedElement.element.type]()}else this._isScrollingOnIe=!1,this.input.element.focus()},r._onFormReset=function(){this._store.dispatch({type:\"RESET_TO\",state:this._initialState})},r._highlightChoice=function(e){var t=this;void 0===e&&(e=null);var i=Array.from(this.dropdown.element.querySelectorAll(\"[data-choice-selectable]\"));if(i.length){var n=e;Array.from(this.dropdown.element.querySelectorAll(\".\"+this.config.classNames.highlightedState)).forEach((function(e){e.classList.remove(t.config.classNames.highlightedState),e.setAttribute(\"aria-selected\",\"false\")})),n?this._highlightPosition=i.indexOf(n):(n=i.length>this._highlightPosition?i[this._highlightPosition]:i[i.length-1])||(n=i[0]),n.classList.add(this.config.classNames.highlightedState),n.setAttribute(\"aria-selected\",\"true\"),this.passedElement.triggerEvent(B,{el:n}),this.dropdown.isActive&&(this.input.setActiveDescendant(n.id),this.containerOuter.setActiveDescendant(n.id))}},r._addItem=function(e){var t=e.value,i=e.label,n=void 0===i?null:i,s=e.choiceId,r=void 0===s?-1:s,o=e.groupId,a=void 0===o?-1:o,c=e.customProperties,l=void 0===c?null:c,h=e.placeholder,u=void 0!==h&&h,d=e.keyCode,p=void 0===d?null:d,m=\"string\"==typeof t?t.trim():t,f=p,v=l,g=this._store.items,_=n||m,b=r||-1,y=a>=0?this._store.getGroupById(a):null,E=g?g.length+1:1;return this.config.prependValue&&(m=this.config.prependValue+m.toString()),this.config.appendValue&&(m+=this.config.appendValue.toString()),this._store.dispatch(function(e){var t=e.value,i=e.label,n=e.id,s=e.choiceId,r=e.groupId,o=e.customProperties,a=e.placeholder,c=e.keyCode;return{type:W,value:t,label:i,id:n,choiceId:s,groupId:r,customProperties:o,placeholder:a,keyCode:c}}({value:m,label:_,id:E,choiceId:b,groupId:a,customProperties:l,placeholder:u,keyCode:f})),this._isSelectOneElement&&this.removeActiveItems(E),this.passedElement.triggerEvent(K,{id:E,value:m,label:_,customProperties:v,groupValue:y&&y.value?y.value:void 0,keyCode:f}),this},r._removeItem=function(e){if(!e||!E(\"Object\",e))return this;var t=e.id,i=e.value,n=e.label,s=e.choiceId,r=e.groupId,o=r>=0?this._store.getGroupById(r):null;return this._store.dispatch(function(e,t){return{type:X,id:e,choiceId:t}}(t,s)),o&&o.value?this.passedElement.triggerEvent(R,{id:t,value:i,label:n,groupValue:o.value}):this.passedElement.triggerEvent(R,{id:t,value:i,label:n}),this},r._addChoice=function(e){var t=e.value,i=e.label,n=void 0===i?null:i,s=e.isSelected,r=void 0!==s&&s,o=e.isDisabled,a=void 0!==o&&o,c=e.groupId,l=void 0===c?-1:c,h=e.customProperties,u=void 0===h?null:h,d=e.placeholder,p=void 0!==d&&d,m=e.keyCode,f=void 0===m?null:m;if(null!=t){var v=this._store.choices,g=n||t,_=v?v.length+1:1,b=this._baseId+\"-\"+this._idNames.itemChoice+\"-\"+_;this._store.dispatch(function(e){var t=e.value,i=e.label,n=e.id,s=e.groupId,r=e.disabled,o=e.elementId,a=e.customProperties,c=e.placeholder,l=e.keyCode;return{type:V,value:t,label:i,id:n,groupId:s,disabled:r,elementId:o,customProperties:a,placeholder:c,keyCode:l}}({id:_,groupId:l,elementId:b,value:t,label:g,disabled:a,customProperties:u,placeholder:p,keyCode:f})),r&&this._addItem({value:t,label:g,choiceId:_,customProperties:u,placeholder:p,keyCode:f})}},r._addGroup=function(e){var t=this,i=e.group,n=e.id,s=e.valueKey,r=void 0===s?\"value\":s,o=e.labelKey,a=void 0===o?\"label\":o,c=E(\"Object\",i)?i.choices:Array.from(i.getElementsByTagName(\"OPTION\")),l=n||Math.floor((new Date).valueOf()*Math.random()),h=!!i.disabled&&i.disabled;c?(this._store.dispatch(Ee({value:i.label,id:l,active:!0,disabled:h})),c.forEach((function(e){var i=e.disabled||e.parentNode&&e.parentNode.disabled;t._addChoice({value:e[r],label:E(\"Object\",e)?e[a]:e.innerHTML,isSelected:e.selected,isDisabled:i,groupId:l,customProperties:e.customProperties,placeholder:e.placeholder})}))):this._store.dispatch(Ee({value:i.label,id:i.id,active:!1,disabled:i.disabled}))},r._getTemplate=function(e){var t;if(!e)return null;for(var i=this.config.classNames,n=arguments.length,s=new Array(n>1?n-1:0),r=1;r{var e;return this.input_el.name=null!==(e=this.model.name)&&void 0!==e?e:\"\"})),this.connect(this.model.properties.value.change,(()=>{this.input_el.value=this.format_value,this.old_value=this.input_el.value})),this.connect(this.model.properties.low.change,(()=>{const{value:e,low:t,high:l}=this.model;null!=t&&null!=l&&(0,p.assert)(t<=l,\"Invalid bounds, low must be inferior to high\"),null!=e&&null!=t&&e{const{value:e,low:t,high:l}=this.model;null!=t&&null!=l&&(0,p.assert)(l>=t,\"Invalid bounds, high must be superior to low\"),null!=e&&null!=l&&e>l&&(this.model.value=l)})),this.connect(this.model.properties.high.change,(()=>this.input_el.placeholder=this.model.placeholder)),this.connect(this.model.properties.disabled.change,(()=>this.input_el.disabled=this.model.disabled)),this.connect(this.model.properties.placeholder.change,(()=>this.input_el.placeholder=this.model.placeholder))}get format_value(){return null!=this.model.value?this.model.pretty(this.model.value):\"\"}_set_input_filter(e){this.input_el.addEventListener(\"input\",(()=>{const{selectionStart:t,selectionEnd:l}=this.input_el;if(e(this.input_el.value))this.old_value=this.input_el.value;else{const e=this.old_value.length-this.input_el.value.length;this.input_el.value=this.old_value,t&&l&&this.input_el.setSelectionRange(t-1,l+e)}}))}render(){super.render(),this.input_el=(0,r.input)({type:\"text\",class:_.input,name:this.model.name,value:this.format_value,disabled:this.model.disabled,placeholder:this.model.placeholder}),this.old_value=this.format_value,this.set_input_filter(),this.input_el.addEventListener(\"change\",(()=>this.change_input())),this.input_el.addEventListener(\"focusout\",(()=>this.input_el.value=this.format_value)),this.group_el.appendChild(this.input_el)}set_input_filter(){\"int\"==this.model.mode?this._set_input_filter((e=>m.test(e))):\"float\"==this.model.mode&&this._set_input_filter((e=>c.test(e)))}bound_value(e){let t=e;const{low:l,high:i}=this.model;return t=null!=l?Math.max(l,t):t,t=null!=i?Math.min(i,t):t,t}get value(){let e=\"\"!=this.input_el.value?Number(this.input_el.value):null;return null!=e&&(e=this.bound_value(e)),e}change_input(){null==this.value?this.model.value=null:Number.isNaN(this.value)||(this.model.value=this.value)}}l.NumericInputView=v,v.__name__=\"NumericInputView\";class g extends o.InputWidget{constructor(e){super(e)}_formatter(e,t){return(0,d.isString)(t)?h.format(e,t):t.doFormat([e],{loc:0})[0]}pretty(e){return null!=this.format?this._formatter(e,this.format):`${e}`}}l.NumericInput=g,u=g,g.__name__=\"NumericInput\",u.prototype.default_view=v,u.define((({Number:e,String:t,Enum:l,Ref:i,Or:n,Nullable:s})=>({value:[s(e),null],placeholder:[t,\"\"],mode:[l(\"int\",\"float\"),\"int\"],format:[s(n(t,i(a.TickFormatter))),null],low:[s(e),null],high:[s(e),null]})))},\n", + " 479: function _(e,t,r,s,n){var a;s();const o=e(468),_=e(43);class p extends o.MarkupView{render(){super.render();const e=(0,_.pre)({style:{overflow:\"auto\"}},this.model.text);this.markup_el.appendChild(e)}}r.PreTextView=p,p.__name__=\"PreTextView\";class u extends o.Markup{constructor(e){super(e)}}r.PreText=u,a=u,u.__name__=\"PreText\",a.prototype.default_view=p},\n", + " 480: function _(t,o,e,a,i){a();const n=t(1);var u;const s=t(452),c=t(43),_=(0,n.__importStar)(t(318));class r extends s.ButtonGroupView{change_active(t){this.model.active!==t&&(this.model.active=t)}_update_active(){const{active:t}=this.model;this._buttons.forEach(((o,e)=>{(0,c.classes)(o).toggle(_.active,t===e)}))}}e.RadioButtonGroupView=r,r.__name__=\"RadioButtonGroupView\";class l extends s.ButtonGroup{constructor(t){super(t)}}e.RadioButtonGroup=l,u=l,l.__name__=\"RadioButtonGroup\",u.prototype.default_view=r,u.define((({Int:t,Nullable:o})=>({active:[o(t),null]})))},\n", + " 481: function _(e,n,i,t,a){t();const s=e(1);var l;const o=e(43),d=e(34),p=e(455),r=(0,s.__importStar)(e(449));class u extends p.InputGroupView{render(){super.render();const e=(0,o.div)({class:[r.input_group,this.model.inline?r.inline:null]});this.el.appendChild(e);const n=(0,d.uniqueId)(),{active:i,labels:t}=this.model;this._inputs=[];for(let a=0;athis.change_active(a))),this._inputs.push(s),this.model.disabled&&(s.disabled=!0),a==i&&(s.checked=!0);const l=(0,o.label)(s,(0,o.span)(t[a]));e.appendChild(l)}}change_active(e){this.model.active=e}}i.RadioGroupView=u,u.__name__=\"RadioGroupView\";class c extends p.InputGroup{constructor(e){super(e)}}i.RadioGroup=c,l=c,c.__name__=\"RadioGroup\",l.prototype.default_view=u,l.define((({Boolean:e,Int:n,String:i,Array:t,Nullable:a})=>({active:[a(n),null],labels:[t(i),[]],inline:[e,!1]})))},\n", + " 482: function _(e,r,t,a,i){a();var n;const o=(0,e(1).__importStar)(e(153)),s=e(461),_=e(8);class d extends s.AbstractRangeSliderView{}t.RangeSliderView=d,d.__name__=\"RangeSliderView\";class c extends s.AbstractSlider{constructor(e){super(e),this.behaviour=\"drag\",this.connected=[!1,!0,!1]}_formatter(e,r){return(0,_.isString)(r)?o.format(e,r):r.compute(e)}}t.RangeSlider=c,n=c,c.__name__=\"RangeSlider\",n.prototype.default_view=d,n.override({format:\"0[.]00\"})},\n", + " 483: function _(e,t,n,s,i){s();const l=e(1);var u;const a=e(43),o=e(8),p=e(13),_=e(448),r=(0,l.__importStar)(e(449));class c extends _.InputWidgetView{constructor(){super(...arguments),this._known_values=new Set}connect_signals(){super.connect_signals();const{value:e,options:t}=this.model.properties;this.on_change(e,(()=>{this._update_value()})),this.on_change(t,(()=>{(0,a.empty)(this.input_el),(0,a.append)(this.input_el,...this.options_el()),this._update_value()}))}options_el(){const{_known_values:e}=this;function t(t){return t.map((t=>{let n,s;return(0,o.isString)(t)?n=s=t:[n,s]=t,e.add(n),(0,a.option)({value:n},s)}))}e.clear();const{options:n}=this.model;return(0,o.isArray)(n)?t(n):(0,p.entries)(n).map((([e,n])=>(0,a.optgroup)({label:e},t(n))))}render(){super.render(),this.input_el=(0,a.select)({class:r.input,name:this.model.name,disabled:this.model.disabled},this.options_el()),this._update_value(),this.input_el.addEventListener(\"change\",(()=>this.change_input())),this.group_el.appendChild(this.input_el)}change_input(){const e=this.input_el.value;this.model.value=e,super.change_input()}_update_value(){const{value:e}=this.model;this._known_values.has(e)?this.input_el.value=e:this.input_el.removeAttribute(\"value\")}}n.SelectView=c,c.__name__=\"SelectView\";class h extends _.InputWidget{constructor(e){super(e)}}n.Select=h,u=h,h.__name__=\"Select\",u.prototype.default_view=c,u.define((({String:e,Array:t,Tuple:n,Dict:s,Or:i})=>{const l=t(i(e,n(e,e)));return{value:[e,\"\"],options:[i(l,s(l)),[]]}}))},\n", + " 484: function _(e,t,r,i,a){i();var o;const s=(0,e(1).__importStar)(e(153)),_=e(461),n=e(8);class c extends _.AbstractSliderView{}r.SliderView=c,c.__name__=\"SliderView\";class d extends _.AbstractSlider{constructor(e){super(e),this.behaviour=\"tap\",this.connected=[!0,!1]}_formatter(e,t){return(0,n.isString)(t)?s.format(e,t):t.compute(e)}}r.Slider=d,o=d,d.__name__=\"Slider\",o.prototype.default_view=c,o.override({format:\"0[.]00\"})},\n", + " 485: function _(e,t,i,n,s){var l;n();const o=e(478),r=e(43),{min:a,max:h,floor:_,abs:u}=Math;function d(e){return _(e)!==e?e.toFixed(16).replace(/0+$/,\"\").split(\".\")[1].length:0}class p extends o.NumericInputView{*buttons(){yield this.btn_up_el,yield this.btn_down_el}initialize(){super.initialize(),this._handles={interval:void 0,timeout:void 0},this._interval=200}connect_signals(){super.connect_signals();const e=this.model.properties;this.on_change(e.disabled,(()=>{for(const e of this.buttons())(0,r.toggle_attribute)(e,\"disabled\",this.model.disabled)}))}render(){super.render(),this.wrapper_el=(0,r.div)({class:\"bk-spin-wrapper\"}),this.group_el.replaceChild(this.wrapper_el,this.input_el),this.btn_up_el=(0,r.button)({class:\"bk-spin-btn bk-spin-btn-up\"}),this.btn_down_el=(0,r.button)({class:\"bk-spin-btn bk-spin-btn-down\"}),this.wrapper_el.appendChild(this.input_el),this.wrapper_el.appendChild(this.btn_up_el),this.wrapper_el.appendChild(this.btn_down_el);for(const e of this.buttons())(0,r.toggle_attribute)(e,\"disabled\",this.model.disabled),e.addEventListener(\"mousedown\",(e=>this._btn_mouse_down(e))),e.addEventListener(\"mouseup\",(()=>this._btn_mouse_up())),e.addEventListener(\"mouseleave\",(()=>this._btn_mouse_leave()));this.input_el.addEventListener(\"keydown\",(e=>this._input_key_down(e))),this.input_el.addEventListener(\"keyup\",(()=>this.model.value_throttled=this.model.value)),this.input_el.addEventListener(\"wheel\",(e=>this._input_mouse_wheel(e))),this.input_el.addEventListener(\"wheel\",function(e,t,i=!1){let n;return function(...s){const l=this,o=i&&void 0===n;void 0!==n&&clearTimeout(n),n=setTimeout((function(){n=void 0,i||e.apply(l,s)}),t),o&&e.apply(l,s)}}((()=>{this.model.value_throttled=this.model.value}),this.model.wheel_wait,!1))}get precision(){const{low:e,high:t,step:i}=this.model,n=d;return h(n(u(null!=e?e:0)),n(u(null!=t?t:0)),n(u(i)))}remove(){this._stop_incrementation(),super.remove()}_start_incrementation(e){clearInterval(this._handles.interval),this._counter=0;const{step:t}=this.model,i=e=>{if(this._counter+=1,this._counter%5==0){const t=Math.floor(this._counter/5);t<10?(clearInterval(this._handles.interval),this._handles.interval=setInterval((()=>i(e)),this._interval/(t+1))):t>=10&&t<=13&&(clearInterval(this._handles.interval),this._handles.interval=setInterval((()=>i(2*e)),this._interval/10))}this.increment(e)};this._handles.interval=setInterval((()=>i(e*t)),this._interval)}_stop_incrementation(){clearTimeout(this._handles.timeout),this._handles.timeout=void 0,clearInterval(this._handles.interval),this._handles.interval=void 0,this.model.value_throttled=this.model.value}_btn_mouse_down(e){e.preventDefault();const t=e.currentTarget===this.btn_up_el?1:-1;this.increment(t*this.model.step),this.input_el.focus(),this._handles.timeout=setTimeout((()=>this._start_incrementation(t)),this._interval)}_btn_mouse_up(){this._stop_incrementation()}_btn_mouse_leave(){this._stop_incrementation()}_input_mouse_wheel(e){if(document.activeElement===this.input_el){e.preventDefault();const t=e.deltaY>0?-1:1;this.increment(t*this.model.step)}}_input_key_down(e){switch(e.keyCode){case r.Keys.Up:return e.preventDefault(),this.increment(this.model.step);case r.Keys.Down:return e.preventDefault(),this.increment(-this.model.step);case r.Keys.PageUp:return e.preventDefault(),this.increment(this.model.page_step_multiplier*this.model.step);case r.Keys.PageDown:return e.preventDefault(),this.increment(-this.model.page_step_multiplier*this.model.step)}}adjust_to_precision(e){return this.bound_value(Number(e.toFixed(this.precision)))}increment(e){const{low:t,high:i}=this.model;null==this.model.value?e>0?this.model.value=null!=t?t:null!=i?a(0,i):0:e<0&&(this.model.value=null!=i?i:null!=t?h(t,0):0):this.model.value=this.adjust_to_precision(this.model.value+e)}change_input(){super.change_input(),this.model.value_throttled=this.model.value}}i.SpinnerView=p,p.__name__=\"SpinnerView\";class m extends o.NumericInput{constructor(e){super(e)}}i.Spinner=m,l=m,m.__name__=\"Spinner\",l.prototype.default_view=p,l.define((({Number:e,Nullable:t})=>({value_throttled:[t(e),null],step:[e,1],page_step_multiplier:[e,10],wheel_wait:[e,100]}))),l.override({mode:\"float\"})},\n", + " 486: function _(e,t,s,n,i){n();const o=e(1);var r;const c=e(447),l=e(43),p=(0,o.__importStar)(e(449));class _ extends c.TextLikeInputView{connect_signals(){super.connect_signals(),this.connect(this.model.properties.rows.change,(()=>this.input_el.rows=this.model.rows)),this.connect(this.model.properties.cols.change,(()=>this.input_el.cols=this.model.cols))}_render_input(){this.input_el=(0,l.textarea)({class:p.input})}render(){super.render(),this.input_el.cols=this.model.cols,this.input_el.rows=this.model.rows}}s.TextAreaInputView=_,_.__name__=\"TextAreaInputView\";class a extends c.TextLikeInput{constructor(e){super(e)}}s.TextAreaInput=a,r=a,a.__name__=\"TextAreaInput\",r.prototype.default_view=_,r.define((({Int:e})=>({cols:[e,20],rows:[e,2]}))),r.override({max_length:500})},\n", + " 487: function _(e,t,s,c,i){c();const o=e(1);var a;const n=e(441),l=e(43),_=(0,o.__importStar)(e(318));class r extends n.AbstractButtonView{connect_signals(){super.connect_signals(),this.connect(this.model.properties.active.change,(()=>this._update_active()))}render(){super.render(),this._update_active()}click(){this.model.active=!this.model.active,super.click()}_update_active(){(0,l.classes)(this.button_el).toggle(_.active,this.model.active)}}s.ToggleView=r,r.__name__=\"ToggleView\";class g extends n.AbstractButton{constructor(e){super(e)}}s.Toggle=g,a=g,g.__name__=\"Toggle\",a.prototype.default_view=r,a.define((({Boolean:e})=>({active:[e,!1]}))),a.override({label:\"Toggle\"})},\n", + " }, 439, {\"models/widgets/main\":439,\"models/widgets/index\":440,\"models/widgets/abstract_button\":441,\"models/widgets/control\":442,\"models/widgets/widget\":512,\"models/widgets/abstract_icon\":444,\"models/widgets/autocomplete_input\":445,\"models/widgets/text_input\":446,\"models/widgets/text_like_input\":447,\"models/widgets/input_widget\":448,\"styles/widgets/inputs.css\":449,\"models/widgets/button\":450,\"models/widgets/checkbox_button_group\":451,\"models/widgets/button_group\":452,\"models/widgets/oriented_control\":453,\"models/widgets/checkbox_group\":454,\"models/widgets/input_group\":455,\"models/widgets/color_picker\":456,\"models/widgets/date_picker\":457,\"styles/widgets/flatpickr.css\":459,\"models/widgets/date_range_slider\":460,\"models/widgets/abstract_slider\":461,\"styles/widgets/sliders.css\":463,\"styles/widgets/nouislider.css\":464,\"models/widgets/date_slider\":465,\"models/widgets/datetime_range_slider\":466,\"models/widgets/div\":467,\"models/widgets/markup\":468,\"styles/clearfix.css\":469,\"models/widgets/dropdown\":470,\"models/widgets/file_input\":471,\"models/widgets/multiselect\":472,\"models/widgets/paragraph\":473,\"models/widgets/password_input\":474,\"models/widgets/multichoice\":475,\"styles/widgets/choices.css\":477,\"models/widgets/numeric_input\":478,\"models/widgets/pretext\":479,\"models/widgets/radio_button_group\":480,\"models/widgets/radio_group\":481,\"models/widgets/range_slider\":482,\"models/widgets/selectbox\":483,\"models/widgets/slider\":484,\"models/widgets/spinner\":485,\"models/widgets/textarea_input\":486,\"models/widgets/toggle\":487}, {});});\n", + "\n", + " /* END bokeh-widgets.min.js */\n", + " },\n", + " function(Bokeh) {\n", + " /* BEGIN bokeh-tables.min.js */\n", + " /*!\n", + " * Copyright (c) 2012 - 2022, Anaconda, Inc., and Bokeh Contributors\n", + " * All rights reserved.\n", + " * \n", + " * Redistribution and use in source and binary forms, with or without modification,\n", + " * are permitted provided that the following conditions are met:\n", + " * \n", + " * Redistributions of source code must retain the above copyright notice,\n", + " * this list of conditions and the following disclaimer.\n", + " * \n", + " * Redistributions in binary form must reproduce the above copyright notice,\n", + " * this list of conditions and the following disclaimer in the documentation\n", + " * and/or other materials provided with the distribution.\n", + " * \n", + " * Neither the name of Anaconda nor the names of any contributors\n", + " * may be used to endorse or promote products derived from this software\n", + " * without specific prior written permission.\n", + " * \n", + " * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\n", + " * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n", + " * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n", + " * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE\n", + " * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n", + " * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n", + " * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n", + " * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\n", + " * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n", + " * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF\n", + " * THE POSSIBILITY OF SUCH DAMAGE.\n", + " */\n", + " (function(root, factory) {\n", + " factory(root[\"Bokeh\"], \"2.4.3\");\n", + " })(this, function(Bokeh, version) {\n", + " let define;\n", + " return (function(modules, entry, aliases, externals) {\n", + " const bokeh = typeof Bokeh !== \"undefined\" && (version != null ? Bokeh[version] : Bokeh);\n", + " if (bokeh != null) {\n", + " return bokeh.register_plugin(modules, entry, aliases);\n", + " } else {\n", + " throw new Error(\"Cannot find Bokeh \" + version + \". You have to load it prior to loading plugins.\");\n", + " }\n", + " })\n", + " ({\n", + " 488: function _(t,e,o,r,s){r();const _=(0,t(1).__importStar)(t(489));o.Tables=_;(0,t(7).register_models)(_)},\n", + " 489: function _(g,a,r,e,t){e();const o=g(1);(0,o.__exportStar)(g(490),r),(0,o.__exportStar)(g(493),r),t(\"DataTable\",g(496).DataTable),t(\"TableColumn\",g(514).TableColumn),t(\"TableWidget\",g(513).TableWidget);var n=g(516);t(\"AvgAggregator\",n.AvgAggregator),t(\"MinAggregator\",n.MinAggregator),t(\"MaxAggregator\",n.MaxAggregator),t(\"SumAggregator\",n.SumAggregator);var A=g(517);t(\"GroupingInfo\",A.GroupingInfo),t(\"DataCube\",A.DataCube)},\n", + " 490: function _(e,t,i,s,a){s();const r=e(1);var l,n,u,d,o,p,_,c,h;const E=e(43),V=e(226),m=e(53),f=e(491),v=(0,r.__importStar)(e(492));class w extends V.DOMView{constructor(e){const{model:t,parent:i}=e.column;super(Object.assign({model:t,parent:i},e)),this.args=e,this.initialize(),this.render()}get emptyValue(){return null}initialize(){super.initialize(),this.inputEl=this._createInput(),this.defaultValue=null}async lazy_initialize(){throw new Error(\"unsupported\")}css_classes(){return super.css_classes().concat(v.cell_editor)}render(){super.render(),this.args.container.append(this.el),this.el.appendChild(this.inputEl),this.renderEditor(),this.disableNavigation()}renderEditor(){}disableNavigation(){this.inputEl.addEventListener(\"keydown\",(e=>{switch(e.keyCode){case E.Keys.Left:case E.Keys.Right:case E.Keys.Up:case E.Keys.Down:case E.Keys.PageUp:case E.Keys.PageDown:e.stopImmediatePropagation()}}))}destroy(){this.remove()}focus(){this.inputEl.focus()}show(){}hide(){}position(){}getValue(){return this.inputEl.value}setValue(e){this.inputEl.value=e}serializeValue(){return this.getValue()}isValueChanged(){return!(\"\"==this.getValue()&&null==this.defaultValue)&&this.getValue()!==this.defaultValue}applyValue(e,t){const i=this.args.grid.getData(),s=i.index.indexOf(e[f.DTINDEX_NAME]);i.setField(s,this.args.column.field,t)}loadValue(e){const t=e[this.args.column.field];this.defaultValue=null!=t?t:this.emptyValue,this.setValue(this.defaultValue)}validateValue(e){if(this.args.column.validator){const t=this.args.column.validator(e);if(!t.valid)return t}return{valid:!0,msg:null}}validate(){return this.validateValue(this.getValue())}}i.CellEditorView=w,w.__name__=\"CellEditorView\";class g extends m.Model{}i.CellEditor=g,g.__name__=\"CellEditor\";class x extends w{get emptyValue(){return\"\"}_createInput(){return(0,E.input)({type:\"text\"})}renderEditor(){this.inputEl.focus(),this.inputEl.select()}loadValue(e){super.loadValue(e),this.inputEl.defaultValue=this.defaultValue,this.inputEl.select()}}i.StringEditorView=x,x.__name__=\"StringEditorView\";class y extends g{}i.StringEditor=y,l=y,y.__name__=\"StringEditor\",l.prototype.default_view=x,l.define((({String:e,Array:t})=>({completions:[t(e),[]]})));class I extends w{_createInput(){return(0,E.textarea)()}renderEditor(){this.inputEl.focus(),this.inputEl.select()}}i.TextEditorView=I,I.__name__=\"TextEditorView\";class b extends g{}i.TextEditor=b,n=b,b.__name__=\"TextEditor\",n.prototype.default_view=I;class N extends w{_createInput(){return(0,E.select)()}renderEditor(){for(const e of this.model.options)this.inputEl.appendChild((0,E.option)({value:e},e));this.focus()}}i.SelectEditorView=N,N.__name__=\"SelectEditorView\";class C extends g{}i.SelectEditor=C,u=C,C.__name__=\"SelectEditor\",u.prototype.default_view=N,u.define((({String:e,Array:t})=>({options:[t(e),[]]})));class D extends w{_createInput(){return(0,E.input)({type:\"text\"})}}i.PercentEditorView=D,D.__name__=\"PercentEditorView\";class S extends g{}i.PercentEditor=S,d=S,S.__name__=\"PercentEditor\",d.prototype.default_view=D;class k extends w{_createInput(){return(0,E.input)({type:\"checkbox\"})}renderEditor(){this.focus()}loadValue(e){this.defaultValue=!!e[this.args.column.field],this.inputEl.checked=this.defaultValue}serializeValue(){return this.inputEl.checked}}i.CheckboxEditorView=k,k.__name__=\"CheckboxEditorView\";class z extends g{}i.CheckboxEditor=z,o=z,z.__name__=\"CheckboxEditor\",o.prototype.default_view=k;class P extends w{_createInput(){return(0,E.input)({type:\"text\"})}renderEditor(){this.inputEl.focus(),this.inputEl.select()}remove(){super.remove()}serializeValue(){var e;return null!==(e=parseInt(this.getValue(),10))&&void 0!==e?e:0}loadValue(e){super.loadValue(e),this.inputEl.defaultValue=this.defaultValue,this.inputEl.select()}validateValue(e){return isNaN(e)?{valid:!1,msg:\"Please enter a valid integer\"}:super.validateValue(e)}}i.IntEditorView=P,P.__name__=\"IntEditorView\";class T extends g{}i.IntEditor=T,p=T,T.__name__=\"IntEditor\",p.prototype.default_view=P,p.define((({Int:e})=>({step:[e,1]})));class K extends w{_createInput(){return(0,E.input)({type:\"text\"})}renderEditor(){this.inputEl.focus(),this.inputEl.select()}remove(){super.remove()}serializeValue(){var e;return null!==(e=parseFloat(this.getValue()))&&void 0!==e?e:0}loadValue(e){super.loadValue(e),this.inputEl.defaultValue=this.defaultValue,this.inputEl.select()}validateValue(e){return isNaN(e)?{valid:!1,msg:\"Please enter a valid number\"}:super.validateValue(e)}}i.NumberEditorView=K,K.__name__=\"NumberEditorView\";class A extends g{}i.NumberEditor=A,_=A,A.__name__=\"NumberEditor\",_.prototype.default_view=K,_.define((({Number:e})=>({step:[e,.01]})));class M extends w{_createInput(){return(0,E.input)({type:\"text\"})}}i.TimeEditorView=M,M.__name__=\"TimeEditorView\";class O extends g{}i.TimeEditor=O,c=O,O.__name__=\"TimeEditor\",c.prototype.default_view=M;class F extends w{_createInput(){return(0,E.input)({type:\"text\"})}get emptyValue(){return new Date}renderEditor(){this.inputEl.focus(),this.inputEl.select()}destroy(){super.destroy()}show(){super.show()}hide(){super.hide()}position(){return super.position()}getValue(){}setValue(e){}}i.DateEditorView=F,F.__name__=\"DateEditorView\";class L extends g{}i.DateEditor=L,h=L,L.__name__=\"DateEditor\",h.prototype.default_view=F},\n", + " 491: function _(_,n,i,t,d){t(),i.DTINDEX_NAME=\"__bkdt_internal_index__\"},\n", + " 492: function _(e,l,o,t,r){t(),o.root=\"bk-root\",o.data_table=\"bk-data-table\",o.cell_special_defaults=\"bk-cell-special-defaults\",o.cell_select=\"bk-cell-select\",o.cell_index=\"bk-cell-index\",o.header_index=\"bk-header-index\",o.cell_editor=\"bk-cell-editor\",o.cell_editor_completion=\"bk-cell-editor-completion\",o.default='.bk-root .bk-data-table{box-sizing:content-box;font-size:11px;}.bk-root .bk-data-table input[type=\"checkbox\"]{margin-left:4px;margin-right:4px;}.bk-root .bk-cell-special-defaults{border-right-color:silver;border-right-style:solid;background:#f5f5f5;}.bk-root .bk-cell-select{border-right-color:silver;border-right-style:solid;background:#f5f5f5;}.bk-root .slick-cell.bk-cell-index{border-right-color:silver;border-right-style:solid;background:#f5f5f5;text-align:right;background:#f0f0f0;color:#909090;}.bk-root .bk-header-index .slick-column-name{float:right;}.bk-root .slick-row.selected .bk-cell-index{background-color:transparent;}.bk-root .slick-row.odd{background:#f0f0f0;}.bk-root .slick-cell{padding-left:4px;padding-right:4px;border-right-color:transparent;border:0.25px solid transparent;}.bk-root .slick-cell .bk{line-height:inherit;}.bk-root .slick-cell.active{border-style:dashed;}.bk-root .slick-cell.selected{background-color:#F0F8FF;}.bk-root .slick-cell.editable{padding-left:0;padding-right:0;}.bk-root .bk-cell-editor{display:contents;}.bk-root .bk-cell-editor input,.bk-root .bk-cell-editor select{width:100%;height:100%;border:0;margin:0;padding:0;outline:0;background:transparent;vertical-align:baseline;}.bk-root .bk-cell-editor input{padding-left:4px;padding-right:4px;}.bk-root .bk-cell-editor-completion{font-size:11px;}'},\n", + " 493: function _(t,e,r,n,o){n();const a=t(1);var s,i,l,c,u,m;const _=(0,a.__importDefault)(t(151)),d=(0,a.__importStar)(t(153)),f=t(494),g=t(43),F=t(20),h=t(8),p=t(34),S=t(22),x=t(53);class b extends x.Model{constructor(t){super(t)}doFormat(t,e,r,n,o){return null==r?\"\":`${r}`.replace(/&/g,\"&\").replace(//g,\">\")}}r.CellFormatter=b,b.__name__=\"CellFormatter\";class M extends b{constructor(t){super(t)}doFormat(t,e,r,n,o){const{font_style:a,text_align:s,text_color:i}=this,l=(0,g.div)(null==r?\"\":`${r}`);switch(a){case\"bold\":l.style.fontWeight=\"bold\";break;case\"italic\":l.style.fontStyle=\"italic\"}return null!=s&&(l.style.textAlign=s),null!=i&&(l.style.color=(0,S.color2css)(i)),l.outerHTML}}r.StringFormatter=M,s=M,M.__name__=\"StringFormatter\",s.define((({Color:t,Nullable:e,String:r})=>({font_style:[F.FontStyle,\"normal\"],text_align:[F.TextAlign,\"left\"],text_color:[e(t),null],nan_format:[r,\"-\"]})));class w extends M{constructor(t){super(t)}get scientific_limit_low(){return 10**this.power_limit_low}get scientific_limit_high(){return 10**this.power_limit_high}doFormat(t,e,r,n,o){const a=Math.abs(r)<=this.scientific_limit_low||Math.abs(r)>=this.scientific_limit_high;let s=this.precision;return s<1&&(s=1),r=null==r||isNaN(r)?this.nan_format:0==r?(0,p.to_fixed)(r,1):a?r.toExponential(s):(0,p.to_fixed)(r,s),super.doFormat(t,e,r,n,o)}}r.ScientificFormatter=w,i=w,w.__name__=\"ScientificFormatter\",i.define((({Number:t})=>({precision:[t,10],power_limit_high:[t,5],power_limit_low:[t,-3]})));class C extends M{constructor(t){super(t)}doFormat(t,e,r,n,o){const{format:a,language:s,nan_format:i}=this,l=(()=>{switch(this.rounding){case\"round\":case\"nearest\":return Math.round;case\"floor\":case\"rounddown\":return Math.floor;case\"ceil\":case\"roundup\":return Math.ceil}})();return r=null==r||isNaN(r)?i:d.format(r,a,s,l),super.doFormat(t,e,r,n,o)}}r.NumberFormatter=C,l=C,C.__name__=\"NumberFormatter\",l.define((({String:t})=>({format:[t,\"0,0\"],language:[t,\"en\"],rounding:[F.RoundingFunction,\"round\"]})));class y extends b{constructor(t){super(t)}doFormat(t,e,r,n,o){return r?(0,g.i)({class:this.icon}).outerHTML:\"\"}}r.BooleanFormatter=y,c=y,y.__name__=\"BooleanFormatter\",c.define((({String:t})=>({icon:[t,\"check\"]})));class N extends M{constructor(t){super(t)}getFormat(){switch(this.format){case\"ATOM\":case\"W3C\":case\"RFC-3339\":case\"ISO-8601\":return\"%Y-%m-%d\";case\"COOKIE\":return\"%a, %d %b %Y\";case\"RFC-850\":return\"%A, %d-%b-%y\";case\"RFC-1123\":case\"RFC-2822\":return\"%a, %e %b %Y\";case\"RSS\":case\"RFC-822\":case\"RFC-1036\":return\"%a, %e %b %y\";case\"TIMESTAMP\":return;default:return this.format}}doFormat(t,e,r,n,o){const{nan_format:a}=this;let s;return s=null==(r=(0,h.isString)(r)?parseInt(r,10):r)||isNaN(r)||-9223372036854776===r?a:(0,_.default)(r,this.getFormat()),super.doFormat(t,e,s,n,o)}}r.DateFormatter=N,u=N,N.__name__=\"DateFormatter\",u.define((({String:t})=>({format:[t,\"ISO-8601\"]})));class T extends b{constructor(t){super(t)}doFormat(t,e,r,n,o){const{template:a}=this;if(null==r)return\"\";return f._.template(a)(Object.assign(Object.assign({},o),{value:r}))}}r.HTMLTemplateFormatter=T,m=T,T.__name__=\"HTMLTemplateFormatter\",m.define((({String:t})=>({template:[t,\"<%= value %>\"]})))},\n", + " 494: function _(e,n,t,f,i){var o=e(495),d=o.template;function r(e,n,t){return d(e,n,t)}r._=o,n.exports=r,\"function\"==typeof define&&define.amd?define((function(){return r})):\"undefined\"==typeof window&&\"undefined\"==typeof navigator||(window.UnderscoreTemplate=r)},\n", + " 495: function _(r,e,n,t,a){\n", + " // (c) 2009-2013 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors\n", + " // Underscore may be freely distributed under the MIT license.\n", + " var u={},c=Array.prototype,o=Object.prototype,l=c.slice,i=o.toString,f=o.hasOwnProperty,s=c.forEach,p=Object.keys,_=Array.isArray,h=function(){},v=h.each=h.forEach=function(r,e,n){if(null!=r)if(s&&r.forEach===s)r.forEach(e,n);else if(r.length===+r.length){for(var t=0,a=r.length;t\":\">\",'\"':\""\",\"'\":\"'\"}},y={escape:new RegExp(\"[\"+h.keys(g.escape).join(\"\")+\"]\",\"g\")};h.each([\"escape\"],(function(r){h[r]=function(e){return null==e?\"\":(\"\"+e).replace(y[r],(function(e){return g[r][e]}))}})),h.templateSettings={evaluate:/<%([\\s\\S]+?)%>/g,interpolate:/<%=([\\s\\S]+?)%>/g,escape:/<%-([\\s\\S]+?)%>/g};var j=/(.)^/,b={\"'\":\"'\",\"\\\\\":\"\\\\\",\"\\r\":\"r\",\"\\n\":\"n\",\"\\t\":\"t\",\"\\u2028\":\"u2028\",\"\\u2029\":\"u2029\"},w=/\\\\|'|\\r|\\n|\\t|\\u2028|\\u2029/g;h.template=function(r,e,n){var t;n=h.defaults({},n,h.templateSettings);var a=new RegExp([(n.escape||j).source,(n.interpolate||j).source,(n.evaluate||j).source].join(\"|\")+\"|$\",\"g\"),u=0,c=\"__p+='\";r.replace(a,(function(e,n,t,a,o){return c+=r.slice(u,o).replace(w,(function(r){return\"\\\\\"+b[r]})),n&&(c+=\"'+\\n((__t=(\"+n+\"))==null?'':_.escape(__t))+\\n'\"),t&&(c+=\"'+\\n((__t=(\"+t+\"))==null?'':__t)+\\n'\"),a&&(c+=\"';\\n\"+a+\"\\n__p+='\"),u=o+e.length,e})),c+=\"';\\n\",n.variable||(c=\"with(obj||{}){\\n\"+c+\"}\\n\"),c=\"var __t,__p='',__j=Array.prototype.join,print=function(){__p+=__j.call(arguments,'');};\\n\"+c+\"return __p;\\n\";try{t=new Function(n.variable||\"obj\",\"_\",c)}catch(r){throw r.source=c,r}if(e)return t(e,h);var o=function(r){return t.call(this,r,h)};return o.source=\"function(\"+(n.variable||\"obj\")+\"){\\n\"+c+\"}\",o},e.exports=h},\n", + " 496: function _(e,t,i,s,o){s();const n=e(1);var l;const r=e(497),d=e(501),a=e(502),h=e(503),u=e(34),c=e(8),_=e(9),m=e(13),g=e(19),p=e(512),f=e(491),b=e(513),w=e(514),x=(0,n.__importStar)(e(492)),C=x,v=(0,n.__importDefault)(e(515));i.AutosizeModes={fit_columns:\"FCV\",fit_viewport:\"FVC\",force_fit:\"LFF\",none:\"NOA\"};let z=!1;class A{constructor(e,t){this.init(e,t)}init(e,t){if(f.DTINDEX_NAME in e.data)throw new Error(`special name ${f.DTINDEX_NAME} cannot be used as a data table column`);this.source=e,this.view=t,this.index=[...this.view.indices]}getLength(){return this.index.length}getItem(e){const t={};for(const i of(0,m.keys)(this.source.data))t[i]=this.source.data[i][this.index[e]];return t[f.DTINDEX_NAME]=this.index[e],t}getField(e,t){return t==f.DTINDEX_NAME?this.index[e]:this.source.data[t][this.index[e]]}setField(e,t,i){const s=this.index[e];this.source.patch({[t]:[[s,i]]})}getRecords(){return(0,_.range)(0,this.getLength()).map((e=>this.getItem(e)))}getItems(){return this.getRecords()}slice(e,t,i){return e=null!=e?e:0,t=null!=t?t:this.getLength(),i=null!=i?i:1,(0,_.range)(e,t,i).map((e=>this.getItem(e)))}sort(e){let t=e.map((e=>[e.sortCol.field,e.sortAsc?1:-1]));0==t.length&&(t=[[f.DTINDEX_NAME,1]]);const i=this.getRecords(),s=this.index.slice();this.index.sort(((e,o)=>{for(const[n,l]of t){const t=i[s.indexOf(e)][n],r=i[s.indexOf(o)][n];if(t!==r)return(0,c.isNumber)(t)&&(0,c.isNumber)(r)?l*(t-r||+isNaN(t)-+isNaN(r)):`${t}`>`${r}`?l:-l}return 0}))}}i.TableDataProvider=A,A.__name__=\"TableDataProvider\";class M extends p.WidgetView{constructor(){super(...arguments),this._in_selection_update=!1,this._width=null}connect_signals(){super.connect_signals(),this.connect(this.model.change,(()=>this.render())),this.connect(this.model.source.streaming,(()=>this.updateGrid())),this.connect(this.model.source.patching,(()=>this.updateGrid())),this.connect(this.model.source.change,(()=>this.updateGrid())),this.connect(this.model.source.properties.data.change,(()=>this.updateGrid())),this.connect(this.model.source.selected.change,(()=>this.updateSelection())),this.connect(this.model.source.selected.properties.indices.change,(()=>this.updateSelection()));for(const e of this.model.columns)this.connect(e.change,(()=>{this.invalidate_layout(),this.render()}))}remove(){var e;null===(e=this.grid)||void 0===e||e.destroy(),super.remove()}styles(){return[...super.styles(),v.default,x.default]}update_position(){super.update_position(),this.grid.resizeCanvas()}after_layout(){super.after_layout(),this.updateLayout(!0,!1)}box_sizing(){const e=super.box_sizing();return\"fit_viewport\"===this.model.autosize_mode&&null!=this._width&&(e.width=this._width),e}updateLayout(e,t){const s=this.autosize;s===i.AutosizeModes.fit_columns||s===i.AutosizeModes.force_fit?(e||this.grid.resizeCanvas(),this.grid.autosizeColumns()):e&&t&&s===i.AutosizeModes.fit_viewport&&this.invalidate_layout()}updateGrid(){if(this.model.view.compute_indices(),this.data.init(this.model.source,this.model.view),this.model.sortable){const e=this.grid.getColumns(),t=this.grid.getSortColumns().map((t=>({sortCol:{field:e[this.grid.getColumnIndex(t.columnId)].field},sortAsc:t.sortAsc})));this.data.sort(t)}this.grid.invalidate(),this.updateLayout(!0,!0)}updateSelection(){if(this._in_selection_update)return;const{selected:e}=this.model.source,t=e.indices.map((e=>this.data.index.indexOf(e))).sort();this._in_selection_update=!0,this.grid.setSelectedRows(t),this._in_selection_update=!1;const i=this.grid.getViewport(),s=this.model.get_scroll_index(i,t);null!=s&&this.grid.scrollRowToTop(s)}newIndexColumn(){return{id:(0,u.uniqueId)(),name:this.model.index_header,field:f.DTINDEX_NAME,width:this.model.index_width,behavior:\"select\",cannotTriggerInsert:!0,resizable:!1,selectable:!1,sortable:!0,cssClass:C.cell_index,headerCssClass:C.header_index}}css_classes(){return super.css_classes().concat(C.data_table)}get autosize(){let e;return e=!0===this.model.fit_columns?i.AutosizeModes.force_fit:!1===this.model.fit_columns?i.AutosizeModes.none:i.AutosizeModes[this.model.autosize_mode],e}render(){var e;const t=this.model.columns.filter((e=>e.visible)).map((e=>Object.assign(Object.assign({},e.toColumn()),{parent:this})));let s=null;if(\"checkbox\"==this.model.selectable&&(s=new d.CheckboxSelectColumn({cssClass:C.cell_select}),t.unshift(s.getColumnDefinition())),null!=this.model.index_position){const e=this.model.index_position,i=this.newIndexColumn();-1==e?t.push(i):e<-1?t.splice(e+1,0,i):t.splice(e,0,i)}let{reorderable:o}=this.model;!o||\"undefined\"!=typeof $&&null!=$.fn&&null!=$.fn.sortable||(z||(g.logger.warn(\"jquery-ui is required to enable DataTable.reorderable\"),z=!0),o=!1);let n=-1,l=!1;const{frozen_rows:u,frozen_columns:_}=this.model,m=null==_?-1:_-1;null!=u&&(l=u<0,n=Math.abs(u));const p={enableCellNavigation:!1!==this.model.selectable,enableColumnReorder:o,autosizeColsMode:this.autosize,multiColumnSort:this.model.sortable,editable:this.model.editable,autoEdit:this.model.auto_edit,autoHeight:!1,rowHeight:this.model.row_height,frozenColumn:m,frozenRow:n,frozenBottom:l},f=null!=this.grid;if(this.data=new A(this.model.source,this.model.view),this.grid=new h.Grid(this.el,this.data,t,p),this.autosize==i.AutosizeModes.fit_viewport){this.grid.autosizeColumns();let i=0;for(const s of t)i+=null!==(e=s.width)&&void 0!==e?e:0;this._width=Math.ceil(i)}if(this.grid.onSort.subscribe(((e,t)=>{if(!this.model.sortable)return;const i=t.sortCols;null!=i&&(this.data.sort(i),this.grid.invalidate(),this.updateSelection(),this.grid.render(),this.model.header_row||this._hide_header(),this.model.update_sort_columns(i))})),!1!==this.model.selectable){this.grid.setSelectionModel(new r.RowSelectionModel({selectActiveRow:null==s})),null!=s&&this.grid.registerPlugin(s);const e={dataItemColumnValueExtractor(e,t){let i=e[t.field];return(0,c.isString)(i)&&(i=i.replace(/\\n/g,\"\\\\n\")),i},includeHeaderWhenCopying:!1};this.grid.registerPlugin(new a.CellExternalCopyManager(e)),this.grid.onSelectedRowsChanged.subscribe(((e,t)=>{this._in_selection_update||(this.model.source.selected.indices=t.rows.map((e=>this.data.index[e])))})),this.updateSelection(),this.model.header_row||this._hide_header()}f&&this.updateLayout(f,!1)}_hide_header(){for(const e of this.el.querySelectorAll(\".slick-header-columns\"))e.style.height=\"0px\";this.grid.resizeCanvas()}}i.DataTableView=M,M.__name__=\"DataTableView\";class D extends b.TableWidget{constructor(e){super(e),this._sort_columns=[]}get sort_columns(){return this._sort_columns}update_sort_columns(e){this._sort_columns=e.map((({sortCol:e,sortAsc:t})=>({field:e.field,sortAsc:t})))}get_scroll_index(e,t){return this.scroll_to_selection&&0!=t.length?(0,_.some)(t,(t=>e.top<=t&&t<=e.bottom))?null:Math.max(0,Math.min(...t)-1):null}}i.DataTable=D,l=D,D.__name__=\"DataTable\",l.prototype.default_view=M,l.define((({Array:e,Boolean:t,Int:i,Ref:s,String:o,Enum:n,Or:l,Nullable:r})=>({autosize_mode:[n(\"fit_columns\",\"fit_viewport\",\"none\",\"force_fit\"),\"force_fit\"],auto_edit:[t,!1],columns:[e(s(w.TableColumn)),[]],fit_columns:[r(t),null],frozen_columns:[r(i),null],frozen_rows:[r(i),null],sortable:[t,!0],reorderable:[t,!0],editable:[t,!1],selectable:[l(t,n(\"checkbox\")),!0],index_position:[r(i),0],index_header:[o,\"#\"],index_width:[i,40],scroll_to_selection:[t,!0],header_row:[t,!0],row_height:[i,25]}))),l.override({width:600,height:400})},\n", + " 497: function _(e,t,n,o,r){var l=e(498),i=e(500);t.exports={RowSelectionModel:function(e){var t,n,o,r=[],c=this,u=new i.EventHandler,s={selectActiveRow:!0};function a(e){return function(){n||(n=!0,e.apply(this,arguments),n=!1)}}function f(e){for(var t=[],n=0;n=0&&r0&&t-1 in e)}w.fn=w.prototype={jquery:b,constructor:w,length:0,toArray:function(){return i.call(this)},get:function(e){return null==e?i.call(this):e<0?this[e+this.length]:this[e]},pushStack:function(e){var t=w.merge(this.constructor(),e);return t.prevObject=this,t},each:function(e){return w.each(this,e)},map:function(e){return this.pushStack(w.map(this,(function(t,n){return e.call(t,n,t)})))},slice:function(){return this.pushStack(i.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},even:function(){return this.pushStack(w.grep(this,(function(e,t){return(t+1)%2})))},odd:function(){return this.pushStack(w.grep(this,(function(e,t){return t%2})))},eq:function(e){var t=this.length,n=+e+(e<0?t:0);return this.pushStack(n>=0&&n+~]|[\\\\x20\\\\t\\\\r\\\\n\\\\f])[\\\\x20\\\\t\\\\r\\\\n\\\\f]*\"),U=new RegExp(M+\"|>\"),X=new RegExp(F),V=new RegExp(\"^\"+I+\"$\"),G={ID:new RegExp(\"^#(\"+I+\")\"),CLASS:new RegExp(\"^\\\\.(\"+I+\")\"),TAG:new RegExp(\"^(\"+I+\"|[*])\"),ATTR:new RegExp(\"^\"+W),PSEUDO:new RegExp(\"^\"+F),CHILD:new RegExp(\"^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\\\([\\\\x20\\\\t\\\\r\\\\n\\\\f]*(even|odd|(([+-]|)(\\\\d*)n|)[\\\\x20\\\\t\\\\r\\\\n\\\\f]*(?:([+-]|)[\\\\x20\\\\t\\\\r\\\\n\\\\f]*(\\\\d+)|))[\\\\x20\\\\t\\\\r\\\\n\\\\f]*\\\\)|)\",\"i\"),bool:new RegExp(\"^(?:\"+R+\")$\",\"i\"),needsContext:new RegExp(\"^[\\\\x20\\\\t\\\\r\\\\n\\\\f]*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\\\([\\\\x20\\\\t\\\\r\\\\n\\\\f]*((?:-\\\\d)?\\\\d*)[\\\\x20\\\\t\\\\r\\\\n\\\\f]*\\\\)|)(?=[^-]|$)\",\"i\")},Y=/HTML$/i,Q=/^(?:input|select|textarea|button)$/i,J=/^h\\d$/i,K=/^[^{]+\\{\\s*\\[native \\w/,Z=/^(?:#([\\w-]+)|(\\w+)|\\.([\\w-]+))$/,ee=/[+~]/,te=new RegExp(\"\\\\\\\\[\\\\da-fA-F]{1,6}[\\\\x20\\\\t\\\\r\\\\n\\\\f]?|\\\\\\\\([^\\\\r\\\\n\\\\f])\",\"g\"),ne=function(e,t){var n=\"0x\"+e.slice(1)-65536;return t||(n<0?String.fromCharCode(n+65536):String.fromCharCode(n>>10|55296,1023&n|56320))},re=/([\\0-\\x1f\\x7f]|^-?\\d)|^-$|[^\\0-\\x1f\\x7f-\\uFFFF\\w-]/g,ie=function(e,t){return t?\"\\0\"===e?\"\\ufffd\":e.slice(0,-1)+\"\\\\\"+e.charCodeAt(e.length-1).toString(16)+\" \":\"\\\\\"+e},oe=function(){p()},ae=be((function(e){return!0===e.disabled&&\"fieldset\"===e.nodeName.toLowerCase()}),{dir:\"parentNode\",next:\"legend\"});try{H.apply(D=O.call(w.childNodes),w.childNodes),D[w.childNodes.length].nodeType}catch(e){H={apply:D.length?function(e,t){L.apply(e,O.call(t))}:function(e,t){for(var n=e.length,r=0;e[n++]=t[r++];);e.length=n-1}}}function se(e,t,r,i){var o,s,l,c,f,h,y,m=t&&t.ownerDocument,w=t?t.nodeType:9;if(r=r||[],\"string\"!=typeof e||!e||1!==w&&9!==w&&11!==w)return r;if(!i&&(p(t),t=t||d,g)){if(11!==w&&(f=Z.exec(e)))if(o=f[1]){if(9===w){if(!(l=t.getElementById(o)))return r;if(l.id===o)return r.push(l),r}else if(m&&(l=m.getElementById(o))&&x(t,l)&&l.id===o)return r.push(l),r}else{if(f[2])return H.apply(r,t.getElementsByTagName(e)),r;if((o=f[3])&&n.getElementsByClassName&&t.getElementsByClassName)return H.apply(r,t.getElementsByClassName(o)),r}if(n.qsa&&!A[e+\" \"]&&(!v||!v.test(e))&&(1!==w||\"object\"!==t.nodeName.toLowerCase())){if(y=e,m=t,1===w&&(U.test(e)||z.test(e))){for((m=ee.test(e)&&ye(t.parentNode)||t)===t&&n.scope||((c=t.getAttribute(\"id\"))?c=c.replace(re,ie):t.setAttribute(\"id\",c=b)),s=(h=a(e)).length;s--;)h[s]=(c?\"#\"+c:\":scope\")+\" \"+xe(h[s]);y=h.join(\",\")}try{return H.apply(r,m.querySelectorAll(y)),r}catch(t){A(e,!0)}finally{c===b&&t.removeAttribute(\"id\")}}}return u(e.replace($,\"$1\"),t,r,i)}function ue(){var e=[];return function t(n,i){return e.push(n+\" \")>r.cacheLength&&delete t[e.shift()],t[n+\" \"]=i}}function le(e){return e[b]=!0,e}function ce(e){var t=d.createElement(\"fieldset\");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function fe(e,t){for(var n=e.split(\"|\"),i=n.length;i--;)r.attrHandle[n[i]]=t}function pe(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(r)return r;if(n)for(;n=n.nextSibling;)if(n===t)return-1;return e?1:-1}function de(e){return function(t){return\"input\"===t.nodeName.toLowerCase()&&t.type===e}}function he(e){return function(t){var n=t.nodeName.toLowerCase();return(\"input\"===n||\"button\"===n)&&t.type===e}}function ge(e){return function(t){return\"form\"in t?t.parentNode&&!1===t.disabled?\"label\"in t?\"label\"in t.parentNode?t.parentNode.disabled===e:t.disabled===e:t.isDisabled===e||t.isDisabled!==!e&&ae(t)===e:t.disabled===e:\"label\"in t&&t.disabled===e}}function ve(e){return le((function(t){return t=+t,le((function(n,r){for(var i,o=e([],n.length,t),a=o.length;a--;)n[i=o[a]]&&(n[i]=!(r[i]=n[i]))}))}))}function ye(e){return e&&void 0!==e.getElementsByTagName&&e}for(t in n=se.support={},o=se.isXML=function(e){var t=e&&e.namespaceURI,n=e&&(e.ownerDocument||e).documentElement;return!Y.test(t||n&&n.nodeName||\"HTML\")},p=se.setDocument=function(e){var t,i,a=e?e.ownerDocument||e:w;return a!=d&&9===a.nodeType&&a.documentElement?(h=(d=a).documentElement,g=!o(d),w!=d&&(i=d.defaultView)&&i.top!==i&&(i.addEventListener?i.addEventListener(\"unload\",oe,!1):i.attachEvent&&i.attachEvent(\"onunload\",oe)),n.scope=ce((function(e){return h.appendChild(e).appendChild(d.createElement(\"div\")),void 0!==e.querySelectorAll&&!e.querySelectorAll(\":scope fieldset div\").length})),n.attributes=ce((function(e){return e.className=\"i\",!e.getAttribute(\"className\")})),n.getElementsByTagName=ce((function(e){return e.appendChild(d.createComment(\"\")),!e.getElementsByTagName(\"*\").length})),n.getElementsByClassName=K.test(d.getElementsByClassName),n.getById=ce((function(e){return h.appendChild(e).id=b,!d.getElementsByName||!d.getElementsByName(b).length})),n.getById?(r.filter.ID=function(e){var t=e.replace(te,ne);return function(e){return e.getAttribute(\"id\")===t}},r.find.ID=function(e,t){if(void 0!==t.getElementById&&g){var n=t.getElementById(e);return n?[n]:[]}}):(r.filter.ID=function(e){var t=e.replace(te,ne);return function(e){var n=void 0!==e.getAttributeNode&&e.getAttributeNode(\"id\");return n&&n.value===t}},r.find.ID=function(e,t){if(void 0!==t.getElementById&&g){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode(\"id\"))&&n.value===e)return[o];for(i=t.getElementsByName(e),r=0;o=i[r++];)if((n=o.getAttributeNode(\"id\"))&&n.value===e)return[o]}return[]}}),r.find.TAG=n.getElementsByTagName?function(e,t){return void 0!==t.getElementsByTagName?t.getElementsByTagName(e):n.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if(\"*\"===e){for(;n=o[i++];)1===n.nodeType&&r.push(n);return r}return o},r.find.CLASS=n.getElementsByClassName&&function(e,t){if(void 0!==t.getElementsByClassName&&g)return t.getElementsByClassName(e)},y=[],v=[],(n.qsa=K.test(d.querySelectorAll))&&(ce((function(e){var t;h.appendChild(e).innerHTML=\"\",e.querySelectorAll(\"[msallowcapture^='']\").length&&v.push(\"[*^$]=[\\\\x20\\\\t\\\\r\\\\n\\\\f]*(?:''|\\\"\\\")\"),e.querySelectorAll(\"[selected]\").length||v.push(\"\\\\[[\\\\x20\\\\t\\\\r\\\\n\\\\f]*(?:value|\"+R+\")\"),e.querySelectorAll(\"[id~=\"+b+\"-]\").length||v.push(\"~=\"),(t=d.createElement(\"input\")).setAttribute(\"name\",\"\"),e.appendChild(t),e.querySelectorAll(\"[name='']\").length||v.push(\"\\\\[[\\\\x20\\\\t\\\\r\\\\n\\\\f]*name[\\\\x20\\\\t\\\\r\\\\n\\\\f]*=[\\\\x20\\\\t\\\\r\\\\n\\\\f]*(?:''|\\\"\\\")\"),e.querySelectorAll(\":checked\").length||v.push(\":checked\"),e.querySelectorAll(\"a#\"+b+\"+*\").length||v.push(\".#.+[+~]\"),e.querySelectorAll(\"\\\\\\f\"),v.push(\"[\\\\r\\\\n\\\\f]\")})),ce((function(e){e.innerHTML=\"\";var t=d.createElement(\"input\");t.setAttribute(\"type\",\"hidden\"),e.appendChild(t).setAttribute(\"name\",\"D\"),e.querySelectorAll(\"[name=d]\").length&&v.push(\"name[\\\\x20\\\\t\\\\r\\\\n\\\\f]*[*^$|!~]?=\"),2!==e.querySelectorAll(\":enabled\").length&&v.push(\":enabled\",\":disabled\"),h.appendChild(e).disabled=!0,2!==e.querySelectorAll(\":disabled\").length&&v.push(\":enabled\",\":disabled\"),e.querySelectorAll(\"*,:x\"),v.push(\",.*:\")}))),(n.matchesSelector=K.test(m=h.matches||h.webkitMatchesSelector||h.mozMatchesSelector||h.oMatchesSelector||h.msMatchesSelector))&&ce((function(e){n.disconnectedMatch=m.call(e,\"*\"),m.call(e,\"[s!='']:x\"),y.push(\"!=\",F)})),v=v.length&&new RegExp(v.join(\"|\")),y=y.length&&new RegExp(y.join(\"|\")),t=K.test(h.compareDocumentPosition),x=t||K.test(h.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)for(;t=t.parentNode;)if(t===e)return!0;return!1},N=t?function(e,t){if(e===t)return f=!0,0;var r=!e.compareDocumentPosition-!t.compareDocumentPosition;return r||(1&(r=(e.ownerDocument||e)==(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!n.sortDetached&&t.compareDocumentPosition(e)===r?e==d||e.ownerDocument==w&&x(w,e)?-1:t==d||t.ownerDocument==w&&x(w,t)?1:c?P(c,e)-P(c,t):0:4&r?-1:1)}:function(e,t){if(e===t)return f=!0,0;var n,r=0,i=e.parentNode,o=t.parentNode,a=[e],s=[t];if(!i||!o)return e==d?-1:t==d?1:i?-1:o?1:c?P(c,e)-P(c,t):0;if(i===o)return pe(e,t);for(n=e;n=n.parentNode;)a.unshift(n);for(n=t;n=n.parentNode;)s.unshift(n);for(;a[r]===s[r];)r++;return r?pe(a[r],s[r]):a[r]==w?-1:s[r]==w?1:0},d):d},se.matches=function(e,t){return se(e,null,null,t)},se.matchesSelector=function(e,t){if(p(e),n.matchesSelector&&g&&!A[t+\" \"]&&(!y||!y.test(t))&&(!v||!v.test(t)))try{var r=m.call(e,t);if(r||n.disconnectedMatch||e.document&&11!==e.document.nodeType)return r}catch(e){A(t,!0)}return se(t,d,null,[e]).length>0},se.contains=function(e,t){return(e.ownerDocument||e)!=d&&p(e),x(e,t)},se.attr=function(e,t){(e.ownerDocument||e)!=d&&p(e);var i=r.attrHandle[t.toLowerCase()],o=i&&j.call(r.attrHandle,t.toLowerCase())?i(e,t,!g):void 0;return void 0!==o?o:n.attributes||!g?e.getAttribute(t):(o=e.getAttributeNode(t))&&o.specified?o.value:null},se.escape=function(e){return(e+\"\").replace(re,ie)},se.error=function(e){throw new Error(\"Syntax error, unrecognized expression: \"+e)},se.uniqueSort=function(e){var t,r=[],i=0,o=0;if(f=!n.detectDuplicates,c=!n.sortStable&&e.slice(0),e.sort(N),f){for(;t=e[o++];)t===e[o]&&(i=r.push(o));for(;i--;)e.splice(r[i],1)}return c=null,e},i=se.getText=function(e){var t,n=\"\",r=0,o=e.nodeType;if(o){if(1===o||9===o||11===o){if(\"string\"==typeof e.textContent)return e.textContent;for(e=e.firstChild;e;e=e.nextSibling)n+=i(e)}else if(3===o||4===o)return e.nodeValue}else for(;t=e[r++];)n+=i(t);return n},r=se.selectors={cacheLength:50,createPseudo:le,match:G,attrHandle:{},find:{},relative:{\">\":{dir:\"parentNode\",first:!0},\" \":{dir:\"parentNode\"},\"+\":{dir:\"previousSibling\",first:!0},\"~\":{dir:\"previousSibling\"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(te,ne),e[3]=(e[3]||e[4]||e[5]||\"\").replace(te,ne),\"~=\"===e[2]&&(e[3]=\" \"+e[3]+\" \"),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),\"nth\"===e[1].slice(0,3)?(e[3]||se.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*(\"even\"===e[3]||\"odd\"===e[3])),e[5]=+(e[7]+e[8]||\"odd\"===e[3])):e[3]&&se.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return G.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||\"\":n&&X.test(n)&&(t=a(n,!0))&&(t=n.indexOf(\")\",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(te,ne).toLowerCase();return\"*\"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=E[e+\" \"];return t||(t=new RegExp(\"(^|[\\\\x20\\\\t\\\\r\\\\n\\\\f])\"+e+\"(\"+M+\"|$)\"))&&E(e,(function(e){return t.test(\"string\"==typeof e.className&&e.className||void 0!==e.getAttribute&&e.getAttribute(\"class\")||\"\")}))},ATTR:function(e,t,n){return function(r){var i=se.attr(r,e);return null==i?\"!=\"===t:!t||(i+=\"\",\"=\"===t?i===n:\"!=\"===t?i!==n:\"^=\"===t?n&&0===i.indexOf(n):\"*=\"===t?n&&i.indexOf(n)>-1:\"$=\"===t?n&&i.slice(-n.length)===n:\"~=\"===t?(\" \"+i.replace(B,\" \")+\" \").indexOf(n)>-1:\"|=\"===t&&(i===n||i.slice(0,n.length+1)===n+\"-\"))}},CHILD:function(e,t,n,r,i){var o=\"nth\"!==e.slice(0,3),a=\"last\"!==e.slice(-4),s=\"of-type\"===t;return 1===r&&0===i?function(e){return!!e.parentNode}:function(t,n,u){var l,c,f,p,d,h,g=o!==a?\"nextSibling\":\"previousSibling\",v=t.parentNode,y=s&&t.nodeName.toLowerCase(),m=!u&&!s,x=!1;if(v){if(o){for(;g;){for(p=t;p=p[g];)if(s?p.nodeName.toLowerCase()===y:1===p.nodeType)return!1;h=g=\"only\"===e&&!h&&\"nextSibling\"}return!0}if(h=[a?v.firstChild:v.lastChild],a&&m){for(x=(d=(l=(c=(f=(p=v)[b]||(p[b]={}))[p.uniqueID]||(f[p.uniqueID]={}))[e]||[])[0]===T&&l[1])&&l[2],p=d&&v.childNodes[d];p=++d&&p&&p[g]||(x=d=0)||h.pop();)if(1===p.nodeType&&++x&&p===t){c[e]=[T,d,x];break}}else if(m&&(x=d=(l=(c=(f=(p=t)[b]||(p[b]={}))[p.uniqueID]||(f[p.uniqueID]={}))[e]||[])[0]===T&&l[1]),!1===x)for(;(p=++d&&p&&p[g]||(x=d=0)||h.pop())&&((s?p.nodeName.toLowerCase()!==y:1!==p.nodeType)||!++x||(m&&((c=(f=p[b]||(p[b]={}))[p.uniqueID]||(f[p.uniqueID]={}))[e]=[T,x]),p!==t)););return(x-=i)===r||x%r==0&&x/r>=0}}},PSEUDO:function(e,t){var n,i=r.pseudos[e]||r.setFilters[e.toLowerCase()]||se.error(\"unsupported pseudo: \"+e);return i[b]?i(t):i.length>1?(n=[e,e,\"\",t],r.setFilters.hasOwnProperty(e.toLowerCase())?le((function(e,n){for(var r,o=i(e,t),a=o.length;a--;)e[r=P(e,o[a])]=!(n[r]=o[a])})):function(e){return i(e,0,n)}):i}},pseudos:{not:le((function(e){var t=[],n=[],r=s(e.replace($,\"$1\"));return r[b]?le((function(e,t,n,i){for(var o,a=r(e,null,i,[]),s=e.length;s--;)(o=a[s])&&(e[s]=!(t[s]=o))})):function(e,i,o){return t[0]=e,r(t,null,o,n),t[0]=null,!n.pop()}})),has:le((function(e){return function(t){return se(e,t).length>0}})),contains:le((function(e){return e=e.replace(te,ne),function(t){return(t.textContent||i(t)).indexOf(e)>-1}})),lang:le((function(e){return V.test(e||\"\")||se.error(\"unsupported lang: \"+e),e=e.replace(te,ne).toLowerCase(),function(t){var n;do{if(n=g?t.lang:t.getAttribute(\"xml:lang\")||t.getAttribute(\"lang\"))return(n=n.toLowerCase())===e||0===n.indexOf(e+\"-\")}while((t=t.parentNode)&&1===t.nodeType);return!1}})),target:function(t){var n=e.location&&e.location.hash;return n&&n.slice(1)===t.id},root:function(e){return e===h},focus:function(e){return e===d.activeElement&&(!d.hasFocus||d.hasFocus())&&!!(e.type||e.href||~e.tabIndex)},enabled:ge(!1),disabled:ge(!0),checked:function(e){var t=e.nodeName.toLowerCase();return\"input\"===t&&!!e.checked||\"option\"===t&&!!e.selected},selected:function(e){return e.parentNode&&e.parentNode.selectedIndex,!0===e.selected},empty:function(e){for(e=e.firstChild;e;e=e.nextSibling)if(e.nodeType<6)return!1;return!0},parent:function(e){return!r.pseudos.empty(e)},header:function(e){return J.test(e.nodeName)},input:function(e){return Q.test(e.nodeName)},button:function(e){var t=e.nodeName.toLowerCase();return\"input\"===t&&\"button\"===e.type||\"button\"===t},text:function(e){var t;return\"input\"===e.nodeName.toLowerCase()&&\"text\"===e.type&&(null==(t=e.getAttribute(\"type\"))||\"text\"===t.toLowerCase())},first:ve((function(){return[0]})),last:ve((function(e,t){return[t-1]})),eq:ve((function(e,t,n){return[n<0?n+t:n]})),even:ve((function(e,t){for(var n=0;nt?t:n;--r>=0;)e.push(r);return e})),gt:ve((function(e,t,n){for(var r=n<0?n+t:n;++r1?function(t,n,r){for(var i=e.length;i--;)if(!e[i](t,n,r))return!1;return!0}:e[0]}function Te(e,t,n,r,i){for(var o,a=[],s=0,u=e.length,l=null!=t;s-1&&(o[l]=!(a[l]=f))}}else y=Te(y===a?y.splice(h,y.length):y),i?i(null,a,y,u):H.apply(a,y)}))}function Ee(e){for(var t,n,i,o=e.length,a=r.relative[e[0].type],s=a||r.relative[\" \"],u=a?1:0,c=be((function(e){return e===t}),s,!0),f=be((function(e){return P(t,e)>-1}),s,!0),p=[function(e,n,r){var i=!a&&(r||n!==l)||((t=n).nodeType?c(e,n,r):f(e,n,r));return t=null,i}];u1&&we(p),u>1&&xe(e.slice(0,u-1).concat({value:\" \"===e[u-2].type?\"*\":\"\"})).replace($,\"$1\"),n,u0,i=e.length>0,o=function(o,a,s,u,c){var f,h,v,y=0,m=\"0\",x=o&&[],b=[],w=l,C=o||i&&r.find.TAG(\"*\",c),E=T+=null==w?1:Math.random()||.1,S=C.length;for(c&&(l=a==d||a||c);m!==S&&null!=(f=C[m]);m++){if(i&&f){for(h=0,a||f.ownerDocument==d||(p(f),s=!g);v=e[h++];)if(v(f,a||d,s)){u.push(f);break}c&&(T=E)}n&&((f=!v&&f)&&y--,o&&x.push(f))}if(y+=m,n&&m!==y){for(h=0;v=t[h++];)v(x,b,a,s);if(o){if(y>0)for(;m--;)x[m]||b[m]||(b[m]=q.call(u));b=Te(b)}H.apply(u,b),c&&!o&&b.length>0&&y+t.length>1&&se.uniqueSort(u)}return c&&(T=E,l=w),x};return n?le(o):o}(o,i)),s.selector=e}return s},u=se.select=function(e,t,n,i){var o,u,l,c,f,p=\"function\"==typeof e&&e,d=!i&&a(e=p.selector||e);if(n=n||[],1===d.length){if((u=d[0]=d[0].slice(0)).length>2&&\"ID\"===(l=u[0]).type&&9===t.nodeType&&g&&r.relative[u[1].type]){if(!(t=(r.find.ID(l.matches[0].replace(te,ne),t)||[])[0]))return n;p&&(t=t.parentNode),e=e.slice(u.shift().value.length)}for(o=G.needsContext.test(e)?0:u.length;o--&&(l=u[o],!r.relative[c=l.type]);)if((f=r.find[c])&&(i=f(l.matches[0].replace(te,ne),ee.test(u[0].type)&&ye(t.parentNode)||t))){if(u.splice(o,1),!(e=i.length&&xe(u)))return H.apply(n,i),n;break}}return(p||s(e,d))(i,t,!g,n,!t||ee.test(e)&&ye(t.parentNode)||t),n},n.sortStable=b.split(\"\").sort(N).join(\"\")===b,n.detectDuplicates=!!f,p(),n.sortDetached=ce((function(e){return 1&e.compareDocumentPosition(d.createElement(\"fieldset\"))})),ce((function(e){return e.innerHTML=\"\",\"#\"===e.firstChild.getAttribute(\"href\")}))||fe(\"type|href|height|width\",(function(e,t,n){if(!n)return e.getAttribute(t,\"type\"===t.toLowerCase()?1:2)})),n.attributes&&ce((function(e){return e.innerHTML=\"\",e.firstChild.setAttribute(\"value\",\"\"),\"\"===e.firstChild.getAttribute(\"value\")}))||fe(\"value\",(function(e,t,n){if(!n&&\"input\"===e.nodeName.toLowerCase())return e.defaultValue})),ce((function(e){return null==e.getAttribute(\"disabled\")}))||fe(R,(function(e,t,n){var r;if(!n)return!0===e[t]?t.toLowerCase():(r=e.getAttributeNode(t))&&r.specified?r.value:null})),se}(e);w.find=C,w.expr=C.selectors,w.expr[\":\"]=w.expr.pseudos,w.uniqueSort=w.unique=C.uniqueSort,w.text=C.getText,w.isXMLDoc=C.isXML,w.contains=C.contains,w.escapeSelector=C.escape;var E=function(e,t,n){for(var r=[],i=void 0!==n;(e=e[t])&&9!==e.nodeType;)if(1===e.nodeType){if(i&&w(e).is(n))break;r.push(e)}return r},S=function(e,t){for(var n=[];e;e=e.nextSibling)1===e.nodeType&&e!==t&&n.push(e);return n},k=w.expr.match.needsContext;function A(e,t){return e.nodeName&&e.nodeName.toLowerCase()===t.toLowerCase()}var N=/^<([a-z][^\\/\\0>:\\x20\\t\\r\\n\\f]*)[\\x20\\t\\r\\n\\f]*\\/?>(?:<\\/\\1>|)$/i;function j(e,t,n){return h(t)?w.grep(e,(function(e,r){return!!t.call(e,r,e)!==n})):t.nodeType?w.grep(e,(function(e){return e===t!==n})):\"string\"!=typeof t?w.grep(e,(function(e){return s.call(t,e)>-1!==n})):w.filter(t,e,n)}w.filter=function(e,t,n){var r=t[0];return n&&(e=\":not(\"+e+\")\"),1===t.length&&1===r.nodeType?w.find.matchesSelector(r,e)?[r]:[]:w.find.matches(e,w.grep(t,(function(e){return 1===e.nodeType})))},w.fn.extend({find:function(e){var t,n,r=this.length,i=this;if(\"string\"!=typeof e)return this.pushStack(w(e).filter((function(){for(t=0;t1?w.uniqueSort(n):n},filter:function(e){return this.pushStack(j(this,e||[],!1))},not:function(e){return this.pushStack(j(this,e||[],!0))},is:function(e){return!!j(this,\"string\"==typeof e&&k.test(e)?w(e):e||[],!1).length}});var D,q=/^(?:\\s*(<[\\w\\W]+>)[^>]*|#([\\w-]+))$/;(w.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||D,\"string\"==typeof e){if(!(r=\"<\"===e[0]&&\">\"===e[e.length-1]&&e.length>=3?[null,e,null]:q.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof w?t[0]:t,w.merge(this,w.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:v,!0)),N.test(r[1])&&w.isPlainObject(t))for(r in t)h(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=v.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):h(e)?void 0!==n.ready?n.ready(e):e(w):w.makeArray(e,this)}).prototype=w.fn,D=w(v);var L=/^(?:parents|prev(?:Until|All))/,H={children:!0,contents:!0,next:!0,prev:!0};function O(e,t){for(;(e=e[t])&&1!==e.nodeType;);return e}w.fn.extend({has:function(e){var t=w(e,this),n=t.length;return this.filter((function(){for(var e=0;e-1:1===n.nodeType&&w.find.matchesSelector(n,e))){o.push(n);break}return this.pushStack(o.length>1?w.uniqueSort(o):o)},index:function(e){return e?\"string\"==typeof e?s.call(w(e),this[0]):s.call(this,e.jquery?e[0]:e):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(e,t){return this.pushStack(w.uniqueSort(w.merge(this.get(),w(e,t))))},addBack:function(e){return this.add(null==e?this.prevObject:this.prevObject.filter(e))}}),w.each({parent:function(e){var t=e.parentNode;return t&&11!==t.nodeType?t:null},parents:function(e){return E(e,\"parentNode\")},parentsUntil:function(e,t,n){return E(e,\"parentNode\",n)},next:function(e){return O(e,\"nextSibling\")},prev:function(e){return O(e,\"previousSibling\")},nextAll:function(e){return E(e,\"nextSibling\")},prevAll:function(e){return E(e,\"previousSibling\")},nextUntil:function(e,t,n){return E(e,\"nextSibling\",n)},prevUntil:function(e,t,n){return E(e,\"previousSibling\",n)},siblings:function(e){return S((e.parentNode||{}).firstChild,e)},children:function(e){return S(e.firstChild)},contents:function(e){return null!=e.contentDocument&&r(e.contentDocument)?e.contentDocument:(A(e,\"template\")&&(e=e.content||e),w.merge([],e.childNodes))}},(function(e,t){w.fn[e]=function(n,r){var i=w.map(this,t,n);return\"Until\"!==e.slice(-5)&&(r=n),r&&\"string\"==typeof r&&(i=w.filter(r,i)),this.length>1&&(H[e]||w.uniqueSort(i),L.test(e)&&i.reverse()),this.pushStack(i)}}));var P=/[^\\x20\\t\\r\\n\\f]+/g;function R(e){return e}function M(e){throw e}function I(e,t,n,r){var i;try{e&&h(i=e.promise)?i.call(e).done(t).fail(n):e&&h(i=e.then)?i.call(e,t,n):t.apply(void 0,[e].slice(r))}catch(e){n.apply(void 0,[e])}}w.Callbacks=function(e){e=\"string\"==typeof e?function(e){var t={};return w.each(e.match(P)||[],(function(e,n){t[n]=!0})),t}(e):w.extend({},e);var t,n,r,i,o=[],a=[],s=-1,u=function(){for(i=i||e.once,r=t=!0;a.length;s=-1)for(n=a.shift();++s-1;)o.splice(n,1),n<=s&&s--})),this},has:function(e){return e?w.inArray(e,o)>-1:o.length>0},empty:function(){return o&&(o=[]),this},disable:function(){return i=a=[],o=n=\"\",this},disabled:function(){return!o},lock:function(){return i=a=[],n||t||(o=n=\"\"),this},locked:function(){return!!i},fireWith:function(e,n){return i||(n=[e,(n=n||[]).slice?n.slice():n],a.push(n),t||u()),this},fire:function(){return l.fireWith(this,arguments),this},fired:function(){return!!r}};return l},w.extend({Deferred:function(t){var n=[[\"notify\",\"progress\",w.Callbacks(\"memory\"),w.Callbacks(\"memory\"),2],[\"resolve\",\"done\",w.Callbacks(\"once memory\"),w.Callbacks(\"once memory\"),0,\"resolved\"],[\"reject\",\"fail\",w.Callbacks(\"once memory\"),w.Callbacks(\"once memory\"),1,\"rejected\"]],r=\"pending\",i={state:function(){return r},always:function(){return o.done(arguments).fail(arguments),this},catch:function(e){return i.then(null,e)},pipe:function(){var e=arguments;return w.Deferred((function(t){w.each(n,(function(n,r){var i=h(e[r[4]])&&e[r[4]];o[r[1]]((function(){var e=i&&i.apply(this,arguments);e&&h(e.promise)?e.promise().progress(t.notify).done(t.resolve).fail(t.reject):t[r[0]+\"With\"](this,i?[e]:arguments)}))})),e=null})).promise()},then:function(t,r,i){var o=0;function a(t,n,r,i){return function(){var s=this,u=arguments,l=function(){var e,l;if(!(t=o&&(r!==M&&(s=void 0,u=[e]),n.rejectWith(s,u))}};t?c():(w.Deferred.getStackHook&&(c.stackTrace=w.Deferred.getStackHook()),e.setTimeout(c))}}return w.Deferred((function(e){n[0][3].add(a(0,e,h(i)?i:R,e.notifyWith)),n[1][3].add(a(0,e,h(t)?t:R)),n[2][3].add(a(0,e,h(r)?r:M))})).promise()},promise:function(e){return null!=e?w.extend(e,i):i}},o={};return w.each(n,(function(e,t){var a=t[2],s=t[5];i[t[1]]=a.add,s&&a.add((function(){r=s}),n[3-e][2].disable,n[3-e][3].disable,n[0][2].lock,n[0][3].lock),a.add(t[3].fire),o[t[0]]=function(){return o[t[0]+\"With\"](this===o?void 0:this,arguments),this},o[t[0]+\"With\"]=a.fireWith})),i.promise(o),t&&t.call(o,o),o},when:function(e){var t=arguments.length,n=t,r=Array(n),o=i.call(arguments),a=w.Deferred(),s=function(e){return function(n){r[e]=this,o[e]=arguments.length>1?i.call(arguments):n,--t||a.resolveWith(r,o)}};if(t<=1&&(I(e,a.done(s(n)).resolve,a.reject,!t),\"pending\"===a.state()||h(o[n]&&o[n].then)))return a.then();for(;n--;)I(o[n],s(n),a.reject);return a.promise()}});var W=/^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/;w.Deferred.exceptionHook=function(t,n){e.console&&e.console.warn&&t&&W.test(t.name)&&e.console.warn(\"jQuery.Deferred exception: \"+t.message,t.stack,n)},w.readyException=function(t){e.setTimeout((function(){throw t}))};var F=w.Deferred();function B(){v.removeEventListener(\"DOMContentLoaded\",B),e.removeEventListener(\"load\",B),w.ready()}w.fn.ready=function(e){return F.then(e).catch((function(e){w.readyException(e)})),this},w.extend({isReady:!1,readyWait:1,ready:function(e){(!0===e?--w.readyWait:w.isReady)||(w.isReady=!0,!0!==e&&--w.readyWait>0||F.resolveWith(v,[w]))}}),w.ready.then=F.then,\"complete\"===v.readyState||\"loading\"!==v.readyState&&!v.documentElement.doScroll?e.setTimeout(w.ready):(v.addEventListener(\"DOMContentLoaded\",B),e.addEventListener(\"load\",B));var $=function(e,t,n,r,i,o,a){var s=0,u=e.length,l=null==n;if(\"object\"===x(n))for(s in i=!0,n)$(e,t,s,n[s],!0,o,a);else if(void 0!==r&&(i=!0,h(r)||(a=!0),l&&(a?(t.call(e,r),t=null):(l=t,t=function(e,t,n){return l.call(w(e),n)})),t))for(;s1,null,!0)},removeData:function(e){return this.each((function(){Q.remove(this,e)}))}}),w.extend({queue:function(e,t,n){var r;if(e)return t=(t||\"fx\")+\"queue\",r=Y.get(e,t),n&&(!r||Array.isArray(n)?r=Y.access(e,t,w.makeArray(n)):r.push(n)),r||[]},dequeue:function(e,t){t=t||\"fx\";var n=w.queue(e,t),r=n.length,i=n.shift(),o=w._queueHooks(e,t);\"inprogress\"===i&&(i=n.shift(),r--),i&&(\"fx\"===t&&n.unshift(\"inprogress\"),delete o.stop,i.call(e,(function(){w.dequeue(e,t)}),o)),!r&&o&&o.empty.fire()},_queueHooks:function(e,t){var n=t+\"queueHooks\";return Y.get(e,n)||Y.access(e,n,{empty:w.Callbacks(\"once memory\").add((function(){Y.remove(e,[t+\"queue\",n])}))})}}),w.fn.extend({queue:function(e,t){var n=2;return\"string\"!=typeof e&&(t=e,e=\"fx\",n--),arguments.length\\x20\\t\\r\\n\\f]*)/i,ge=/^$|^module$|\\/(?:java|ecma)script/i;fe=v.createDocumentFragment().appendChild(v.createElement(\"div\")),(pe=v.createElement(\"input\")).setAttribute(\"type\",\"radio\"),pe.setAttribute(\"checked\",\"checked\"),pe.setAttribute(\"name\",\"t\"),fe.appendChild(pe),d.checkClone=fe.cloneNode(!0).cloneNode(!0).lastChild.checked,fe.innerHTML=\"\",d.noCloneChecked=!!fe.cloneNode(!0).lastChild.defaultValue,fe.innerHTML=\"\",d.option=!!fe.lastChild;var ve={thead:[1,\"\",\"
\"],col:[2,\"\",\"
\"],tr:[2,\"\",\"
\"],td:[3,\"\",\"
\"],_default:[0,\"\",\"\"]};function ye(e,t){var n;return n=void 0!==e.getElementsByTagName?e.getElementsByTagName(t||\"*\"):void 0!==e.querySelectorAll?e.querySelectorAll(t||\"*\"):[],void 0===t||t&&A(e,t)?w.merge([e],n):n}function me(e,t){for(var n=0,r=e.length;n\",\"\"]);var xe=/<|&#?\\w+;/;function be(e,t,n,r,i){for(var o,a,s,u,l,c,f=t.createDocumentFragment(),p=[],d=0,h=e.length;d-1)i&&i.push(o);else if(l=ie(o),a=ye(f.appendChild(o),\"script\"),l&&me(a),n)for(c=0;o=a[c++];)ge.test(o.type||\"\")&&n.push(o);return f}var we=/^([^.]*)(?:\\.(.+)|)/;function Te(){return!0}function Ce(){return!1}function Ee(e,t){return e===function(){try{return v.activeElement}catch(e){}}()==(\"focus\"===t)}function Se(e,t,n,r,i,o){var a,s;if(\"object\"==typeof t){for(s in\"string\"!=typeof n&&(r=r||n,n=void 0),t)Se(e,s,n,r,t[s],o);return e}if(null==r&&null==i?(i=n,r=n=void 0):null==i&&(\"string\"==typeof n?(i=r,r=void 0):(i=r,r=n,n=void 0)),!1===i)i=Ce;else if(!i)return e;return 1===o&&(a=i,i=function(e){return w().off(e),a.apply(this,arguments)},i.guid=a.guid||(a.guid=w.guid++)),e.each((function(){w.event.add(this,t,i,r,n)}))}function ke(e,t,n){n?(Y.set(e,t,!1),w.event.add(e,t,{namespace:!1,handler:function(e){var r,o,a=Y.get(this,t);if(1&e.isTrigger&&this[t]){if(a.length)(w.event.special[t]||{}).delegateType&&e.stopPropagation();else if(a=i.call(arguments),Y.set(this,t,a),r=n(this,t),this[t](),a!==(o=Y.get(this,t))||r?Y.set(this,t,!1):o={},a!==o)return e.stopImmediatePropagation(),e.preventDefault(),o&&o.value}else a.length&&(Y.set(this,t,{value:w.event.trigger(w.extend(a[0],w.Event.prototype),a.slice(1),this)}),e.stopImmediatePropagation())}})):void 0===Y.get(e,t)&&w.event.add(e,t,Te)}w.event={global:{},add:function(e,t,n,r,i){var o,a,s,u,l,c,f,p,d,h,g,v=Y.get(e);if(V(e))for(n.handler&&(n=(o=n).handler,i=o.selector),i&&w.find.matchesSelector(re,i),n.guid||(n.guid=w.guid++),(u=v.events)||(u=v.events=Object.create(null)),(a=v.handle)||(a=v.handle=function(t){return void 0!==w&&w.event.triggered!==t.type?w.event.dispatch.apply(e,arguments):void 0}),l=(t=(t||\"\").match(P)||[\"\"]).length;l--;)d=g=(s=we.exec(t[l])||[])[1],h=(s[2]||\"\").split(\".\").sort(),d&&(f=w.event.special[d]||{},d=(i?f.delegateType:f.bindType)||d,f=w.event.special[d]||{},c=w.extend({type:d,origType:g,data:r,handler:n,guid:n.guid,selector:i,needsContext:i&&w.expr.match.needsContext.test(i),namespace:h.join(\".\")},o),(p=u[d])||((p=u[d]=[]).delegateCount=0,f.setup&&!1!==f.setup.call(e,r,h,a)||e.addEventListener&&e.addEventListener(d,a)),f.add&&(f.add.call(e,c),c.handler.guid||(c.handler.guid=n.guid)),i?p.splice(p.delegateCount++,0,c):p.push(c),w.event.global[d]=!0)},remove:function(e,t,n,r,i){var o,a,s,u,l,c,f,p,d,h,g,v=Y.hasData(e)&&Y.get(e);if(v&&(u=v.events)){for(l=(t=(t||\"\").match(P)||[\"\"]).length;l--;)if(d=g=(s=we.exec(t[l])||[])[1],h=(s[2]||\"\").split(\".\").sort(),d){for(f=w.event.special[d]||{},p=u[d=(r?f.delegateType:f.bindType)||d]||[],s=s[2]&&new RegExp(\"(^|\\\\.)\"+h.join(\"\\\\.(?:.*\\\\.|)\")+\"(\\\\.|$)\"),a=o=p.length;o--;)c=p[o],!i&&g!==c.origType||n&&n.guid!==c.guid||s&&!s.test(c.namespace)||r&&r!==c.selector&&(\"**\"!==r||!c.selector)||(p.splice(o,1),c.selector&&p.delegateCount--,f.remove&&f.remove.call(e,c));a&&!p.length&&(f.teardown&&!1!==f.teardown.call(e,h,v.handle)||w.removeEvent(e,d,v.handle),delete u[d])}else for(d in u)w.event.remove(e,d+t[l],n,r,!0);w.isEmptyObject(u)&&Y.remove(e,\"handle events\")}},dispatch:function(e){var t,n,r,i,o,a,s=new Array(arguments.length),u=w.event.fix(e),l=(Y.get(this,\"events\")||Object.create(null))[u.type]||[],c=w.event.special[u.type]||{};for(s[0]=u,t=1;t=1))for(;l!==this;l=l.parentNode||this)if(1===l.nodeType&&(\"click\"!==e.type||!0!==l.disabled)){for(o=[],a={},n=0;n-1:w.find(i,this,null,[l]).length),a[i]&&o.push(r);o.length&&s.push({elem:l,handlers:o})}return l=this,u\\s*$/g;function De(e,t){return A(e,\"table\")&&A(11!==t.nodeType?t:t.firstChild,\"tr\")&&w(e).children(\"tbody\")[0]||e}function qe(e){return e.type=(null!==e.getAttribute(\"type\"))+\"/\"+e.type,e}function Le(e){return\"true/\"===(e.type||\"\").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute(\"type\"),e}function He(e,t){var n,r,i,o,a,s;if(1===t.nodeType){if(Y.hasData(e)&&(s=Y.get(e).events))for(i in Y.remove(t,\"handle events\"),s)for(n=0,r=s[i].length;n1&&\"string\"==typeof v&&!d.checkClone&&Ne.test(v))return e.each((function(i){var o=e.eq(i);y&&(t[0]=v.call(this,i,o.html())),Pe(o,t,n,r)}));if(p&&(a=(i=be(t,e[0].ownerDocument,!1,e,r)).firstChild,1===i.childNodes.length&&(i=a),a||r)){for(u=(s=w.map(ye(i,\"script\"),qe)).length;f0&&me(a,!u&&ye(e,\"script\")),s},cleanData:function(e){for(var t,n,r,i=w.event.special,o=0;void 0!==(n=e[o]);o++)if(V(n)){if(t=n[Y.expando]){if(t.events)for(r in t.events)i[r]?w.event.remove(n,r):w.removeEvent(n,r,t.handle);n[Y.expando]=void 0}n[Q.expando]&&(n[Q.expando]=void 0)}}}),w.fn.extend({detach:function(e){return Re(this,e,!0)},remove:function(e){return Re(this,e)},text:function(e){return $(this,(function(e){return void 0===e?w.text(this):this.empty().each((function(){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||(this.textContent=e)}))}),null,e,arguments.length)},append:function(){return Pe(this,arguments,(function(e){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||De(this,e).appendChild(e)}))},prepend:function(){return Pe(this,arguments,(function(e){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var t=De(this,e);t.insertBefore(e,t.firstChild)}}))},before:function(){return Pe(this,arguments,(function(e){this.parentNode&&this.parentNode.insertBefore(e,this)}))},after:function(){return Pe(this,arguments,(function(e){this.parentNode&&this.parentNode.insertBefore(e,this.nextSibling)}))},empty:function(){for(var e,t=0;null!=(e=this[t]);t++)1===e.nodeType&&(w.cleanData(ye(e,!1)),e.textContent=\"\");return this},clone:function(e,t){return e=null!=e&&e,t=null==t?e:t,this.map((function(){return w.clone(this,e,t)}))},html:function(e){return $(this,(function(e){var t=this[0]||{},n=0,r=this.length;if(void 0===e&&1===t.nodeType)return t.innerHTML;if(\"string\"==typeof e&&!Ae.test(e)&&!ve[(he.exec(e)||[\"\",\"\"])[1].toLowerCase()]){e=w.htmlPrefilter(e);try{for(;n=0&&(u+=Math.max(0,Math.ceil(e[\"offset\"+t[0].toUpperCase()+t.slice(1)]-o-u-s-.5))||0),u}function Ze(e,t,n){var r=Ie(e),i=(!d.boxSizingReliable()||n)&&\"border-box\"===w.css(e,\"boxSizing\",!1,r),o=i,a=Be(e,t,r),s=\"offset\"+t[0].toUpperCase()+t.slice(1);if(Me.test(a)){if(!n)return a;a=\"auto\"}return(!d.boxSizingReliable()&&i||!d.reliableTrDimensions()&&A(e,\"tr\")||\"auto\"===a||!parseFloat(a)&&\"inline\"===w.css(e,\"display\",!1,r))&&e.getClientRects().length&&(i=\"border-box\"===w.css(e,\"boxSizing\",!1,r),(o=s in e)&&(a=e[s])),(a=parseFloat(a)||0)+Ke(e,t,n||(i?\"border\":\"content\"),o,r,a)+\"px\"}function et(e,t,n,r,i){return new et.prototype.init(e,t,n,r,i)}w.extend({cssHooks:{opacity:{get:function(e,t){if(t){var n=Be(e,\"opacity\");return\"\"===n?\"1\":n}}}},cssNumber:{animationIterationCount:!0,columnCount:!0,fillOpacity:!0,flexGrow:!0,flexShrink:!0,fontWeight:!0,gridArea:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnStart:!0,gridRow:!0,gridRowEnd:!0,gridRowStart:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{},style:function(e,t,n,r){if(e&&3!==e.nodeType&&8!==e.nodeType&&e.style){var i,o,a,s=X(t),u=Ge.test(t),l=e.style;if(u||(t=Xe(s)),a=w.cssHooks[t]||w.cssHooks[s],void 0===n)return a&&\"get\"in a&&void 0!==(i=a.get(e,!1,r))?i:l[t];\"string\"===(o=typeof n)&&(i=te.exec(n))&&i[1]&&(n=se(e,t,i),o=\"number\"),null!=n&&n==n&&(\"number\"!==o||u||(n+=i&&i[3]||(w.cssNumber[s]?\"\":\"px\")),d.clearCloneStyle||\"\"!==n||0!==t.indexOf(\"background\")||(l[t]=\"inherit\"),a&&\"set\"in a&&void 0===(n=a.set(e,n,r))||(u?l.setProperty(t,n):l[t]=n))}},css:function(e,t,n,r){var i,o,a,s=X(t);return Ge.test(t)||(t=Xe(s)),(a=w.cssHooks[t]||w.cssHooks[s])&&\"get\"in a&&(i=a.get(e,!0,n)),void 0===i&&(i=Be(e,t,r)),\"normal\"===i&&t in Qe&&(i=Qe[t]),\"\"===n||n?(o=parseFloat(i),!0===n||isFinite(o)?o||0:i):i}}),w.each([\"height\",\"width\"],(function(e,t){w.cssHooks[t]={get:function(e,n,r){if(n)return!Ve.test(w.css(e,\"display\"))||e.getClientRects().length&&e.getBoundingClientRect().width?Ze(e,t,r):We(e,Ye,(function(){return Ze(e,t,r)}))},set:function(e,n,r){var i,o=Ie(e),a=!d.scrollboxSize()&&\"absolute\"===o.position,s=(a||r)&&\"border-box\"===w.css(e,\"boxSizing\",!1,o),u=r?Ke(e,t,r,s,o):0;return s&&a&&(u-=Math.ceil(e[\"offset\"+t[0].toUpperCase()+t.slice(1)]-parseFloat(o[t])-Ke(e,t,\"border\",!1,o)-.5)),u&&(i=te.exec(n))&&\"px\"!==(i[3]||\"px\")&&(e.style[t]=n,n=w.css(e,t)),Je(0,n,u)}}})),w.cssHooks.marginLeft=$e(d.reliableMarginLeft,(function(e,t){if(t)return(parseFloat(Be(e,\"marginLeft\"))||e.getBoundingClientRect().left-We(e,{marginLeft:0},(function(){return e.getBoundingClientRect().left})))+\"px\"})),w.each({margin:\"\",padding:\"\",border:\"Width\"},(function(e,t){w.cssHooks[e+t]={expand:function(n){for(var r=0,i={},o=\"string\"==typeof n?n.split(\" \"):[n];r<4;r++)i[e+ne[r]+t]=o[r]||o[r-2]||o[0];return i}},\"margin\"!==e&&(w.cssHooks[e+t].set=Je)})),w.fn.extend({css:function(e,t){return $(this,(function(e,t,n){var r,i,o={},a=0;if(Array.isArray(t)){for(r=Ie(e),i=t.length;a1)}}),w.Tween=et,et.prototype={constructor:et,init:function(e,t,n,r,i,o){this.elem=e,this.prop=n,this.easing=i||w.easing._default,this.options=t,this.start=this.now=this.cur(),this.end=r,this.unit=o||(w.cssNumber[n]?\"\":\"px\")},cur:function(){var e=et.propHooks[this.prop];return e&&e.get?e.get(this):et.propHooks._default.get(this)},run:function(e){var t,n=et.propHooks[this.prop];return this.options.duration?this.pos=t=w.easing[this.easing](e,this.options.duration*e,0,1,this.options.duration):this.pos=t=e,this.now=(this.end-this.start)*t+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),n&&n.set?n.set(this):et.propHooks._default.set(this),this}},et.prototype.init.prototype=et.prototype,et.propHooks={_default:{get:function(e){var t;return 1!==e.elem.nodeType||null!=e.elem[e.prop]&&null==e.elem.style[e.prop]?e.elem[e.prop]:(t=w.css(e.elem,e.prop,\"\"))&&\"auto\"!==t?t:0},set:function(e){w.fx.step[e.prop]?w.fx.step[e.prop](e):1!==e.elem.nodeType||!w.cssHooks[e.prop]&&null==e.elem.style[Xe(e.prop)]?e.elem[e.prop]=e.now:w.style(e.elem,e.prop,e.now+e.unit)}}},et.propHooks.scrollTop=et.propHooks.scrollLeft={set:function(e){e.elem.nodeType&&e.elem.parentNode&&(e.elem[e.prop]=e.now)}},w.easing={linear:function(e){return e},swing:function(e){return.5-Math.cos(e*Math.PI)/2},_default:\"swing\"},w.fx=et.prototype.init,w.fx.step={};var tt,nt,rt=/^(?:toggle|show|hide)$/,it=/queueHooks$/;function ot(){nt&&(!1===v.hidden&&e.requestAnimationFrame?e.requestAnimationFrame(ot):e.setTimeout(ot,w.fx.interval),w.fx.tick())}function at(){return e.setTimeout((function(){tt=void 0})),tt=Date.now()}function st(e,t){var n,r=0,i={height:e};for(t=t?1:0;r<4;r+=2-t)i[\"margin\"+(n=ne[r])]=i[\"padding\"+n]=e;return t&&(i.opacity=i.width=e),i}function ut(e,t,n){for(var r,i=(lt.tweeners[t]||[]).concat(lt.tweeners[\"*\"]),o=0,a=i.length;o1)},removeAttr:function(e){return this.each((function(){w.removeAttr(this,e)}))}}),w.extend({attr:function(e,t,n){var r,i,o=e.nodeType;if(3!==o&&8!==o&&2!==o)return void 0===e.getAttribute?w.prop(e,t,n):(1===o&&w.isXMLDoc(e)||(i=w.attrHooks[t.toLowerCase()]||(w.expr.match.bool.test(t)?ct:void 0)),void 0!==n?null===n?void w.removeAttr(e,t):i&&\"set\"in i&&void 0!==(r=i.set(e,n,t))?r:(e.setAttribute(t,n+\"\"),n):i&&\"get\"in i&&null!==(r=i.get(e,t))?r:null==(r=w.find.attr(e,t))?void 0:r)},attrHooks:{type:{set:function(e,t){if(!d.radioValue&&\"radio\"===t&&A(e,\"input\")){var n=e.value;return e.setAttribute(\"type\",t),n&&(e.value=n),t}}}},removeAttr:function(e,t){var n,r=0,i=t&&t.match(P);if(i&&1===e.nodeType)for(;n=i[r++];)e.removeAttribute(n)}}),ct={set:function(e,t,n){return!1===t?w.removeAttr(e,n):e.setAttribute(n,n),n}},w.each(w.expr.match.bool.source.match(/\\w+/g),(function(e,t){var n=ft[t]||w.find.attr;ft[t]=function(e,t,r){var i,o,a=t.toLowerCase();return r||(o=ft[a],ft[a]=i,i=null!=n(e,t,r)?a:null,ft[a]=o),i}}));var pt=/^(?:input|select|textarea|button)$/i,dt=/^(?:a|area)$/i;function ht(e){return(e.match(P)||[]).join(\" \")}function gt(e){return e.getAttribute&&e.getAttribute(\"class\")||\"\"}function vt(e){return Array.isArray(e)?e:\"string\"==typeof e&&e.match(P)||[]}w.fn.extend({prop:function(e,t){return $(this,w.prop,e,t,arguments.length>1)},removeProp:function(e){return this.each((function(){delete this[w.propFix[e]||e]}))}}),w.extend({prop:function(e,t,n){var r,i,o=e.nodeType;if(3!==o&&8!==o&&2!==o)return 1===o&&w.isXMLDoc(e)||(t=w.propFix[t]||t,i=w.propHooks[t]),void 0!==n?i&&\"set\"in i&&void 0!==(r=i.set(e,n,t))?r:e[t]=n:i&&\"get\"in i&&null!==(r=i.get(e,t))?r:e[t]},propHooks:{tabIndex:{get:function(e){var t=w.find.attr(e,\"tabindex\");return t?parseInt(t,10):pt.test(e.nodeName)||dt.test(e.nodeName)&&e.href?0:-1}}},propFix:{for:\"htmlFor\",class:\"className\"}}),d.optSelected||(w.propHooks.selected={get:function(e){var t=e.parentNode;return t&&t.parentNode&&t.parentNode.selectedIndex,null},set:function(e){var t=e.parentNode;t&&(t.selectedIndex,t.parentNode&&t.parentNode.selectedIndex)}}),w.each([\"tabIndex\",\"readOnly\",\"maxLength\",\"cellSpacing\",\"cellPadding\",\"rowSpan\",\"colSpan\",\"useMap\",\"frameBorder\",\"contentEditable\"],(function(){w.propFix[this.toLowerCase()]=this})),w.fn.extend({addClass:function(e){var t,n,r,i,o,a,s,u=0;if(h(e))return this.each((function(t){w(this).addClass(e.call(this,t,gt(this)))}));if((t=vt(e)).length)for(;n=this[u++];)if(i=gt(n),r=1===n.nodeType&&\" \"+ht(i)+\" \"){for(a=0;o=t[a++];)r.indexOf(\" \"+o+\" \")<0&&(r+=o+\" \");i!==(s=ht(r))&&n.setAttribute(\"class\",s)}return this},removeClass:function(e){var t,n,r,i,o,a,s,u=0;if(h(e))return this.each((function(t){w(this).removeClass(e.call(this,t,gt(this)))}));if(!arguments.length)return this.attr(\"class\",\"\");if((t=vt(e)).length)for(;n=this[u++];)if(i=gt(n),r=1===n.nodeType&&\" \"+ht(i)+\" \"){for(a=0;o=t[a++];)for(;r.indexOf(\" \"+o+\" \")>-1;)r=r.replace(\" \"+o+\" \",\" \");i!==(s=ht(r))&&n.setAttribute(\"class\",s)}return this},toggleClass:function(e,t){var n=typeof e,r=\"string\"===n||Array.isArray(e);return\"boolean\"==typeof t&&r?t?this.addClass(e):this.removeClass(e):h(e)?this.each((function(n){w(this).toggleClass(e.call(this,n,gt(this),t),t)})):this.each((function(){var t,i,o,a;if(r)for(i=0,o=w(this),a=vt(e);t=a[i++];)o.hasClass(t)?o.removeClass(t):o.addClass(t);else void 0!==e&&\"boolean\"!==n||((t=gt(this))&&Y.set(this,\"__className__\",t),this.setAttribute&&this.setAttribute(\"class\",t||!1===e?\"\":Y.get(this,\"__className__\")||\"\"))}))},hasClass:function(e){var t,n,r=0;for(t=\" \"+e+\" \";n=this[r++];)if(1===n.nodeType&&(\" \"+ht(gt(n))+\" \").indexOf(t)>-1)return!0;return!1}});var yt=/\\r/g;w.fn.extend({val:function(e){var t,n,r,i=this[0];return arguments.length?(r=h(e),this.each((function(n){var i;1===this.nodeType&&(null==(i=r?e.call(this,n,w(this).val()):e)?i=\"\":\"number\"==typeof i?i+=\"\":Array.isArray(i)&&(i=w.map(i,(function(e){return null==e?\"\":e+\"\"}))),(t=w.valHooks[this.type]||w.valHooks[this.nodeName.toLowerCase()])&&\"set\"in t&&void 0!==t.set(this,i,\"value\")||(this.value=i))}))):i?(t=w.valHooks[i.type]||w.valHooks[i.nodeName.toLowerCase()])&&\"get\"in t&&void 0!==(n=t.get(i,\"value\"))?n:\"string\"==typeof(n=i.value)?n.replace(yt,\"\"):null==n?\"\":n:void 0}}),w.extend({valHooks:{option:{get:function(e){var t=w.find.attr(e,\"value\");return null!=t?t:ht(w.text(e))}},select:{get:function(e){var t,n,r,i=e.options,o=e.selectedIndex,a=\"select-one\"===e.type,s=a?null:[],u=a?o+1:i.length;for(r=o<0?u:a?o:0;r-1)&&(n=!0);return n||(e.selectedIndex=-1),o}}}}),w.each([\"radio\",\"checkbox\"],(function(){w.valHooks[this]={set:function(e,t){if(Array.isArray(t))return e.checked=w.inArray(w(e).val(),t)>-1}},d.checkOn||(w.valHooks[this].get=function(e){return null===e.getAttribute(\"value\")?\"on\":e.value})})),d.focusin=\"onfocusin\"in e;var mt=/^(?:focusinfocus|focusoutblur)$/,xt=function(e){e.stopPropagation()};w.extend(w.event,{trigger:function(t,n,r,i){var o,a,s,u,l,f,p,d,y=[r||v],m=c.call(t,\"type\")?t.type:t,x=c.call(t,\"namespace\")?t.namespace.split(\".\"):[];if(a=d=s=r=r||v,3!==r.nodeType&&8!==r.nodeType&&!mt.test(m+w.event.triggered)&&(m.indexOf(\".\")>-1&&(x=m.split(\".\"),m=x.shift(),x.sort()),l=m.indexOf(\":\")<0&&\"on\"+m,(t=t[w.expando]?t:new w.Event(m,\"object\"==typeof t&&t)).isTrigger=i?2:3,t.namespace=x.join(\".\"),t.rnamespace=t.namespace?new RegExp(\"(^|\\\\.)\"+x.join(\"\\\\.(?:.*\\\\.|)\")+\"(\\\\.|$)\"):null,t.result=void 0,t.target||(t.target=r),n=null==n?[t]:w.makeArray(n,[t]),p=w.event.special[m]||{},i||!p.trigger||!1!==p.trigger.apply(r,n))){if(!i&&!p.noBubble&&!g(r)){for(u=p.delegateType||m,mt.test(u+m)||(a=a.parentNode);a;a=a.parentNode)y.push(a),s=a;s===(r.ownerDocument||v)&&y.push(s.defaultView||s.parentWindow||e)}for(o=0;(a=y[o++])&&!t.isPropagationStopped();)d=a,t.type=o>1?u:p.bindType||m,(f=(Y.get(a,\"events\")||Object.create(null))[t.type]&&Y.get(a,\"handle\"))&&f.apply(a,n),(f=l&&a[l])&&f.apply&&V(a)&&(t.result=f.apply(a,n),!1===t.result&&t.preventDefault());return t.type=m,i||t.isDefaultPrevented()||p._default&&!1!==p._default.apply(y.pop(),n)||!V(r)||l&&h(r[m])&&!g(r)&&((s=r[l])&&(r[l]=null),w.event.triggered=m,t.isPropagationStopped()&&d.addEventListener(m,xt),r[m](),t.isPropagationStopped()&&d.removeEventListener(m,xt),w.event.triggered=void 0,s&&(r[l]=s)),t.result}},simulate:function(e,t,n){var r=w.extend(new w.Event,n,{type:e,isSimulated:!0});w.event.trigger(r,null,t)}}),w.fn.extend({trigger:function(e,t){return this.each((function(){w.event.trigger(e,t,this)}))},triggerHandler:function(e,t){var n=this[0];if(n)return w.event.trigger(e,t,n,!0)}}),d.focusin||w.each({focus:\"focusin\",blur:\"focusout\"},(function(e,t){var n=function(e){w.event.simulate(t,e.target,w.event.fix(e))};w.event.special[t]={setup:function(){var r=this.ownerDocument||this.document||this,i=Y.access(r,t);i||r.addEventListener(e,n,!0),Y.access(r,t,(i||0)+1)},teardown:function(){var r=this.ownerDocument||this.document||this,i=Y.access(r,t)-1;i?Y.access(r,t,i):(r.removeEventListener(e,n,!0),Y.remove(r,t))}}}));var bt=e.location,wt={guid:Date.now()},Tt=/\\?/;w.parseXML=function(t){var n,r;if(!t||\"string\"!=typeof t)return null;try{n=(new e.DOMParser).parseFromString(t,\"text/xml\")}catch(e){}return r=n&&n.getElementsByTagName(\"parsererror\")[0],n&&!r||w.error(\"Invalid XML: \"+(r?w.map(r.childNodes,(function(e){return e.textContent})).join(\"\\n\"):t)),n};var Ct=/\\[\\]$/,Et=/\\r?\\n/g,St=/^(?:submit|button|image|reset|file)$/i,kt=/^(?:input|select|textarea|keygen)/i;function At(e,t,n,r){var i;if(Array.isArray(t))w.each(t,(function(t,i){n||Ct.test(e)?r(e,i):At(e+\"[\"+(\"object\"==typeof i&&null!=i?t:\"\")+\"]\",i,n,r)}));else if(n||\"object\"!==x(t))r(e,t);else for(i in t)At(e+\"[\"+i+\"]\",t[i],n,r)}w.param=function(e,t){var n,r=[],i=function(e,t){var n=h(t)?t():t;r[r.length]=encodeURIComponent(e)+\"=\"+encodeURIComponent(null==n?\"\":n)};if(null==e)return\"\";if(Array.isArray(e)||e.jquery&&!w.isPlainObject(e))w.each(e,(function(){i(this.name,this.value)}));else for(n in e)At(n,e[n],t,i);return r.join(\"&\")},w.fn.extend({serialize:function(){return w.param(this.serializeArray())},serializeArray:function(){return this.map((function(){var e=w.prop(this,\"elements\");return e?w.makeArray(e):this})).filter((function(){var e=this.type;return this.name&&!w(this).is(\":disabled\")&&kt.test(this.nodeName)&&!St.test(e)&&(this.checked||!de.test(e))})).map((function(e,t){var n=w(this).val();return null==n?null:Array.isArray(n)?w.map(n,(function(e){return{name:t.name,value:e.replace(Et,\"\\r\\n\")}})):{name:t.name,value:n.replace(Et,\"\\r\\n\")}})).get()}});var Nt=/%20/g,jt=/#.*$/,Dt=/([?&])_=[^&]*/,qt=/^(.*?):[ \\t]*([^\\r\\n]*)$/gm,Lt=/^(?:GET|HEAD)$/,Ht=/^\\/\\//,Ot={},Pt={},Rt=\"*/\".concat(\"*\"),Mt=v.createElement(\"a\");function It(e){return function(t,n){\"string\"!=typeof t&&(n=t,t=\"*\");var r,i=0,o=t.toLowerCase().match(P)||[];if(h(n))for(;r=o[i++];)\"+\"===r[0]?(r=r.slice(1)||\"*\",(e[r]=e[r]||[]).unshift(n)):(e[r]=e[r]||[]).push(n)}}function Wt(e,t,n,r){var i={},o=e===Pt;function a(s){var u;return i[s]=!0,w.each(e[s]||[],(function(e,s){var l=s(t,n,r);return\"string\"!=typeof l||o||i[l]?o?!(u=l):void 0:(t.dataTypes.unshift(l),a(l),!1)})),u}return a(t.dataTypes[0])||!i[\"*\"]&&a(\"*\")}function Ft(e,t){var n,r,i=w.ajaxSettings.flatOptions||{};for(n in t)void 0!==t[n]&&((i[n]?e:r||(r={}))[n]=t[n]);return r&&w.extend(!0,e,r),e}Mt.href=bt.href,w.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:bt.href,type:\"GET\",isLocal:/^(?:about|app|app-storage|.+-extension|file|res|widget):$/.test(bt.protocol),global:!0,processData:!0,async:!0,contentType:\"application/x-www-form-urlencoded; charset=UTF-8\",accepts:{\"*\":Rt,text:\"text/plain\",html:\"text/html\",xml:\"application/xml, text/xml\",json:\"application/json, text/javascript\"},contents:{xml:/\\bxml\\b/,html:/\\bhtml/,json:/\\bjson\\b/},responseFields:{xml:\"responseXML\",text:\"responseText\",json:\"responseJSON\"},converters:{\"* text\":String,\"text html\":!0,\"text json\":JSON.parse,\"text xml\":w.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(e,t){return t?Ft(Ft(e,w.ajaxSettings),t):Ft(w.ajaxSettings,e)},ajaxPrefilter:It(Ot),ajaxTransport:It(Pt),ajax:function(t,n){\"object\"==typeof t&&(n=t,t=void 0),n=n||{};var r,i,o,a,s,u,l,c,f,p,d=w.ajaxSetup({},n),h=d.context||d,g=d.context&&(h.nodeType||h.jquery)?w(h):w.event,y=w.Deferred(),m=w.Callbacks(\"once memory\"),x=d.statusCode||{},b={},T={},C=\"canceled\",E={readyState:0,getResponseHeader:function(e){var t;if(l){if(!a)for(a={};t=qt.exec(o);)a[t[1].toLowerCase()+\" \"]=(a[t[1].toLowerCase()+\" \"]||[]).concat(t[2]);t=a[e.toLowerCase()+\" \"]}return null==t?null:t.join(\", \")},getAllResponseHeaders:function(){return l?o:null},setRequestHeader:function(e,t){return null==l&&(e=T[e.toLowerCase()]=T[e.toLowerCase()]||e,b[e]=t),this},overrideMimeType:function(e){return null==l&&(d.mimeType=e),this},statusCode:function(e){var t;if(e)if(l)E.always(e[E.status]);else for(t in e)x[t]=[x[t],e[t]];return this},abort:function(e){var t=e||C;return r&&r.abort(t),S(0,t),this}};if(y.promise(E),d.url=((t||d.url||bt.href)+\"\").replace(Ht,bt.protocol+\"//\"),d.type=n.method||n.type||d.method||d.type,d.dataTypes=(d.dataType||\"*\").toLowerCase().match(P)||[\"\"],null==d.crossDomain){u=v.createElement(\"a\");try{u.href=d.url,u.href=u.href,d.crossDomain=Mt.protocol+\"//\"+Mt.host!=u.protocol+\"//\"+u.host}catch(e){d.crossDomain=!0}}if(d.data&&d.processData&&\"string\"!=typeof d.data&&(d.data=w.param(d.data,d.traditional)),Wt(Ot,d,n,E),l)return E;for(f in(c=w.event&&d.global)&&0==w.active++&&w.event.trigger(\"ajaxStart\"),d.type=d.type.toUpperCase(),d.hasContent=!Lt.test(d.type),i=d.url.replace(jt,\"\"),d.hasContent?d.data&&d.processData&&0===(d.contentType||\"\").indexOf(\"application/x-www-form-urlencoded\")&&(d.data=d.data.replace(Nt,\"+\")):(p=d.url.slice(i.length),d.data&&(d.processData||\"string\"==typeof d.data)&&(i+=(Tt.test(i)?\"&\":\"?\")+d.data,delete d.data),!1===d.cache&&(i=i.replace(Dt,\"$1\"),p=(Tt.test(i)?\"&\":\"?\")+\"_=\"+wt.guid+++p),d.url=i+p),d.ifModified&&(w.lastModified[i]&&E.setRequestHeader(\"If-Modified-Since\",w.lastModified[i]),w.etag[i]&&E.setRequestHeader(\"If-None-Match\",w.etag[i])),(d.data&&d.hasContent&&!1!==d.contentType||n.contentType)&&E.setRequestHeader(\"Content-Type\",d.contentType),E.setRequestHeader(\"Accept\",d.dataTypes[0]&&d.accepts[d.dataTypes[0]]?d.accepts[d.dataTypes[0]]+(\"*\"!==d.dataTypes[0]?\", \"+Rt+\"; q=0.01\":\"\"):d.accepts[\"*\"]),d.headers)E.setRequestHeader(f,d.headers[f]);if(d.beforeSend&&(!1===d.beforeSend.call(h,E,d)||l))return E.abort();if(C=\"abort\",m.add(d.complete),E.done(d.success),E.fail(d.error),r=Wt(Pt,d,n,E)){if(E.readyState=1,c&&g.trigger(\"ajaxSend\",[E,d]),l)return E;d.async&&d.timeout>0&&(s=e.setTimeout((function(){E.abort(\"timeout\")}),d.timeout));try{l=!1,r.send(b,S)}catch(e){if(l)throw e;S(-1,e)}}else S(-1,\"No Transport\");function S(t,n,a,u){var f,p,v,b,T,C=n;l||(l=!0,s&&e.clearTimeout(s),r=void 0,o=u||\"\",E.readyState=t>0?4:0,f=t>=200&&t<300||304===t,a&&(b=function(e,t,n){for(var r,i,o,a,s=e.contents,u=e.dataTypes;\"*\"===u[0];)u.shift(),void 0===r&&(r=e.mimeType||t.getResponseHeader(\"Content-Type\"));if(r)for(i in s)if(s[i]&&s[i].test(r)){u.unshift(i);break}if(u[0]in n)o=u[0];else{for(i in n){if(!u[0]||e.converters[i+\" \"+u[0]]){o=i;break}a||(a=i)}o=o||a}if(o)return o!==u[0]&&u.unshift(o),n[o]}(d,E,a)),!f&&w.inArray(\"script\",d.dataTypes)>-1&&w.inArray(\"json\",d.dataTypes)<0&&(d.converters[\"text script\"]=function(){}),b=function(e,t,n,r){var i,o,a,s,u,l={},c=e.dataTypes.slice();if(c[1])for(a in e.converters)l[a.toLowerCase()]=e.converters[a];for(o=c.shift();o;)if(e.responseFields[o]&&(n[e.responseFields[o]]=t),!u&&r&&e.dataFilter&&(t=e.dataFilter(t,e.dataType)),u=o,o=c.shift())if(\"*\"===o)o=u;else if(\"*\"!==u&&u!==o){if(!(a=l[u+\" \"+o]||l[\"* \"+o]))for(i in l)if((s=i.split(\" \"))[1]===o&&(a=l[u+\" \"+s[0]]||l[\"* \"+s[0]])){!0===a?a=l[i]:!0!==l[i]&&(o=s[0],c.unshift(s[1]));break}if(!0!==a)if(a&&e.throws)t=a(t);else try{t=a(t)}catch(e){return{state:\"parsererror\",error:a?e:\"No conversion from \"+u+\" to \"+o}}}return{state:\"success\",data:t}}(d,b,E,f),f?(d.ifModified&&((T=E.getResponseHeader(\"Last-Modified\"))&&(w.lastModified[i]=T),(T=E.getResponseHeader(\"etag\"))&&(w.etag[i]=T)),204===t||\"HEAD\"===d.type?C=\"nocontent\":304===t?C=\"notmodified\":(C=b.state,p=b.data,f=!(v=b.error))):(v=C,!t&&C||(C=\"error\",t<0&&(t=0))),E.status=t,E.statusText=(n||C)+\"\",f?y.resolveWith(h,[p,C,E]):y.rejectWith(h,[E,C,v]),E.statusCode(x),x=void 0,c&&g.trigger(f?\"ajaxSuccess\":\"ajaxError\",[E,d,f?p:v]),m.fireWith(h,[E,C]),c&&(g.trigger(\"ajaxComplete\",[E,d]),--w.active||w.event.trigger(\"ajaxStop\")))}return E},getJSON:function(e,t,n){return w.get(e,t,n,\"json\")},getScript:function(e,t){return w.get(e,void 0,t,\"script\")}}),w.each([\"get\",\"post\"],(function(e,t){w[t]=function(e,n,r,i){return h(n)&&(i=i||r,r=n,n=void 0),w.ajax(w.extend({url:e,type:t,dataType:i,data:n,success:r},w.isPlainObject(e)&&e))}})),w.ajaxPrefilter((function(e){var t;for(t in e.headers)\"content-type\"===t.toLowerCase()&&(e.contentType=e.headers[t]||\"\")})),w._evalUrl=function(e,t,n){return w.ajax({url:e,type:\"GET\",dataType:\"script\",cache:!0,async:!1,global:!1,converters:{\"text script\":function(){}},dataFilter:function(e){w.globalEval(e,t,n)}})},w.fn.extend({wrapAll:function(e){var t;return this[0]&&(h(e)&&(e=e.call(this[0])),t=w(e,this[0].ownerDocument).eq(0).clone(!0),this[0].parentNode&&t.insertBefore(this[0]),t.map((function(){for(var e=this;e.firstElementChild;)e=e.firstElementChild;return e})).append(this)),this},wrapInner:function(e){return h(e)?this.each((function(t){w(this).wrapInner(e.call(this,t))})):this.each((function(){var t=w(this),n=t.contents();n.length?n.wrapAll(e):t.append(e)}))},wrap:function(e){var t=h(e);return this.each((function(n){w(this).wrapAll(t?e.call(this,n):e)}))},unwrap:function(e){return this.parent(e).not(\"body\").each((function(){w(this).replaceWith(this.childNodes)})),this}}),w.expr.pseudos.hidden=function(e){return!w.expr.pseudos.visible(e)},w.expr.pseudos.visible=function(e){return!!(e.offsetWidth||e.offsetHeight||e.getClientRects().length)},w.ajaxSettings.xhr=function(){try{return new e.XMLHttpRequest}catch(e){}};var Bt={0:200,1223:204},$t=w.ajaxSettings.xhr();d.cors=!!$t&&\"withCredentials\"in $t,d.ajax=$t=!!$t,w.ajaxTransport((function(t){var n,r;if(d.cors||$t&&!t.crossDomain)return{send:function(i,o){var a,s=t.xhr();if(s.open(t.type,t.url,t.async,t.username,t.password),t.xhrFields)for(a in t.xhrFields)s[a]=t.xhrFields[a];for(a in t.mimeType&&s.overrideMimeType&&s.overrideMimeType(t.mimeType),t.crossDomain||i[\"X-Requested-With\"]||(i[\"X-Requested-With\"]=\"XMLHttpRequest\"),i)s.setRequestHeader(a,i[a]);n=function(e){return function(){n&&(n=r=s.onload=s.onerror=s.onabort=s.ontimeout=s.onreadystatechange=null,\"abort\"===e?s.abort():\"error\"===e?\"number\"!=typeof s.status?o(0,\"error\"):o(s.status,s.statusText):o(Bt[s.status]||s.status,s.statusText,\"text\"!==(s.responseType||\"text\")||\"string\"!=typeof s.responseText?{binary:s.response}:{text:s.responseText},s.getAllResponseHeaders()))}},s.onload=n(),r=s.onerror=s.ontimeout=n(\"error\"),void 0!==s.onabort?s.onabort=r:s.onreadystatechange=function(){4===s.readyState&&e.setTimeout((function(){n&&r()}))},n=n(\"abort\");try{s.send(t.hasContent&&t.data||null)}catch(e){if(n)throw e}},abort:function(){n&&n()}}})),w.ajaxPrefilter((function(e){e.crossDomain&&(e.contents.script=!1)})),w.ajaxSetup({accepts:{script:\"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript\"},contents:{script:/\\b(?:java|ecma)script\\b/},converters:{\"text script\":function(e){return w.globalEval(e),e}}}),w.ajaxPrefilter(\"script\",(function(e){void 0===e.cache&&(e.cache=!1),e.crossDomain&&(e.type=\"GET\")})),w.ajaxTransport(\"script\",(function(e){var t,n;if(e.crossDomain||e.scriptAttrs)return{send:function(r,i){t=w(\"