Skip to content

Instantly share code, notes, and snippets.

@Andre-Tan
Last active October 22, 2023 06:17
Show Gist options
  • Save Andre-Tan/78b15b52c2c542da4a2d1070f2fbefbf to your computer and use it in GitHub Desktop.
Save Andre-Tan/78b15b52c2c542da4a2d1070f2fbefbf to your computer and use it in GitHub Desktop.
Quick Go-through of Evidently AI for Data and ML Model Monitoring
Display the source blob
Display the rendered blob
Raw
{
"cells": [
{
"cell_type": "markdown",
"id": "0cbfa35a",
"metadata": {
"toc": true
},
"source": [
"<h1>Table of Contents<span class=\"tocSkip\"></span></h1>\n",
"<div class=\"toc\"><ul class=\"toc-item\"><li><span><a href=\"#Core-Concepts\" data-toc-modified-id=\"Core-Concepts-1\"><span class=\"toc-item-num\">1&nbsp;&nbsp;</span><a href=\"https://docs.evidentlyai.com/readme/core-concepts\" target=\"_blank\">Core Concepts</a></a></span></li><li><span><a href=\"#Data-Preparation\" data-toc-modified-id=\"Data-Preparation-2\"><span class=\"toc-item-num\">2&nbsp;&nbsp;</span>Data Preparation</a></span></li><li><span><a href=\"#Reports-and-Test-Suites\" data-toc-modified-id=\"Reports-and-Test-Suites-3\"><span class=\"toc-item-num\">3&nbsp;&nbsp;</span>Reports and Test Suites</a></span><ul class=\"toc-item\"><li><span><a href=\"#Report-Presets-and-Examples\" data-toc-modified-id=\"Report-Presets-and-Examples-3.1\"><span class=\"toc-item-num\">3.1&nbsp;&nbsp;</span>Report Presets and Examples</a></span></li><li><span><a href=\"#Test-Suite-Presets-and-Examples\" data-toc-modified-id=\"Test-Suite-Presets-and-Examples-3.2\"><span class=\"toc-item-num\">3.2&nbsp;&nbsp;</span>Test Suite Presets and Examples</a></span></li><li><span><a href=\"#Output-Artefacts\" data-toc-modified-id=\"Output-Artefacts-3.3\"><span class=\"toc-item-num\">3.3&nbsp;&nbsp;</span>Output Artefacts</a></span></li></ul></li><li><span><a href=\"#References\" data-toc-modified-id=\"References-4\"><span class=\"toc-item-num\">4&nbsp;&nbsp;</span>References</a></span></li></ul></div>"
]
},
{
"cell_type": "markdown",
"id": "46b2a7fa-176b-4d10-94e8-5457a1dadcb5",
"metadata": {
"tags": []
},
"source": [
"# [Core Concepts](https://docs.evidentlyai.com/readme/core-concepts)\n",
"\n",
"* A [**Metric**](https://docs.evidentlyai.com/reference/all-metrics) is a core component of Evidently. \n",
" * You can combine multiple **Metrics** in a **Report**. \n",
" * Reports are best for visual analysis and debugging of your models and data.\n",
"\n",
"\n",
"* A [**Test**](https://docs.evidentlyai.com/reference/all-tests) is a **Metric** with a condition. Each test returns a pass or fail result. \n",
" * You can combine multiple **Tests** in a **Test Suite**. \n",
" * Test Suites are best of automated model checks as part of an ML pipeline.\n",
" \n",
"For both Tests and Metrics, Evidently has [**Presets**](https://docs.evidentlyai.com/presets/all-presets). These are pre-built combinations of Metrics or Tests that fit a specific use case.\n",
"\n",
"* A **Snapshot** is a JSON version of the Report or a **Test Suite** which contains measurements and test results for a specific period.\n",
" * You can log them over time and run an Evidently Monitoring Dashboard for continuous monitoring.\n",
" \n",
"---"
]
},
{
"cell_type": "markdown",
"id": "8d7ea807-4619-45e3-8af6-9e877d424600",
"metadata": {},
"source": [
"Evidently expects a certain dataset structure and input column names set in [**Column Mapping**](https://docs.evidentlyai.com/user-guide/input-data/column-mapping) object. You can pass the object to Test Suites and Reports.\n",
"\n",
"If the column_mapping is not specified or set as None, Evidently will use the default mapping strategy.\n",
"\n",
"Column types:\n",
"\n",
"1. All columns with numeric types (np.number) will be treated as Numerical.\n",
"2. All columns with DateTime format (np.datetime64) will be treated as DateTime.\n",
"3. All other columns will be treated as Categorical.\n",
"\n",
"Dataset structure:\n",
"\n",
"1. The column named `id` will be treated as an ID column.\n",
"2. The column named `datetime` will be treated as a DateTime column.\n",
"3. The column named `target` will be treated as a target function.\n",
"4. The column named `prediction` will be treated as a model prediction.\n",
"\n",
"Data structure requirements depend on the type of analysis. Here are example requirements:\n",
"\n",
"| Report/Test Suite | Feature columns | Prediction column | Target column | ID column | Datetime column |\n",
"| -------------------------- | --------------- | --------------------------------- | --------------------------------- | --------- | --------------- |\n",
"| Data Quality | Required | Optional | Optional | Optional | Optional |\n",
"| Data Drift | Required | Optional | Optional | Optional | Optional |\n",
"| Target Drift | Optional | Target and/or prediction required | Target and/or prediction required | Optional | Optional |\n",
"| Classification Performance | Optional | Required | Required | Optional | Optional |\n",
"| Regression Performance | Optional | Required | Required | Optional | Optional |\n",
"\n",
"---"
]
},
{
"cell_type": "markdown",
"id": "f4ec6f42-8114-456a-80de-3217b337ade9",
"metadata": {},
"source": [
"# Data Preparation\n",
"\n",
"**Metrics** may require a reference dataset for testing purposes (e.g., for stability testing).\n",
"\n",
"We are going to use `df_train` as the reference dataset, and `df_test` as the simulation dataset."
]
},
{
"cell_type": "code",
"execution_count": 137,
"id": "87ab5e80-e24d-40bc-9014-8f7265896e54",
"metadata": {
"tags": []
},
"outputs": [],
"source": [
"import warnings\n",
"warnings.filterwarnings('ignore')\n",
"\n",
"import pandas as pd\n",
"import numpy as np\n",
"\n",
"from sklearn.datasets import load_breast_cancer\n",
"from sklearn.model_selection import train_test_split\n",
"\n",
"from evidently import ColumnMapping\n",
"from evidently.test_suite import TestSuite\n",
"from evidently.report import Report\n",
"\n",
"from evidently.metric_preset import DataDriftPreset, DataQualityPreset, RegressionPreset, ClassificationPreset, TargetDriftPreset, TextOverviewPreset\n",
"from evidently.test_preset import NoTargetPerformanceTestPreset, DataQualityTestPreset, DataStabilityTestPreset, DataDriftTestPreset, RegressionTestPreset, \\\n",
" MulticlassClassificationTestPreset, BinaryClassificationTopKTestPreset, BinaryClassificationTestPreset\n",
"\n",
"SEED = 42"
]
},
{
"cell_type": "code",
"execution_count": 121,
"id": "e7d8fc93-b1ab-4d20-b6e0-667c42da89b6",
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"((398, 32), (171, 32))"
]
},
"execution_count": 121,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"breast_cancer = load_breast_cancer()\n",
"\n",
"column_target = 'target'\n",
"column_score = 'proba_cancer'\n",
"columns_feature = list(breast_cancer.feature_names)\n",
"\n",
"df_data = pd.DataFrame(\n",
" data=np.column_stack(\n",
" (breast_cancer.data, breast_cancer.target)\n",
" ),\n",
" columns=columns_feature+[column_target]\n",
")\n",
"\n",
"df_data[column_target] = df_data[column_target].apply(int)\n",
"df_data[\"prediction\"] = np.random.uniform(size=df_data.shape[0]) # Random model as placeholder\n",
"\n",
"df_train, df_test = train_test_split(\n",
" df_data, test_size=0.3, random_state=SEED\n",
")\n",
"\n",
"df_train = df_train.reset_index(drop=True)\n",
"df_test = df_test.reset_index(drop=True)\n",
"\n",
"df_train.shape, df_test.shape"
]
},
{
"cell_type": "code",
"execution_count": 138,
"id": "6160100c-c1ab-48a5-b79d-ce51b756f541",
"metadata": {},
"outputs": [],
"source": [
"column_mapping = ColumnMapping()\n",
"\n",
"column_mapping.target = column_target\n",
"column_mapping.prediction = 'prediction'\n",
"column_mapping.pos_label = 1 # Needed if a column with probability, not the predicted class\n",
"column_mapping.target_names = None # Label name\n",
"\n",
"column_mapping.numerical_features = columns_feature\n",
"column_mapping.categorical_features = None\n",
"column_mapping.task = 'classification' # can be regression, classification, or recsys (recommender-system)\n",
"\n",
"column_mapping.id = None #there is no ID column in the dataset\n",
"column_mapping.datetime = None # column with datetime\n",
"column_mapping.text_features = None # columns with raw text features\n",
"column_mapping.datetime_features = None #list of DateTime/temporal features"
]
},
{
"cell_type": "markdown",
"id": "8bee6cdf-4be0-4f17-85c7-0ff7a8185383",
"metadata": {},
"source": [
"---\n",
"\n",
"# Reports and Test Suites\n",
"\n",
"In Windows, we can use `test_suites.show(mode=\"inline\")` to show the result in Notebook.\n",
"\n",
"However, in Linux and Mac, you need to run two things:\n",
"\n",
"```\n",
"jupyter nbextension install --sys-prefix --symlink --overwrite --py evidently\n",
"jupyter nbextension enable evidently --py --sys-prefix\n",
"```\n",
"\n",
"Alternatively, it is possible to get the result as a HTML file, or as a JSON / python Dictionary.\n",
"\n",
"```\n",
"report.save_html(\"report.html\")\n",
"test_suites.json()\n",
"report.as_dict()\n",
"```\n",
"\n",
"## Report Presets and Examples\n",
"\n",
"| DataDriftPreset | DataQualityPreset | RegressionPreset | ClassificationPreset | TargetDriftPreset | TextOverviewPreset |\n",
"| --------------------- | ----------------------------------- | ---------------------------------- | ----------------------------- | ---------------------------------------------------------------------------- | ------------------------------------- |\n",
"| DatasetDriftMetric | DatasetSummaryMetric | RegressionQualityMetric | ClassificationQualityMetric | ColumnDriftMetric - for target and prediction if present in datasets. | ColumnSummaryMetric |\n",
"| DataDriftTable | ColumnSummaryMetric for each column | RegressionPredictedVsActualScatter | ClassificationClassBalance | ColumnValuePlot - if task is regression. | TextDescriptorsDistribution |\n",
"| EmbeddingsDriftMetric | DatasetMissingValuesMetric | RegressionPredictedVsActualPlot | ClassificationConfusionMatrix | ColumnCorrelationsMetric - for target and prediction if present in datasets. | TextDescriptorsCorrelation |\n",
"| | DatasetCorrelationsMetric | RegressionErrorPlot | ClassificationQualityByClass | TargetByFeaturesTable | ColumnDriftMetric |\n",
"| | | RegressionAbsPercentageErrorPlot | | | TextDescriptorsDescriptorsDriftMetric |\n",
"| | | RegressionErrorDistribution | | | |\n",
"| | | RegressionErrorNormality | | | |\n",
"| | | RegressionTopErrorMetric | | | |\n",
"| | | RegressionErrorBiasTable | | |"
]
},
{
"cell_type": "code",
"execution_count": 141,
"id": "85f91d5d-de9f-4703-a546-fd8197b6b3c3",
"metadata": {
"collapsed": true,
"jupyter": {
"outputs_hidden": true
},
"tags": []
},
"outputs": [
{
"data": {
"text/html": [
"\n",
" \n",
" <script type=\"application/javascript\">\n",
" ;(function () {\n",
" if (window.evidentlyResizeIframeInterval) {\n",
" clearInterval(window.evidentlyResizeIframeInterval)\n",
" window.evidentlyResizeIframeInterval = null\n",
" }\n",
"\n",
" ;(function (INTERVAL = 100) {\n",
" window.evidentlyResizeIframeInterval = setInterval(() => {\n",
" document\n",
" .querySelectorAll('iframe.evidently-ui-iframe')\n",
" .forEach((iframe) => resizeIFrameHeightToFitContent(iframe))\n",
" }, INTERVAL)\n",
"\n",
" const getIframeHeight = (iframe) => iframe.contentWindow.document.body.scrollHeight\n",
"\n",
" const resizeIFrameHeightToFitContent = (iframe) =>\n",
" iframe.height !== getIframeHeight(iframe) && (iframe.height = getIframeHeight(iframe))\n",
" })()\n",
" })()\n",
" </script>\n",
" \n",
" <iframe class='evidently-ui-iframe' width=\"100%\" frameborder=\"0\" srcdoc=\"\n",
"&lt;html&gt;\n",
"&lt;head&gt;\n",
"&lt;meta charset=&quot;utf-8&quot;&gt;\n",
"&lt;style&gt;\n",
"/* fallback */\n",
"@font-face {\n",
" font-family: &#x27;Material Icons&#x27;;\n",
" font-style: normal;\n",
" font-weight: 400;\n",
" src: url(data:font/ttf;base64,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) format(&#x27;woff2&#x27;);\n",
"}\n",
"\n",
".center-align {\n",
" text-align: center;\n",
"}\n",
"\n",
".material-icons {\n",
" font-family: &#x27;Material Icons&#x27;;\n",
" font-weight: normal;\n",
" font-style: normal;\n",
" font-size: 24px;\n",
" line-height: 1;\n",
" letter-spacing: normal;\n",
" text-transform: none;\n",
" display: inline-block;\n",
" white-space: nowrap;\n",
" word-wrap: normal;\n",
" direction: ltr;\n",
" text-rendering: optimizeLegibility;\n",
" -webkit-font-smoothing: antialiased;\n",
"}\n",
"&lt;/style&gt;\n",
"&lt;script&gt;\n",
" var evidently_dashboard_d6c0af891526482183ee027422628b59 = {&quot;name&quot;: &quot;Report&quot;, &quot;widgets&quot;: [{&quot;type&quot;: &quot;counter&quot;, &quot;title&quot;: &quot;&quot;, &quot;size&quot;: 2, &quot;id&quot;: &quot;f0f87a09-ec4b-4361-a513-2ba0ac679494&quot;, &quot;details&quot;: &quot;&quot;, &quot;alertsPosition&quot;: null, &quot;alertStats&quot;: null, &quot;params&quot;: {&quot;counters&quot;: [{&quot;value&quot;: &quot;Dataset Drift&quot;, &quot;label&quot;: &quot;Dataset Drift is NOT detected. Dataset drift detection threshold is 0.5&quot;}]}, &quot;insights&quot;: [], &quot;alerts&quot;: [], &quot;tabs&quot;: [], &quot;widgets&quot;: [], &quot;pageSize&quot;: 5}, {&quot;type&quot;: &quot;counter&quot;, &quot;title&quot;: &quot;&quot;, &quot;size&quot;: 2, &quot;id&quot;: &quot;93a39ab9-9f39-4b1b-81b9-c22409ba8116&quot;, &quot;details&quot;: &quot;&quot;, &quot;alertsPosition&quot;: null, &quot;alertStats&quot;: null, &quot;params&quot;: {&quot;counters&quot;: [{&quot;value&quot;: &quot;32&quot;, &quot;label&quot;: &quot;Columns&quot;}, {&quot;value&quot;: &quot;0&quot;, &quot;label&quot;: &quot;Drifted Columns&quot;}, {&quot;value&quot;: &quot;0.0&quot;, &quot;label&quot;: &quot;Share of Drifted Columns&quot;}]}, &quot;insights&quot;: [], &quot;alerts&quot;: [], &quot;tabs&quot;: [], &quot;widgets&quot;: [], &quot;pageSize&quot;: 5}, {&quot;type&quot;: &quot;counter&quot;, &quot;title&quot;: &quot;&quot;, &quot;size&quot;: 2, &quot;id&quot;: &quot;30abf00c-ece6-47e9-a9d8-b1f3e9717ae4&quot;, &quot;details&quot;: &quot;&quot;, &quot;alertsPosition&quot;: null, &quot;alertStats&quot;: null, &quot;params&quot;: {&quot;counters&quot;: [{&quot;value&quot;: &quot;&quot;, &quot;label&quot;: &quot;Data Drift Summary&quot;}]}, &quot;insights&quot;: [], &quot;alerts&quot;: [], &quot;tabs&quot;: [], &quot;widgets&quot;: [], &quot;pageSize&quot;: 5}, {&quot;type&quot;: &quot;big_table&quot;, &quot;title&quot;: &quot;Drift is detected for 0.0% of columns (0 out of 32).&quot;, &quot;size&quot;: 2, &quot;id&quot;: &quot;e6483ec7-2650-4a98-bca6-d1ddddc08c82&quot;, &quot;details&quot;: &quot;&quot;, &quot;alertsPosition&quot;: &quot;row&quot;, &quot;alertStats&quot;: null, &quot;params&quot;: {&quot;rowsPerPage&quot;: 10, &quot;columns&quot;: [{&quot;title&quot;: &quot;Column&quot;, &quot;field&quot;: &quot;column_name&quot;}, {&quot;title&quot;: &quot;Type&quot;, &quot;field&quot;: &quot;column_type&quot;}, {&quot;title&quot;: &quot;Reference Distribution&quot;, &quot;field&quot;: &quot;reference_distribution&quot;, &quot;type&quot;: &quot;histogram&quot;, &quot;options&quot;: {&quot;xField&quot;: &quot;x&quot;, &quot;yField&quot;: &quot;y&quot;, &quot;color&quot;: &quot;#ed0400&quot;}}, {&quot;title&quot;: &quot;Current Distribution&quot;, &quot;field&quot;: &quot;current_distribution&quot;, &quot;type&quot;: &quot;histogram&quot;, &quot;options&quot;: {&quot;xField&quot;: &quot;x&quot;, &quot;yField&quot;: &quot;y&quot;, &quot;color&quot;: &quot;#ed0400&quot;}}, {&quot;title&quot;: &quot;Data Drift&quot;, &quot;field&quot;: &quot;data_drift&quot;}, {&quot;title&quot;: &quot;Stat Test&quot;, &quot;field&quot;: &quot;stattest_name&quot;}, {&quot;title&quot;: &quot;Drift Score&quot;, &quot;field&quot;: &quot;drift_score&quot;}], &quot;data&quot;: [{&quot;details&quot;: {&quot;parts&quot;: [{&quot;title&quot;: &quot;DATA DISTRIBUTION&quot;, &quot;id&quot;: &quot;a9822d57-2b6d-4710-91b9-e90cfcf6bd71&quot;, &quot;type&quot;: &quot;widget&quot;}]}, &quot;column_name&quot;: &quot;target&quot;, &quot;column_type&quot;: &quot;cat&quot;, &quot;stattest_name&quot;: &quot;PSI&quot;, &quot;reference_distribution&quot;: {&quot;x&quot;: [0, 1], &quot;y&quot;: [149, 249]}, &quot;current_distribution&quot;: {&quot;x&quot;: [0, 1], &quot;y&quot;: [63, 108]}, &quot;data_drift&quot;: &quot;Not Detected&quot;, &quot;drift_score&quot;: 0.000152}, {&quot;details&quot;: {&quot;parts&quot;: [{&quot;title&quot;: &quot;DATA DRIFT&quot;, &quot;id&quot;: &quot;0f0afcb6-1350-44c3-9bb2-36bd60492d32&quot;, &quot;type&quot;: &quot;widget&quot;}, {&quot;title&quot;: &quot;DATA DISTRIBUTION&quot;, &quot;id&quot;: &quot;f69e4dd9-b48d-4ab9-ba0e-f6c49e159238&quot;, &quot;type&quot;: &quot;widget&quot;}]}, &quot;column_name&quot;: &quot;prediction&quot;, &quot;column_type&quot;: &quot;num&quot;, &quot;stattest_name&quot;: &quot;PSI&quot;, &quot;reference_distribution&quot;: {&quot;x&quot;: [4.026859853056841e-05, 0.09983460865011874, 0.19962894870170692, 0.2994232887532951, 0.39921762880488326, 0.4990119688564714, 0.5988063089080596, 0.6986006489596478, 0.798394989011236, 0.8981893290628241, 0.9979836691144123], &quot;y&quot;: [1.0070963193990743, 0.8308544635042362, 0.9063866874591666, 1.1581607673089356, 0.9315640954441439, 1.2336929912638654, 1.0070963193990745, 1.3595800311887505, 0.7301448315643289, 0.8560318714892132]}, &quot;current_distribution&quot;: {&quot;x&quot;: [0.011645900293785871, 0.11021148944629715, 0.20877707859880842, 0.3073426677513197, 0.405908256903831, 0.5044738460563423, 0.6030394352088535, 0.7016050243613648, 0.8001706135138761, 0.8987362026663873, 0.9973017918188987], &quot;y&quot;: [1.1272809513590798, 1.1272809513590798, 0.77129749303516, 0.8306280694224798, 1.0086197985844396, 0.5933057638732002, 1.127280951359079, 1.1272809513590802, 1.2459421041337202, 1.186611527746399]}, &quot;data_drift&quot;: &quot;Not Detected&quot;, &quot;drift_score&quot;: 0.079583}, {&quot;details&quot;: {&quot;parts&quot;: [{&quot;title&quot;: &quot;DATA DRIFT&quot;, &quot;id&quot;: &quot;e18a43ef-2f6c-48a7-ad9f-5a67160fc283&quot;, &quot;type&quot;: &quot;widget&quot;}, {&quot;title&quot;: &quot;DATA DISTRIBUTION&quot;, &quot;id&quot;: &quot;3753ef16-fcfe-4da1-8062-d0cca2fcfd0d&quot;, &quot;type&quot;: &quot;widget&quot;}]}, &quot;column_name&quot;: &quot;worst concavity&quot;, &quot;column_type&quot;: &quot;num&quot;, &quot;stattest_name&quot;: &quot;PSI&quot;, &quot;reference_distribution&quot;: {&quot;x&quot;: [0.0, 0.09034, 0.18068, 0.27102000000000004, 0.36136, 0.4517, 0.5420400000000001, 0.63238, 0.72272, 0.81306, 0.9034], &quot;y&quot;: [2.169359082327733, 2.2806082660368476, 2.058109898618618, 1.3628025004366535, 1.2515533167275388, 0.778744285963801, 0.5006213266910156, 0.389372142981901, 0.11124918370911456, 0.16687377556367183]}, &quot;current_distribution&quot;: {&quot;x&quot;: [0.0, 0.1252, 0.2504, 0.37560000000000004, 0.5008, 0.626, 0.7512000000000001, 0.8764000000000001, 1.0016, 1.1268, 1.252], &quot;y&quot;: [2.242026792220167, 2.1019001177064065, 1.4479756366421908, 1.02759561310091, 0.37367113203669455, 0.4670889150458678, 0.09341778300917364, 0.09341778300917364, 0.04670889150458682, 0.09341778300917364]}, &quot;data_drift&quot;: &quot;Not Detected&quot;, &quot;drift_score&quot;: 0.224632}, {&quot;details&quot;: {&quot;parts&quot;: [{&quot;title&quot;: &quot;DATA DRIFT&quot;, &quot;id&quot;: &quot;fa363e40-c98e-4cbe-b263-a33bbf59be47&quot;, &quot;type&quot;: &quot;widget&quot;}, {&quot;title&quot;: &quot;DATA DISTRIBUTION&quot;, &quot;id&quot;: &quot;5e521926-11c8-4f05-92dd-509abcec2efe&quot;, &quot;type&quot;: &quot;widget&quot;}]}, &quot;column_name&quot;: &quot;symmetry error&quot;, &quot;column_type&quot;: &quot;num&quot;, &quot;stattest_name&quot;: &quot;PSI&quot;, &quot;reference_distribution&quot;: {&quot;x&quot;: [0.007882, 0.0132398, 0.0185976, 0.0239554, 0.0293132, 0.034671, 0.0400288, 0.0453866, 0.0507444, 0.056102200000000005, 0.06146], &quot;y&quot;: [18.75816800978276, 73.15685523815277, 55.805549829103676, 20.63398481076104, 9.37908400489138, 3.282679401711981, 0.9379084004891387, 1.4068626007337062, 1.875816800978275, 1.406862600733708]}, &quot;current_distribution&quot;: {&quot;x&quot;: [0.009539, 0.0164801, 0.023421200000000003, 0.030362300000000002, 0.0373034, 0.0442445, 0.051185600000000005, 0.0581267, 0.06506780000000001, 0.0720089, 0.07895], &quot;y&quot;: [49.70814997134199, 50.5506609878054, 25.27533049390271, 10.110132197561084, 7.5825991481708135, 0.0, 0.0, 0.0, 0.0, 0.8425110164634229]}, &quot;data_drift&quot;: &quot;Not Detected&quot;, &quot;drift_score&quot;: 0.190725}, {&quot;details&quot;: {&quot;parts&quot;: [{&quot;title&quot;: &quot;DATA DRIFT&quot;, &quot;id&quot;: &quot;d8dbeb74-d90b-4faf-bfc6-e4dac1d690d3&quot;, &quot;type&quot;: &quot;widget&quot;}, {&quot;title&quot;: &quot;DATA DISTRIBUTION&quot;, &quot;id&quot;: &quot;695aadb1-8f41-44eb-a8a0-cee1e0868c01&quot;, &quot;type&quot;: &quot;widget&quot;}]}, &quot;column_name&quot;: &quot;fractal dimension error&quot;, &quot;column_type&quot;: &quot;num&quot;, &quot;stattest_name&quot;: &quot;PSI&quot;, &quot;reference_distribution&quot;: {&quot;x&quot;: [0.0008948, 0.0037893199999999997, 0.00668384, 0.00957836, 0.012472879999999999, 0.015367399999999998, 0.01826192, 0.02115644, 0.02405096, 0.02694548, 0.02984], &quot;y&quot;: [219.61444106787965, 94.61649832568727, 19.964949187989063, 6.944330152344022, 2.604123807129008, 0.0, 0.0, 0.8680412690430022, 0.0, 0.8680412690430033]}, &quot;current_distribution&quot;: {&quot;x&quot;: [0.001219, 0.0033830999999999996, 0.005547199999999999, 0.007711299999999999, 0.009875399999999998, 0.012039499999999996, 0.014203599999999997, 0.0163677, 0.018531799999999998, 0.020695899999999996, 0.02286], &quot;y&quot;: [254.01210773031812, 137.81507972602367, 48.64061637389068, 8.106769395648453, 8.106769395648453, 0.0, 0.0, 2.702256465216151, 0.0, 2.7022564652161467]}, &quot;data_drift&quot;: &quot;Not Detected&quot;, &quot;drift_score&quot;: 0.179935}, {&quot;details&quot;: {&quot;parts&quot;: [{&quot;title&quot;: &quot;DATA DRIFT&quot;, &quot;id&quot;: &quot;8e548d25-7679-424f-8588-899458942e62&quot;, &quot;type&quot;: &quot;widget&quot;}, {&quot;title&quot;: &quot;DATA DISTRIBUTION&quot;, &quot;id&quot;: &quot;8c79a7c7-2800-4b09-a47e-32ed3557ac4e&quot;, &quot;type&quot;: &quot;widget&quot;}]}, &quot;column_name&quot;: &quot;mean perimeter&quot;, &quot;column_type&quot;: &quot;num&quot;, &quot;stattest_name&quot;: &quot;PSI&quot;, &quot;reference_distribution&quot;: {&quot;x&quot;: [48.34, 62.356, 76.372, 90.388, 104.404, 118.42, 132.436, 146.452, 160.46800000000002, 174.484, 188.5], &quot;y&quot;: [0.004840125283954017, 0.01398258415364494, 0.023842098620958666, 0.010397306165530857, 0.006632764278011057, 0.006453500378605353, 0.00322675018930268, 0.0008963194970285204, 0.0005377916982171133, 0.0005377916982171133]}, &quot;current_distribution&quot;: {&quot;x&quot;: [43.79, 56.561, 69.332, 82.10300000000001, 94.874, 107.64500000000001, 120.416, 133.187, 145.958, 158.729, 171.5], &quot;y&quot;: [0.0018316351785684028, 0.011447719866052525, 0.01923216937496821, 0.018774260580326153, 0.010531902276768305, 0.005494905535705215, 0.004579087946421002, 0.004579087946421013, 0.0013737263839263007, 0.0004579087946421013]}, &quot;data_drift&quot;: &quot;Not Detected&quot;, &quot;drift_score&quot;: 0.12945}, {&quot;details&quot;: {&quot;parts&quot;: [{&quot;title&quot;: &quot;DATA DRIFT&quot;, &quot;id&quot;: &quot;a46d15c0-6513-4d9d-81d4-a23a5426b212&quot;, &quot;type&quot;: &quot;widget&quot;}, {&quot;title&quot;: &quot;DATA DISTRIBUTION&quot;, &quot;id&quot;: &quot;b8c7bb3a-1087-4566-8d08-4db380414115&quot;, &quot;type&quot;: &quot;widget&quot;}]}, &quot;column_name&quot;: &quot;mean fractal dimension&quot;, &quot;column_type&quot;: &quot;num&quot;, &quot;stattest_name&quot;: &quot;PSI&quot;, &quot;reference_distribution&quot;: {&quot;x&quot;: [0.04996, 0.054708, 0.059455999999999995, 0.064204, 0.068952, 0.0737, 0.078448, 0.08319599999999999, 0.087944, 0.092692, 0.09744], &quot;y&quot;: [16.404685601554522, 59.26854152819707, 67.20629262572336, 37.572021861624876, 14.287951975547488, 10.054484723533417, 2.1167336260070413, 1.0583668130035175, 0.5291834065017588, 2.116733626007035]}, &quot;current_distribution&quot;: {&quot;x&quot;: [0.05024, 0.053459, 0.056678, 0.059897000000000006, 0.063116, 0.066335, 0.069554, 0.072773, 0.075992, 0.079211, 0.08243], &quot;y&quot;: [5.450096194197829, 47.23416701638118, 54.50096194197816, 59.951058136176115, 59.951058136176115, 27.250480970989138, 25.433782239589867, 16.350288582593485, 7.266794925597105, 7.266794925597105]}, &quot;data_drift&quot;: &quot;Not Detected&quot;, &quot;drift_score&quot;: 0.129023}, {&quot;details&quot;: {&quot;parts&quot;: [{&quot;title&quot;: &quot;DATA DRIFT&quot;, &quot;id&quot;: &quot;31fa7b0e-1bf6-47fa-ae06-d49b7fb74465&quot;, &quot;type&quot;: &quot;widget&quot;}, {&quot;title&quot;: &quot;DATA DISTRIBUTION&quot;, &quot;id&quot;: &quot;98792665-92a1-4c4a-bea8-f429db1fdb15&quot;, &quot;type&quot;: &quot;widget&quot;}]}, &quot;column_name&quot;: &quot;mean compactness&quot;, &quot;column_type&quot;: &quot;num&quot;, &quot;stattest_name&quot;: &quot;PSI&quot;, &quot;reference_distribution&quot;: {&quot;x&quot;: [0.01938, 0.048582, 0.07778399999999999, 0.106986, 0.136188, 0.16539, 0.194592, 0.223794, 0.252996, 0.282198, 0.3114], &quot;y&quot;: [3.5276719189399506, 9.464485636180356, 7.0553438378798985, 6.797221502347707, 3.1835088048970275, 1.9789379057468028, 1.290611677660957, 0.6022854495751133, 0.08604077851073048, 0.2581223355321914]}, &quot;current_distribution&quot;: {&quot;x&quot;: [0.02344, 0.05563599999999999, 0.087832, 0.12002799999999998, 0.15222399999999997, 0.18441999999999997, 0.21661599999999995, 0.24881199999999995, 0.281008, 0.313204, 0.3454], &quot;y&quot;: [5.449080522152694, 8.536892818039217, 7.265440696203592, 4.359264417722155, 2.7245402610763456, 1.2714521218356292, 0.36327203481017944, 0.7265440696203583, 0.18163601740508972, 0.18163601740508972]}, &quot;data_drift&quot;: &quot;Not Detected&quot;, &quot;drift_score&quot;: 0.118669}, {&quot;details&quot;: {&quot;parts&quot;: [{&quot;title&quot;: &quot;DATA DRIFT&quot;, &quot;id&quot;: &quot;f49a8812-0e5b-4daa-83dc-53fc5834e693&quot;, &quot;type&quot;: &quot;widget&quot;}, {&quot;title&quot;: &quot;DATA DISTRIBUTION&quot;, &quot;id&quot;: &quot;1d0d53dd-62cc-42fc-82b1-7e6a6d5eb44f&quot;, &quot;type&quot;: &quot;widget&quot;}]}, &quot;column_name&quot;: &quot;mean radius&quot;, &quot;column_type&quot;: &quot;num&quot;, &quot;stattest_name&quot;: &quot;PSI&quot;, &quot;reference_distribution&quot;: {&quot;x&quot;: [7.691, 9.7329, 11.774799999999999, 13.8167, 15.8586, 17.9005, 19.9424, 21.9843, 24.0262, 26.068099999999998, 28.11], &quot;y&quot;: [0.031993061935368584, 0.09351818104184677, 0.15504330014832463, 0.08490466436693983, 0.039376076228145936, 0.047989592903052936, 0.02461004764259121, 0.004922009528518251, 0.0036915071463886878, 0.0036915071463886812]}, &quot;current_distribution&quot;: {&quot;x&quot;: [6.981, 8.8049, 10.628799999999998, 12.452699999999998, 14.276599999999998, 16.100499999999997, 17.9244, 19.748299999999997, 21.572199999999995, 23.396099999999997, 25.22], &quot;y&quot;: [0.012825161941716694, 0.07053839067944187, 0.12504532893173775, 0.12504532893173775, 0.09298242407744611, 0.0320629048542917, 0.035269195339720935, 0.03847548582515012, 0.01282516194171668, 0.00320629048542917]}, &quot;data_drift&quot;: &quot;Not Detected&quot;, &quot;drift_score&quot;: 0.110957}, {&quot;details&quot;: {&quot;parts&quot;: [{&quot;title&quot;: &quot;DATA DRIFT&quot;, &quot;id&quot;: &quot;9c0ab307-4505-4629-b836-af6eb474b4bb&quot;, &quot;type&quot;: &quot;widget&quot;}, {&quot;title&quot;: &quot;DATA DISTRIBUTION&quot;, &quot;id&quot;: &quot;321f9285-844e-4569-9fcb-097e40a7423e&quot;, &quot;type&quot;: &quot;widget&quot;}]}, &quot;column_name&quot;: &quot;mean texture&quot;, &quot;column_type&quot;: &quot;num&quot;, &quot;stattest_name&quot;: &quot;PSI&quot;, &quot;reference_distribution&quot;: {&quot;x&quot;: [9.71, 12.667000000000002, 15.624, 18.581, 21.538, 24.495, 27.451999999999998, 30.409, 33.366, 36.323, 39.28], &quot;y&quot;: [0.01019639965128313, 0.05608019808205724, 0.09601609671624951, 0.09006819691966764, 0.050132298285475385, 0.021242499273506545, 0.01019639965128313, 0.0016993999418805214, 0.0016993999418805214, 0.0008496999709402607]}, &quot;current_distribution&quot;: {&quot;x&quot;: [10.38, 12.454, 14.528000000000002, 16.602000000000004, 18.676000000000002, 20.75, 22.824000000000005, 24.898000000000003, 26.972, 29.046000000000006, 31.12], &quot;y&quot;: [0.014098247869754749, 0.047934042757166104, 0.06485194020087179, 0.09022878636643047, 0.08458948721852856, 0.06767158977482261, 0.04511439318321524, 0.03101614531346047, 0.02255719659160754, 0.014098247869754785]}, &quot;data_drift&quot;: &quot;Not Detected&quot;, &quot;drift_score&quot;: 0.107144}, {&quot;details&quot;: {&quot;parts&quot;: [{&quot;title&quot;: &quot;DATA DRIFT&quot;, &quot;id&quot;: &quot;ea0da195-c8b0-4e72-a717-5c88eb27961d&quot;, &quot;type&quot;: &quot;widget&quot;}, {&quot;title&quot;: &quot;DATA DISTRIBUTION&quot;, &quot;id&quot;: &quot;2bf16f20-e8d8-4cf5-b7f8-d8c3a4bb7f68&quot;, &quot;type&quot;: &quot;widget&quot;}]}, &quot;column_name&quot;: &quot;worst symmetry&quot;, &quot;column_type&quot;: &quot;num&quot;, &quot;stattest_name&quot;: &quot;PSI&quot;, &quot;reference_distribution&quot;: {&quot;x&quot;: [0.1565, 0.20723, 0.25795999999999997, 0.30869, 0.35941999999999996, 0.41015, 0.46087999999999996, 0.51161, 0.56234, 0.61307, 0.6638], &quot;y&quot;: [0.8419784711057753, 5.44809598950796, 7.627334385311133, 3.863195338014738, 1.1391473432607535, 0.24764072679581653, 0.34669701751414245, 0.09905629071832661, 0.0495281453591632, 0.049528145359163306]}, &quot;current_distribution&quot;: {&quot;x&quot;: [0.1566, 0.19534, 0.23408, 0.27282, 0.31156000000000006, 0.35030000000000006, 0.38904000000000005, 0.42778000000000005, 0.46652000000000005, 0.50526, 0.544], &quot;y&quot;: [0.6038155102090104, 3.3209853061495593, 6.18910897964236, 7.849601632717129, 3.9248008163585704, 1.9624004081792852, 1.0566771428657689, 0.4528616326567581, 0.3019077551045054, 0.1509538775522527]}, &quot;data_drift&quot;: &quot;Not Detected&quot;, &quot;drift_score&quot;: 0.105051}, {&quot;details&quot;: {&quot;parts&quot;: [{&quot;title&quot;: &quot;DATA DRIFT&quot;, &quot;id&quot;: &quot;5193a6c8-daeb-49d2-bc6e-b8444e8be8c6&quot;, &quot;type&quot;: &quot;widget&quot;}, {&quot;title&quot;: &quot;DATA DISTRIBUTION&quot;, &quot;id&quot;: &quot;251be7d7-b48c-4535-8000-a5d3dc13916a&quot;, &quot;type&quot;: &quot;widget&quot;}]}, &quot;column_name&quot;: &quot;smoothness error&quot;, &quot;column_type&quot;: &quot;num&quot;, &quot;stattest_name&quot;: &quot;PSI&quot;, &quot;reference_distribution&quot;: {&quot;x&quot;: [0.002667, 0.0055133000000000005, 0.008359600000000002, 0.011205900000000001, 0.0140522, 0.0168985, 0.019744800000000003, 0.022591100000000003, 0.025437400000000002, 0.028283700000000002, 0.03113], &quot;y&quot;: [114.75711127749909, 152.71523270005645, 60.02679666823031, 12.358458137576829, 5.296482058961498, 2.6482410294807464, 1.765494019653833, 0.8827470098269165, 0.0, 0.8827470098269165]}, &quot;current_distribution&quot;: {&quot;x&quot;: [0.001713, 0.0031456999999999995, 0.0045784, 0.006011099999999999, 0.0074437999999999995, 0.008876499999999999, 0.010309199999999998, 0.011741899999999998, 0.013174599999999998, 0.014607299999999998, 0.01604], &quot;y&quot;: [4.081770933464278, 102.04427333660689, 216.33385947360674, 142.86198267124965, 89.79896053621411, 53.063022135035645, 32.6541674677142, 28.57239653424993, 20.40885466732138, 8.16354186692855]}, &quot;data_drift&quot;: &quot;Not Detected&quot;, &quot;drift_score&quot;: 0.104741}, {&quot;details&quot;: {&quot;parts&quot;: [{&quot;title&quot;: &quot;DATA DRIFT&quot;, &quot;id&quot;: &quot;acec6d9f-de62-4bfb-8013-e2d693a07727&quot;, &quot;type&quot;: &quot;widget&quot;}, {&quot;title&quot;: &quot;DATA DISTRIBUTION&quot;, &quot;id&quot;: &quot;e4e54b42-c5a5-4da3-b9db-eb9d62ae2711&quot;, &quot;type&quot;: &quot;widget&quot;}]}, &quot;column_name&quot;: &quot;mean area&quot;, &quot;column_type&quot;: &quot;num&quot;, &quot;stattest_name&quot;: &quot;PSI&quot;, &quot;reference_distribution&quot;: {&quot;x&quot;: [170.4, 403.46000000000004, 636.52, 869.58, 1102.64, 1335.7, 1568.7600000000002, 1801.8200000000002, 2034.88, 2267.94, 2501.0], &quot;y&quot;: [0.0008840219289185995, 0.001789605368298629, 0.0006899683347657361, 0.000377326433075012, 0.0003881071883057268, 5.390377615357311e-05, 5.390377615357316e-05, 2.1561510461429266e-05, 1.0780755230714633e-05, 2.1561510461429266e-05]}, &quot;current_distribution&quot;: {&quot;x&quot;: [143.5, 316.95, 490.4, 663.8499999999999, 837.3, 1010.75, 1184.1999999999998, 1357.6499999999999, 1531.1, 1704.55, 1878.0], &quot;y&quot;: [0.0006405944716697096, 0.001652059426937672, 0.001483481934393012, 0.0008091719642143697, 0.00037087048359825273, 0.0002022929910535927, 0.00030343948658038863, 0.00023600848956252448, 3.371549850893207e-05, 3.371549850893207e-05]}, &quot;data_drift&quot;: &quot;Not Detected&quot;, &quot;drift_score&quot;: 0.092412}, {&quot;details&quot;: {&quot;parts&quot;: [{&quot;title&quot;: &quot;DATA DRIFT&quot;, &quot;id&quot;: &quot;3b7366a6-87b4-48dd-a40a-cb7f2204887c&quot;, &quot;type&quot;: &quot;widget&quot;}, {&quot;title&quot;: &quot;DATA DISTRIBUTION&quot;, &quot;id&quot;: &quot;6ad8e775-4e1c-4615-9c9b-6ae322e3e641&quot;, &quot;type&quot;: &quot;widget&quot;}]}, &quot;column_name&quot;: &quot;worst concave points&quot;, &quot;column_type&quot;: &quot;num&quot;, &quot;stattest_name&quot;: &quot;PSI&quot;, &quot;reference_distribution&quot;: {&quot;x&quot;: [0.0, 0.02756, 0.05512, 0.08268, 0.11024, 0.1378, 0.16536, 0.19292, 0.22048, 0.24804, 0.2756], &quot;y&quot;: [2.0056742347441125, 4.284849501498785, 7.293360853614954, 6.381690746913085, 3.737847437477664, 4.102515480158412, 3.3731793947969164, 2.8261773307757947, 1.0028371173720563, 1.276338149382617]}, &quot;current_distribution&quot;: {&quot;x&quot;: [0.0, 0.029099999999999997, 0.058199999999999995, 0.08729999999999999, 0.11639999999999999, 0.1455, 0.17459999999999998, 0.2037, 0.23279999999999998, 0.26189999999999997, 0.291], &quot;y&quot;: [3.0144088744197264, 3.617290649303672, 8.239384256747254, 5.425935973955507, 2.411527099535781, 3.617290649303673, 3.61729064930367, 2.0096059162798183, 1.4067241413958729, 1.0048029581399083]}, &quot;data_drift&quot;: &quot;Not Detected&quot;, &quot;drift_score&quot;: 0.085594}, {&quot;details&quot;: {&quot;parts&quot;: [{&quot;title&quot;: &quot;DATA DRIFT&quot;, &quot;id&quot;: &quot;23d16a0b-075e-4058-a9ad-87ce98c302b7&quot;, &quot;type&quot;: &quot;widget&quot;}, {&quot;title&quot;: &quot;DATA DISTRIBUTION&quot;, &quot;id&quot;: &quot;8df0dc04-f584-4571-9517-170237b2fff2&quot;, &quot;type&quot;: &quot;widget&quot;}]}, &quot;column_name&quot;: &quot;worst compactness&quot;, &quot;column_type&quot;: &quot;num&quot;, &quot;stattest_name&quot;: &quot;PSI&quot;, &quot;reference_distribution&quot;: {&quot;x&quot;: [0.03432, 0.124678, 0.215036, 0.305394, 0.395752, 0.48611, 0.576468, 0.666826, 0.757184, 0.8475419999999999, 0.9379], &quot;y&quot;: [2.1133134185057965, 3.5036511938385564, 2.196733685025762, 1.557178308372692, 1.0010431982395878, 0.30587431057320735, 0.22245404405324157, 0.05561351101331047, 0.027806755506655234, 0.08342026651996559]}, &quot;current_distribution&quot;: {&quot;x&quot;: [0.02729, 0.130361, 0.233432, 0.33650299999999994, 0.43957399999999996, 0.542645, 0.645716, 0.748787, 0.851858, 0.954929, 1.058], &quot;y&quot;: [1.8723254469283392, 3.3474909505688495, 2.212748255460766, 0.9077941560864674, 0.4538970780432334, 0.39715994328782994, 0.28368567377702103, 0.11347426951080843, 0.05673713475540421, 0.05673713475540421]}, &quot;data_drift&quot;: &quot;Not Detected&quot;, &quot;drift_score&quot;: 0.085498}, {&quot;details&quot;: {&quot;parts&quot;: [{&quot;title&quot;: &quot;DATA DRIFT&quot;, &quot;id&quot;: &quot;513d98de-90fe-4b57-8731-00132fbcb0bf&quot;, &quot;type&quot;: &quot;widget&quot;}, {&quot;title&quot;: &quot;DATA DISTRIBUTION&quot;, &quot;id&quot;: &quot;f9c31509-4da5-4874-b662-a58e7e28c521&quot;, &quot;type&quot;: &quot;widget&quot;}]}, &quot;column_name&quot;: &quot;worst perimeter&quot;, &quot;column_type&quot;: &quot;num&quot;, &quot;stattest_name&quot;: &quot;PSI&quot;, &quot;reference_distribution&quot;: {&quot;x&quot;: [54.49, 74.161, 93.832, 113.503, 133.174, 152.845, 172.516, 192.187, 211.858, 231.529, 251.2], &quot;y&quot;: [0.005620088649234684, 0.016732536660221453, 0.011878823735882397, 0.006131005799165108, 0.004981442211821654, 0.0030655028995825563, 0.0014050221623086697, 0.0006386464374130326, 0.00025545857496521305, 0.00012772928748260652]}, &quot;current_distribution&quot;: {&quot;x&quot;: [50.41, 66.769, 83.128, 99.487, 115.846, 132.205, 148.56400000000002, 164.923, 181.282, 197.64100000000002, 214.0], &quot;y&quot;: [0.003217285833325288, 0.013226619537003974, 0.016086429166626455, 0.010009333703678675, 0.006077095462947767, 0.0035747620370280985, 0.003574762037028104, 0.0025023334259196687, 0.0014299048148112394, 0.0014299048148112418]}, &quot;data_drift&quot;: &quot;Not Detected&quot;, &quot;drift_score&quot;: 0.084873}, {&quot;details&quot;: {&quot;parts&quot;: [{&quot;title&quot;: &quot;DATA DRIFT&quot;, &quot;id&quot;: &quot;063d994b-b992-4d5f-87c4-22e82ab79da6&quot;, &quot;type&quot;: &quot;widget&quot;}, {&quot;title&quot;: &quot;DATA DISTRIBUTION&quot;, &quot;id&quot;: &quot;5293a153-ac10-4069-885e-dab3870e4345&quot;, &quot;type&quot;: &quot;widget&quot;}]}, &quot;column_name&quot;: &quot;mean smoothness&quot;, &quot;column_type&quot;: &quot;num&quot;, &quot;stattest_name&quot;: &quot;PSI&quot;, &quot;reference_distribution&quot;: {&quot;x&quot;: [0.06251, 0.072599, 0.082688, 0.092777, 0.10286599999999999, 0.112955, 0.12304399999999999, 0.133133, 0.143222, 0.15331099999999998, 0.1634], &quot;y&quot;: [1.7432787886304353, 14.195270135990686, 27.892460618086965, 25.40206234861495, 18.67798702104035, 8.467354116204982, 1.7432787886304328, 0.4980796538944107, 0.24903982694720536, 0.2490398269472047]}, &quot;current_distribution&quot;: {&quot;x&quot;: [0.05263, 0.061077000000000006, 0.069524, 0.077971, 0.086418, 0.094865, 0.103312, 0.111759, 0.12020600000000001, 0.128653, 0.1371], &quot;y&quot;: [0.6923112603734185, 3.461556301867096, 5.538490082987353, 16.61547024896206, 23.538582852696212, 29.769384196057025, 20.769337811202575, 11.076980165974689, 3.4615563018671014, 3.46155630186709]}, &quot;data_drift&quot;: &quot;Not Detected&quot;, &quot;drift_score&quot;: 0.082461}, {&quot;details&quot;: {&quot;parts&quot;: [{&quot;title&quot;: &quot;DATA DRIFT&quot;, &quot;id&quot;: &quot;875f913c-bbcd-4fb0-b679-8a1a839843b4&quot;, &quot;type&quot;: &quot;widget&quot;}, {&quot;title&quot;: &quot;DATA DISTRIBUTION&quot;, &quot;id&quot;: &quot;3304e129-f913-480f-b3a4-5f730c819a20&quot;, &quot;type&quot;: &quot;widget&quot;}]}, &quot;column_name&quot;: &quot;texture error&quot;, &quot;column_type&quot;: &quot;num&quot;, &quot;stattest_name&quot;: &quot;PSI&quot;, &quot;reference_distribution&quot;: {&quot;x&quot;: [0.3602, 0.6888799999999999, 1.01756, 1.3462399999999999, 1.67492, 2.0035999999999996, 2.33228, 2.6609599999999998, 2.9896399999999996, 3.3183199999999995, 3.647], &quot;y&quot;: [0.4280866422901903, 0.8026624542941063, 0.8791064975602123, 0.45101985527002164, 0.2675541514313691, 0.0993772562459369, 0.05351083028627379, 0.03822202163305271, 0.007644404326610542, 0.015288808653221063]}, &quot;current_distribution&quot;: {&quot;x&quot;: [0.3628, 0.81502, 1.26724, 1.7194599999999998, 2.17168, 2.6239, 3.0761199999999995, 3.5283399999999996, 3.9805599999999997, 4.432779999999999, 4.885], &quot;y&quot;: [0.5301978724323229, 0.724172703810002, 0.6207194604085733, 0.16811152052732184, 0.10345324340142882, 0.038794966275535844, 0.0, 0.012931655425178603, 0.0, 0.01293165542517859]}, &quot;data_drift&quot;: &quot;Not Detected&quot;, &quot;drift_score&quot;: 0.080919}, {&quot;details&quot;: {&quot;parts&quot;: [{&quot;title&quot;: &quot;DATA DRIFT&quot;, &quot;id&quot;: &quot;ad03a28f-3deb-402c-84e0-446f7dcbdc20&quot;, &quot;type&quot;: &quot;widget&quot;}, {&quot;title&quot;: &quot;DATA DISTRIBUTION&quot;, &quot;id&quot;: &quot;6416d5e7-f880-4488-88b3-eebb8d836bdf&quot;, &quot;type&quot;: &quot;widget&quot;}]}, &quot;column_name&quot;: &quot;worst radius&quot;, &quot;column_type&quot;: &quot;num&quot;, &quot;stattest_name&quot;: &quot;PSI&quot;, &quot;reference_distribution&quot;: {&quot;x&quot;: [8.678, 11.414200000000001, 14.150400000000001, 16.8866, 19.622799999999998, 22.359, 25.0952, 27.8314, 30.5676, 33.303799999999995, 36.04], &quot;y&quot;: [0.03856722395693106, 0.11019206844837445, 0.09641805989232766, 0.03673068948279153, 0.032139353297442504, 0.030302818823303015, 0.010100939607767659, 0.005509603422418723, 0.004591336185348942, 0.0009182672370697861]}, &quot;current_distribution&quot;: {&quot;x&quot;: [7.93, 10.386, 12.842, 15.298000000000002, 17.754, 20.21, 22.666000000000004, 25.122000000000003, 27.578000000000003, 30.034000000000002, 32.49], &quot;y&quot;: [0.016667619102043927, 0.09762462616911437, 0.10238680305541265, 0.07143265329447399, 0.038097415090386125, 0.02381088443149129, 0.026191972874640458, 0.019048707545193062, 0.007143265329447399, 0.004762176886298266]}, &quot;data_drift&quot;: &quot;Not Detected&quot;, &quot;drift_score&quot;: 0.072211}, {&quot;details&quot;: {&quot;parts&quot;: [{&quot;title&quot;: &quot;DATA DRIFT&quot;, &quot;id&quot;: &quot;f990e776-ba99-4263-a39f-75e168ce9395&quot;, &quot;type&quot;: &quot;widget&quot;}, {&quot;title&quot;: &quot;DATA DISTRIBUTION&quot;, &quot;id&quot;: &quot;36c60d9d-480c-4c1c-8bda-3e279cf54dc8&quot;, &quot;type&quot;: &quot;widget&quot;}]}, &quot;column_name&quot;: &quot;concave points error&quot;, &quot;column_type&quot;: &quot;num&quot;, &quot;stattest_name&quot;: &quot;PSI&quot;, &quot;reference_distribution&quot;: {&quot;x&quot;: [0.0, 0.005279, 0.010558, 0.015837, 0.021116, 0.026395, 0.031674, 0.036953, 0.042232, 0.047511, 0.05279], &quot;y&quot;: [17.134355238971903, 68.53742095588761, 67.1095580193066, 23.797715609683202, 8.091223307292289, 2.3797715609683183, 0.9519086243873279, 0.9519086243873279, 0.0, 0.47595431219366396]}, &quot;current_distribution&quot;: {&quot;x&quot;: [0.0, 0.003322, 0.006644, 0.009966, 0.013288, 0.01661, 0.019932, 0.023254, 0.026576, 0.029897999999999997, 0.03322], &quot;y&quot;: [17.603712270843676, 42.24890945002482, 77.45633399171219, 63.373364175037224, 45.76965190419355, 26.405568406265527, 14.08296981667493, 7.041484908337473, 5.281113681253105, 1.7603712270843663]}, &quot;data_drift&quot;: &quot;Not Detected&quot;, &quot;drift_score&quot;: 0.071997}, {&quot;details&quot;: {&quot;parts&quot;: [{&quot;title&quot;: &quot;DATA DRIFT&quot;, &quot;id&quot;: &quot;259fb8b3-e19c-49c0-9d05-89c2095c686e&quot;, &quot;type&quot;: &quot;widget&quot;}, {&quot;title&quot;: &quot;DATA DISTRIBUTION&quot;, &quot;id&quot;: &quot;d1d28979-2993-40a3-b426-c9a5b1acd871&quot;, &quot;type&quot;: &quot;widget&quot;}]}, &quot;column_name&quot;: &quot;radius error&quot;, &quot;column_type&quot;: &quot;num&quot;, &quot;stattest_name&quot;: &quot;PSI&quot;, &quot;reference_distribution&quot;: {&quot;x&quot;: [0.1115, 0.38765, 0.6638000000000001, 0.9399500000000001, 1.2161, 1.4922499999999999, 1.7684, 2.04455, 2.3207, 2.59685, 2.873], &quot;y&quot;: [2.3201286170122746, 0.8279674672475175, 0.2638577642876705, 0.15467524113415174, 0.027295630788379717, 0.009098543596126565, 0.0, 0.0, 0.00909854359612657, 0.009098543596126557]}, &quot;current_distribution&quot;: {&quot;x&quot;: [0.1166, 0.23403999999999997, 0.35147999999999996, 0.46891999999999995, 0.58636, 0.7038, 0.82124, 0.93868, 1.05612, 1.17356, 1.291], &quot;y&quot;: [2.4399668562869485, 1.842423952706471, 1.7926287107414314, 0.8465191134056755, 0.5975429035804771, 0.29877145179023856, 0.29877145179023856, 0.14938572589511928, 0.09959048393007952, 0.14938572589511928]}, &quot;data_drift&quot;: &quot;Not Detected&quot;, &quot;drift_score&quot;: 0.068429}, {&quot;details&quot;: {&quot;parts&quot;: [{&quot;title&quot;: &quot;DATA DRIFT&quot;, &quot;id&quot;: &quot;7b59a745-d210-4e35-ab86-ee7ce8c2c6f2&quot;, &quot;type&quot;: &quot;widget&quot;}, {&quot;title&quot;: &quot;DATA DISTRIBUTION&quot;, &quot;id&quot;: &quot;c79e60b3-9990-4f94-a560-d406d372dc8c&quot;, &quot;type&quot;: &quot;widget&quot;}]}, &quot;column_name&quot;: &quot;worst fractal dimension&quot;, &quot;column_type&quot;: &quot;num&quot;, &quot;stattest_name&quot;: &quot;PSI&quot;, &quot;reference_distribution&quot;: {&quot;x&quot;: [0.05504, 0.06683599999999999, 0.078632, 0.09042799999999998, 0.10222399999999998, 0.11401999999999998, 0.12581599999999998, 0.13761199999999998, 0.14940799999999999, 0.161204, 0.173], &quot;y&quot;: [11.076065304481041, 28.75516954047961, 22.152130608962096, 11.076065304481034, 6.177036419806731, 2.982017581975663, 1.0650062792770225, 1.278007535132427, 0.0, 0.2130012558554045]}, &quot;current_distribution&quot;: {&quot;x&quot;: [0.05865, 0.073535, 0.08842, 0.10330500000000001, 0.11818999999999999, 0.133075, 0.14796, 0.162845, 0.17773, 0.192615, 0.2075], &quot;y&quot;: [19.64377969893943, 26.32266479657885, 11.786267819363653, 5.1073827217242584, 2.750129157851519, 1.1786267819363652, 0.0, 0.0, 0.0, 0.39287559397878913]}, &quot;data_drift&quot;: &quot;Not Detected&quot;, &quot;drift_score&quot;: 0.064724}, {&quot;details&quot;: {&quot;parts&quot;: [{&quot;title&quot;: &quot;DATA DRIFT&quot;, &quot;id&quot;: &quot;ea4b7aa1-d4de-420c-9fc8-9b436f778655&quot;, &quot;type&quot;: &quot;widget&quot;}, {&quot;title&quot;: &quot;DATA DISTRIBUTION&quot;, &quot;id&quot;: &quot;6b09c97b-7ee4-4a2a-abe8-5cb41a730bc3&quot;, &quot;type&quot;: &quot;widget&quot;}]}, &quot;column_name&quot;: &quot;worst smoothness&quot;, &quot;column_type&quot;: &quot;num&quot;, &quot;stattest_name&quot;: &quot;PSI&quot;, &quot;reference_distribution&quot;: {&quot;x&quot;: [0.08125, 0.09496500000000001, 0.10868, 0.122395, 0.13611, 0.14982499999999999, 0.16354000000000002, 0.177255, 0.19097, 0.204685, 0.2184], &quot;y&quot;: [3.2975669451889402, 8.060719199350752, 14.839051253350231, 16.854231053187917, 15.022249416971869, 7.877521035729119, 3.847161436053771, 2.564774290702509, 0.18319816362160782, 0.36639632724321564]}, &quot;current_distribution&quot;: {&quot;x&quot;: [0.07117, 0.086313, 0.10145599999999999, 0.116599, 0.131742, 0.146885, 0.162028, 0.177171, 0.19231399999999998, 0.207457, 0.2226], &quot;y&quot;: [0.3861819465346541, 4.634183358415854, 7.337456984158429, 19.309097326732704, 18.536733433663414, 9.654548663366345, 3.861819465346545, 1.9309097326732725, 0.0, 0.38618194653465454]}, &quot;data_drift&quot;: &quot;Not Detected&quot;, &quot;drift_score&quot;: 0.062264}, {&quot;details&quot;: {&quot;parts&quot;: [{&quot;title&quot;: &quot;DATA DRIFT&quot;, &quot;id&quot;: &quot;b712291f-264e-4b16-aa85-eb0d816fc4cd&quot;, &quot;type&quot;: &quot;widget&quot;}, {&quot;title&quot;: &quot;DATA DISTRIBUTION&quot;, &quot;id&quot;: &quot;885f2efd-e6f7-4c95-943e-d9598c90a84c&quot;, &quot;type&quot;: &quot;widget&quot;}]}, &quot;column_name&quot;: &quot;area error&quot;, &quot;column_type&quot;: &quot;num&quot;, &quot;stattest_name&quot;: &quot;PSI&quot;, &quot;reference_distribution&quot;: {&quot;x&quot;: [6.802, 60.3418, 113.88159999999999, 167.42139999999998, 220.9612, 274.50100000000003, 328.0408, 381.5806, 435.1204, 488.66020000000003, 542.2], &quot;y&quot;: [0.015298814664734175, 0.00244030172566312, 0.0007039331900951308, 4.692887933967536e-05, 9.385775867935069e-05, 0.0, 0.0, 0.0, 0.0, 9.385775867935073e-05]}, &quot;current_distribution&quot;: {&quot;x&quot;: [8.205, 27.354499999999994, 46.50399999999999, 65.6535, 84.80299999999998, 103.95249999999997, 123.10199999999998, 142.2515, 161.40099999999998, 180.55049999999997, 199.7], &quot;y&quot;: [0.028706107331219165, 0.010383060098526081, 0.004580761808173269, 0.0027484570849039634, 0.0015269206027244242, 0.0018323047232693076, 0.0009161523616346532, 0.0006107682410897697, 0.0006107682410897697, 0.00030538412054488437]}, &quot;data_drift&quot;: &quot;Not Detected&quot;, &quot;drift_score&quot;: 0.056703}, {&quot;details&quot;: {&quot;parts&quot;: [{&quot;title&quot;: &quot;DATA DRIFT&quot;, &quot;id&quot;: &quot;e5182951-8b57-4fa7-abc5-96453b511ad7&quot;, &quot;type&quot;: &quot;widget&quot;}, {&quot;title&quot;: &quot;DATA DISTRIBUTION&quot;, &quot;id&quot;: &quot;404fe6d4-6672-49c4-bba5-8c88cf9fda14&quot;, &quot;type&quot;: &quot;widget&quot;}]}, &quot;column_name&quot;: &quot;mean symmetry&quot;, &quot;column_type&quot;: &quot;num&quot;, &quot;stattest_name&quot;: &quot;PSI&quot;, &quot;reference_distribution&quot;: {&quot;x&quot;: [0.1167, 0.13543, 0.15416, 0.17289, 0.19162, 0.21034999999999998, 0.22908, 0.24781, 0.26654, 0.28527, 0.304], &quot;y&quot;: [1.341464396193461, 6.841468420586651, 14.621961918508724, 13.68293684117328, 10.46342229030901, 3.8902467489610304, 1.341464396193461, 0.9390250773354226, 0.1341464396193459, 0.1341464396193463]}, &quot;current_distribution&quot;: {&quot;x&quot;: [0.106, 0.12446, 0.14292, 0.16138000000000002, 0.17984, 0.19830000000000003, 0.21676, 0.23522000000000004, 0.25368, 0.27214000000000005, 0.2906], &quot;y&quot;: [0.6335810635291731, 1.9007431905875205, 8.87013488940841, 15.839526588229353, 14.255573929406374, 6.652601167056328, 2.8511147858812746, 1.9007431905875223, 0.6335810635291721, 0.6335810635291741]}, &quot;data_drift&quot;: &quot;Not Detected&quot;, &quot;drift_score&quot;: 0.054748}, {&quot;details&quot;: {&quot;parts&quot;: [{&quot;title&quot;: &quot;DATA DRIFT&quot;, &quot;id&quot;: &quot;4eb6d6d4-ce6d-468e-ad90-5fcdfec2ef7c&quot;, &quot;type&quot;: &quot;widget&quot;}, {&quot;title&quot;: &quot;DATA DISTRIBUTION&quot;, &quot;id&quot;: &quot;d6b2bfc1-5ede-40f5-a15d-777a732e6518&quot;, &quot;type&quot;: &quot;widget&quot;}]}, &quot;column_name&quot;: &quot;worst texture&quot;, &quot;column_type&quot;: &quot;num&quot;, &quot;stattest_name&quot;: &quot;PSI&quot;, &quot;reference_distribution&quot;: {&quot;x&quot;: [12.02, 15.771999999999998, 19.524, 23.276, 27.028, 30.779999999999998, 34.532, 38.284, 42.036, 45.788, 49.54], &quot;y&quot;: [0.007366255584961055, 0.03884025672070371, 0.05692106588378997, 0.0636176618701182, 0.04687617190429762, 0.03348297993164116, 0.014062851571289272, 0.0033482979931641127, 0.0013393191972656477, 0.0006696595986328225]}, &quot;current_distribution&quot;: {&quot;x&quot;: [12.49, 15.957, 19.424, 22.891, 26.357999999999997, 29.824999999999996, 33.292, 36.759, 40.226, 43.693, 47.16], &quot;y&quot;: [0.010120484366381773, 0.033734947887939265, 0.05903615880389371, 0.05734941140949675, 0.0506024218319089, 0.03710844267673311, 0.02192771612716052, 0.010120484366381778, 0.006746989577587853, 0.0016867473943969632]}, &quot;data_drift&quot;: &quot;Not Detected&quot;, &quot;drift_score&quot;: 0.049599}, {&quot;details&quot;: {&quot;parts&quot;: [{&quot;title&quot;: &quot;DATA DRIFT&quot;, &quot;id&quot;: &quot;f6f6d7d7-616b-45e1-b05b-f98ad60134e9&quot;, &quot;type&quot;: &quot;widget&quot;}, {&quot;title&quot;: &quot;DATA DISTRIBUTION&quot;, &quot;id&quot;: &quot;3b115a34-e241-4f3c-8fd3-46af4df176d2&quot;, &quot;type&quot;: &quot;widget&quot;}]}, &quot;column_name&quot;: &quot;mean concave points&quot;, &quot;column_type&quot;: &quot;num&quot;, &quot;stattest_name&quot;: &quot;PSI&quot;, &quot;reference_distribution&quot;: {&quot;x&quot;: [0.0, 0.02012, 0.04024, 0.06036, 0.08048, 0.1006, 0.12072, 0.14084, 0.16096, 0.18108, 0.2012], &quot;y&quot;: [11.738613544861485, 15.484979569817279, 7.118095447416007, 4.495639229946952, 5.869306772430742, 2.6224562174690553, 1.123909807486738, 0.6243943374926322, 0.24975773499705287, 0.3746366024955793]}, &quot;current_distribution&quot;: {&quot;x&quot;: [0.0, 0.01845, 0.0369, 0.05535, 0.0738, 0.09225, 0.1107, 0.12915000000000001, 0.1476, 0.16605, 0.1845], &quot;y&quot;: [11.09367818824387, 17.432922867240368, 6.339244678996497, 5.705320211096847, 5.388357977147025, 3.1696223394982472, 1.267848935799299, 1.584811169749125, 1.584811169749125, 0.63392446789965]}, &quot;data_drift&quot;: &quot;Not Detected&quot;, &quot;drift_score&quot;: 0.049584}, {&quot;details&quot;: {&quot;parts&quot;: [{&quot;title&quot;: &quot;DATA DRIFT&quot;, &quot;id&quot;: &quot;841caf17-a46d-4321-b877-0fd2d395c9fd&quot;, &quot;type&quot;: &quot;widget&quot;}, {&quot;title&quot;: &quot;DATA DISTRIBUTION&quot;, &quot;id&quot;: &quot;32d30413-fb78-495b-b4a0-b4ad3a896a2d&quot;, &quot;type&quot;: &quot;widget&quot;}]}, &quot;column_name&quot;: &quot;worst area&quot;, &quot;column_type&quot;: &quot;num&quot;, &quot;stattest_name&quot;: &quot;PSI&quot;, &quot;reference_distribution&quot;: {&quot;x&quot;: [223.6, 626.64, 1029.68, 1432.72, 1835.76, 2238.8, 2641.84, 3044.88, 3447.92, 3850.96, 4254.0], &quot;y&quot;: [0.0010722528881006862, 0.0007667854955603742, 0.00025559516518679145, 0.0002119569662524612, 9.974445470704052e-05, 3.117014209595018e-05, 1.8702085257570106e-05, 1.8702085257570106e-05, 0.0, 6.234028419190036e-06]}, &quot;current_distribution&quot;: {&quot;x&quot;: [185.2, 509.88, 834.56, 1159.24, 1483.92, 1808.6000000000001, 2133.2799999999997, 2457.96, 2782.64, 3107.3199999999997, 3432.0], &quot;y&quot;: [0.0009005718270873274, 0.0011347205021300327, 0.0003242058577514378, 0.00027017154812619817, 0.0001621029288757189, 0.0001801143654174657, 5.403430962523959e-05, 3.602287308349311e-05, 0.0, 1.8011436541746532e-05]}, &quot;data_drift&quot;: &quot;Not Detected&quot;, &quot;drift_score&quot;: 0.045509}, {&quot;details&quot;: {&quot;parts&quot;: [{&quot;title&quot;: &quot;DATA DRIFT&quot;, &quot;id&quot;: &quot;8bfd1177-a730-41a1-8421-fec180e96294&quot;, &quot;type&quot;: &quot;widget&quot;}, {&quot;title&quot;: &quot;DATA DISTRIBUTION&quot;, &quot;id&quot;: &quot;37c4cd50-7bf1-4044-94f5-08ec0e0bedfc&quot;, &quot;type&quot;: &quot;widget&quot;}]}, &quot;column_name&quot;: &quot;concavity error&quot;, &quot;column_type&quot;: &quot;num&quot;, &quot;stattest_name&quot;: &quot;PSI&quot;, &quot;reference_distribution&quot;: {&quot;x&quot;: [0.0, 0.0396, 0.0792, 0.11880000000000002, 0.1584, 0.198, 0.23760000000000003, 0.2772, 0.3168, 0.35640000000000005, 0.396], &quot;y&quot;: [18.146286990508095, 5.773818587888939, 1.0151768945738793, 0.25379422364346993, 0.0, 0.0, 0.0, 0.0, 0.0, 0.06344855591086752]}, &quot;current_distribution&quot;: {&quot;x&quot;: [0.0, 0.03038, 0.06076, 0.09114, 0.12152, 0.1519, 0.18228, 0.21266000000000002, 0.24304, 0.27342, 0.3038], &quot;y&quot;: [19.826832827075368, 10.394650220020095, 1.539948180743718, 0.9624676129648235, 0.0, 0.0, 0.0, 0.0, 0.0, 0.19249352259296462]}, &quot;data_drift&quot;: &quot;Not Detected&quot;, &quot;drift_score&quot;: 0.04354}, {&quot;details&quot;: {&quot;parts&quot;: [{&quot;title&quot;: &quot;DATA DRIFT&quot;, &quot;id&quot;: &quot;e63c6736-2cba-4094-b05b-3bea233b77ee&quot;, &quot;type&quot;: &quot;widget&quot;}, {&quot;title&quot;: &quot;DATA DISTRIBUTION&quot;, &quot;id&quot;: &quot;ed1eb5d2-7ac4-4143-bdf4-8afed6eb0148&quot;, &quot;type&quot;: &quot;widget&quot;}]}, &quot;column_name&quot;: &quot;compactness error&quot;, &quot;column_type&quot;: &quot;num&quot;, &quot;stattest_name&quot;: &quot;PSI&quot;, &quot;reference_distribution&quot;: {&quot;x&quot;: [0.002252, 0.015566799999999999, 0.028881599999999997, 0.04219639999999999, 0.05551119999999999, 0.068826, 0.08214079999999999, 0.09545559999999999, 0.10877039999999999, 0.12208519999999999, 0.1354], &quot;y&quot;: [26.6073359557725, 24.908995362850845, 13.775429253697824, 5.095021778764945, 2.26445412389553, 0.9435225516231389, 0.7548180412985103, 0.5661135309738827, 0.0, 0.18870451032462757]}, &quot;current_distribution&quot;: {&quot;x&quot;: [0.00466, 0.014834, 0.025008, 0.035182, 0.045355999999999994, 0.055529999999999996, 0.065704, 0.07587799999999999, 0.08605199999999999, 0.09622599999999999, 0.1064], &quot;y&quot;: [31.038871012798367, 29.314489289865122, 14.944641598754767, 11.495878152888286, 4.023557353510898, 3.4487634458664833, 1.724381722933244, 0.0, 1.7243817229332417, 0.574793907644414]}, &quot;data_drift&quot;: &quot;Not Detected&quot;, &quot;drift_score&quot;: 0.040622}, {&quot;details&quot;: {&quot;parts&quot;: [{&quot;title&quot;: &quot;DATA DRIFT&quot;, &quot;id&quot;: &quot;852a0f59-227d-4bc6-9b63-e97b97c7f5da&quot;, &quot;type&quot;: &quot;widget&quot;}, {&quot;title&quot;: &quot;DATA DISTRIBUTION&quot;, &quot;id&quot;: &quot;146afcd9-2bc1-440c-9782-f0bb86af87a1&quot;, &quot;type&quot;: &quot;widget&quot;}]}, &quot;column_name&quot;: &quot;mean concavity&quot;, &quot;column_type&quot;: &quot;num&quot;, &quot;stattest_name&quot;: &quot;PSI&quot;, &quot;reference_distribution&quot;: {&quot;x&quot;: [0.0, 0.04268, 0.08536, 0.12804000000000001, 0.17072, 0.2134, 0.25608000000000003, 0.29876, 0.34144, 0.38412, 0.4268], &quot;y&quot;: [8.889338915759678, 4.945062708104722, 3.7676668252226446, 2.4725313540523617, 1.5306146477467, 1.0007865004497647, 0.23547917657641534, 0.3532187648646231, 0.11773958828820767, 0.11773958828820767]}, &quot;current_distribution&quot;: {&quot;x&quot;: [0.0, 0.04264, 0.08528, 0.12791999999999998, 0.17056, 0.2132, 0.25583999999999996, 0.29847999999999997, 0.34112, 0.38376, 0.4264], &quot;y&quot;: [9.051709950297884, 5.211590577444237, 3.0172366500992958, 2.880089529640235, 0.9600298432134116, 1.2343240841315308, 0.2742942409181176, 0.4114413613771764, 0.2742942409181176, 0.1371471204590588]}, &quot;data_drift&quot;: &quot;Not Detected&quot;, &quot;drift_score&quot;: 0.033439}, {&quot;details&quot;: {&quot;parts&quot;: [{&quot;title&quot;: &quot;DATA DRIFT&quot;, &quot;id&quot;: &quot;a00da5c4-0083-417c-bb1e-b985dd6234f2&quot;, &quot;type&quot;: &quot;widget&quot;}, {&quot;title&quot;: &quot;DATA DISTRIBUTION&quot;, &quot;id&quot;: &quot;cf7fd2ce-b234-4051-924f-c8723bec3d5e&quot;, &quot;type&quot;: &quot;widget&quot;}]}, &quot;column_name&quot;: &quot;perimeter error&quot;, &quot;column_type&quot;: &quot;num&quot;, &quot;stattest_name&quot;: &quot;PSI&quot;, &quot;reference_distribution&quot;: {&quot;x&quot;: [0.757, 2.8793, 5.0016, 7.1239, 9.2462, 11.3685, 13.4908, 15.613100000000001, 17.735400000000002, 19.8577, 21.98], &quot;y&quot;: [0.31609775778956034, 0.10654980599648102, 0.024861621399178906, 0.016574414266119268, 0.004735546933176936, 0.0, 0.0, 0.0, 0.001183886733294234, 0.001183886733294234]}, &quot;current_distribution&quot;: {&quot;x&quot;: [0.7714, 1.6992600000000002, 2.62712, 3.5549800000000005, 4.48284, 5.4107, 6.338560000000001, 7.266420000000001, 8.194280000000001, 9.122140000000002, 10.05], &quot;y&quot;: [0.3655522239882175, 0.28361810481844474, 0.15756561378802478, 0.11344724192737789, 0.05042099641216795, 0.04411837186064692, 0.012605249103041987, 0.025210498206083974, 0.012605249103041975, 0.012605249103042001]}, &quot;data_drift&quot;: &quot;Not Detected&quot;, &quot;drift_score&quot;: 0.03006}]}, &quot;insights&quot;: [], &quot;alerts&quot;: [], &quot;tabs&quot;: [], &quot;widgets&quot;: [], &quot;pageSize&quot;: 5}, {&quot;type&quot;: &quot;counter&quot;, &quot;title&quot;: &quot;&quot;, &quot;size&quot;: 2, &quot;id&quot;: &quot;16e7f748-7298-4f8c-ba9c-346b8bdc1c6d&quot;, &quot;details&quot;: &quot;&quot;, &quot;alertsPosition&quot;: null, &quot;alertStats&quot;: null, &quot;params&quot;: {&quot;counters&quot;: [{&quot;value&quot;: &quot;&quot;, &quot;label&quot;: &quot;Classification Model Performance. Target: &#x27;target\\u2019&quot;}]}, &quot;insights&quot;: [], &quot;alerts&quot;: [], &quot;tabs&quot;: [], &quot;widgets&quot;: [], &quot;pageSize&quot;: 5}, {&quot;type&quot;: &quot;counter&quot;, &quot;title&quot;: &quot;Current: Model Quality Metrics&quot;, &quot;size&quot;: 2, &quot;id&quot;: &quot;a5ed1722-733e-4db5-bb9c-a84f6b71b5be&quot;, &quot;details&quot;: &quot;&quot;, &quot;alertsPosition&quot;: null, &quot;alertStats&quot;: null, &quot;params&quot;: {&quot;counters&quot;: [{&quot;value&quot;: &quot;0.404&quot;, &quot;label&quot;: &quot;Accuracy&quot;}, {&quot;value&quot;: &quot;0.65&quot;, &quot;label&quot;: &quot;Precision&quot;}, {&quot;value&quot;: &quot;0.12&quot;, &quot;label&quot;: &quot;Recall&quot;}, {&quot;value&quot;: &quot;0.203&quot;, &quot;label&quot;: &quot;F1&quot;}, {&quot;value&quot;: &quot;0.527&quot;, &quot;label&quot;: &quot;ROC AUC&quot;}, {&quot;value&quot;: &quot;0.979&quot;, &quot;label&quot;: &quot;LogLoss&quot;}]}, &quot;insights&quot;: [], &quot;alerts&quot;: [], &quot;tabs&quot;: [], &quot;widgets&quot;: [], &quot;pageSize&quot;: 5}, {&quot;type&quot;: &quot;counter&quot;, &quot;title&quot;: &quot;Reference: Model Quality Metrics&quot;, &quot;size&quot;: 2, &quot;id&quot;: &quot;4e01878e-c5c6-4d64-9983-ab82f741878b&quot;, &quot;details&quot;: &quot;&quot;, &quot;alertsPosition&quot;: null, &quot;alertStats&quot;: null, &quot;params&quot;: {&quot;counters&quot;: [{&quot;value&quot;: &quot;0.42&quot;, &quot;label&quot;: &quot;Accuracy&quot;}, {&quot;value&quot;: &quot;0.781&quot;, &quot;label&quot;: &quot;Precision&quot;}, {&quot;value&quot;: &quot;0.1&quot;, &quot;label&quot;: &quot;Recall&quot;}, {&quot;value&quot;: &quot;0.178&quot;, &quot;label&quot;: &quot;F1&quot;}, {&quot;value&quot;: &quot;0.525&quot;, &quot;label&quot;: &quot;ROC AUC&quot;}, {&quot;value&quot;: &quot;0.966&quot;, &quot;label&quot;: &quot;LogLoss&quot;}]}, &quot;insights&quot;: [], &quot;alerts&quot;: [], &quot;tabs&quot;: [], &quot;widgets&quot;: [], &quot;pageSize&quot;: 5}, {&quot;type&quot;: &quot;counter&quot;, &quot;title&quot;: &quot;&quot;, &quot;size&quot;: 2, &quot;id&quot;: &quot;ce0f9c96-d237-405d-b5d0-e47dfda5c5c3&quot;, &quot;details&quot;: &quot;&quot;, &quot;alertsPosition&quot;: null, &quot;alertStats&quot;: null, &quot;params&quot;: {&quot;counters&quot;: [{&quot;value&quot;: &quot;&quot;, &quot;label&quot;: &quot;Class Representation&quot;}]}, &quot;insights&quot;: [], &quot;alerts&quot;: [], &quot;tabs&quot;: [], &quot;widgets&quot;: [], &quot;pageSize&quot;: 5}, {&quot;type&quot;: &quot;big_graph&quot;, &quot;title&quot;: &quot;&quot;, &quot;size&quot;: 2, &quot;id&quot;: &quot;758794ab-88d4-4d4b-bdae-eac882620bfc&quot;, &quot;details&quot;: &quot;&quot;, &quot;alertsPosition&quot;: null, &quot;alertStats&quot;: null, &quot;params&quot;: {&quot;data&quot;: [{&quot;marker&quot;: {&quot;color&quot;: &quot;#ed0400&quot;}, &quot;name&quot;: &quot;current&quot;, &quot;visible&quot;: true, &quot;x&quot;: [&quot;1&quot;, &quot;0&quot;], &quot;y&quot;: [108, 63], &quot;type&quot;: &quot;bar&quot;, &quot;xaxis&quot;: &quot;x&quot;, &quot;yaxis&quot;: &quot;y&quot;}, {&quot;marker&quot;: {&quot;color&quot;: &quot;#ed0400&quot;}, &quot;name&quot;: &quot;current&quot;, &quot;visible&quot;: false, &quot;x&quot;: [&quot;1&quot;, &quot;0&quot;], &quot;y&quot;: [63.1578947368421, 36.84210526315789], &quot;type&quot;: &quot;bar&quot;, &quot;xaxis&quot;: &quot;x&quot;, &quot;yaxis&quot;: &quot;y&quot;}, {&quot;marker&quot;: {&quot;color&quot;: &quot;#ed0400&quot;}, &quot;name&quot;: &quot;reference&quot;, &quot;visible&quot;: true, &quot;x&quot;: [&quot;1&quot;, &quot;0&quot;], &quot;y&quot;: [249, 149], &quot;type&quot;: &quot;bar&quot;, &quot;xaxis&quot;: &quot;x2&quot;, &quot;yaxis&quot;: &quot;y2&quot;}, {&quot;marker&quot;: {&quot;color&quot;: &quot;#ed0400&quot;}, &quot;name&quot;: &quot;reference&quot;, &quot;visible&quot;: false, &quot;x&quot;: [&quot;1&quot;, &quot;0&quot;], &quot;y&quot;: [62.562814070351756, 37.437185929648244], &quot;type&quot;: &quot;bar&quot;, &quot;xaxis&quot;: &quot;x2&quot;, &quot;yaxis&quot;: &quot;y2&quot;}], &quot;layout&quot;: {&quot;template&quot;: {&quot;data&quot;: {&quot;histogram2dcontour&quot;: [{&quot;type&quot;: &quot;histogram2dcontour&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;choropleth&quot;: [{&quot;type&quot;: &quot;choropleth&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}], &quot;histogram2d&quot;: [{&quot;type&quot;: &quot;histogram2d&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;heatmap&quot;: [{&quot;type&quot;: &quot;heatmap&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;heatmapgl&quot;: [{&quot;type&quot;: &quot;heatmapgl&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;contourcarpet&quot;: [{&quot;type&quot;: &quot;contourcarpet&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}], &quot;contour&quot;: [{&quot;type&quot;: &quot;contour&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;surface&quot;: [{&quot;type&quot;: &quot;surface&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;mesh3d&quot;: [{&quot;type&quot;: &quot;mesh3d&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}], &quot;scatter&quot;: [{&quot;fillpattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}, &quot;type&quot;: &quot;scatter&quot;}], &quot;parcoords&quot;: [{&quot;type&quot;: &quot;parcoords&quot;, &quot;line&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatterpolargl&quot;: [{&quot;type&quot;: &quot;scatterpolargl&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;bar&quot;: [{&quot;error_x&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}, &quot;error_y&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}, &quot;marker&quot;: {&quot;line&quot;: {&quot;color&quot;: &quot;#E5ECF6&quot;, &quot;width&quot;: 0.5}, &quot;pattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}}, &quot;type&quot;: &quot;bar&quot;}], &quot;scattergeo&quot;: [{&quot;type&quot;: &quot;scattergeo&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatterpolar&quot;: [{&quot;type&quot;: &quot;scatterpolar&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;histogram&quot;: [{&quot;marker&quot;: {&quot;pattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}}, &quot;type&quot;: &quot;histogram&quot;}], &quot;scattergl&quot;: [{&quot;type&quot;: &quot;scattergl&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatter3d&quot;: [{&quot;type&quot;: &quot;scatter3d&quot;, &quot;line&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scattermapbox&quot;: [{&quot;type&quot;: &quot;scattermapbox&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatterternary&quot;: [{&quot;type&quot;: &quot;scatterternary&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scattercarpet&quot;: [{&quot;type&quot;: &quot;scattercarpet&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;carpet&quot;: [{&quot;aaxis&quot;: {&quot;endlinecolor&quot;: &quot;#2a3f5f&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;minorgridcolor&quot;: &quot;white&quot;, &quot;startlinecolor&quot;: &quot;#2a3f5f&quot;}, &quot;baxis&quot;: {&quot;endlinecolor&quot;: &quot;#2a3f5f&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;minorgridcolor&quot;: &quot;white&quot;, &quot;startlinecolor&quot;: &quot;#2a3f5f&quot;}, &quot;type&quot;: &quot;carpet&quot;}], &quot;table&quot;: [{&quot;cells&quot;: {&quot;fill&quot;: {&quot;color&quot;: &quot;#EBF0F8&quot;}, &quot;line&quot;: {&quot;color&quot;: &quot;white&quot;}}, &quot;header&quot;: {&quot;fill&quot;: {&quot;color&quot;: &quot;#C8D4E3&quot;}, &quot;line&quot;: {&quot;color&quot;: &quot;white&quot;}}, &quot;type&quot;: &quot;table&quot;}], &quot;barpolar&quot;: [{&quot;marker&quot;: {&quot;line&quot;: {&quot;color&quot;: &quot;#E5ECF6&quot;, &quot;width&quot;: 0.5}, &quot;pattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}}, &quot;type&quot;: &quot;barpolar&quot;}], &quot;pie&quot;: [{&quot;automargin&quot;: true, &quot;type&quot;: &quot;pie&quot;}]}, &quot;layout&quot;: {&quot;autotypenumbers&quot;: &quot;strict&quot;, &quot;colorway&quot;: [&quot;#636efa&quot;, &quot;#EF553B&quot;, &quot;#00cc96&quot;, &quot;#ab63fa&quot;, &quot;#FFA15A&quot;, &quot;#19d3f3&quot;, &quot;#FF6692&quot;, &quot;#B6E880&quot;, &quot;#FF97FF&quot;, &quot;#FECB52&quot;], &quot;font&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}, &quot;hovermode&quot;: &quot;closest&quot;, &quot;hoverlabel&quot;: {&quot;align&quot;: &quot;left&quot;}, &quot;paper_bgcolor&quot;: &quot;white&quot;, &quot;plot_bgcolor&quot;: &quot;#E5ECF6&quot;, &quot;polar&quot;: {&quot;bgcolor&quot;: &quot;#E5ECF6&quot;, &quot;angularaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}, &quot;radialaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}}, &quot;ternary&quot;: {&quot;bgcolor&quot;: &quot;#E5ECF6&quot;, &quot;aaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}, &quot;baxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}, &quot;caxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}}, &quot;coloraxis&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}, &quot;colorscale&quot;: {&quot;sequential&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]], &quot;sequentialminus&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]], &quot;diverging&quot;: [[0, &quot;#8e0152&quot;], [0.1, &quot;#c51b7d&quot;], [0.2, &quot;#de77ae&quot;], [0.3, &quot;#f1b6da&quot;], [0.4, &quot;#fde0ef&quot;], [0.5, &quot;#f7f7f7&quot;], [0.6, &quot;#e6f5d0&quot;], [0.7, &quot;#b8e186&quot;], [0.8, &quot;#7fbc41&quot;], [0.9, &quot;#4d9221&quot;], [1, &quot;#276419&quot;]]}, &quot;xaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;, &quot;title&quot;: {&quot;standoff&quot;: 15}, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;automargin&quot;: true, &quot;zerolinewidth&quot;: 2}, &quot;yaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;, &quot;title&quot;: {&quot;standoff&quot;: 15}, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;automargin&quot;: true, &quot;zerolinewidth&quot;: 2}, &quot;scene&quot;: {&quot;xaxis&quot;: {&quot;backgroundcolor&quot;: &quot;#E5ECF6&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;showbackground&quot;: true, &quot;ticks&quot;: &quot;&quot;, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;gridwidth&quot;: 2}, &quot;yaxis&quot;: {&quot;backgroundcolor&quot;: &quot;#E5ECF6&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;showbackground&quot;: true, &quot;ticks&quot;: &quot;&quot;, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;gridwidth&quot;: 2}, &quot;zaxis&quot;: {&quot;backgroundcolor&quot;: &quot;#E5ECF6&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;showbackground&quot;: true, &quot;ticks&quot;: &quot;&quot;, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;gridwidth&quot;: 2}}, &quot;shapedefaults&quot;: {&quot;line&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}}, &quot;annotationdefaults&quot;: {&quot;arrowcolor&quot;: &quot;#2a3f5f&quot;, &quot;arrowhead&quot;: 0, &quot;arrowwidth&quot;: 1}, &quot;geo&quot;: {&quot;bgcolor&quot;: &quot;white&quot;, &quot;landcolor&quot;: &quot;#E5ECF6&quot;, &quot;subunitcolor&quot;: &quot;white&quot;, &quot;showland&quot;: true, &quot;showlakes&quot;: true, &quot;lakecolor&quot;: &quot;white&quot;}, &quot;title&quot;: {&quot;x&quot;: 0.05}, &quot;mapbox&quot;: {&quot;style&quot;: &quot;light&quot;}}}, &quot;xaxis&quot;: {&quot;anchor&quot;: &quot;y&quot;, &quot;domain&quot;: [0.0, 0.45], &quot;title&quot;: {&quot;text&quot;: &quot;Class&quot;}}, &quot;yaxis&quot;: {&quot;anchor&quot;: &quot;x&quot;, &quot;domain&quot;: [0.0, 1.0], &quot;title&quot;: {&quot;text&quot;: &quot;Number Of Objects&quot;}}, &quot;xaxis2&quot;: {&quot;anchor&quot;: &quot;y2&quot;, &quot;domain&quot;: [0.55, 1.0], &quot;title&quot;: {&quot;text&quot;: &quot;Class&quot;}}, &quot;yaxis2&quot;: {&quot;anchor&quot;: &quot;x2&quot;, &quot;domain&quot;: [0.0, 1.0], &quot;matches&quot;: &quot;y&quot;, &quot;showticklabels&quot;: false}, &quot;annotations&quot;: [{&quot;font&quot;: {&quot;size&quot;: 16}, &quot;showarrow&quot;: false, &quot;text&quot;: &quot;current&quot;, &quot;x&quot;: 0.225, &quot;xanchor&quot;: &quot;center&quot;, &quot;xref&quot;: &quot;paper&quot;, &quot;y&quot;: 1.0, &quot;yanchor&quot;: &quot;bottom&quot;, &quot;yref&quot;: &quot;paper&quot;}, {&quot;font&quot;: {&quot;size&quot;: 16}, &quot;showarrow&quot;: false, &quot;text&quot;: &quot;reference&quot;, &quot;x&quot;: 0.775, &quot;xanchor&quot;: &quot;center&quot;, &quot;xref&quot;: &quot;paper&quot;, &quot;y&quot;: 1.0, &quot;yanchor&quot;: &quot;bottom&quot;, &quot;yref&quot;: &quot;paper&quot;}], &quot;updatemenus&quot;: [{&quot;buttons&quot;: [{&quot;args&quot;: [{&quot;visible&quot;: [true, false, true, false]}, {&quot;yaxis&quot;: {&quot;title&quot;: &quot;Number Of Objects&quot;}}], &quot;label&quot;: &quot;abs&quot;, &quot;method&quot;: &quot;update&quot;}, {&quot;args&quot;: [{&quot;visible&quot;: [false, true, false, true]}, {&quot;yaxis&quot;: {&quot;title&quot;: &quot;Percent&quot;}}], &quot;label&quot;: &quot;perc&quot;, &quot;method&quot;: &quot;update&quot;}], &quot;direction&quot;: &quot;right&quot;, &quot;type&quot;: &quot;buttons&quot;, &quot;x&quot;: 1.05, &quot;y&quot;: 1.2, &quot;yanchor&quot;: &quot;top&quot;}], &quot;showlegend&quot;: false}}, &quot;insights&quot;: [], &quot;alerts&quot;: [], &quot;tabs&quot;: [], &quot;widgets&quot;: [], &quot;pageSize&quot;: 5}, {&quot;type&quot;: &quot;counter&quot;, &quot;title&quot;: &quot;&quot;, &quot;size&quot;: 2, &quot;id&quot;: &quot;4fd9c149-cdd3-4468-b71b-b0eec7c00acf&quot;, &quot;details&quot;: &quot;&quot;, &quot;alertsPosition&quot;: null, &quot;alertStats&quot;: null, &quot;params&quot;: {&quot;counters&quot;: [{&quot;value&quot;: &quot;&quot;, &quot;label&quot;: &quot;Confusion Matrix&quot;}]}, &quot;insights&quot;: [], &quot;alerts&quot;: [], &quot;tabs&quot;: [], &quot;widgets&quot;: [], &quot;pageSize&quot;: 5}, {&quot;type&quot;: &quot;big_graph&quot;, &quot;title&quot;: &quot;&quot;, &quot;size&quot;: 2, &quot;id&quot;: &quot;73d15986-ef71-4cf5-a5d3-de9b6c65028d&quot;, &quot;details&quot;: &quot;&quot;, &quot;alertsPosition&quot;: null, &quot;alertStats&quot;: null, &quot;params&quot;: {&quot;data&quot;: [{&quot;coloraxis&quot;: &quot;coloraxis&quot;, &quot;text&quot;: [[&quot;56&quot;, &quot;7&quot;], [&quot;95&quot;, &quot;13&quot;]], &quot;texttemplate&quot;: &quot;%{text}&quot;, &quot;x&quot;: [&quot;0&quot;, &quot;1&quot;], &quot;y&quot;: [&quot;0&quot;, &quot;1&quot;], &quot;z&quot;: [[56, 7], [95, 13]], &quot;type&quot;: &quot;heatmap&quot;, &quot;xaxis&quot;: &quot;x&quot;, &quot;yaxis&quot;: &quot;y&quot;}, {&quot;coloraxis&quot;: &quot;coloraxis&quot;, &quot;text&quot;: [[&quot;142&quot;, &quot;7&quot;], [&quot;224&quot;, &quot;25&quot;]], &quot;texttemplate&quot;: &quot;%{text}&quot;, &quot;x&quot;: [&quot;0&quot;, &quot;1&quot;], &quot;y&quot;: [&quot;0&quot;, &quot;1&quot;], &quot;z&quot;: [[142, 7], [224, 25]], &quot;type&quot;: &quot;heatmap&quot;, &quot;xaxis&quot;: &quot;x2&quot;, &quot;yaxis&quot;: &quot;y2&quot;}], &quot;layout&quot;: {&quot;template&quot;: {&quot;data&quot;: {&quot;histogram2dcontour&quot;: [{&quot;type&quot;: &quot;histogram2dcontour&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;choropleth&quot;: [{&quot;type&quot;: &quot;choropleth&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}], &quot;histogram2d&quot;: [{&quot;type&quot;: &quot;histogram2d&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;heatmap&quot;: [{&quot;type&quot;: &quot;heatmap&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;heatmapgl&quot;: [{&quot;type&quot;: &quot;heatmapgl&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;contourcarpet&quot;: [{&quot;type&quot;: &quot;contourcarpet&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}], &quot;contour&quot;: [{&quot;type&quot;: &quot;contour&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;surface&quot;: [{&quot;type&quot;: &quot;surface&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;mesh3d&quot;: [{&quot;type&quot;: &quot;mesh3d&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}], &quot;scatter&quot;: [{&quot;fillpattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}, &quot;type&quot;: &quot;scatter&quot;}], &quot;parcoords&quot;: [{&quot;type&quot;: &quot;parcoords&quot;, &quot;line&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatterpolargl&quot;: [{&quot;type&quot;: &quot;scatterpolargl&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;bar&quot;: [{&quot;error_x&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}, &quot;error_y&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}, &quot;marker&quot;: {&quot;line&quot;: {&quot;color&quot;: &quot;#E5ECF6&quot;, &quot;width&quot;: 0.5}, &quot;pattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}}, &quot;type&quot;: &quot;bar&quot;}], &quot;scattergeo&quot;: [{&quot;type&quot;: &quot;scattergeo&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatterpolar&quot;: [{&quot;type&quot;: &quot;scatterpolar&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;histogram&quot;: [{&quot;marker&quot;: {&quot;pattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}}, &quot;type&quot;: &quot;histogram&quot;}], &quot;scattergl&quot;: [{&quot;type&quot;: &quot;scattergl&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatter3d&quot;: [{&quot;type&quot;: &quot;scatter3d&quot;, &quot;line&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scattermapbox&quot;: [{&quot;type&quot;: &quot;scattermapbox&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatterternary&quot;: [{&quot;type&quot;: &quot;scatterternary&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scattercarpet&quot;: [{&quot;type&quot;: &quot;scattercarpet&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;carpet&quot;: [{&quot;aaxis&quot;: {&quot;endlinecolor&quot;: &quot;#2a3f5f&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;minorgridcolor&quot;: &quot;white&quot;, &quot;startlinecolor&quot;: &quot;#2a3f5f&quot;}, &quot;baxis&quot;: {&quot;endlinecolor&quot;: &quot;#2a3f5f&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;minorgridcolor&quot;: &quot;white&quot;, &quot;startlinecolor&quot;: &quot;#2a3f5f&quot;}, &quot;type&quot;: &quot;carpet&quot;}], &quot;table&quot;: [{&quot;cells&quot;: {&quot;fill&quot;: {&quot;color&quot;: &quot;#EBF0F8&quot;}, &quot;line&quot;: {&quot;color&quot;: &quot;white&quot;}}, &quot;header&quot;: {&quot;fill&quot;: {&quot;color&quot;: &quot;#C8D4E3&quot;}, &quot;line&quot;: {&quot;color&quot;: &quot;white&quot;}}, &quot;type&quot;: &quot;table&quot;}], &quot;barpolar&quot;: [{&quot;marker&quot;: {&quot;line&quot;: {&quot;color&quot;: &quot;#E5ECF6&quot;, &quot;width&quot;: 0.5}, &quot;pattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}}, &quot;type&quot;: &quot;barpolar&quot;}], &quot;pie&quot;: [{&quot;automargin&quot;: true, &quot;type&quot;: &quot;pie&quot;}]}, &quot;layout&quot;: {&quot;autotypenumbers&quot;: &quot;strict&quot;, &quot;colorway&quot;: [&quot;#636efa&quot;, &quot;#EF553B&quot;, &quot;#00cc96&quot;, &quot;#ab63fa&quot;, &quot;#FFA15A&quot;, &quot;#19d3f3&quot;, &quot;#FF6692&quot;, &quot;#B6E880&quot;, &quot;#FF97FF&quot;, &quot;#FECB52&quot;], &quot;font&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}, &quot;hovermode&quot;: &quot;closest&quot;, &quot;hoverlabel&quot;: {&quot;align&quot;: &quot;left&quot;}, &quot;paper_bgcolor&quot;: &quot;white&quot;, &quot;plot_bgcolor&quot;: &quot;#E5ECF6&quot;, &quot;polar&quot;: {&quot;bgcolor&quot;: &quot;#E5ECF6&quot;, &quot;angularaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}, &quot;radialaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}}, &quot;ternary&quot;: {&quot;bgcolor&quot;: &quot;#E5ECF6&quot;, &quot;aaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}, &quot;baxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}, &quot;caxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}}, &quot;coloraxis&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}, &quot;colorscale&quot;: {&quot;sequential&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]], &quot;sequentialminus&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]], &quot;diverging&quot;: [[0, &quot;#8e0152&quot;], [0.1, &quot;#c51b7d&quot;], [0.2, &quot;#de77ae&quot;], [0.3, &quot;#f1b6da&quot;], [0.4, &quot;#fde0ef&quot;], [0.5, &quot;#f7f7f7&quot;], [0.6, &quot;#e6f5d0&quot;], [0.7, &quot;#b8e186&quot;], [0.8, &quot;#7fbc41&quot;], [0.9, &quot;#4d9221&quot;], [1, &quot;#276419&quot;]]}, &quot;xaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;, &quot;title&quot;: {&quot;standoff&quot;: 15}, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;automargin&quot;: true, &quot;zerolinewidth&quot;: 2}, &quot;yaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;, &quot;title&quot;: {&quot;standoff&quot;: 15}, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;automargin&quot;: true, &quot;zerolinewidth&quot;: 2}, &quot;scene&quot;: {&quot;xaxis&quot;: {&quot;backgroundcolor&quot;: &quot;#E5ECF6&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;showbackground&quot;: true, &quot;ticks&quot;: &quot;&quot;, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;gridwidth&quot;: 2}, &quot;yaxis&quot;: {&quot;backgroundcolor&quot;: &quot;#E5ECF6&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;showbackground&quot;: true, &quot;ticks&quot;: &quot;&quot;, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;gridwidth&quot;: 2}, &quot;zaxis&quot;: {&quot;backgroundcolor&quot;: &quot;#E5ECF6&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;showbackground&quot;: true, &quot;ticks&quot;: &quot;&quot;, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;gridwidth&quot;: 2}}, &quot;shapedefaults&quot;: {&quot;line&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}}, &quot;annotationdefaults&quot;: {&quot;arrowcolor&quot;: &quot;#2a3f5f&quot;, &quot;arrowhead&quot;: 0, &quot;arrowwidth&quot;: 1}, &quot;geo&quot;: {&quot;bgcolor&quot;: &quot;white&quot;, &quot;landcolor&quot;: &quot;#E5ECF6&quot;, &quot;subunitcolor&quot;: &quot;white&quot;, &quot;showland&quot;: true, &quot;showlakes&quot;: true, &quot;lakecolor&quot;: &quot;white&quot;}, &quot;title&quot;: {&quot;x&quot;: 0.05}, &quot;mapbox&quot;: {&quot;style&quot;: &quot;light&quot;}}}, &quot;xaxis&quot;: {&quot;anchor&quot;: &quot;y&quot;, &quot;domain&quot;: [0.0, 0.45], &quot;title&quot;: {&quot;text&quot;: &quot;Predicted Value&quot;}}, &quot;yaxis&quot;: {&quot;anchor&quot;: &quot;x&quot;, &quot;domain&quot;: [0.0, 1.0], &quot;title&quot;: {&quot;text&quot;: &quot;Actual Value&quot;}}, &quot;xaxis2&quot;: {&quot;anchor&quot;: &quot;y2&quot;, &quot;domain&quot;: [0.55, 1.0], &quot;title&quot;: {&quot;text&quot;: &quot;Predicted Value&quot;}}, &quot;yaxis2&quot;: {&quot;anchor&quot;: &quot;x2&quot;, &quot;domain&quot;: [0.0, 1.0], &quot;matches&quot;: &quot;y&quot;, &quot;showticklabels&quot;: false}, &quot;annotations&quot;: [{&quot;font&quot;: {&quot;size&quot;: 16}, &quot;showarrow&quot;: false, &quot;text&quot;: &quot;current&quot;, &quot;x&quot;: 0.225, &quot;xanchor&quot;: &quot;center&quot;, &quot;xref&quot;: &quot;paper&quot;, &quot;y&quot;: 1.0, &quot;yanchor&quot;: &quot;bottom&quot;, &quot;yref&quot;: &quot;paper&quot;}, {&quot;font&quot;: {&quot;size&quot;: 16}, &quot;showarrow&quot;: false, &quot;text&quot;: &quot;reference&quot;, &quot;x&quot;: 0.775, &quot;xanchor&quot;: &quot;center&quot;, &quot;xref&quot;: &quot;paper&quot;, &quot;y&quot;: 1.0, &quot;yanchor&quot;: &quot;bottom&quot;, &quot;yref&quot;: &quot;paper&quot;}], &quot;coloraxis&quot;: {&quot;colorscale&quot;: [[0.0, &quot;rgb(5,48,97)&quot;], [0.1, &quot;rgb(33,102,172)&quot;], [0.2, &quot;rgb(67,147,195)&quot;], [0.3, &quot;rgb(146,197,222)&quot;], [0.4, &quot;rgb(209,229,240)&quot;], [0.5, &quot;rgb(247,247,247)&quot;], [0.6, &quot;rgb(253,219,199)&quot;], [0.7, &quot;rgb(244,165,130)&quot;], [0.8, &quot;rgb(214,96,77)&quot;], [0.9, &quot;rgb(178,24,43)&quot;], [1.0, &quot;rgb(103,0,31)&quot;]]}}}, &quot;insights&quot;: [], &quot;alerts&quot;: [], &quot;tabs&quot;: [], &quot;widgets&quot;: [], &quot;pageSize&quot;: 5}, {&quot;type&quot;: &quot;counter&quot;, &quot;title&quot;: &quot;&quot;, &quot;size&quot;: 2, &quot;id&quot;: &quot;78ea17f4-98c9-4736-acfc-bd1cc0fd0177&quot;, &quot;details&quot;: &quot;&quot;, &quot;alertsPosition&quot;: null, &quot;alertStats&quot;: null, &quot;params&quot;: {&quot;counters&quot;: [{&quot;value&quot;: &quot;&quot;, &quot;label&quot;: &quot;Quality Metrics by Class&quot;}]}, &quot;insights&quot;: [], &quot;alerts&quot;: [], &quot;tabs&quot;: [], &quot;widgets&quot;: [], &quot;pageSize&quot;: 5}, {&quot;type&quot;: &quot;big_graph&quot;, &quot;title&quot;: &quot;&quot;, &quot;size&quot;: 2, &quot;id&quot;: &quot;efa246b0-6740-451d-b443-0ca438fd5f7c&quot;, &quot;details&quot;: &quot;&quot;, &quot;alertsPosition&quot;: null, &quot;alertStats&quot;: null, &quot;params&quot;: {&quot;data&quot;: [{&quot;coloraxis&quot;: &quot;coloraxis&quot;, &quot;text&quot;: [[&quot;0.371&quot;, &quot;0.65&quot;], [&quot;0.889&quot;, &quot;0.12&quot;], [&quot;0.523&quot;, &quot;0.203&quot;]], &quot;texttemplate&quot;: &quot;%{text}&quot;, &quot;x&quot;: [&quot;0&quot;, &quot;1&quot;], &quot;y&quot;: [&quot;precision&quot;, &quot;recall&quot;, &quot;f1-score&quot;], &quot;z&quot;: [[0.3708609271523179, 0.65], [0.8888888888888888, 0.12037037037037036], [0.5233644859813084, 0.203125]], &quot;type&quot;: &quot;heatmap&quot;, &quot;xaxis&quot;: &quot;x&quot;, &quot;yaxis&quot;: &quot;y&quot;}, {&quot;coloraxis&quot;: &quot;coloraxis&quot;, &quot;text&quot;: [[&quot;0.388&quot;, &quot;0.781&quot;], [&quot;0.953&quot;, &quot;0.1&quot;], [&quot;0.551&quot;, &quot;0.178&quot;]], &quot;texttemplate&quot;: &quot;%{text}&quot;, &quot;x&quot;: [&quot;0&quot;, &quot;1&quot;], &quot;y&quot;: [&quot;precision&quot;, &quot;recall&quot;, &quot;f1-score&quot;], &quot;z&quot;: [[0.3879781420765027, 0.78125], [0.9530201342281879, 0.10040160642570281], [0.5514563106796116, 0.17793594306049823]], &quot;type&quot;: &quot;heatmap&quot;, &quot;xaxis&quot;: &quot;x2&quot;, &quot;yaxis&quot;: &quot;y2&quot;}], &quot;layout&quot;: {&quot;template&quot;: {&quot;data&quot;: {&quot;histogram2dcontour&quot;: [{&quot;type&quot;: &quot;histogram2dcontour&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;choropleth&quot;: [{&quot;type&quot;: &quot;choropleth&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}], &quot;histogram2d&quot;: [{&quot;type&quot;: &quot;histogram2d&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;heatmap&quot;: [{&quot;type&quot;: &quot;heatmap&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;heatmapgl&quot;: [{&quot;type&quot;: &quot;heatmapgl&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;contourcarpet&quot;: [{&quot;type&quot;: &quot;contourcarpet&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}], &quot;contour&quot;: [{&quot;type&quot;: &quot;contour&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;surface&quot;: [{&quot;type&quot;: &quot;surface&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;mesh3d&quot;: [{&quot;type&quot;: &quot;mesh3d&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}], &quot;scatter&quot;: [{&quot;fillpattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}, &quot;type&quot;: &quot;scatter&quot;}], &quot;parcoords&quot;: [{&quot;type&quot;: &quot;parcoords&quot;, &quot;line&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatterpolargl&quot;: [{&quot;type&quot;: &quot;scatterpolargl&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;bar&quot;: [{&quot;error_x&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}, &quot;error_y&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}, &quot;marker&quot;: {&quot;line&quot;: {&quot;color&quot;: &quot;#E5ECF6&quot;, &quot;width&quot;: 0.5}, &quot;pattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}}, &quot;type&quot;: &quot;bar&quot;}], &quot;scattergeo&quot;: [{&quot;type&quot;: &quot;scattergeo&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatterpolar&quot;: [{&quot;type&quot;: &quot;scatterpolar&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;histogram&quot;: [{&quot;marker&quot;: {&quot;pattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}}, &quot;type&quot;: &quot;histogram&quot;}], &quot;scattergl&quot;: [{&quot;type&quot;: &quot;scattergl&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatter3d&quot;: [{&quot;type&quot;: &quot;scatter3d&quot;, &quot;line&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scattermapbox&quot;: [{&quot;type&quot;: &quot;scattermapbox&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatterternary&quot;: [{&quot;type&quot;: &quot;scatterternary&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scattercarpet&quot;: [{&quot;type&quot;: &quot;scattercarpet&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;carpet&quot;: [{&quot;aaxis&quot;: {&quot;endlinecolor&quot;: &quot;#2a3f5f&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;minorgridcolor&quot;: &quot;white&quot;, &quot;startlinecolor&quot;: &quot;#2a3f5f&quot;}, &quot;baxis&quot;: {&quot;endlinecolor&quot;: &quot;#2a3f5f&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;minorgridcolor&quot;: &quot;white&quot;, &quot;startlinecolor&quot;: &quot;#2a3f5f&quot;}, &quot;type&quot;: &quot;carpet&quot;}], &quot;table&quot;: [{&quot;cells&quot;: {&quot;fill&quot;: {&quot;color&quot;: &quot;#EBF0F8&quot;}, &quot;line&quot;: {&quot;color&quot;: &quot;white&quot;}}, &quot;header&quot;: {&quot;fill&quot;: {&quot;color&quot;: &quot;#C8D4E3&quot;}, &quot;line&quot;: {&quot;color&quot;: &quot;white&quot;}}, &quot;type&quot;: &quot;table&quot;}], &quot;barpolar&quot;: [{&quot;marker&quot;: {&quot;line&quot;: {&quot;color&quot;: &quot;#E5ECF6&quot;, &quot;width&quot;: 0.5}, &quot;pattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}}, &quot;type&quot;: &quot;barpolar&quot;}], &quot;pie&quot;: [{&quot;automargin&quot;: true, &quot;type&quot;: &quot;pie&quot;}]}, &quot;layout&quot;: {&quot;autotypenumbers&quot;: &quot;strict&quot;, &quot;colorway&quot;: [&quot;#636efa&quot;, &quot;#EF553B&quot;, &quot;#00cc96&quot;, &quot;#ab63fa&quot;, &quot;#FFA15A&quot;, &quot;#19d3f3&quot;, &quot;#FF6692&quot;, &quot;#B6E880&quot;, &quot;#FF97FF&quot;, &quot;#FECB52&quot;], &quot;font&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}, &quot;hovermode&quot;: &quot;closest&quot;, &quot;hoverlabel&quot;: {&quot;align&quot;: &quot;left&quot;}, &quot;paper_bgcolor&quot;: &quot;white&quot;, &quot;plot_bgcolor&quot;: &quot;#E5ECF6&quot;, &quot;polar&quot;: {&quot;bgcolor&quot;: &quot;#E5ECF6&quot;, &quot;angularaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}, &quot;radialaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}}, &quot;ternary&quot;: {&quot;bgcolor&quot;: &quot;#E5ECF6&quot;, &quot;aaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}, &quot;baxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}, &quot;caxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}}, &quot;coloraxis&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}, &quot;colorscale&quot;: {&quot;sequential&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]], &quot;sequentialminus&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]], &quot;diverging&quot;: [[0, &quot;#8e0152&quot;], [0.1, &quot;#c51b7d&quot;], [0.2, &quot;#de77ae&quot;], [0.3, &quot;#f1b6da&quot;], [0.4, &quot;#fde0ef&quot;], [0.5, &quot;#f7f7f7&quot;], [0.6, &quot;#e6f5d0&quot;], [0.7, &quot;#b8e186&quot;], [0.8, &quot;#7fbc41&quot;], [0.9, &quot;#4d9221&quot;], [1, &quot;#276419&quot;]]}, &quot;xaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;, &quot;title&quot;: {&quot;standoff&quot;: 15}, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;automargin&quot;: true, &quot;zerolinewidth&quot;: 2}, &quot;yaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;, &quot;title&quot;: {&quot;standoff&quot;: 15}, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;automargin&quot;: true, &quot;zerolinewidth&quot;: 2}, &quot;scene&quot;: {&quot;xaxis&quot;: {&quot;backgroundcolor&quot;: &quot;#E5ECF6&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;showbackground&quot;: true, &quot;ticks&quot;: &quot;&quot;, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;gridwidth&quot;: 2}, &quot;yaxis&quot;: {&quot;backgroundcolor&quot;: &quot;#E5ECF6&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;showbackground&quot;: true, &quot;ticks&quot;: &quot;&quot;, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;gridwidth&quot;: 2}, &quot;zaxis&quot;: {&quot;backgroundcolor&quot;: &quot;#E5ECF6&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;showbackground&quot;: true, &quot;ticks&quot;: &quot;&quot;, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;gridwidth&quot;: 2}}, &quot;shapedefaults&quot;: {&quot;line&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}}, &quot;annotationdefaults&quot;: {&quot;arrowcolor&quot;: &quot;#2a3f5f&quot;, &quot;arrowhead&quot;: 0, &quot;arrowwidth&quot;: 1}, &quot;geo&quot;: {&quot;bgcolor&quot;: &quot;white&quot;, &quot;landcolor&quot;: &quot;#E5ECF6&quot;, &quot;subunitcolor&quot;: &quot;white&quot;, &quot;showland&quot;: true, &quot;showlakes&quot;: true, &quot;lakecolor&quot;: &quot;white&quot;}, &quot;title&quot;: {&quot;x&quot;: 0.05}, &quot;mapbox&quot;: {&quot;style&quot;: &quot;light&quot;}}}, &quot;xaxis&quot;: {&quot;anchor&quot;: &quot;y&quot;, &quot;domain&quot;: [0.0, 0.45]}, &quot;yaxis&quot;: {&quot;anchor&quot;: &quot;x&quot;, &quot;domain&quot;: [0.0, 1.0]}, &quot;xaxis2&quot;: {&quot;anchor&quot;: &quot;y2&quot;, &quot;domain&quot;: [0.55, 1.0]}, &quot;yaxis2&quot;: {&quot;anchor&quot;: &quot;x2&quot;, &quot;domain&quot;: [0.0, 1.0], &quot;matches&quot;: &quot;y&quot;, &quot;showticklabels&quot;: false}, &quot;annotations&quot;: [{&quot;font&quot;: {&quot;size&quot;: 16}, &quot;showarrow&quot;: false, &quot;text&quot;: &quot;current&quot;, &quot;x&quot;: 0.225, &quot;xanchor&quot;: &quot;center&quot;, &quot;xref&quot;: &quot;paper&quot;, &quot;y&quot;: 1.0, &quot;yanchor&quot;: &quot;bottom&quot;, &quot;yref&quot;: &quot;paper&quot;}, {&quot;font&quot;: {&quot;size&quot;: 16}, &quot;showarrow&quot;: false, &quot;text&quot;: &quot;reference&quot;, &quot;x&quot;: 0.775, &quot;xanchor&quot;: &quot;center&quot;, &quot;xref&quot;: &quot;paper&quot;, &quot;y&quot;: 1.0, &quot;yanchor&quot;: &quot;bottom&quot;, &quot;yref&quot;: &quot;paper&quot;}], &quot;coloraxis&quot;: {&quot;colorscale&quot;: [[0.0, &quot;rgb(5,48,97)&quot;], [0.1, &quot;rgb(33,102,172)&quot;], [0.2, &quot;rgb(67,147,195)&quot;], [0.3, &quot;rgb(146,197,222)&quot;], [0.4, &quot;rgb(209,229,240)&quot;], [0.5, &quot;rgb(247,247,247)&quot;], [0.6, &quot;rgb(253,219,199)&quot;], [0.7, &quot;rgb(244,165,130)&quot;], [0.8, &quot;rgb(214,96,77)&quot;], [0.9, &quot;rgb(178,24,43)&quot;], [1.0, &quot;rgb(103,0,31)&quot;]]}}}, &quot;insights&quot;: [], &quot;alerts&quot;: [], &quot;tabs&quot;: [], &quot;widgets&quot;: [], &quot;pageSize&quot;: 5}, {&quot;type&quot;: &quot;counter&quot;, &quot;title&quot;: &quot;&quot;, &quot;size&quot;: 2, &quot;id&quot;: &quot;22b93c63-d6b5-4dcd-8283-836a725460f4&quot;, &quot;details&quot;: &quot;&quot;, &quot;alertsPosition&quot;: null, &quot;alertStats&quot;: null, &quot;params&quot;: {&quot;counters&quot;: [{&quot;value&quot;: &quot;&quot;, &quot;label&quot;: &quot;Class Separation Quality&quot;}]}, &quot;insights&quot;: [], &quot;alerts&quot;: [], &quot;tabs&quot;: [], &quot;widgets&quot;: [], &quot;pageSize&quot;: 5}, {&quot;type&quot;: &quot;tabs&quot;, &quot;title&quot;: &quot;&quot;, &quot;size&quot;: 2, &quot;id&quot;: &quot;24327360-d5a9-4712-b8ad-686210ae4b82&quot;, &quot;details&quot;: &quot;&quot;, &quot;alertsPosition&quot;: null, &quot;alertStats&quot;: null, &quot;params&quot;: null, &quot;insights&quot;: [], &quot;alerts&quot;: [], &quot;tabs&quot;: [{&quot;id&quot;: &quot;1bd26776-d76c-44d4-a443-aeae44b90182&quot;, &quot;title&quot;: &quot;1&quot;, &quot;widget&quot;: {&quot;type&quot;: &quot;big_graph&quot;, &quot;title&quot;: &quot;&quot;, &quot;size&quot;: 2, &quot;id&quot;: &quot;846458b3-86a5-4516-8a5a-6086ef8f8b2e&quot;, &quot;details&quot;: &quot;&quot;, &quot;alertsPosition&quot;: null, &quot;alertStats&quot;: null, &quot;params&quot;: {&quot;data&quot;: [{&quot;legendgroup&quot;: &quot;1&quot;, &quot;marker&quot;: {&quot;color&quot;: &quot;#ed0400&quot;, &quot;size&quot;: 6}, &quot;mode&quot;: &quot;markers&quot;, &quot;name&quot;: &quot;1&quot;, &quot;x&quot;: [0.9886161544124489, 0.5797452192457969, 0.3801411726235504, 0.5509482191178968, 0.7453344309065021, 0.6692328934531846, 0.2649195576628094, 0.06633483442844157, 0.3700841979141063, 0.6297175070215645, 0.2101740099148396, 0.7527555537388139, 0.06653648135411494, 0.26031509857854096, 0.8047545637433454, 0.19343428262332774, 0.6394608808799401, 0.5246703091237337, 0.9248079703993507, 0.263296770487111, 0.06596109068402378, 0.7350659632886695, 0.7721780295432468, 0.907815852503524, 0.9319720691968373, 0.013951572975597015, 0.2343620861214205, 0.6167783570016576, 0.9490163206876164, 0.9501761192470797, 0.5566531881951564, 0.9156063497662745, 0.6415662089463375, 0.39000771414124624, 0.48599066709690975, 0.6043104829199732, 0.5495479215085626, 0.9261814267064536, 0.9187334356336061, 0.3948756129235549, 0.9632625284407118, 0.17395566668046436, 0.12632951943963733, 0.13507915804673132, 0.5056621656768967, 0.021524805274197978, 0.947970211217681, 0.8271154711707325, 0.015018980742122379, 0.17619625557505525, 0.332063574366837, 0.1309968448109169, 0.8094906921265821, 0.34473665268329345, 0.9401074823333672, 0.58201417994708, 0.8788319844118441, 0.8447344453922219, 0.9053923187086492, 0.45988026581680697, 0.5463468160203733, 0.7986035911520394, 0.28571885173414757, 0.4902535226199277, 0.5991103076458784, 0.015533275550835723, 0.5934814081966372, 0.4336763489894583, 0.8073605288848414, 0.31524480309537295, 0.8928887085251513, 0.5778572152845355, 0.18401020162746506, 0.7879292338255043, 0.6120311770449339, 0.053909272073752956, 0.4201936800011322, 0.6790688365654296, 0.9186017779775258, 0.00040202489135743313, 0.9767591490310596, 0.37658031474577447, 0.9737835383583225, 0.604716100974053, 0.828845807980693, 0.5747115047081023, 0.6280761983073504, 0.28557628169569393, 0.586833340656083, 0.7500217637026599, 0.8583138364290424, 0.7550821884676802, 0.698057248447303, 0.8644794300545998, 0.32268099683674645, 0.6707887907875872, 0.45087393641334916, 0.3821027520315172, 0.4108113499221856, 0.4014795834695406, 0.3173839459582769, 0.6219193679203014, 0.43024727082126435, 0.9738020779272523, 0.6778008914343111, 0.19856988842711087, 0.4267010093480328, 0.343346239774423], &quot;y&quot;: [0.6641781189927931, 0.8441518254107434, 0.7801234814082414, 0.6398781374638066, 0.8879293232204325, 0.1987911274329991, 0.6145108218763624, 0.5063470443756409, 0.99347772422363, 0.6809573136136509, 0.04152268929027714, 0.7618513435485414, 0.8419391338683793, 0.7497481633642955, 0.3924795610806854, 0.23964689233019199, 0.9484619410400378, 0.9611382421834324, 0.3574853417119408, 0.8225145389247012, 0.22484660306672732, 0.6814980243851597, 0.12772083754763286, 0.4935117454769735, 0.8939142820363856, 0.01929403902741178, 0.9196914598574628, 0.05193709479433939, 0.018964061780993857, 0.8556769109956978, 0.7405291284860553, 0.8023045588347179, 0.8788323051553298, 0.11946027891917743, 0.9676646171040791, 0.18495631597243112, 0.3571672584752127, 0.6013313134325984, 0.3958083512578179, 0.8765725637443511, 0.3324162394778126, 0.2173745117840138, 0.05391505899870197, 0.15937500545769956, 0.2970396027071004, 0.921556623402899, 0.7473569330800098, 0.816665080726033, 0.5766887396465493, 0.6153370811460598, 0.1527987529894107, 0.8750725467277245, 0.16763886070068623, 0.18325168819189575, 0.6885017507721003, 0.7911911824600624, 0.9973017918188987, 0.011645900293785871, 0.9096296375861121, 0.8367933876111734, 0.9144946150332184, 0.4386451077424497, 0.4989990728423449, 0.7653011052996128, 0.3701879802377608, 0.6648547690197067, 0.6456472638707829, 0.8131383102207906, 0.028396399996605037, 0.1298118159272259, 0.6024513284571342, 0.7224468305731097, 0.03875357928757217, 0.9381546216058014, 0.08096724215489903, 0.021761819914518754, 0.5293265627444979, 0.7013272106008608, 0.41276973722432186, 0.18336535368087192, 0.8238296862955905, 0.3268648076995565, 0.7874903601726398, 0.8684480976917018, 0.6121748887778725, 0.20931468685458143, 0.3699508729249843, 0.928301631249479, 0.06698603501114742, 0.13491351282535557, 0.3154989924856285, 0.7308994936386798, 0.0994773066676149, 0.4721613467689886, 0.4846184359473743, 0.7921453087646263, 0.6596422297419201, 0.1494029024618846, 0.9378343826135381, 0.7842999247879562, 0.4883057093002957, 0.31626665486594896, 0.9351798019090479, 0.2970537865750984, 0.5637343510044931, 0.8303304268669456, 0.4662958740783867, 0.1288065219965846], &quot;type&quot;: &quot;scatter&quot;, &quot;xaxis&quot;: &quot;x&quot;, &quot;yaxis&quot;: &quot;y&quot;}, {&quot;legendgroup&quot;: &quot;other&quot;, &quot;marker&quot;: {&quot;color&quot;: &quot;#4d4d4d&quot;, &quot;size&quot;: 6}, &quot;mode&quot;: &quot;markers&quot;, &quot;name&quot;: &quot;other&quot;, &quot;x&quot;: [0.7976388039585666, 0.8799982885634318, 0.903841955826372, 0.6627198123752622, 0.2702082620297578, 0.25236670150458973, 0.8548979426974024, 0.5277146463087466, 0.8021610840045981, 0.5724885171916063, 0.7331425252875111, 0.5190116274640558, 0.770883910501888, 0.5688579907047155, 0.4657098785919809, 0.3426889079532818, 0.06820934841670412, 0.37792417932809985, 0.07962607769825236, 0.982817113730445, 0.18161285133076377, 0.8118586977205398, 0.8749616449558981, 0.6884132523859433, 0.5694944127453757, 0.16097143681560877, 0.4668800227633063, 0.345172051155215, 0.2250399578140846, 0.5925118687657968, 0.31226983770191696, 0.9163055534683507, 0.9096355249515571, 0.2571182937821962, 0.1108913007440292, 0.19296273201911285, 0.49958417067888605, 0.7285856679745962, 0.20819443840879148, 0.24803355837723073, 0.851671874936367, 0.41584871826752734, 0.6166850671552362, 0.23366613923925006, 0.10196725942579743, 0.5158570169685298, 0.47714098704978236, 0.15267164409316325, 0.6218062317404155, 0.5440101188139381, 0.6541373469707443, 0.1445455401246598, 0.7515278171352439, 0.2220491397999227, 0.519351824366033, 0.7852960282216189, 0.02233042799180618, 0.3243624597261865, 0.872922376400111, 0.8447096076020696, 0.5384405925945437, 0.866608274166513, 0.9498059913536265], &quot;y&quot;: [0.9841770633084816, 0.10957424415233863, 0.21980661143101032, 0.4505362494346731, 0.5925500584813489, 0.47622185434340525, 0.3547127345563684, 0.9319129474714398, 0.09052361152646049, 0.4355752947242978, 0.0709279843794034, 0.9172300717359356, 0.6909761283197763, 0.49122884970119096, 0.9245355685198424, 0.8360922278318204, 0.28084251969355034, 0.3724377617403404, 0.8901130962980609, 0.3683640260273987, 0.21556249597553245, 0.321065592866114, 0.18894598185378997, 0.5780588938453785, 0.0357130125329127, 0.2763934477168264, 0.2850798311269198, 0.7922344473550397, 0.2739946568101215, 0.46490599861687554, 0.724020463535328, 0.4095764418786587, 0.5673344885068856, 0.6525657027727119, 0.661382581078655, 0.7954232638918803, 0.9177801857238889, 0.015781407396483038, 0.22249356726136604, 0.05893171423662191, 0.8676385202967049, 0.17795857411721716, 0.6141729351311683, 0.20410613195286176, 0.6828093985077638, 0.4430836195850284, 0.04002257981859414, 0.6713822130979822, 0.7576721297165074, 0.6439359370861335, 0.7196914553738604, 0.4752515941666223, 0.7165949226267896, 0.9762150796438499, 0.8143272138026995, 0.16838172209618185, 0.13411726710415084, 0.17484850968755294, 0.8787637911821382, 0.7916459647338355, 0.9704010535293895, 0.5867253944905444, 0.4332174254061272], &quot;type&quot;: &quot;scatter&quot;, &quot;xaxis&quot;: &quot;x&quot;, &quot;yaxis&quot;: &quot;y&quot;}, {&quot;legendgroup&quot;: &quot;1&quot;, &quot;marker&quot;: {&quot;color&quot;: &quot;#ed0400&quot;, &quot;size&quot;: 6}, &quot;mode&quot;: &quot;markers&quot;, &quot;name&quot;: &quot;1&quot;, &quot;x&quot;: [0.8264069976293413, 0.8541154438365387, 0.09874340182034835, 0.651304332340991, 0.703516988152653, 0.6102408126466297, 0.799615261736028, 0.03457121987163425, 0.7702387345549799, 0.731728600739527, 0.2596983932983531, 0.2570692988221467, 0.6323033174301278, 0.34529746159108154, 0.7965886780072875, 0.44614623200345727, 0.7827494147841719, 0.9904717836238407, 0.30024833953390007, 0.14300582825809938, 0.9013084363492738, 0.5415593788873733, 0.9747403708550822, 0.6366044000018972, 0.9939130246104789, 0.5460708041429516, 0.5264259339055213, 0.1354279030721699, 0.3557051709838811, 0.026218567296373285, 0.1603951795196491, 0.7456371927074961, 0.03039968992878883, 0.36654309724374434, 0.8623462528380441, 0.6926777175073543, 0.6909421420661686, 0.18863680095531088, 0.44190428074842336, 0.5815774073442912, 0.9897517076637052, 0.20390622523312185, 0.24773290176235485, 0.26217308377291193, 0.7501724132979928, 0.4569753274356928, 0.05692943841109499, 0.5085162406102396, 0.21196016464367595, 0.7986042447602102, 0.29733138150727223, 0.02760601195450363, 0.593432449464621, 0.8438404289311888, 0.3810161240622142, 0.7498583107261434, 0.5111414782971282, 0.5409518049621886, 0.9594343210617524, 0.8039608914986468, 0.03232306662357398, 0.7093872512312951, 0.46500148156350607, 0.9475489413950998, 0.2214327343234883, 0.2670720196843658, 0.081473964877262, 0.42861882866378653, 0.10901876401906829, 0.6337867606119179, 0.8029632373737379, 0.6968004961201785, 0.7662113810757705, 0.3424541198435198, 0.8458514830276777, 0.42876877499944255, 0.8240098704123188, 0.6264961586242938, 0.1434230486702449, 0.07838689985494796, 0.01833264291300729, 0.06672499763935646, 0.4585838137084318, 0.11334192276759048, 0.027783348848669953, 0.7548614813904674, 0.3948504804606394, 0.7469384956075251, 0.45240482674645155, 0.4500867470007611, 0.47807250671783097, 0.47400392656219403, 0.8031633421141696, 0.40239251985773583, 0.904686160343623, 0.037061047954035864, 0.7738743427204187, 0.12564138113773882, 0.6185135669120855, 0.010364261335231939, 0.538627282576347, 0.0030179566195963625, 0.9511937854902045, 0.905402033702778, 0.7959669419422694, 0.9152743199147875, 0.14555823115839706, 0.15773006987053328, 0.187631672902434, 0.6224959022999211, 0.9058094960083019, 0.9899551783590737, 0.7111224587658159, 0.7318004091422953, 0.9092932045442544, 0.4008737323711209, 0.24985068022503676, 0.17343017078712286, 0.119457050333729, 0.8126105880328287, 0.14679237341724316, 0.2642974827269007, 0.8190891786335308, 0.31058725179421, 0.9824174492929428, 0.2666387021516352, 0.5336533449712114, 0.31446701118584963, 0.9107728311738374, 0.36655664385123443, 0.43359232727316455, 0.5122926922783614, 0.9388864773697133, 0.030949006271150714, 0.7168786636316892, 0.8910189542923389, 0.027287223517468817, 0.5220512472525107, 0.3259898117700253, 0.8594893208655858, 0.5585165509225178, 0.6902278681627478, 0.45285349995153745, 0.6283090375213571, 0.2900968516874258, 0.009348577966515781, 0.5767559349870908, 0.3114442141324628, 0.5172675985011298, 0.9164058530538978, 0.426474788501396, 0.2473960366023854, 0.37129376127905445, 0.9318611166365406, 0.9368683813090937, 0.8443299485657132, 0.9202065143056605, 0.22790028995131695, 0.08748220955359087, 0.22730973628468876, 0.31437661611405043, 0.17476587635631158, 0.6070941619724605, 0.41358641500116133, 0.8163515118272141, 0.18513039826903066, 0.7018765297563104, 0.24035562484913886, 0.5742190888408597, 0.34898759722078887, 0.05696439948283272, 0.22881367096037586, 0.6641025553547935, 0.4972500933605313, 0.5190159840736788, 0.1747201501089225, 0.5707158515462564, 0.99675342520821, 0.8168351087916219, 0.5943726238309778, 0.9759890683309049, 0.9015625846693213, 0.5956079336026455, 0.032426325314457105, 0.09357709581748075, 0.06537171504222639, 0.4517331486914753, 0.37543483316785775, 0.9753500342702865, 0.1679832931996149, 0.9727875919326552, 0.7674748688630131, 0.8242378396244978, 0.6326158167779973, 0.668732770206732, 0.47688233352119336, 0.013136356923072245, 0.3530060855418248, 0.49207180149355845, 0.7300912110901043, 0.4686283427461092, 0.4574049160894317, 0.13766274094560316, 0.01088873380347899, 0.7582782604769962, 0.3199528380776784, 0.9843834501935107, 0.220234226159156, 0.33870802548167966, 0.5238961356661317, 0.7548914570605327, 0.46385778390029564, 0.12482254311167629, 0.3125013784920495, 0.5045191697009946, 0.6738490080168676, 0.7701499563120922, 0.13033578095435427, 0.022915131322381765, 0.5190823222119895, 0.8099887106624163, 0.012603767029876312, 0.6724698446537339, 0.6868082266569918, 0.44924675358663757, 0.9147886867419343, 0.6443610847569929, 0.005239837651465851, 0.4844284455143756, 0.8593178060976, 0.8303995700373394, 0.6491541971124779, 0.6736984238986317, 0.5784995797892005, 0.27411977516685215, 0.5605299905360588, 0.6717297848174203, 0.35242963021640883, 0.8558283672539277, 0.1950374860087073, 0.7473208103319232, 0.2896027461868774, 0.773799287244182, 0.4277373293360762, 0.8076984091122095, 0.3535348626679904, 0.21369323762958115, 0.7672845084217665, 0.3086419476306511], &quot;y&quot;: [0.44114786677027007, 0.8232664531140393, 0.6483108610451429, 0.48774537424640274, 0.06558701112529197, 0.015606671954880746, 0.13348678847345175, 0.6178117764068004, 0.802964499094791, 0.30655758029327274, 0.5924584331613267, 0.2233052184478359, 0.7320543584535315, 0.6109494026980173, 0.19052860615282952, 0.9884858379948286, 0.7253274911053904, 0.6324517592865644, 0.3279886406651481, 0.3054000729642955, 0.9149719927542176, 0.466038896709021, 0.11977731859249419, 0.5435588956957549, 0.08662639603063049, 0.34677333740615546, 0.256522354510349, 0.4690301513215376, 0.007950512873147075, 0.5892000150073878, 0.2288349363488943, 0.40057130179879075, 0.7312131137189228, 0.7692188008587036, 0.1677933697476114, 0.8012773025675526, 0.02841904832930764, 0.5087032595087817, 0.7090379135824655, 0.32974842864414644, 0.16612640749873586, 0.10242793205163747, 0.6400499714016565, 0.022416550085984976, 0.01949406434737999, 0.9878660732065544, 0.21315739500899267, 0.6564312430645628, 0.8592699069527214, 0.5340667940998876, 0.03123884507735042, 0.626196422599069, 0.13055926098291937, 0.013537036824865178, 0.5322841415187518, 0.880699845144177, 0.16514279400637388, 0.6892325765198584, 0.5233251974071697, 0.31818482017477556, 0.5901284748441669, 0.6194837667189554, 0.6063854434796551, 0.22593667905566373, 0.7375867584674739, 0.7677429509431307, 0.6330260778620274, 0.4371383418487591, 0.19992530142726983, 0.26210640198808044, 0.6583299520808168, 0.34516548120258983, 0.9029444523269866, 0.6902328016238732, 0.3581219868857284, 0.7608517757902686, 0.028913293509638893, 0.8998426919510445, 0.47638915199694964, 0.049127808019218566, 0.0639570268369738, 0.5743430929107692, 0.24985915946003734, 0.6086490160104848, 0.4663024308625041, 0.7594283574448277, 0.8462864055338281, 0.4544964128874984, 0.2948292671006181, 0.9494813083628151, 0.7716294009408021, 0.7225790746001676, 0.33962399572769575, 0.8159384658102341, 0.7215916073463401, 0.04872957492935326, 0.6065980186654369, 0.41077636694232, 0.9618023611671315, 0.9734657379844291, 0.7840589514151194, 0.8373860903067921, 0.6886384987981031, 0.781036301693491, 0.6909106358807113, 0.7446024308396386, 0.2364443595444623, 0.584486123450436, 0.7495785851661139, 0.5734437829740022, 0.518238717037366, 0.23083904117194798, 0.7810979527895024, 0.22365224387256077, 0.5509088226003253, 0.7671684768385485, 0.39139447432000607, 0.9255910120225715, 0.4404731271562602, 0.10668532512658535, 0.7425693545844931, 0.8866076986083217, 0.7367715010384167, 0.09835362579554263, 0.1107521352385421, 0.18943367325747829, 0.9509860809633801, 0.9814971710859751, 0.5006716515730086, 0.9574478556885164, 0.9167592454374546, 0.9831168615144092, 0.7029371988645482, 0.9692341373753744, 0.9895819883457825, 0.7293950386937499, 0.4421301728477469, 0.6719302905770347, 0.46748030025320664, 0.6210840837129468, 0.6575221308205773, 0.34481714606968716, 0.9875975964101237, 0.7031808870592066, 0.6476016766156838, 0.33399985267696686, 0.6249094167848991, 0.7783408958051238, 0.5160560979513112, 0.016994056305693284, 0.3083987767468005, 0.012087038774380332, 0.031121233627043554, 0.361640721094014, 0.9326985724075726, 0.3009401259966966, 0.5835172512538884, 0.3680268272010595, 0.506167974398236, 0.22520834524950406, 0.009299679651002535, 0.5761475045223945, 0.7642604347529217, 0.13067620381189626, 0.2338308982391848, 0.9979836691144123, 0.05343160462847696, 0.7353071307336423, 0.1730351359053094, 0.4201786654757148, 0.6959337343346409, 0.924412174000971, 0.9123397260875385, 0.7169778226058465, 0.5649463696758986, 0.536911531985109, 0.7872458667332007, 0.3657461613757256, 0.15041521248837975, 0.33820305243659554, 0.3865960490145063, 0.8792723605948947, 0.36786407479035, 0.3872830945677882, 0.8141804711111915, 0.7627119746723798, 0.3153784407400717, 0.4008872888100188, 0.5532656797670183, 0.26095815058490524, 0.1947086618427304, 0.9422827034716235, 0.6497318808541468, 0.1446012086435079, 0.5263531978220208, 0.6737687609537284, 0.3333962890431601, 0.20787076013075545, 0.15943224574024495, 0.7969495235997688, 0.5566394365054957, 0.6939098753785905, 0.9443599676134774, 0.3376755958468496, 0.4997401400916657, 0.03557824560606315, 0.2141609428493182, 0.15975667834080698, 0.23187897948694502, 0.5263644694662584, 0.7465125497362874, 0.27974140321719765, 0.02132681297720662, 4.026859853056841e-05, 0.2982454124521138, 0.866601117080182, 0.16922313566566827, 0.8268865457023767, 0.4505400272589293, 0.7596480643146418, 0.4719443604357383, 0.8989021069388977, 0.37178718069028094, 0.7865853952284279, 0.756270968602078, 0.0008806491607946665, 0.13634110093182095, 0.3097702045384346, 0.5042282633899065, 0.72564625719173, 0.3470392494981921, 0.5616612183097874, 0.6679362351041938, 0.38064040274786093, 0.9375886521708438, 0.12658329442074456, 0.9528236531591996, 0.32189641529254465, 0.4142032772665082, 0.46332944884681404, 0.3368544196404468, 0.712881544718323, 0.5460716799740905, 0.9033182369824309, 0.19678032158129477, 0.6354598629072098, 0.8199408740719571, 0.6100683557548829, 0.11151669119203045], &quot;type&quot;: &quot;scatter&quot;, &quot;xaxis&quot;: &quot;x2&quot;, &quot;yaxis&quot;: &quot;y2&quot;}, {&quot;legendgroup&quot;: &quot;other&quot;, &quot;marker&quot;: {&quot;color&quot;: &quot;#4d4d4d&quot;, &quot;size&quot;: 6}, &quot;mode&quot;: &quot;markers&quot;, &quot;name&quot;: &quot;other&quot;, &quot;x&quot;: [0.7332450677264275, 0.7444731530777321, 0.22139670090820107, 0.21411213682064845, 0.1989479234270667, 0.14251833776584466, 0.3770825992073341, 0.026627884691621473, 0.11092036903424063, 0.6745640237634105, 0.7997765368973863, 0.0805295271283859, 0.23170231048579204, 0.20762566180381437, 0.9173335630816306, 0.7113145181364867, 0.5538846110514143, 0.30451798792062024, 0.8348540476317985, 0.43530595762951996, 0.9234562151187752, 0.7060518043359332, 0.47803130796528337, 0.1262101037493587, 0.9760435504677476, 0.15983365034409336, 0.2026021252196626, 0.43118175516037094, 0.40420190577514725, 0.14675148076429412, 0.7293189193611234, 0.18874506687718595, 0.6438956443116628, 0.7543059505762987, 0.21073239208332073, 0.60095424810764, 0.7489283752458364, 0.6382187106203334, 0.5971273029466491, 0.29548228565549706, 0.7316064712415088, 0.9453084399999497, 0.42556139026154693, 0.7821818168314053, 0.056141039661915304, 0.8352716024899659, 0.1922500168221477, 0.3950968688899732, 0.30008104592535645, 0.08010364380604929, 0.9046310029362429, 0.37015417755373825, 0.5306974384761395, 0.49411626589632507, 0.13216114194293815, 0.20645405888943302, 0.07618880903232117, 0.5079216999452875, 0.2615495518329871, 0.3570616088827919, 0.10806532869723684, 0.7875518396525072, 0.1065838767888011, 0.9857088237131878, 0.17716116443841734, 0.5724051124346493, 0.044845334589088126, 0.7871162896558341, 0.18960594781829654, 0.5279039784081266, 0.7400775431590716, 0.14993148491725594, 0.5510871741869717, 0.2166172083287794, 0.7591960493171447, 0.7229151935562137, 0.17654903427708302, 0.8619665576670734, 0.019775099516344263, 0.8602369974231152, 0.5589038111609383, 0.4032204721058492, 0.7587469310223366, 0.7169290016924699, 0.9873261748084265, 0.2780850486129828, 0.0037936724093425855, 0.9339026083148878, 0.8578971045378938, 0.7288508775192559, 0.5166887829215384, 0.706956245248761, 0.7805295568767427, 0.3748759435368594, 0.7703225253299576, 0.7506243191751754, 0.6132112115442597, 0.4018659239678374, 0.6973080192643409, 0.0031128578251921057, 0.7748966467245978, 0.896416602456847, 0.23931570743750463, 0.12076718430922972, 0.2202839877937276, 0.3020967312900983, 0.8830285085638342, 0.5431664302380945, 0.2867116496064306, 0.13835468979294652, 0.29014446310454167, 0.6138710897412526, 0.3241385298974466, 0.45736018169099846, 0.44411710701661444, 0.8281353607315121, 0.4263481542362306, 0.3456988211755023, 0.6749716048091052, 0.22148205573352875, 0.4672458239265538, 0.31476568732401644, 0.6268556021628346, 0.8773604746948126, 0.4476890001456285, 0.7844574187919231, 0.4569657005615504, 0.6562293317171314, 0.13184097502750214, 0.43298150696764814, 0.9093119886549367, 0.6054790010309347, 0.7667745872371021, 0.5047006080958943, 0.49805562482800747, 0.8428998401928499, 0.06780693434095375, 0.5732722715496846, 0.9427625754329493, 0.5178600481723219, 0.1944658095278845, 0.8479393924434762, 0.25163914235585283, 0.700726036482538, 0.5402609403968999, 0.9488362882802196, 0.6243367024026759, 0.8379779620477293, 0.007932876194523097], &quot;y&quot;: [0.06400872221623921, 0.7125493936399042, 0.35266051656605635, 0.7488113553774121, 0.09657832415678391, 0.2439873291831658, 0.25407310586344145, 0.5162440387793923, 0.06210970327784826, 0.5352401055034345, 0.49360085824176503, 0.9719722266285878, 0.5602411200090051, 0.722847425688181, 0.2464242369958629, 0.6813398127511683, 0.7901398505365802, 0.11138098255529405, 0.6988019791563104, 0.4046106855941709, 0.5335891364008898, 0.9158347379672016, 0.03607666338757676, 0.5736995304555715, 0.47765549504373006, 0.25146638506788044, 0.640119766765133, 0.16036800752339786, 0.33662244242557193, 0.537505522053521, 0.43257035867101146, 0.47204167275240116, 0.7339188048496715, 0.8075791407230714, 0.46765852374440053, 0.543644535626657, 0.3532130548041772, 0.8765603726949863, 0.22679478401106912, 0.448825875273, 0.7072065566013029, 0.6988647461947329, 0.6219745286429864, 0.8188290738806207, 0.6349633639326394, 0.5299303761256756, 0.1404024403989126, 0.26894769822111897, 0.6414251235387168, 0.4578043210347883, 0.4566080852068003, 0.5469385890205916, 0.4570625956338443, 0.13242329500545058, 0.6091384499275145, 0.9096526344099447, 0.2034091859650291, 0.8913222670117583, 0.9004333864992612, 0.9325431715930188, 0.8737156834806722, 0.08952409446017806, 0.7726656597284657, 0.0357841897204797, 0.27908972382445485, 0.9444562045406257, 0.5286618007478978, 0.3209878436450948, 0.36574878224325724, 0.8855835339149578, 0.8142629511526966, 0.596015062045787, 0.08127010319670902, 0.7757854738851796, 0.3535880894716833, 0.7157865859845802, 0.7569048360178077, 0.06207411016759423, 0.0046543442135801305, 0.5414070393851905, 0.5002035022160386, 0.7868667377951841, 0.7695640646883838, 0.3633606104031043, 0.2152302885240912, 0.15198273045550748, 0.08991588277286044, 0.5447219959463163, 0.5902071900240824, 0.3671130093370977, 0.5398180300230138, 0.17992177870333048, 0.8623665475574974, 0.20011663524095935, 0.8447619689663843, 0.6606206801713161, 0.4503026274694074, 0.09101335746802086, 0.6544273909336105, 0.25203357301917106, 0.07799064568962888, 0.3188816998198871, 0.5747068203361052, 0.8176867235095503, 0.8133058896093185, 0.4867879872650075, 0.7428883422158307, 0.6808320978987965, 0.07224633581925699, 0.08756720663451556, 0.7940812099200651, 0.8068716974279175, 0.10060948326563357, 0.2456867708158743, 0.20115041459071525, 0.3226708726523646, 0.7947632038868878, 0.063150529317624, 0.3374249242694066, 0.594014745255853, 0.11110944744794493, 0.3680546364069325, 0.42290172786478064, 0.2445937578750098, 0.34347450014653735, 0.11166748505334834, 0.6766487848063977, 0.565294707741478, 0.0800411944807945, 0.3734804872841718, 0.795994230715523, 0.2760100625035464, 0.9948926638374086, 0.5339304199796108, 0.8318469158853187, 0.4625082326670673, 0.4515132013186465, 0.5956958176009286, 0.6670992125924808, 0.2695268167398912, 0.3807592603179242, 0.47946780839562664, 0.48422678555223975, 0.8750394423435657, 0.039756977380600356, 0.38121355147239533, 0.4283601764963251, 0.11631976701470537, 0.8012898641385429], &quot;type&quot;: &quot;scatter&quot;, &quot;xaxis&quot;: &quot;x2&quot;, &quot;yaxis&quot;: &quot;y2&quot;}], &quot;layout&quot;: {&quot;template&quot;: {&quot;data&quot;: {&quot;histogram2dcontour&quot;: [{&quot;type&quot;: &quot;histogram2dcontour&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;choropleth&quot;: [{&quot;type&quot;: &quot;choropleth&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}], &quot;histogram2d&quot;: [{&quot;type&quot;: &quot;histogram2d&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;heatmap&quot;: [{&quot;type&quot;: &quot;heatmap&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;heatmapgl&quot;: [{&quot;type&quot;: &quot;heatmapgl&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;contourcarpet&quot;: [{&quot;type&quot;: &quot;contourcarpet&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}], &quot;contour&quot;: [{&quot;type&quot;: &quot;contour&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;surface&quot;: [{&quot;type&quot;: &quot;surface&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;mesh3d&quot;: [{&quot;type&quot;: &quot;mesh3d&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}], &quot;scatter&quot;: [{&quot;fillpattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}, &quot;type&quot;: &quot;scatter&quot;}], &quot;parcoords&quot;: [{&quot;type&quot;: &quot;parcoords&quot;, &quot;line&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatterpolargl&quot;: [{&quot;type&quot;: &quot;scatterpolargl&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;bar&quot;: [{&quot;error_x&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}, &quot;error_y&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}, &quot;marker&quot;: {&quot;line&quot;: {&quot;color&quot;: &quot;#E5ECF6&quot;, &quot;width&quot;: 0.5}, &quot;pattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}}, &quot;type&quot;: &quot;bar&quot;}], &quot;scattergeo&quot;: [{&quot;type&quot;: &quot;scattergeo&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatterpolar&quot;: [{&quot;type&quot;: &quot;scatterpolar&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;histogram&quot;: [{&quot;marker&quot;: {&quot;pattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}}, &quot;type&quot;: &quot;histogram&quot;}], &quot;scattergl&quot;: [{&quot;type&quot;: &quot;scattergl&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatter3d&quot;: [{&quot;type&quot;: &quot;scatter3d&quot;, &quot;line&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scattermapbox&quot;: [{&quot;type&quot;: &quot;scattermapbox&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatterternary&quot;: [{&quot;type&quot;: &quot;scatterternary&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scattercarpet&quot;: [{&quot;type&quot;: &quot;scattercarpet&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;carpet&quot;: [{&quot;aaxis&quot;: {&quot;endlinecolor&quot;: &quot;#2a3f5f&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;minorgridcolor&quot;: &quot;white&quot;, &quot;startlinecolor&quot;: &quot;#2a3f5f&quot;}, &quot;baxis&quot;: {&quot;endlinecolor&quot;: &quot;#2a3f5f&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;minorgridcolor&quot;: &quot;white&quot;, &quot;startlinecolor&quot;: &quot;#2a3f5f&quot;}, &quot;type&quot;: &quot;carpet&quot;}], &quot;table&quot;: [{&quot;cells&quot;: {&quot;fill&quot;: {&quot;color&quot;: &quot;#EBF0F8&quot;}, &quot;line&quot;: {&quot;color&quot;: &quot;white&quot;}}, &quot;header&quot;: {&quot;fill&quot;: {&quot;color&quot;: &quot;#C8D4E3&quot;}, &quot;line&quot;: {&quot;color&quot;: &quot;white&quot;}}, &quot;type&quot;: &quot;table&quot;}], &quot;barpolar&quot;: [{&quot;marker&quot;: {&quot;line&quot;: {&quot;color&quot;: &quot;#E5ECF6&quot;, &quot;width&quot;: 0.5}, &quot;pattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}}, &quot;type&quot;: &quot;barpolar&quot;}], &quot;pie&quot;: [{&quot;automargin&quot;: true, &quot;type&quot;: &quot;pie&quot;}]}, &quot;layout&quot;: {&quot;autotypenumbers&quot;: &quot;strict&quot;, &quot;colorway&quot;: [&quot;#636efa&quot;, &quot;#EF553B&quot;, &quot;#00cc96&quot;, &quot;#ab63fa&quot;, &quot;#FFA15A&quot;, &quot;#19d3f3&quot;, &quot;#FF6692&quot;, &quot;#B6E880&quot;, &quot;#FF97FF&quot;, &quot;#FECB52&quot;], &quot;font&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}, &quot;hovermode&quot;: &quot;closest&quot;, &quot;hoverlabel&quot;: {&quot;align&quot;: &quot;left&quot;}, &quot;paper_bgcolor&quot;: &quot;white&quot;, &quot;plot_bgcolor&quot;: &quot;#E5ECF6&quot;, &quot;polar&quot;: {&quot;bgcolor&quot;: &quot;#E5ECF6&quot;, &quot;angularaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}, &quot;radialaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}}, &quot;ternary&quot;: {&quot;bgcolor&quot;: &quot;#E5ECF6&quot;, &quot;aaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}, &quot;baxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}, &quot;caxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}}, &quot;coloraxis&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}, &quot;colorscale&quot;: {&quot;sequential&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]], &quot;sequentialminus&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]], &quot;diverging&quot;: [[0, &quot;#8e0152&quot;], [0.1, &quot;#c51b7d&quot;], [0.2, &quot;#de77ae&quot;], [0.3, &quot;#f1b6da&quot;], [0.4, &quot;#fde0ef&quot;], [0.5, &quot;#f7f7f7&quot;], [0.6, &quot;#e6f5d0&quot;], [0.7, &quot;#b8e186&quot;], [0.8, &quot;#7fbc41&quot;], [0.9, &quot;#4d9221&quot;], [1, &quot;#276419&quot;]]}, &quot;xaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;, &quot;title&quot;: {&quot;standoff&quot;: 15}, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;automargin&quot;: true, &quot;zerolinewidth&quot;: 2}, &quot;yaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;, &quot;title&quot;: {&quot;standoff&quot;: 15}, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;automargin&quot;: true, &quot;zerolinewidth&quot;: 2}, &quot;scene&quot;: {&quot;xaxis&quot;: {&quot;backgroundcolor&quot;: &quot;#E5ECF6&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;showbackground&quot;: true, &quot;ticks&quot;: &quot;&quot;, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;gridwidth&quot;: 2}, &quot;yaxis&quot;: {&quot;backgroundcolor&quot;: &quot;#E5ECF6&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;showbackground&quot;: true, &quot;ticks&quot;: &quot;&quot;, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;gridwidth&quot;: 2}, &quot;zaxis&quot;: {&quot;backgroundcolor&quot;: &quot;#E5ECF6&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;showbackground&quot;: true, &quot;ticks&quot;: &quot;&quot;, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;gridwidth&quot;: 2}}, &quot;shapedefaults&quot;: {&quot;line&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}}, &quot;annotationdefaults&quot;: {&quot;arrowcolor&quot;: &quot;#2a3f5f&quot;, &quot;arrowhead&quot;: 0, &quot;arrowwidth&quot;: 1}, &quot;geo&quot;: {&quot;bgcolor&quot;: &quot;white&quot;, &quot;landcolor&quot;: &quot;#E5ECF6&quot;, &quot;subunitcolor&quot;: &quot;white&quot;, &quot;showland&quot;: true, &quot;showlakes&quot;: true, &quot;lakecolor&quot;: &quot;white&quot;}, &quot;title&quot;: {&quot;x&quot;: 0.05}, &quot;mapbox&quot;: {&quot;style&quot;: &quot;light&quot;}}}, &quot;xaxis&quot;: {&quot;anchor&quot;: &quot;y&quot;, &quot;domain&quot;: [0.0, 0.45], &quot;range&quot;: [-2, 3], &quot;showticklabels&quot;: false}, &quot;yaxis&quot;: {&quot;anchor&quot;: &quot;x&quot;, &quot;domain&quot;: [0.0, 1.0], &quot;title&quot;: {&quot;text&quot;: &quot;Probability&quot;}}, &quot;xaxis2&quot;: {&quot;anchor&quot;: &quot;y2&quot;, &quot;domain&quot;: [0.55, 1.0], &quot;range&quot;: [-2, 3], &quot;showticklabels&quot;: false}, &quot;yaxis2&quot;: {&quot;anchor&quot;: &quot;x2&quot;, &quot;domain&quot;: [0.0, 1.0], &quot;matches&quot;: &quot;y&quot;, &quot;showticklabels&quot;: false}, &quot;annotations&quot;: [{&quot;font&quot;: {&quot;size&quot;: 16}, &quot;showarrow&quot;: false, &quot;text&quot;: &quot;current&quot;, &quot;x&quot;: 0.225, &quot;xanchor&quot;: &quot;center&quot;, &quot;xref&quot;: &quot;paper&quot;, &quot;y&quot;: 1.0, &quot;yanchor&quot;: &quot;bottom&quot;, &quot;yref&quot;: &quot;paper&quot;}, {&quot;font&quot;: {&quot;size&quot;: 16}, &quot;showarrow&quot;: false, &quot;text&quot;: &quot;reference&quot;, &quot;x&quot;: 0.775, &quot;xanchor&quot;: &quot;center&quot;, &quot;xref&quot;: &quot;paper&quot;, &quot;y&quot;: 1.0, &quot;yanchor&quot;: &quot;bottom&quot;, &quot;yref&quot;: &quot;paper&quot;}], &quot;showlegend&quot;: true}}, &quot;insights&quot;: [], &quot;additionalGraphs&quot;: [], &quot;alerts&quot;: [], &quot;tabs&quot;: [], &quot;widgets&quot;: [], &quot;pageSize&quot;: 5}}, {&quot;id&quot;: &quot;78aa8051-149e-4e53-bc75-fa0a49c9c801&quot;, &quot;title&quot;: &quot;0&quot;, &quot;widget&quot;: {&quot;type&quot;: &quot;big_graph&quot;, &quot;title&quot;: &quot;&quot;, &quot;size&quot;: 2, &quot;id&quot;: &quot;09d57537-63da-4ac0-b732-e0e3050b563d&quot;, &quot;details&quot;: &quot;&quot;, &quot;alertsPosition&quot;: null, &quot;alertStats&quot;: null, &quot;params&quot;: {&quot;data&quot;: [{&quot;legendgroup&quot;: &quot;0&quot;, &quot;marker&quot;: {&quot;color&quot;: &quot;#ed0400&quot;, &quot;size&quot;: 6}, &quot;mode&quot;: &quot;markers&quot;, &quot;name&quot;: &quot;0&quot;, &quot;x&quot;: [0.989340056166638, 0.07771457033238649, 0.3221295136147696, 0.9461523954567653, 0.008939102371245067, 0.8227300054219355, 0.8612116383667944, 0.4398308142085725, 0.2557451938059312, 0.8026895196332986, 0.47786200443222115, 0.13433860865569613, 0.9278489928250108, 0.8959699670066484, 0.49154515001693533, 0.8567024965177922, 0.41857802576409864, 0.6834649001663011, 0.39799063940792245, 0.5057420174508104, 0.1895517028339273, 0.9649889241109139, 0.2942156882442547, 0.10345955611640134, 0.1443154002290481, 0.014092294192442956, 0.7159456994623945, 0.5644983202408741, 0.7945783511847522, 0.5070799232841364, 0.7918210395041538, 0.6957642142718394, 0.7778484768591754, 0.4064828689770863, 0.6477706331874812, 0.1797942976929744, 0.321819963387904, 0.1726046201197925, 0.4086372250132624, 0.2414187479655988, 0.4069219941293579, 0.9752223424373121, 0.32031932582203126, 0.9824909449748953, 0.6363061258559836, 0.375091018393911, 0.8574844990835966, 0.6195867393685738, 0.25203308013083936, 0.7928556779768876, 0.43293850873416306, 0.3575111673304414, 0.33027693652508094, 0.6973688756131394, 0.26865012390622656, 0.8082780137053801, 0.2952887943998478, 0.5441213835853572, 0.4879214918052024, 0.8553564125953698, 0.8883864343953859, 0.18438444236776674, 0.585348458938251], &quot;y&quot;: [0.015822936691518352, 0.8904257558476614, 0.7801933885689897, 0.5494637505653269, 0.4074499415186511, 0.5237781456565948, 0.6452872654436316, 0.06808705252856018, 0.9094763884735395, 0.5644247052757022, 0.9290720156205966, 0.08276992826406437, 0.3090238716802237, 0.508771150298809, 0.07546443148015758, 0.16390777216817964, 0.7191574803064497, 0.6275622382596596, 0.1098869037019391, 0.6316359739726013, 0.7844375040244675, 0.678934407133886, 0.81105401814621, 0.42194110615462155, 0.9642869874670873, 0.7236065522831736, 0.7149201688730802, 0.20776555264496033, 0.7260053431898785, 0.5350940013831245, 0.275979536464672, 0.5904235581213413, 0.4326655114931144, 0.34743429722728814, 0.338617418921345, 0.20457673610811966, 0.08221981427611114, 0.984218592603517, 0.777506432738634, 0.9410682857633781, 0.13236147970329515, 0.8220414258827828, 0.38582706486883167, 0.7958938680471382, 0.3171906014922362, 0.5569163804149716, 0.9599774201814059, 0.3286177869020178, 0.24232787028349256, 0.3560640629138665, 0.28030854462613963, 0.5247484058333777, 0.2834050773732104, 0.023784920356150097, 0.18567278619730054, 0.8316182779038181, 0.8658827328958492, 0.8251514903124471, 0.12123620881786179, 0.20835403526616447, 0.029598946470610454, 0.4132746055094556, 0.5667825745938728], &quot;type&quot;: &quot;scatter&quot;, &quot;xaxis&quot;: &quot;x&quot;, &quot;yaxis&quot;: &quot;y&quot;}, {&quot;legendgroup&quot;: &quot;other&quot;, &quot;marker&quot;: {&quot;color&quot;: &quot;#4d4d4d&quot;, &quot;size&quot;: 6}, &quot;mode&quot;: &quot;markers&quot;, &quot;name&quot;: &quot;other&quot;, &quot;x&quot;: [0.8982050460171371, 0.4461172190344297, 0.9218683054838154, 0.2789908904569709, 0.6088311741937957, 0.6824537097668154, 0.2282057333504841, 0.013767512557716799, 0.4167239623706961, 0.938481891856734, 0.34302810983040655, 0.7797442954825999, 0.17473631282740743, 0.34195283630245243, 0.14459772083809674, 0.716770814146376, 0.6993076236968142, 0.6884973179489188, 0.25339603448629966, 0.6923601216234089, 0.22729754091594956, 0.4246491159313397, 0.37192212166768723, 0.3553079116201222, 0.05765480724125638, 0.6316466268659396, 0.7073166026816995, 0.6135886945028356, 0.6483127561631246, 0.16994071421725776, 0.14944679893886248, 0.5141750435258828, 0.8753327263545391, 0.18395344154722204, 0.4628391187082599, 0.42893233402990294, 0.4972891859195163, 0.16151077048601192, 0.34244064113481054, 0.2618804041035202, 0.844526943229479, 0.8003322457764017, 0.4266391582681436, 0.6070154607890389, 0.14546561026621996, 0.5096132942175586, 0.29694708578690454, 0.8596509535692011, 0.6715983809063899, 0.633474012622421, 0.12475130006917923, 0.4705878794988857, 0.9865727795868815, 0.9482991740726651, 0.6450856402604436, 0.15172487103197363, 0.639126848719905, 0.5656621125439275, 0.468665837661252, 0.42803746946827015, 0.5992697556580301, 0.8499698885159654, 0.7511210403719374, 0.579360540297233, 0.9247041815360281, 0.06473998344154885, 0.9913465087318091, 0.05299454266798953, 0.19949554613856135, 0.42275266164456093, 0.10750887618516769, 0.6236704109977018, 0.047992564048867314, 0.28462388100694214, 0.06103668111967109, 0.7035193311050811, 0.668456167589482, 0.3785805932506022, 0.1881942600298212, 0.7470048290299451, 0.34037929076546725, 0.7953011674056428, 0.4879009391796203, 0.5256694443509794, 0.028490849491567216, 0.6442320198790318, 0.3506565024321674, 0.2292050272920657, 0.4338833762117006, 0.3824674572709176, 0.46978904008636024, 0.9794833541798064, 0.36437807036823044, 0.7744101333360395, 0.5527675965498925, 0.8891310891074828, 0.354952851149572, 0.24551868018650747, 0.9110192396569683, 0.04353426375776537, 0.9507534280610023, 0.5564069156709253, 0.3763632166870875, 0.9950523223391111, 0.05836264614763165, 0.5167063597676121, 0.03109707545554785, 0.5711757391862334], &quot;y&quot;: [0.3358218810072069, 0.1558481745892566, 0.2198765185917586, 0.3601218625361934, 0.1120706767795675, 0.8012088725670009, 0.3854891781236376, 0.49365295562435907, 0.00652227577636999, 0.31904268638634914, 0.9584773107097229, 0.23814865645145855, 0.15806086613162074, 0.2502518366357045, 0.6075204389193146, 0.760353107669808, 0.05153805895996222, 0.038861757816567644, 0.6425146582880592, 0.17748546107529883, 0.7751533969332727, 0.3185019756148403, 0.8722791624523671, 0.5064882545230265, 0.10608571796361443, 0.9807059609725882, 0.08030854014253719, 0.9480629052056606, 0.9810359382190061, 0.14432308900430224, 0.25947087151394466, 0.19769544116528215, 0.12116769484467016, 0.8805397210808226, 0.03233538289592086, 0.8150436840275689, 0.6428327415247873, 0.3986686865674016, 0.6041916487421821, 0.12342743625564889, 0.6675837605221874, 0.7826254882159862, 0.946084941001298, 0.8406249945423004, 0.7029603972928996, 0.07844337659710099, 0.25264306691999017, 0.18333491927396695, 0.4233112603534507, 0.3846629188539402, 0.8472012470105893, 0.1249274532722755, 0.8323611392993138, 0.8167483118081043, 0.3114982492278997, 0.20880881753993763, 0.002698208181101336, 0.9883540997062141, 0.09037036241388785, 0.1632066123888266, 0.08550538496678162, 0.5613548922575503, 0.5010009271576551, 0.23469889470038718, 0.6298120197622392, 0.33514523098029325, 0.35435273612921714, 0.18686168977920936, 0.971603600003395, 0.8701881840727741, 0.3975486715428658, 0.27755316942689034, 0.9612464207124278, 0.06184537839419857, 0.919032757845101, 0.9782381800854812, 0.47067343725550215, 0.2986727893991392, 0.5872302627756781, 0.8166346463191281, 0.1761703137044095, 0.6731351923004435, 0.21250963982736015, 0.13155190230829816, 0.3878251112221275, 0.7906853131454186, 0.6300491270750157, 0.07169836875052105, 0.9330139649888526, 0.8650864871746444, 0.6845010075143715, 0.2691005063613202, 0.9005226933323851, 0.5278386532310114, 0.5153815640526257, 0.2078546912353737, 0.3403577702580799, 0.8505970975381154, 0.06216561738646187, 0.21570007521204382, 0.5116942906997043, 0.683733345134051, 0.06482019809095207, 0.7029462134249016, 0.4362656489955069, 0.16966957313305442, 0.5337041259216133, 0.8711934780034154], &quot;type&quot;: &quot;scatter&quot;, &quot;xaxis&quot;: &quot;x&quot;, &quot;yaxis&quot;: &quot;y&quot;}, {&quot;legendgroup&quot;: &quot;0&quot;, &quot;marker&quot;: {&quot;color&quot;: &quot;#ed0400&quot;, &quot;size&quot;: 6}, &quot;mode&quot;: &quot;markers&quot;, &quot;name&quot;: &quot;0&quot;, &quot;x&quot;: [0.18046850899511557, 0.6309592003395305, 0.9809236757505815, 0.8749025512123809, 0.45183624942087064, 0.7084608700517172, 0.7774687500031893, 0.4948430841825636, 0.5285334901775651, 0.1507843983721926, 0.36939992561190627, 0.14222125307278666, 0.7268937533445626, 0.4770129944022632, 0.44887883670676554, 0.8859979711653513, 0.5276187723115614, 0.4090908319168599, 0.26889202221264585, 0.07201203516976995, 0.4181361337253158, 0.025753482406583372, 0.29115394055242805, 0.5035095098483965, 0.9659330650197223, 0.10938291419358459, 0.673041054216622, 0.49993237109919997, 0.777098229275783, 0.14360699787420927, 0.08320263643587555, 0.3992186053524538, 0.7969622519799001, 0.1916757389098901, 0.767777192147274, 0.2902979970618682, 0.21689148761179533, 0.016715589077006432, 0.3986590599223787, 0.38108149129345237, 0.6593449361953647, 0.07091840047038722, 0.15260398704227185, 0.016575882900934147, 0.11379635644740682, 0.6517892760100904, 0.4026568521749192, 0.32102631416731586, 0.5579119942437725, 0.9934604630998499, 0.8344865140180296, 0.6996231823995839, 0.9182585891320579, 0.03972870668308481, 0.07033344161552524, 0.4740062899880546, 0.3491674129570773, 0.9372520621284489, 0.48956496114516856, 0.5396491100933506, 0.8952603657312208, 0.4466350458236905, 0.8770343892703519, 0.25358174937162836, 0.27380970415810857, 0.32836139008759013, 0.5475642704809535, 0.22012867402698122, 0.6714291710812733, 0.1427932828030004, 0.09410027449963942, 0.8701917462053776, 0.23686870355699852, 0.3860040110225955, 0.5715420927253323, 0.52580196995147, 0.07602387944210687, 0.8741259355980283, 0.9511356184186921, 0.8125073041746718, 0.2838018349468743, 0.5278467961179595, 0.3394167240176095, 0.5546673107876667, 0.9744034689130026, 0.3117029177189814, 0.6687966059228697, 0.3259672073089859, 0.7744772660150796, 0.3258099666132048, 0.889827341447375, 0.7517077209192669, 0.7626320954451107, 0.46947902855992574, 0.21076450246870537, 0.041475079576498874, 0.3218287999702445, 0.03711266449399442, 0.6938554113738997, 0.6703500319361684, 0.430471782744975, 0.767788977658173, 0.5360084947395637, 0.03985992663545257, 0.13479311796067905, 0.19341639901491836, 0.3356638011646498, 0.05231294643747675, 0.6051167805003662, 0.5120610275239188, 0.6174610120171561, 0.43235559476434404, 0.8477004682374377, 0.4540590560591513, 0.015403519791920894, 0.8730681484470995, 0.6562015477440989, 0.823003040648471, 0.9517756930338517, 0.050912383516887205, 0.23507186409101455, 0.0633434434563398, 0.4216578860324509, 0.863829145501452, 0.0816239827150681, 0.4731119528858785, 0.12554310980872363, 0.7728856021671178, 0.8414221567958434, 0.04329093818615859, 0.48644074317039476, 0.23941104413775594, 0.9524737816932592, 0.9438926277837961, 0.6139340023847009, 0.9734873973251963, 0.344861343716251, 0.8978507176676818, 0.4345949734085095, 0.23581463714751372, 0.9408279632013994, 0.6842180509832275, 0.06491158533912933, 0.8704248568230661, 0.7013802946333463, 0.6049268729742817, 0.7323748991793305, 0.2534390424997808, 0.6004889552745444], &quot;y&quot;: [0.9359912777837608, 0.2874506063600958, 0.6473394834339437, 0.25118864462258794, 0.9034216758432161, 0.7560126708168342, 0.7459268941365585, 0.4837559612206077, 0.9378902967221517, 0.4647598944965655, 0.506399141758235, 0.028027773371412157, 0.43975887999099494, 0.27715257431181906, 0.7535757630041371, 0.3186601872488317, 0.2098601494634198, 0.888619017444706, 0.30119802084368963, 0.5953893144058291, 0.4664108635991102, 0.0841652620327984, 0.9639233366124232, 0.42630046954442846, 0.5223445049562699, 0.7485336149321196, 0.35988023323486695, 0.8396319924766021, 0.6633775575744281, 0.462494477946479, 0.5674296413289885, 0.5279583272475988, 0.26608119515032846, 0.19242085927692865, 0.5323414762555995, 0.45635546437334296, 0.6467869451958228, 0.12343962730501368, 0.7732052159889309, 0.551174124727, 0.29279344339869706, 0.30113525380526707, 0.3780254713570136, 0.18117092611937935, 0.3650366360673606, 0.4700696238743244, 0.8595975596010874, 0.731052301778881, 0.35857487646128317, 0.5421956789652117, 0.5433919147931997, 0.45306141097940844, 0.5429374043661557, 0.8675767049945494, 0.39086155007248546, 0.0903473655900553, 0.7965908140349709, 0.10867773298824168, 0.09956661350073881, 0.0674568284069812, 0.1262843165193278, 0.9104759055398219, 0.22733434027153432, 0.9642158102795203, 0.7209102761755452, 0.05554379545937427, 0.4713381992521022, 0.6790121563549052, 0.6342512177567428, 0.11441646608504219, 0.18573704884730335, 0.403984937954213, 0.918729896803291, 0.2242145261148204, 0.6464119105283167, 0.2842134140154198, 0.24309516398219233, 0.9379258898324058, 0.9953456557864199, 0.4585929606148095, 0.4997964977839614, 0.21313326220481588, 0.2304359353116162, 0.6366393895968957, 0.7847697114759088, 0.8480172695444925, 0.9100841172271396, 0.4552780040536837, 0.4097928099759176, 0.6328869906629023, 0.46018196997698624, 0.8200782212966695, 0.13763345244250258, 0.7998833647590406, 0.15523803103361566, 0.33937931982868386, 0.5496973725305926, 0.9089866425319791, 0.34557260906638954, 0.7479664269808289, 0.9220093543103711, 0.6811183001801129, 0.4252931796638948, 0.1823132764904497, 0.1866941103906815, 0.5132120127349925, 0.25711165778416933, 0.3191679021012035, 0.927753664180743, 0.9124327933654844, 0.20591879007993485, 0.19312830257208247, 0.8993905167343664, 0.7543132291841257, 0.7988495854092847, 0.6773291273476354, 0.20523679611311219, 0.936849470682376, 0.6625750757305934, 0.40598525474414704, 0.8888905525520551, 0.6319453635930675, 0.5770982721352194, 0.7554062421249902, 0.6565254998534626, 0.8883325149466517, 0.3233512151936023, 0.43470529225852195, 0.9199588055192055, 0.6265195127158282, 0.204005769284477, 0.7239899374964536, 0.005107336162591403, 0.46606958002038923, 0.16815308411468133, 0.5374917673329327, 0.5484867986813535, 0.4043041823990714, 0.33290078740751916, 0.7304731832601088, 0.6192407396820758, 0.5205321916043734, 0.5157732144477603, 0.12496055765643432, 0.9602430226193996, 0.6187864485276047, 0.5716398235036749, 0.8836802329852946, 0.19871013586145714], &quot;type&quot;: &quot;scatter&quot;, &quot;xaxis&quot;: &quot;x2&quot;, &quot;yaxis&quot;: &quot;y2&quot;}, {&quot;legendgroup&quot;: &quot;other&quot;, &quot;marker&quot;: {&quot;color&quot;: &quot;#4d4d4d&quot;, &quot;size&quot;: 6}, &quot;mode&quot;: &quot;markers&quot;, &quot;name&quot;: &quot;other&quot;, &quot;x&quot;: [0.8146191812616553, 0.05411366032399989, 0.13051067133926597, 0.8424458099564136, 0.6183458693278855, 0.531287810481058, 0.2482907289970986, 0.2950785752494959, 0.8726861649194619, 0.42166593484970927, 0.0644302555796068, 0.8969850695075825, 0.20338083282405106, 0.8262275354923914, 0.8817706230828073, 0.48675074481833813, 0.5984646931046363, 0.527267456485417, 0.624821294185499, 0.8550417213473515, 0.2821394484048606, 0.8837555081806009, 0.5676903301191493, 0.11510304096690338, 0.22700116521465796, 0.5959823856130138, 0.23944623690468037, 0.13141566053746057, 0.16184771412383514, 0.8448725182357391, 0.6021836538927108, 0.9635670871883419, 0.34567921329602547, 0.5956250981349497, 0.5989852889734197, 0.6157042872039488, 0.05917720718572239, 0.7503171845746859, 0.9482094981876252, 0.5346790571795887, 0.1925560209550684, 0.7529259149799422, 0.0073189693278638, 0.32825610365078084, 0.9176063476443932, 0.5883673328938768, 0.8551902839041353, 0.6046720523491877, 0.822578152523871, 0.8794835234293169, 0.3209863745244532, 0.12295477155217849, 0.7213033441865708, 0.44034708683123824, 0.1267357091420086, 0.5898236481098892, 0.03606831456985993, 0.20018211641098693, 0.7883011896679689, 0.012096760015357866, 0.3033456717085691, 0.021375961088070716, 0.9974849927283295, 0.5820299763434618, 0.29337627848605663, 0.9289494618931157, 0.5071194235482045, 0.4546922275524069, 0.5878715062961865, 0.2641376442105696, 0.3052882993474333, 0.37165457672418245, 0.24444799937161088, 0.5845472661166298, 0.6958461339323264, 0.07194722016400112, 0.9710833196254638, 0.7530706558694549, 0.8061631629534083, 0.7516404040812905, 0.0800609772712173, 0.48169628302117706, 0.44567295640165605, 0.6724726505249299, 0.4487372588243219, 0.7043133983839096, 0.6816453376026229, 0.6971485287527562, 0.6186007425615364, 0.15098073327964578, 0.760802456305756, 0.781045822193957, 0.9041029859138049, 0.23376869260410593, 0.17667889307234141, 0.3910991231067624, 0.3205646539951602, 0.8154769290056262, 0.6135258996684316, 0.7600017523497489, 0.4276650996969642, 0.09944056291558923, 0.11503501205024624, 0.3734071317371953, 0.19384776750950716, 0.8207464986229382, 0.5996360084237168, 0.688845259018665, 0.4911099613042962, 0.08817368124218106, 0.23507763668617032, 0.461602080891622, 0.19859150305392625, 0.0254762357788203, 0.7293976982561526, 0.7249167472191191, 0.33039174636170277, 0.8434941260636555, 0.42844247595107343, 0.8646861447635343, 0.6570654246228895, 0.5810356574180902, 0.200727488035091, 0.5295466104783949, 0.8944324184275724, 0.30499397583521604, 0.8709456091610533, 0.9087452728583881, 0.32984456268188234, 0.6830743663365642, 0.8992209495659688, 0.07569688175830336, 0.8785878632047704, 0.1908393632684806, 0.8497689100179306, 0.6671187886992039, 0.34433919545005387, 0.151375569992799, 0.6353709614884534, 0.8477880437147416, 0.8218493747640105, 0.6282395971306578, 0.9563015097552321, 0.5899231270757698, 0.1978327846479193, 0.4293307226164923, 0.3367459987011673, 0.991945011907281, 0.38023649611726473, 0.992700873664818, 0.5188042507334142, 0.17227970147712546, 0.07457407125147986, 0.37030569377388767, 0.12341885981472989, 0.6345187162918416, 0.4139198457294089, 0.9909156325254501, 0.9299556236533179, 0.14923603230975002, 0.3948822625368005, 0.46157971096238615, 0.5609487551219452, 0.7803635232892685, 0.48719390907342375, 0.4199935520102408, 0.26199970471933565, 0.9108061390867584, 0.022271511532804156, 0.8211218982189646, 0.18846839966641848, 0.6857568991725472, 0.35520938933964374, 0.9742126278950913, 0.12277212944941995, 0.18756989261723955, 0.8894424754644789, 0.5834063146082279, 0.3092463846587796, 0.0007643854781880233, 0.22759773832225305, 0.1454036341712357, 0.2034338243700906, 0.8963225568040046, 0.8730943782696405, 0.7002894376334498, 0.47049767615220905, 0.8271360023322883, 0.49582639708521237, 0.36348868328490525, 0.27560310276085875, 0.9247408135383717, 0.38698923425629217, 0.49288087343132025, 0.2544381023144221, 0.8849665188380633, 0.38326345680528673, 0.29757471531387525, 0.7175949621947544, 0.19086994317230743, 0.11819262934703845, 0.8369977822135122, 0.7441359213695352, 0.5905205476471171, 0.24289157496487068, 0.6232471451875841, 0.638355320741173, 0.32756944411232514, 0.06748934306754228, 0.8805385975643267, 0.4599567310742584, 0.7638727180664299, 0.2538886209427397, 0.5913871822675169, 0.4287951603487977, 0.38210064254913956, 0.12671338384692277, 0.24426666320897583, 0.07934158295831895, 0.3028583047175786, 0.7417048002315554, 0.6150157249710488, 0.6724110989339258, 0.00838307952503159, 0.6783769722513199, 0.503180690542887, 0.23090845048417918, 0.17489650898192222, 0.18498296555082983, 0.8442600050750985, 0.9825897893050853, 0.9137396248416316, 0.3473694203728128, 0.7802245796913637, 0.5464545907014307, 0.8164423975559377, 0.48372695118890585, 0.5899512982994037, 0.7872634475242615, 0.10023464310313235, 0.5370071168405407, 0.36598334666965426, 0.6043068436688722, 0.9588025156370005, 0.39282294499696246, 0.39297299794161644, 0.7906369935895988, 0.6450783990854264, 0.3938840078553765], &quot;y&quot;: [0.5588521332297299, 0.17673354688596066, 0.3516891389548571, 0.5122546257535973, 0.934412988874708, 0.9843933280451193, 0.8665132115265483, 0.3821882235931996, 0.19703550090520905, 0.6934424197067273, 0.40754156683867326, 0.7766947815521641, 0.2679456415464685, 0.38905059730198266, 0.8094713938471705, 0.011514162005171413, 0.2746725088946096, 0.3675482407134356, 0.6720113593348519, 0.6945999270357045, 0.08502800724578241, 0.533961103290979, 0.8802226814075058, 0.4564411043042451, 0.9133736039693695, 0.6532266625938445, 0.743477645489651, 0.5309698486784624, 0.9920494871268529, 0.41079998499261217, 0.7711650636511057, 0.5994286982012093, 0.26878688628107716, 0.23078119914129636, 0.8322066302523886, 0.19872269743244741, 0.9715809516706924, 0.4912967404912183, 0.2909620864175345, 0.6702515713558536, 0.8338735925012641, 0.8975720679483625, 0.35995002859834346, 0.977583449914015, 0.98050593565262, 0.012133926793445604, 0.7868426049910073, 0.3435687569354372, 0.14073009304727857, 0.46593320590011245, 0.9687611549226496, 0.37380357740093095, 0.8694407390170806, 0.9864629631751348, 0.4677158584812482, 0.11930015485582302, 0.8348572059936261, 0.31076742348014164, 0.47667480259283035, 0.6818151798252244, 0.40987152515583314, 0.38051623328104456, 0.39361455652034494, 0.7740633209443363, 0.2624132415325261, 0.23225704905686928, 0.36697392213797264, 0.5628616581512409, 0.8000746985727302, 0.7378935980119196, 0.3416700479191832, 0.6548345187974102, 0.09705554767301339, 0.30976719837612676, 0.6418780131142716, 0.23914822420973136, 0.9710867064903611, 0.1001573080489555, 0.5236108480030504, 0.9508721919807814, 0.9360429731630262, 0.42565690708923076, 0.7501408405399627, 0.3913509839895152, 0.5336975691374959, 0.24057164255517227, 0.15371359446617194, 0.5455035871125016, 0.7051707328993819, 0.05051869163718492, 0.22837059905919788, 0.27742092539983243, 0.6603760042723043, 0.1840615341897659, 0.2784083926536599, 0.9512704250706467, 0.39340198133456306, 0.58922363305768, 0.03819763883286853, 0.026534262015570853, 0.2159410485848806, 0.16261390969320788, 0.3113615012018969, 0.21896369830650897, 0.30908936411928867, 0.2553975691603614, 0.7635556404555377, 0.41551387654956395, 0.25042141483388614, 0.4265562170259978, 0.481761282962634, 0.769160958828052, 0.21890204721049755, 0.7763477561274392, 0.44909117739967475, 0.2328315231614515, 0.6086055256799939, 0.07440898797742845, 0.5595268728437398, 0.8933146748734146, 0.25743064541550686, 0.11339230139167833, 0.2632284989615833, 0.9016463742044574, 0.8892478647614579, 0.8105663267425217, 0.04901391903661989, 0.018502828914024883, 0.49932834842699136, 0.042552144311483575, 0.08324075456254543, 0.016883138485590754, 0.2970628011354518, 0.03076586262462555, 0.010418011654217518, 0.2706049613062501, 0.5578698271522531, 0.3280697094229653, 0.5325196997467934, 0.37891591628705323, 0.3424778691794227, 0.6551828539303128, 0.01240240358987632, 0.29681911294079344, 0.3523983233843162, 0.6660001473230331, 0.3750905832151009, 0.22165910419487622, 0.48394390204868876, 0.9830059436943067, 0.6916012232531995, 0.9879129612256197, 0.9688787663729564, 0.638359278905986, 0.06730142759242741, 0.6990598740033034, 0.4164827487461116, 0.6319731727989405, 0.493832025601764, 0.7747916547504959, 0.9907003203489975, 0.4238524954776055, 0.2357395652470783, 0.8693237961881037, 0.7661691017608152, 0.002016330885587725, 0.946568395371523, 0.2646928692663577, 0.8269648640946906, 0.5798213345242852, 0.3040662656653591, 0.07558782599902902, 0.08766027391246145, 0.2830221773941535, 0.4350536303241014, 0.463088468014891, 0.21275413326679926, 0.6342538386242744, 0.8495847875116203, 0.6617969475634045, 0.6134039509854937, 0.12072763940510534, 0.63213592520965, 0.6127169054322118, 0.18581952888880848, 0.23728802532762017, 0.6846215592599283, 0.5991127111899812, 0.44673432023298165, 0.7390418494150948, 0.8052913381572696, 0.05771729652837654, 0.3502681191458532, 0.8553987913564921, 0.47364680217797916, 0.3262312390462716, 0.6666037109568399, 0.7921292398692446, 0.840567754259755, 0.20305047640023122, 0.44336056349450426, 0.3060901246214095, 0.0556400323865226, 0.6623244041531504, 0.5002598599083343, 0.9644217543939368, 0.7858390571506818, 0.840243321659193, 0.768121020513055, 0.47363553053374163, 0.25348745026371255, 0.7202585967828024, 0.9786731870227934, 0.9999597314014694, 0.7017545875478862, 0.13339888291981805, 0.8307768643343317, 0.17311345429762326, 0.5494599727410707, 0.24035193568535818, 0.5280556395642617, 0.10109789306110228, 0.6282128193097191, 0.21341460477157215, 0.243729031397922, 0.9991193508392053, 0.863658899068179, 0.6902297954615654, 0.49577173661009355, 0.27435374280826996, 0.6529607505018079, 0.43833878169021256, 0.33206376489580625, 0.6193595972521391, 0.06241134782915625, 0.8734167055792554, 0.04717634684080041, 0.6781035847074554, 0.5857967227334918, 0.536670551153186, 0.6631455803595532, 0.287118455281677, 0.45392832002590955, 0.09668176301756914, 0.8032196784187052, 0.3645401370927902, 0.18005912592804285, 0.38993164424511706, 0.8884833088079696], &quot;type&quot;: &quot;scatter&quot;, &quot;xaxis&quot;: &quot;x2&quot;, &quot;yaxis&quot;: &quot;y2&quot;}], &quot;layout&quot;: {&quot;template&quot;: {&quot;data&quot;: {&quot;histogram2dcontour&quot;: [{&quot;type&quot;: &quot;histogram2dcontour&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;choropleth&quot;: [{&quot;type&quot;: &quot;choropleth&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}], &quot;histogram2d&quot;: [{&quot;type&quot;: &quot;histogram2d&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;heatmap&quot;: [{&quot;type&quot;: &quot;heatmap&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;heatmapgl&quot;: [{&quot;type&quot;: &quot;heatmapgl&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;contourcarpet&quot;: [{&quot;type&quot;: &quot;contourcarpet&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}], &quot;contour&quot;: [{&quot;type&quot;: &quot;contour&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;surface&quot;: [{&quot;type&quot;: &quot;surface&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;mesh3d&quot;: [{&quot;type&quot;: &quot;mesh3d&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}], &quot;scatter&quot;: [{&quot;fillpattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}, &quot;type&quot;: &quot;scatter&quot;}], &quot;parcoords&quot;: [{&quot;type&quot;: &quot;parcoords&quot;, &quot;line&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatterpolargl&quot;: [{&quot;type&quot;: &quot;scatterpolargl&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;bar&quot;: [{&quot;error_x&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}, &quot;error_y&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}, &quot;marker&quot;: {&quot;line&quot;: {&quot;color&quot;: &quot;#E5ECF6&quot;, &quot;width&quot;: 0.5}, &quot;pattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}}, &quot;type&quot;: &quot;bar&quot;}], &quot;scattergeo&quot;: [{&quot;type&quot;: &quot;scattergeo&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatterpolar&quot;: [{&quot;type&quot;: &quot;scatterpolar&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;histogram&quot;: [{&quot;marker&quot;: {&quot;pattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}}, &quot;type&quot;: &quot;histogram&quot;}], &quot;scattergl&quot;: [{&quot;type&quot;: &quot;scattergl&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatter3d&quot;: [{&quot;type&quot;: &quot;scatter3d&quot;, &quot;line&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scattermapbox&quot;: [{&quot;type&quot;: &quot;scattermapbox&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatterternary&quot;: [{&quot;type&quot;: &quot;scatterternary&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scattercarpet&quot;: [{&quot;type&quot;: &quot;scattercarpet&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;carpet&quot;: [{&quot;aaxis&quot;: {&quot;endlinecolor&quot;: &quot;#2a3f5f&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;minorgridcolor&quot;: &quot;white&quot;, &quot;startlinecolor&quot;: &quot;#2a3f5f&quot;}, &quot;baxis&quot;: {&quot;endlinecolor&quot;: &quot;#2a3f5f&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;minorgridcolor&quot;: &quot;white&quot;, &quot;startlinecolor&quot;: &quot;#2a3f5f&quot;}, &quot;type&quot;: &quot;carpet&quot;}], &quot;table&quot;: [{&quot;cells&quot;: {&quot;fill&quot;: {&quot;color&quot;: &quot;#EBF0F8&quot;}, &quot;line&quot;: {&quot;color&quot;: &quot;white&quot;}}, &quot;header&quot;: {&quot;fill&quot;: {&quot;color&quot;: &quot;#C8D4E3&quot;}, &quot;line&quot;: {&quot;color&quot;: &quot;white&quot;}}, &quot;type&quot;: &quot;table&quot;}], &quot;barpolar&quot;: [{&quot;marker&quot;: {&quot;line&quot;: {&quot;color&quot;: &quot;#E5ECF6&quot;, &quot;width&quot;: 0.5}, &quot;pattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}}, &quot;type&quot;: &quot;barpolar&quot;}], &quot;pie&quot;: [{&quot;automargin&quot;: true, &quot;type&quot;: &quot;pie&quot;}]}, &quot;layout&quot;: {&quot;autotypenumbers&quot;: &quot;strict&quot;, &quot;colorway&quot;: [&quot;#636efa&quot;, &quot;#EF553B&quot;, &quot;#00cc96&quot;, &quot;#ab63fa&quot;, &quot;#FFA15A&quot;, &quot;#19d3f3&quot;, &quot;#FF6692&quot;, &quot;#B6E880&quot;, &quot;#FF97FF&quot;, &quot;#FECB52&quot;], &quot;font&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}, &quot;hovermode&quot;: &quot;closest&quot;, &quot;hoverlabel&quot;: {&quot;align&quot;: &quot;left&quot;}, &quot;paper_bgcolor&quot;: &quot;white&quot;, &quot;plot_bgcolor&quot;: &quot;#E5ECF6&quot;, &quot;polar&quot;: {&quot;bgcolor&quot;: &quot;#E5ECF6&quot;, &quot;angularaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}, &quot;radialaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}}, &quot;ternary&quot;: {&quot;bgcolor&quot;: &quot;#E5ECF6&quot;, &quot;aaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}, &quot;baxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}, &quot;caxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}}, &quot;coloraxis&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}, &quot;colorscale&quot;: {&quot;sequential&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]], &quot;sequentialminus&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]], &quot;diverging&quot;: [[0, &quot;#8e0152&quot;], [0.1, &quot;#c51b7d&quot;], [0.2, &quot;#de77ae&quot;], [0.3, &quot;#f1b6da&quot;], [0.4, &quot;#fde0ef&quot;], [0.5, &quot;#f7f7f7&quot;], [0.6, &quot;#e6f5d0&quot;], [0.7, &quot;#b8e186&quot;], [0.8, &quot;#7fbc41&quot;], [0.9, &quot;#4d9221&quot;], [1, &quot;#276419&quot;]]}, &quot;xaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;, &quot;title&quot;: {&quot;standoff&quot;: 15}, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;automargin&quot;: true, &quot;zerolinewidth&quot;: 2}, &quot;yaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;, &quot;title&quot;: {&quot;standoff&quot;: 15}, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;automargin&quot;: true, &quot;zerolinewidth&quot;: 2}, &quot;scene&quot;: {&quot;xaxis&quot;: {&quot;backgroundcolor&quot;: &quot;#E5ECF6&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;showbackground&quot;: true, &quot;ticks&quot;: &quot;&quot;, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;gridwidth&quot;: 2}, &quot;yaxis&quot;: {&quot;backgroundcolor&quot;: &quot;#E5ECF6&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;showbackground&quot;: true, &quot;ticks&quot;: &quot;&quot;, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;gridwidth&quot;: 2}, &quot;zaxis&quot;: {&quot;backgroundcolor&quot;: &quot;#E5ECF6&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;showbackground&quot;: true, &quot;ticks&quot;: &quot;&quot;, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;gridwidth&quot;: 2}}, &quot;shapedefaults&quot;: {&quot;line&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}}, &quot;annotationdefaults&quot;: {&quot;arrowcolor&quot;: &quot;#2a3f5f&quot;, &quot;arrowhead&quot;: 0, &quot;arrowwidth&quot;: 1}, &quot;geo&quot;: {&quot;bgcolor&quot;: &quot;white&quot;, &quot;landcolor&quot;: &quot;#E5ECF6&quot;, &quot;subunitcolor&quot;: &quot;white&quot;, &quot;showland&quot;: true, &quot;showlakes&quot;: true, &quot;lakecolor&quot;: &quot;white&quot;}, &quot;title&quot;: {&quot;x&quot;: 0.05}, &quot;mapbox&quot;: {&quot;style&quot;: &quot;light&quot;}}}, &quot;xaxis&quot;: {&quot;anchor&quot;: &quot;y&quot;, &quot;domain&quot;: [0.0, 0.45], &quot;range&quot;: [-2, 3], &quot;showticklabels&quot;: false}, &quot;yaxis&quot;: {&quot;anchor&quot;: &quot;x&quot;, &quot;domain&quot;: [0.0, 1.0], &quot;title&quot;: {&quot;text&quot;: &quot;Probability&quot;}}, &quot;xaxis2&quot;: {&quot;anchor&quot;: &quot;y2&quot;, &quot;domain&quot;: [0.55, 1.0], &quot;range&quot;: [-2, 3], &quot;showticklabels&quot;: false}, &quot;yaxis2&quot;: {&quot;anchor&quot;: &quot;x2&quot;, &quot;domain&quot;: [0.0, 1.0], &quot;matches&quot;: &quot;y&quot;, &quot;showticklabels&quot;: false}, &quot;annotations&quot;: [{&quot;font&quot;: {&quot;size&quot;: 16}, &quot;showarrow&quot;: false, &quot;text&quot;: &quot;current&quot;, &quot;x&quot;: 0.225, &quot;xanchor&quot;: &quot;center&quot;, &quot;xref&quot;: &quot;paper&quot;, &quot;y&quot;: 1.0, &quot;yanchor&quot;: &quot;bottom&quot;, &quot;yref&quot;: &quot;paper&quot;}, {&quot;font&quot;: {&quot;size&quot;: 16}, &quot;showarrow&quot;: false, &quot;text&quot;: &quot;reference&quot;, &quot;x&quot;: 0.775, &quot;xanchor&quot;: &quot;center&quot;, &quot;xref&quot;: &quot;paper&quot;, &quot;y&quot;: 1.0, &quot;yanchor&quot;: &quot;bottom&quot;, &quot;yref&quot;: &quot;paper&quot;}], &quot;showlegend&quot;: true}}, &quot;insights&quot;: [], &quot;additionalGraphs&quot;: [], &quot;alerts&quot;: [], &quot;tabs&quot;: [], &quot;widgets&quot;: [], &quot;pageSize&quot;: 5}}], &quot;widgets&quot;: [], &quot;pageSize&quot;: 5}, {&quot;type&quot;: &quot;tabbed_graph&quot;, &quot;title&quot;: &quot;Current: Probability Distribution&quot;, &quot;size&quot;: 1, &quot;id&quot;: &quot;b1e47393-4661-4ddd-8998-8229ffd527f2&quot;, &quot;details&quot;: &quot;&quot;, &quot;alertsPosition&quot;: null, &quot;alertStats&quot;: null, &quot;params&quot;: {&quot;graphs&quot;: [{&quot;id&quot;: &quot;cefdf0b9-69d8-4586-a0e2-43d20cd1d80c&quot;, &quot;title&quot;: &quot;1&quot;, &quot;graph&quot;: {&quot;data&quot;: [{&quot;autobinx&quot;: false, &quot;histnorm&quot;: &quot;probability density&quot;, &quot;legendgroup&quot;: &quot;1&quot;, &quot;marker&quot;: {&quot;color&quot;: &quot;#ed0400&quot;}, &quot;name&quot;: &quot;1&quot;, &quot;opacity&quot;: 0.7, &quot;x&quot;: [0.6641781189927931, 0.8441518254107434, 0.7801234814082414, 0.6398781374638066, 0.8879293232204325, 0.1987911274329991, 0.6145108218763624, 0.5063470443756409, 0.99347772422363, 0.6809573136136509, 0.04152268929027714, 0.7618513435485414, 0.8419391338683793, 0.7497481633642955, 0.3924795610806854, 0.23964689233019199, 0.9484619410400378, 0.9611382421834324, 0.3574853417119408, 0.8225145389247012, 0.22484660306672732, 0.6814980243851597, 0.12772083754763286, 0.4935117454769735, 0.8939142820363856, 0.01929403902741178, 0.9196914598574628, 0.05193709479433939, 0.018964061780993857, 0.8556769109956978, 0.7405291284860553, 0.8023045588347179, 0.8788323051553298, 0.11946027891917743, 0.9676646171040791, 0.18495631597243112, 0.3571672584752127, 0.6013313134325984, 0.3958083512578179, 0.8765725637443511, 0.3324162394778126, 0.2173745117840138, 0.05391505899870197, 0.15937500545769956, 0.2970396027071004, 0.921556623402899, 0.7473569330800098, 0.816665080726033, 0.5766887396465493, 0.6153370811460598, 0.1527987529894107, 0.8750725467277245, 0.16763886070068623, 0.18325168819189575, 0.6885017507721003, 0.7911911824600624, 0.9973017918188987, 0.011645900293785871, 0.9096296375861121, 0.8367933876111734, 0.9144946150332184, 0.4386451077424497, 0.4989990728423449, 0.7653011052996128, 0.3701879802377608, 0.6648547690197067, 0.6456472638707829, 0.8131383102207906, 0.028396399996605037, 0.1298118159272259, 0.6024513284571342, 0.7224468305731097, 0.03875357928757217, 0.9381546216058014, 0.08096724215489903, 0.021761819914518754, 0.5293265627444979, 0.7013272106008608, 0.41276973722432186, 0.18336535368087192, 0.8238296862955905, 0.3268648076995565, 0.7874903601726398, 0.8684480976917018, 0.6121748887778725, 0.20931468685458143, 0.3699508729249843, 0.928301631249479, 0.06698603501114742, 0.13491351282535557, 0.3154989924856285, 0.7308994936386798, 0.0994773066676149, 0.4721613467689886, 0.4846184359473743, 0.7921453087646263, 0.6596422297419201, 0.1494029024618846, 0.9378343826135381, 0.7842999247879562, 0.4883057093002957, 0.31626665486594896, 0.9351798019090479, 0.2970537865750984, 0.5637343510044931, 0.8303304268669456, 0.4662958740783867, 0.1288065219965846], &quot;xaxis&quot;: &quot;x&quot;, &quot;xbins&quot;: {&quot;end&quot;: 0.9973017918188987, &quot;size&quot;: 0.05, &quot;start&quot;: 0.011645900293785871}, &quot;yaxis&quot;: &quot;y&quot;, &quot;type&quot;: &quot;histogram&quot;}, {&quot;autobinx&quot;: false, &quot;histnorm&quot;: &quot;probability density&quot;, &quot;legendgroup&quot;: &quot;other&quot;, &quot;marker&quot;: {&quot;color&quot;: &quot;#4d4d4d&quot;}, &quot;name&quot;: &quot;other&quot;, &quot;opacity&quot;: 0.7, &quot;x&quot;: [0.9841770633084816, 0.10957424415233863, 0.21980661143101032, 0.4505362494346731, 0.5925500584813489, 0.47622185434340525, 0.3547127345563684, 0.9319129474714398, 0.09052361152646049, 0.4355752947242978, 0.0709279843794034, 0.9172300717359356, 0.6909761283197763, 0.49122884970119096, 0.9245355685198424, 0.8360922278318204, 0.28084251969355034, 0.3724377617403404, 0.8901130962980609, 0.3683640260273987, 0.21556249597553245, 0.321065592866114, 0.18894598185378997, 0.5780588938453785, 0.0357130125329127, 0.2763934477168264, 0.2850798311269198, 0.7922344473550397, 0.2739946568101215, 0.46490599861687554, 0.724020463535328, 0.4095764418786587, 0.5673344885068856, 0.6525657027727119, 0.661382581078655, 0.7954232638918803, 0.9177801857238889, 0.015781407396483038, 0.22249356726136604, 0.05893171423662191, 0.8676385202967049, 0.17795857411721716, 0.6141729351311683, 0.20410613195286176, 0.6828093985077638, 0.4430836195850284, 0.04002257981859414, 0.6713822130979822, 0.7576721297165074, 0.6439359370861335, 0.7196914553738604, 0.4752515941666223, 0.7165949226267896, 0.9762150796438499, 0.8143272138026995, 0.16838172209618185, 0.13411726710415084, 0.17484850968755294, 0.8787637911821382, 0.7916459647338355, 0.9704010535293895, 0.5867253944905444, 0.4332174254061272], &quot;xaxis&quot;: &quot;x&quot;, &quot;xbins&quot;: {&quot;end&quot;: 0.9841770633084816, &quot;size&quot;: 0.05, &quot;start&quot;: 0.015781407396483038}, &quot;yaxis&quot;: &quot;y&quot;, &quot;type&quot;: &quot;histogram&quot;}, {&quot;legendgroup&quot;: &quot;1&quot;, &quot;marker&quot;: {&quot;color&quot;: &quot;#ed0400&quot;, &quot;symbol&quot;: &quot;line-ns-open&quot;}, &quot;mode&quot;: &quot;markers&quot;, &quot;name&quot;: &quot;1&quot;, &quot;showlegend&quot;: false, &quot;x&quot;: [0.6641781189927931, 0.8441518254107434, 0.7801234814082414, 0.6398781374638066, 0.8879293232204325, 0.1987911274329991, 0.6145108218763624, 0.5063470443756409, 0.99347772422363, 0.6809573136136509, 0.04152268929027714, 0.7618513435485414, 0.8419391338683793, 0.7497481633642955, 0.3924795610806854, 0.23964689233019199, 0.9484619410400378, 0.9611382421834324, 0.3574853417119408, 0.8225145389247012, 0.22484660306672732, 0.6814980243851597, 0.12772083754763286, 0.4935117454769735, 0.8939142820363856, 0.01929403902741178, 0.9196914598574628, 0.05193709479433939, 0.018964061780993857, 0.8556769109956978, 0.7405291284860553, 0.8023045588347179, 0.8788323051553298, 0.11946027891917743, 0.9676646171040791, 0.18495631597243112, 0.3571672584752127, 0.6013313134325984, 0.3958083512578179, 0.8765725637443511, 0.3324162394778126, 0.2173745117840138, 0.05391505899870197, 0.15937500545769956, 0.2970396027071004, 0.921556623402899, 0.7473569330800098, 0.816665080726033, 0.5766887396465493, 0.6153370811460598, 0.1527987529894107, 0.8750725467277245, 0.16763886070068623, 0.18325168819189575, 0.6885017507721003, 0.7911911824600624, 0.9973017918188987, 0.011645900293785871, 0.9096296375861121, 0.8367933876111734, 0.9144946150332184, 0.4386451077424497, 0.4989990728423449, 0.7653011052996128, 0.3701879802377608, 0.6648547690197067, 0.6456472638707829, 0.8131383102207906, 0.028396399996605037, 0.1298118159272259, 0.6024513284571342, 0.7224468305731097, 0.03875357928757217, 0.9381546216058014, 0.08096724215489903, 0.021761819914518754, 0.5293265627444979, 0.7013272106008608, 0.41276973722432186, 0.18336535368087192, 0.8238296862955905, 0.3268648076995565, 0.7874903601726398, 0.8684480976917018, 0.6121748887778725, 0.20931468685458143, 0.3699508729249843, 0.928301631249479, 0.06698603501114742, 0.13491351282535557, 0.3154989924856285, 0.7308994936386798, 0.0994773066676149, 0.4721613467689886, 0.4846184359473743, 0.7921453087646263, 0.6596422297419201, 0.1494029024618846, 0.9378343826135381, 0.7842999247879562, 0.4883057093002957, 0.31626665486594896, 0.9351798019090479, 0.2970537865750984, 0.5637343510044931, 0.8303304268669456, 0.4662958740783867, 0.1288065219965846], &quot;xaxis&quot;: &quot;x&quot;, &quot;y&quot;: [&quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;], &quot;yaxis&quot;: &quot;y2&quot;, &quot;type&quot;: &quot;scatter&quot;}, {&quot;legendgroup&quot;: &quot;other&quot;, &quot;marker&quot;: {&quot;color&quot;: &quot;#4d4d4d&quot;, &quot;symbol&quot;: &quot;line-ns-open&quot;}, &quot;mode&quot;: &quot;markers&quot;, &quot;name&quot;: &quot;other&quot;, &quot;showlegend&quot;: false, &quot;x&quot;: [0.9841770633084816, 0.10957424415233863, 0.21980661143101032, 0.4505362494346731, 0.5925500584813489, 0.47622185434340525, 0.3547127345563684, 0.9319129474714398, 0.09052361152646049, 0.4355752947242978, 0.0709279843794034, 0.9172300717359356, 0.6909761283197763, 0.49122884970119096, 0.9245355685198424, 0.8360922278318204, 0.28084251969355034, 0.3724377617403404, 0.8901130962980609, 0.3683640260273987, 0.21556249597553245, 0.321065592866114, 0.18894598185378997, 0.5780588938453785, 0.0357130125329127, 0.2763934477168264, 0.2850798311269198, 0.7922344473550397, 0.2739946568101215, 0.46490599861687554, 0.724020463535328, 0.4095764418786587, 0.5673344885068856, 0.6525657027727119, 0.661382581078655, 0.7954232638918803, 0.9177801857238889, 0.015781407396483038, 0.22249356726136604, 0.05893171423662191, 0.8676385202967049, 0.17795857411721716, 0.6141729351311683, 0.20410613195286176, 0.6828093985077638, 0.4430836195850284, 0.04002257981859414, 0.6713822130979822, 0.7576721297165074, 0.6439359370861335, 0.7196914553738604, 0.4752515941666223, 0.7165949226267896, 0.9762150796438499, 0.8143272138026995, 0.16838172209618185, 0.13411726710415084, 0.17484850968755294, 0.8787637911821382, 0.7916459647338355, 0.9704010535293895, 0.5867253944905444, 0.4332174254061272], &quot;xaxis&quot;: &quot;x&quot;, &quot;y&quot;: [&quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;], &quot;yaxis&quot;: &quot;y2&quot;, &quot;type&quot;: &quot;scatter&quot;}], &quot;layout&quot;: {&quot;barmode&quot;: &quot;overlay&quot;, &quot;hovermode&quot;: &quot;closest&quot;, &quot;legend&quot;: {&quot;traceorder&quot;: &quot;reversed&quot;, &quot;orientation&quot;: &quot;h&quot;, &quot;yanchor&quot;: &quot;bottom&quot;, &quot;y&quot;: 1.02, &quot;xanchor&quot;: &quot;right&quot;, &quot;x&quot;: 1}, &quot;xaxis&quot;: {&quot;anchor&quot;: &quot;y2&quot;, &quot;domain&quot;: [0.0, 1.0], &quot;zeroline&quot;: false, &quot;title&quot;: {&quot;text&quot;: &quot;Probability&quot;}}, &quot;yaxis&quot;: {&quot;anchor&quot;: &quot;free&quot;, &quot;domain&quot;: [0.35, 1], &quot;position&quot;: 0.0, &quot;title&quot;: {&quot;text&quot;: &quot;Share&quot;}}, &quot;yaxis2&quot;: {&quot;anchor&quot;: &quot;x&quot;, &quot;domain&quot;: [0, 0.25], &quot;dtick&quot;: 1, &quot;showticklabels&quot;: false}, &quot;template&quot;: {&quot;data&quot;: {&quot;histogram2dcontour&quot;: [{&quot;type&quot;: &quot;histogram2dcontour&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;choropleth&quot;: [{&quot;type&quot;: &quot;choropleth&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}], &quot;histogram2d&quot;: [{&quot;type&quot;: &quot;histogram2d&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;heatmap&quot;: [{&quot;type&quot;: &quot;heatmap&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;heatmapgl&quot;: [{&quot;type&quot;: &quot;heatmapgl&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;contourcarpet&quot;: [{&quot;type&quot;: &quot;contourcarpet&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}], &quot;contour&quot;: [{&quot;type&quot;: &quot;contour&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;surface&quot;: [{&quot;type&quot;: &quot;surface&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;mesh3d&quot;: [{&quot;type&quot;: &quot;mesh3d&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}], &quot;scatter&quot;: [{&quot;fillpattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}, &quot;type&quot;: &quot;scatter&quot;}], &quot;parcoords&quot;: [{&quot;type&quot;: &quot;parcoords&quot;, &quot;line&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatterpolargl&quot;: [{&quot;type&quot;: &quot;scatterpolargl&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;bar&quot;: [{&quot;error_x&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}, &quot;error_y&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}, &quot;marker&quot;: {&quot;line&quot;: {&quot;color&quot;: &quot;#E5ECF6&quot;, &quot;width&quot;: 0.5}, &quot;pattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}}, &quot;type&quot;: &quot;bar&quot;}], &quot;scattergeo&quot;: [{&quot;type&quot;: &quot;scattergeo&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatterpolar&quot;: [{&quot;type&quot;: &quot;scatterpolar&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;histogram&quot;: [{&quot;marker&quot;: {&quot;pattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}}, &quot;type&quot;: &quot;histogram&quot;}], &quot;scattergl&quot;: [{&quot;type&quot;: &quot;scattergl&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatter3d&quot;: [{&quot;type&quot;: &quot;scatter3d&quot;, &quot;line&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scattermapbox&quot;: [{&quot;type&quot;: &quot;scattermapbox&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatterternary&quot;: [{&quot;type&quot;: &quot;scatterternary&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scattercarpet&quot;: [{&quot;type&quot;: &quot;scattercarpet&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;carpet&quot;: [{&quot;aaxis&quot;: {&quot;endlinecolor&quot;: &quot;#2a3f5f&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;minorgridcolor&quot;: &quot;white&quot;, &quot;startlinecolor&quot;: &quot;#2a3f5f&quot;}, &quot;baxis&quot;: {&quot;endlinecolor&quot;: &quot;#2a3f5f&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;minorgridcolor&quot;: &quot;white&quot;, &quot;startlinecolor&quot;: &quot;#2a3f5f&quot;}, &quot;type&quot;: &quot;carpet&quot;}], &quot;table&quot;: [{&quot;cells&quot;: {&quot;fill&quot;: {&quot;color&quot;: &quot;#EBF0F8&quot;}, &quot;line&quot;: {&quot;color&quot;: &quot;white&quot;}}, &quot;header&quot;: {&quot;fill&quot;: {&quot;color&quot;: &quot;#C8D4E3&quot;}, &quot;line&quot;: {&quot;color&quot;: &quot;white&quot;}}, &quot;type&quot;: &quot;table&quot;}], &quot;barpolar&quot;: [{&quot;marker&quot;: {&quot;line&quot;: {&quot;color&quot;: &quot;#E5ECF6&quot;, &quot;width&quot;: 0.5}, &quot;pattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}}, &quot;type&quot;: &quot;barpolar&quot;}], &quot;pie&quot;: [{&quot;automargin&quot;: true, &quot;type&quot;: &quot;pie&quot;}]}, &quot;layout&quot;: {&quot;autotypenumbers&quot;: &quot;strict&quot;, &quot;colorway&quot;: [&quot;#636efa&quot;, &quot;#EF553B&quot;, &quot;#00cc96&quot;, &quot;#ab63fa&quot;, &quot;#FFA15A&quot;, &quot;#19d3f3&quot;, &quot;#FF6692&quot;, &quot;#B6E880&quot;, &quot;#FF97FF&quot;, &quot;#FECB52&quot;], &quot;font&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}, &quot;hovermode&quot;: &quot;closest&quot;, &quot;hoverlabel&quot;: {&quot;align&quot;: &quot;left&quot;}, &quot;paper_bgcolor&quot;: &quot;white&quot;, &quot;plot_bgcolor&quot;: &quot;#E5ECF6&quot;, &quot;polar&quot;: {&quot;bgcolor&quot;: &quot;#E5ECF6&quot;, &quot;angularaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}, &quot;radialaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}}, &quot;ternary&quot;: {&quot;bgcolor&quot;: &quot;#E5ECF6&quot;, &quot;aaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}, &quot;baxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}, &quot;caxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}}, &quot;coloraxis&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}, &quot;colorscale&quot;: {&quot;sequential&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]], &quot;sequentialminus&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]], &quot;diverging&quot;: [[0, &quot;#8e0152&quot;], [0.1, &quot;#c51b7d&quot;], [0.2, &quot;#de77ae&quot;], [0.3, &quot;#f1b6da&quot;], [0.4, &quot;#fde0ef&quot;], [0.5, &quot;#f7f7f7&quot;], [0.6, &quot;#e6f5d0&quot;], [0.7, &quot;#b8e186&quot;], [0.8, &quot;#7fbc41&quot;], [0.9, &quot;#4d9221&quot;], [1, &quot;#276419&quot;]]}, &quot;xaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;, &quot;title&quot;: {&quot;standoff&quot;: 15}, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;automargin&quot;: true, &quot;zerolinewidth&quot;: 2}, &quot;yaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;, &quot;title&quot;: {&quot;standoff&quot;: 15}, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;automargin&quot;: true, &quot;zerolinewidth&quot;: 2}, &quot;scene&quot;: {&quot;xaxis&quot;: {&quot;backgroundcolor&quot;: &quot;#E5ECF6&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;showbackground&quot;: true, &quot;ticks&quot;: &quot;&quot;, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;gridwidth&quot;: 2}, &quot;yaxis&quot;: {&quot;backgroundcolor&quot;: &quot;#E5ECF6&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;showbackground&quot;: true, &quot;ticks&quot;: &quot;&quot;, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;gridwidth&quot;: 2}, &quot;zaxis&quot;: {&quot;backgroundcolor&quot;: &quot;#E5ECF6&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;showbackground&quot;: true, &quot;ticks&quot;: &quot;&quot;, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;gridwidth&quot;: 2}}, &quot;shapedefaults&quot;: {&quot;line&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}}, &quot;annotationdefaults&quot;: {&quot;arrowcolor&quot;: &quot;#2a3f5f&quot;, &quot;arrowhead&quot;: 0, &quot;arrowwidth&quot;: 1}, &quot;geo&quot;: {&quot;bgcolor&quot;: &quot;white&quot;, &quot;landcolor&quot;: &quot;#E5ECF6&quot;, &quot;subunitcolor&quot;: &quot;white&quot;, &quot;showland&quot;: true, &quot;showlakes&quot;: true, &quot;lakecolor&quot;: &quot;white&quot;}, &quot;title&quot;: {&quot;x&quot;: 0.05}, &quot;mapbox&quot;: {&quot;style&quot;: &quot;light&quot;}}}}}}, {&quot;id&quot;: &quot;632d471a-a414-4e51-b221-f6702c5a8006&quot;, &quot;title&quot;: &quot;0&quot;, &quot;graph&quot;: {&quot;data&quot;: [{&quot;autobinx&quot;: false, &quot;histnorm&quot;: &quot;probability density&quot;, &quot;legendgroup&quot;: &quot;0&quot;, &quot;marker&quot;: {&quot;color&quot;: &quot;#ed0400&quot;}, &quot;name&quot;: &quot;0&quot;, &quot;opacity&quot;: 0.7, &quot;x&quot;: [0.015822936691518352, 0.8904257558476614, 0.7801933885689897, 0.5494637505653269, 0.4074499415186511, 0.5237781456565948, 0.6452872654436316, 0.06808705252856018, 0.9094763884735395, 0.5644247052757022, 0.9290720156205966, 0.08276992826406437, 0.3090238716802237, 0.508771150298809, 0.07546443148015758, 0.16390777216817964, 0.7191574803064497, 0.6275622382596596, 0.1098869037019391, 0.6316359739726013, 0.7844375040244675, 0.678934407133886, 0.81105401814621, 0.42194110615462155, 0.9642869874670873, 0.7236065522831736, 0.7149201688730802, 0.20776555264496033, 0.7260053431898785, 0.5350940013831245, 0.275979536464672, 0.5904235581213413, 0.4326655114931144, 0.34743429722728814, 0.338617418921345, 0.20457673610811966, 0.08221981427611114, 0.984218592603517, 0.777506432738634, 0.9410682857633781, 0.13236147970329515, 0.8220414258827828, 0.38582706486883167, 0.7958938680471382, 0.3171906014922362, 0.5569163804149716, 0.9599774201814059, 0.3286177869020178, 0.24232787028349256, 0.3560640629138665, 0.28030854462613963, 0.5247484058333777, 0.2834050773732104, 0.023784920356150097, 0.18567278619730054, 0.8316182779038181, 0.8658827328958492, 0.8251514903124471, 0.12123620881786179, 0.20835403526616447, 0.029598946470610454, 0.4132746055094556, 0.5667825745938728], &quot;xaxis&quot;: &quot;x&quot;, &quot;xbins&quot;: {&quot;end&quot;: 0.984218592603517, &quot;size&quot;: 0.05, &quot;start&quot;: 0.015822936691518352}, &quot;yaxis&quot;: &quot;y&quot;, &quot;type&quot;: &quot;histogram&quot;}, {&quot;autobinx&quot;: false, &quot;histnorm&quot;: &quot;probability density&quot;, &quot;legendgroup&quot;: &quot;other&quot;, &quot;marker&quot;: {&quot;color&quot;: &quot;#4d4d4d&quot;}, &quot;name&quot;: &quot;other&quot;, &quot;opacity&quot;: 0.7, &quot;x&quot;: [0.3358218810072069, 0.1558481745892566, 0.2198765185917586, 0.3601218625361934, 0.1120706767795675, 0.8012088725670009, 0.3854891781236376, 0.49365295562435907, 0.00652227577636999, 0.31904268638634914, 0.9584773107097229, 0.23814865645145855, 0.15806086613162074, 0.2502518366357045, 0.6075204389193146, 0.760353107669808, 0.05153805895996222, 0.038861757816567644, 0.6425146582880592, 0.17748546107529883, 0.7751533969332727, 0.3185019756148403, 0.8722791624523671, 0.5064882545230265, 0.10608571796361443, 0.9807059609725882, 0.08030854014253719, 0.9480629052056606, 0.9810359382190061, 0.14432308900430224, 0.25947087151394466, 0.19769544116528215, 0.12116769484467016, 0.8805397210808226, 0.03233538289592086, 0.8150436840275689, 0.6428327415247873, 0.3986686865674016, 0.6041916487421821, 0.12342743625564889, 0.6675837605221874, 0.7826254882159862, 0.946084941001298, 0.8406249945423004, 0.7029603972928996, 0.07844337659710099, 0.25264306691999017, 0.18333491927396695, 0.4233112603534507, 0.3846629188539402, 0.8472012470105893, 0.1249274532722755, 0.8323611392993138, 0.8167483118081043, 0.3114982492278997, 0.20880881753993763, 0.002698208181101336, 0.9883540997062141, 0.09037036241388785, 0.1632066123888266, 0.08550538496678162, 0.5613548922575503, 0.5010009271576551, 0.23469889470038718, 0.6298120197622392, 0.33514523098029325, 0.35435273612921714, 0.18686168977920936, 0.971603600003395, 0.8701881840727741, 0.3975486715428658, 0.27755316942689034, 0.9612464207124278, 0.06184537839419857, 0.919032757845101, 0.9782381800854812, 0.47067343725550215, 0.2986727893991392, 0.5872302627756781, 0.8166346463191281, 0.1761703137044095, 0.6731351923004435, 0.21250963982736015, 0.13155190230829816, 0.3878251112221275, 0.7906853131454186, 0.6300491270750157, 0.07169836875052105, 0.9330139649888526, 0.8650864871746444, 0.6845010075143715, 0.2691005063613202, 0.9005226933323851, 0.5278386532310114, 0.5153815640526257, 0.2078546912353737, 0.3403577702580799, 0.8505970975381154, 0.06216561738646187, 0.21570007521204382, 0.5116942906997043, 0.683733345134051, 0.06482019809095207, 0.7029462134249016, 0.4362656489955069, 0.16966957313305442, 0.5337041259216133, 0.8711934780034154], &quot;xaxis&quot;: &quot;x&quot;, &quot;xbins&quot;: {&quot;end&quot;: 0.9883540997062141, &quot;size&quot;: 0.05, &quot;start&quot;: 0.002698208181101336}, &quot;yaxis&quot;: &quot;y&quot;, &quot;type&quot;: &quot;histogram&quot;}, {&quot;legendgroup&quot;: &quot;0&quot;, &quot;marker&quot;: {&quot;color&quot;: &quot;#ed0400&quot;, &quot;symbol&quot;: &quot;line-ns-open&quot;}, &quot;mode&quot;: &quot;markers&quot;, &quot;name&quot;: &quot;0&quot;, &quot;showlegend&quot;: false, &quot;x&quot;: [0.015822936691518352, 0.8904257558476614, 0.7801933885689897, 0.5494637505653269, 0.4074499415186511, 0.5237781456565948, 0.6452872654436316, 0.06808705252856018, 0.9094763884735395, 0.5644247052757022, 0.9290720156205966, 0.08276992826406437, 0.3090238716802237, 0.508771150298809, 0.07546443148015758, 0.16390777216817964, 0.7191574803064497, 0.6275622382596596, 0.1098869037019391, 0.6316359739726013, 0.7844375040244675, 0.678934407133886, 0.81105401814621, 0.42194110615462155, 0.9642869874670873, 0.7236065522831736, 0.7149201688730802, 0.20776555264496033, 0.7260053431898785, 0.5350940013831245, 0.275979536464672, 0.5904235581213413, 0.4326655114931144, 0.34743429722728814, 0.338617418921345, 0.20457673610811966, 0.08221981427611114, 0.984218592603517, 0.777506432738634, 0.9410682857633781, 0.13236147970329515, 0.8220414258827828, 0.38582706486883167, 0.7958938680471382, 0.3171906014922362, 0.5569163804149716, 0.9599774201814059, 0.3286177869020178, 0.24232787028349256, 0.3560640629138665, 0.28030854462613963, 0.5247484058333777, 0.2834050773732104, 0.023784920356150097, 0.18567278619730054, 0.8316182779038181, 0.8658827328958492, 0.8251514903124471, 0.12123620881786179, 0.20835403526616447, 0.029598946470610454, 0.4132746055094556, 0.5667825745938728], &quot;xaxis&quot;: &quot;x&quot;, &quot;y&quot;: [&quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;], &quot;yaxis&quot;: &quot;y2&quot;, &quot;type&quot;: &quot;scatter&quot;}, {&quot;legendgroup&quot;: &quot;other&quot;, &quot;marker&quot;: {&quot;color&quot;: &quot;#4d4d4d&quot;, &quot;symbol&quot;: &quot;line-ns-open&quot;}, &quot;mode&quot;: &quot;markers&quot;, &quot;name&quot;: &quot;other&quot;, &quot;showlegend&quot;: false, &quot;x&quot;: [0.3358218810072069, 0.1558481745892566, 0.2198765185917586, 0.3601218625361934, 0.1120706767795675, 0.8012088725670009, 0.3854891781236376, 0.49365295562435907, 0.00652227577636999, 0.31904268638634914, 0.9584773107097229, 0.23814865645145855, 0.15806086613162074, 0.2502518366357045, 0.6075204389193146, 0.760353107669808, 0.05153805895996222, 0.038861757816567644, 0.6425146582880592, 0.17748546107529883, 0.7751533969332727, 0.3185019756148403, 0.8722791624523671, 0.5064882545230265, 0.10608571796361443, 0.9807059609725882, 0.08030854014253719, 0.9480629052056606, 0.9810359382190061, 0.14432308900430224, 0.25947087151394466, 0.19769544116528215, 0.12116769484467016, 0.8805397210808226, 0.03233538289592086, 0.8150436840275689, 0.6428327415247873, 0.3986686865674016, 0.6041916487421821, 0.12342743625564889, 0.6675837605221874, 0.7826254882159862, 0.946084941001298, 0.8406249945423004, 0.7029603972928996, 0.07844337659710099, 0.25264306691999017, 0.18333491927396695, 0.4233112603534507, 0.3846629188539402, 0.8472012470105893, 0.1249274532722755, 0.8323611392993138, 0.8167483118081043, 0.3114982492278997, 0.20880881753993763, 0.002698208181101336, 0.9883540997062141, 0.09037036241388785, 0.1632066123888266, 0.08550538496678162, 0.5613548922575503, 0.5010009271576551, 0.23469889470038718, 0.6298120197622392, 0.33514523098029325, 0.35435273612921714, 0.18686168977920936, 0.971603600003395, 0.8701881840727741, 0.3975486715428658, 0.27755316942689034, 0.9612464207124278, 0.06184537839419857, 0.919032757845101, 0.9782381800854812, 0.47067343725550215, 0.2986727893991392, 0.5872302627756781, 0.8166346463191281, 0.1761703137044095, 0.6731351923004435, 0.21250963982736015, 0.13155190230829816, 0.3878251112221275, 0.7906853131454186, 0.6300491270750157, 0.07169836875052105, 0.9330139649888526, 0.8650864871746444, 0.6845010075143715, 0.2691005063613202, 0.9005226933323851, 0.5278386532310114, 0.5153815640526257, 0.2078546912353737, 0.3403577702580799, 0.8505970975381154, 0.06216561738646187, 0.21570007521204382, 0.5116942906997043, 0.683733345134051, 0.06482019809095207, 0.7029462134249016, 0.4362656489955069, 0.16966957313305442, 0.5337041259216133, 0.8711934780034154], &quot;xaxis&quot;: &quot;x&quot;, &quot;y&quot;: [&quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;], &quot;yaxis&quot;: &quot;y2&quot;, &quot;type&quot;: &quot;scatter&quot;}], &quot;layout&quot;: {&quot;barmode&quot;: &quot;overlay&quot;, &quot;hovermode&quot;: &quot;closest&quot;, &quot;legend&quot;: {&quot;traceorder&quot;: &quot;reversed&quot;, &quot;orientation&quot;: &quot;h&quot;, &quot;yanchor&quot;: &quot;bottom&quot;, &quot;y&quot;: 1.02, &quot;xanchor&quot;: &quot;right&quot;, &quot;x&quot;: 1}, &quot;xaxis&quot;: {&quot;anchor&quot;: &quot;y2&quot;, &quot;domain&quot;: [0.0, 1.0], &quot;zeroline&quot;: false, &quot;title&quot;: {&quot;text&quot;: &quot;Probability&quot;}}, &quot;yaxis&quot;: {&quot;anchor&quot;: &quot;free&quot;, &quot;domain&quot;: [0.35, 1], &quot;position&quot;: 0.0, &quot;title&quot;: {&quot;text&quot;: &quot;Share&quot;}}, &quot;yaxis2&quot;: {&quot;anchor&quot;: &quot;x&quot;, &quot;domain&quot;: [0, 0.25], &quot;dtick&quot;: 1, &quot;showticklabels&quot;: false}, &quot;template&quot;: {&quot;data&quot;: {&quot;histogram2dcontour&quot;: [{&quot;type&quot;: &quot;histogram2dcontour&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;choropleth&quot;: [{&quot;type&quot;: &quot;choropleth&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}], &quot;histogram2d&quot;: [{&quot;type&quot;: &quot;histogram2d&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;heatmap&quot;: [{&quot;type&quot;: &quot;heatmap&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;heatmapgl&quot;: [{&quot;type&quot;: &quot;heatmapgl&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;contourcarpet&quot;: [{&quot;type&quot;: &quot;contourcarpet&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}], &quot;contour&quot;: [{&quot;type&quot;: &quot;contour&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;surface&quot;: [{&quot;type&quot;: &quot;surface&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;mesh3d&quot;: [{&quot;type&quot;: &quot;mesh3d&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}], &quot;scatter&quot;: [{&quot;fillpattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}, &quot;type&quot;: &quot;scatter&quot;}], &quot;parcoords&quot;: [{&quot;type&quot;: &quot;parcoords&quot;, &quot;line&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatterpolargl&quot;: [{&quot;type&quot;: &quot;scatterpolargl&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;bar&quot;: [{&quot;error_x&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}, &quot;error_y&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}, &quot;marker&quot;: {&quot;line&quot;: {&quot;color&quot;: &quot;#E5ECF6&quot;, &quot;width&quot;: 0.5}, &quot;pattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}}, &quot;type&quot;: &quot;bar&quot;}], &quot;scattergeo&quot;: [{&quot;type&quot;: &quot;scattergeo&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatterpolar&quot;: [{&quot;type&quot;: &quot;scatterpolar&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;histogram&quot;: [{&quot;marker&quot;: {&quot;pattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}}, &quot;type&quot;: &quot;histogram&quot;}], &quot;scattergl&quot;: [{&quot;type&quot;: &quot;scattergl&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatter3d&quot;: [{&quot;type&quot;: &quot;scatter3d&quot;, &quot;line&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scattermapbox&quot;: [{&quot;type&quot;: &quot;scattermapbox&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatterternary&quot;: [{&quot;type&quot;: &quot;scatterternary&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scattercarpet&quot;: [{&quot;type&quot;: &quot;scattercarpet&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;carpet&quot;: [{&quot;aaxis&quot;: {&quot;endlinecolor&quot;: &quot;#2a3f5f&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;minorgridcolor&quot;: &quot;white&quot;, &quot;startlinecolor&quot;: &quot;#2a3f5f&quot;}, &quot;baxis&quot;: {&quot;endlinecolor&quot;: &quot;#2a3f5f&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;minorgridcolor&quot;: &quot;white&quot;, &quot;startlinecolor&quot;: &quot;#2a3f5f&quot;}, &quot;type&quot;: &quot;carpet&quot;}], &quot;table&quot;: [{&quot;cells&quot;: {&quot;fill&quot;: {&quot;color&quot;: &quot;#EBF0F8&quot;}, &quot;line&quot;: {&quot;color&quot;: &quot;white&quot;}}, &quot;header&quot;: {&quot;fill&quot;: {&quot;color&quot;: &quot;#C8D4E3&quot;}, &quot;line&quot;: {&quot;color&quot;: &quot;white&quot;}}, &quot;type&quot;: &quot;table&quot;}], &quot;barpolar&quot;: [{&quot;marker&quot;: {&quot;line&quot;: {&quot;color&quot;: &quot;#E5ECF6&quot;, &quot;width&quot;: 0.5}, &quot;pattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}}, &quot;type&quot;: &quot;barpolar&quot;}], &quot;pie&quot;: [{&quot;automargin&quot;: true, &quot;type&quot;: &quot;pie&quot;}]}, &quot;layout&quot;: {&quot;autotypenumbers&quot;: &quot;strict&quot;, &quot;colorway&quot;: [&quot;#636efa&quot;, &quot;#EF553B&quot;, &quot;#00cc96&quot;, &quot;#ab63fa&quot;, &quot;#FFA15A&quot;, &quot;#19d3f3&quot;, &quot;#FF6692&quot;, &quot;#B6E880&quot;, &quot;#FF97FF&quot;, &quot;#FECB52&quot;], &quot;font&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}, &quot;hovermode&quot;: &quot;closest&quot;, &quot;hoverlabel&quot;: {&quot;align&quot;: &quot;left&quot;}, &quot;paper_bgcolor&quot;: &quot;white&quot;, &quot;plot_bgcolor&quot;: &quot;#E5ECF6&quot;, &quot;polar&quot;: {&quot;bgcolor&quot;: &quot;#E5ECF6&quot;, &quot;angularaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}, &quot;radialaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}}, &quot;ternary&quot;: {&quot;bgcolor&quot;: &quot;#E5ECF6&quot;, &quot;aaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}, &quot;baxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}, &quot;caxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}}, &quot;coloraxis&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}, &quot;colorscale&quot;: {&quot;sequential&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]], &quot;sequentialminus&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]], &quot;diverging&quot;: [[0, &quot;#8e0152&quot;], [0.1, &quot;#c51b7d&quot;], [0.2, &quot;#de77ae&quot;], [0.3, &quot;#f1b6da&quot;], [0.4, &quot;#fde0ef&quot;], [0.5, &quot;#f7f7f7&quot;], [0.6, &quot;#e6f5d0&quot;], [0.7, &quot;#b8e186&quot;], [0.8, &quot;#7fbc41&quot;], [0.9, &quot;#4d9221&quot;], [1, &quot;#276419&quot;]]}, &quot;xaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;, &quot;title&quot;: {&quot;standoff&quot;: 15}, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;automargin&quot;: true, &quot;zerolinewidth&quot;: 2}, &quot;yaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;, &quot;title&quot;: {&quot;standoff&quot;: 15}, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;automargin&quot;: true, &quot;zerolinewidth&quot;: 2}, &quot;scene&quot;: {&quot;xaxis&quot;: {&quot;backgroundcolor&quot;: &quot;#E5ECF6&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;showbackground&quot;: true, &quot;ticks&quot;: &quot;&quot;, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;gridwidth&quot;: 2}, &quot;yaxis&quot;: {&quot;backgroundcolor&quot;: &quot;#E5ECF6&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;showbackground&quot;: true, &quot;ticks&quot;: &quot;&quot;, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;gridwidth&quot;: 2}, &quot;zaxis&quot;: {&quot;backgroundcolor&quot;: &quot;#E5ECF6&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;showbackground&quot;: true, &quot;ticks&quot;: &quot;&quot;, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;gridwidth&quot;: 2}}, &quot;shapedefaults&quot;: {&quot;line&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}}, &quot;annotationdefaults&quot;: {&quot;arrowcolor&quot;: &quot;#2a3f5f&quot;, &quot;arrowhead&quot;: 0, &quot;arrowwidth&quot;: 1}, &quot;geo&quot;: {&quot;bgcolor&quot;: &quot;white&quot;, &quot;landcolor&quot;: &quot;#E5ECF6&quot;, &quot;subunitcolor&quot;: &quot;white&quot;, &quot;showland&quot;: true, &quot;showlakes&quot;: true, &quot;lakecolor&quot;: &quot;white&quot;}, &quot;title&quot;: {&quot;x&quot;: 0.05}, &quot;mapbox&quot;: {&quot;style&quot;: &quot;light&quot;}}}}}}]}, &quot;insights&quot;: [], &quot;alerts&quot;: [], &quot;tabs&quot;: [], &quot;widgets&quot;: [], &quot;pageSize&quot;: 5}, {&quot;type&quot;: &quot;tabbed_graph&quot;, &quot;title&quot;: &quot;Reference: Probability Distribution&quot;, &quot;size&quot;: 1, &quot;id&quot;: &quot;390455d1-8877-4f72-994f-ba6a81d5c6c2&quot;, &quot;details&quot;: &quot;&quot;, &quot;alertsPosition&quot;: null, &quot;alertStats&quot;: null, &quot;params&quot;: {&quot;graphs&quot;: [{&quot;id&quot;: &quot;100a8ad7-8143-4dc0-93b6-b85ccbf6c0af&quot;, &quot;title&quot;: &quot;1&quot;, &quot;graph&quot;: {&quot;data&quot;: [{&quot;autobinx&quot;: false, &quot;histnorm&quot;: &quot;probability density&quot;, &quot;legendgroup&quot;: &quot;1&quot;, &quot;marker&quot;: {&quot;color&quot;: &quot;#ed0400&quot;}, &quot;name&quot;: &quot;1&quot;, &quot;opacity&quot;: 0.7, &quot;x&quot;: [0.6641781189927931, 0.9841770633084816, 0.10957424415233863, 0.8441518254107434, 0.7801234814082414, 0.4505362494346731, 0.5925500584813489, 0.6398781374638066, 0.8879293232204325, 0.1987911274329991, 0.47622185434340525, 0.9319129474714398, 0.99347772422363, 0.04152268929027714, 0.4355752947242978, 0.7618513435485414, 0.0709279843794034, 0.8419391338683793, 0.3924795610806854, 0.23964689233019199, 0.9611382421834324, 0.9172300717359356, 0.3574853417119408, 0.22484660306672732, 0.4935117454769735, 0.6909761283197763, 0.8939142820363856, 0.01929403902741178, 0.9196914598574628, 0.9245355685198424, 0.05193709479433939, 0.8556769109956978, 0.7405291284860553, 0.8023045588347179, 0.8788323051553298, 0.11946027891917743, 0.8360922278318204, 0.3571672584752127, 0.6013313134325984, 0.8765725637443511, 0.3724377617403404, 0.8901130962980609, 0.3324162394778126, 0.2173745117840138, 0.3683640260273987, 0.21556249597553245, 0.321065592866114, 0.18894598185378997, 0.7473569330800098, 0.5780588938453785, 0.816665080726033, 0.5766887396465493, 0.1527987529894107, 0.8750725467277245, 0.16763886070068623, 0.18325168819189575, 0.2739946568101215, 0.46490599861687554, 0.4095764418786587, 0.6525657027727119, 0.7911911824600624, 0.011645900293785871, 0.9096296375861121, 0.9144946150332184, 0.4386451077424497, 0.661382581078655, 0.7954232638918803, 0.9177801857238889, 0.015781407396483038, 0.7653011052996128, 0.05893171423662191, 0.3701879802377608, 0.6456472638707829, 0.8676385202967049, 0.028396399996605037, 0.17795857411721716, 0.1298118159272259, 0.6024513284571342, 0.6141729351311683, 0.7224468305731097, 0.20410613195286176, 0.9381546216058014, 0.08096724215489903, 0.6828093985077638, 0.5293265627444979, 0.4430836195850284, 0.41276973722432186, 0.04002257981859414, 0.18336535368087192, 0.6439359370861335, 0.7196914553738604, 0.7874903601726398, 0.20931468685458143, 0.3699508729249843, 0.7165949226267896, 0.9762150796438499, 0.06698603501114742, 0.8143272138026995, 0.16838172209618185, 0.13411726710415084, 0.17484850968755294, 0.8787637911821382, 0.4721613467689886, 0.4846184359473743, 0.9704010535293895, 0.6596422297419201, 0.9378343826135381, 0.31626665486594896, 0.2970537865750984, 0.5637343510044931, 0.1288065219965846, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN], &quot;xaxis&quot;: &quot;x&quot;, &quot;xbins&quot;: {&quot;end&quot;: 0.99347772422363, &quot;size&quot;: 0.05, &quot;start&quot;: 0.011645900293785871}, &quot;yaxis&quot;: &quot;y&quot;, &quot;type&quot;: &quot;histogram&quot;}, {&quot;autobinx&quot;: false, &quot;histnorm&quot;: &quot;probability density&quot;, &quot;legendgroup&quot;: &quot;other&quot;, &quot;marker&quot;: {&quot;color&quot;: &quot;#4d4d4d&quot;}, &quot;name&quot;: &quot;other&quot;, &quot;opacity&quot;: 0.7, &quot;x&quot;: [0.21980661143101032, 0.6145108218763624, 0.3547127345563684, 0.5063470443756409, 0.6809573136136509, 0.09052361152646049, 0.7497481633642955, 0.9484619410400378, 0.8225145389247012, 0.6814980243851597, 0.12772083754763286, 0.49122884970119096, 0.018964061780993857, 0.9676646171040791, 0.28084251969355034, 0.18495631597243112, 0.3958083512578179, 0.05391505899870197, 0.15937500545769956, 0.2970396027071004, 0.921556623402899, 0.0357130125329127, 0.2763934477168264, 0.6153370811460598, 0.2850798311269198, 0.7922344473550397, 0.724020463535328, 0.5673344885068856, 0.6885017507721003, 0.9973017918188987, 0.8367933876111734, 0.4989990728423449, 0.22249356726136604, 0.6648547690197067, 0.8131383102207906, 0.03875357928757217, 0.021761819914518754, 0.7013272106008608, 0.6713822130979822, 0.8238296862955905, 0.7576721297165074, 0.3268648076995565, 0.8684480976917018, 0.4752515941666223, 0.6121748887778725, 0.928301631249479, 0.13491351282535557, 0.3154989924856285, 0.7308994936386798, 0.0994773066676149, 0.7921453087646263, 0.7916459647338355, 0.1494029024618846, 0.7842999247879562, 0.4883057093002957, 0.9351798019090479, 0.5867253944905444, 0.8303304268669456, 0.4662958740783867, 0.4332174254061272, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN], &quot;xaxis&quot;: &quot;x&quot;, &quot;xbins&quot;: {&quot;end&quot;: 0.9973017918188987, &quot;size&quot;: 0.05, &quot;start&quot;: 0.018964061780993857}, &quot;yaxis&quot;: &quot;y&quot;, &quot;type&quot;: &quot;histogram&quot;}, {&quot;legendgroup&quot;: &quot;1&quot;, &quot;marker&quot;: {&quot;color&quot;: &quot;#ed0400&quot;, &quot;symbol&quot;: &quot;line-ns-open&quot;}, &quot;mode&quot;: &quot;markers&quot;, &quot;name&quot;: &quot;1&quot;, &quot;showlegend&quot;: false, &quot;x&quot;: [0.6641781189927931, 0.9841770633084816, 0.10957424415233863, 0.8441518254107434, 0.7801234814082414, 0.4505362494346731, 0.5925500584813489, 0.6398781374638066, 0.8879293232204325, 0.1987911274329991, 0.47622185434340525, 0.9319129474714398, 0.99347772422363, 0.04152268929027714, 0.4355752947242978, 0.7618513435485414, 0.0709279843794034, 0.8419391338683793, 0.3924795610806854, 0.23964689233019199, 0.9611382421834324, 0.9172300717359356, 0.3574853417119408, 0.22484660306672732, 0.4935117454769735, 0.6909761283197763, 0.8939142820363856, 0.01929403902741178, 0.9196914598574628, 0.9245355685198424, 0.05193709479433939, 0.8556769109956978, 0.7405291284860553, 0.8023045588347179, 0.8788323051553298, 0.11946027891917743, 0.8360922278318204, 0.3571672584752127, 0.6013313134325984, 0.8765725637443511, 0.3724377617403404, 0.8901130962980609, 0.3324162394778126, 0.2173745117840138, 0.3683640260273987, 0.21556249597553245, 0.321065592866114, 0.18894598185378997, 0.7473569330800098, 0.5780588938453785, 0.816665080726033, 0.5766887396465493, 0.1527987529894107, 0.8750725467277245, 0.16763886070068623, 0.18325168819189575, 0.2739946568101215, 0.46490599861687554, 0.4095764418786587, 0.6525657027727119, 0.7911911824600624, 0.011645900293785871, 0.9096296375861121, 0.9144946150332184, 0.4386451077424497, 0.661382581078655, 0.7954232638918803, 0.9177801857238889, 0.015781407396483038, 0.7653011052996128, 0.05893171423662191, 0.3701879802377608, 0.6456472638707829, 0.8676385202967049, 0.028396399996605037, 0.17795857411721716, 0.1298118159272259, 0.6024513284571342, 0.6141729351311683, 0.7224468305731097, 0.20410613195286176, 0.9381546216058014, 0.08096724215489903, 0.6828093985077638, 0.5293265627444979, 0.4430836195850284, 0.41276973722432186, 0.04002257981859414, 0.18336535368087192, 0.6439359370861335, 0.7196914553738604, 0.7874903601726398, 0.20931468685458143, 0.3699508729249843, 0.7165949226267896, 0.9762150796438499, 0.06698603501114742, 0.8143272138026995, 0.16838172209618185, 0.13411726710415084, 0.17484850968755294, 0.8787637911821382, 0.4721613467689886, 0.4846184359473743, 0.9704010535293895, 0.6596422297419201, 0.9378343826135381, 0.31626665486594896, 0.2970537865750984, 0.5637343510044931, 0.1288065219965846, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN], &quot;xaxis&quot;: &quot;x&quot;, &quot;y&quot;: [&quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;, &quot;1&quot;], &quot;yaxis&quot;: &quot;y2&quot;, &quot;type&quot;: &quot;scatter&quot;}, {&quot;legendgroup&quot;: &quot;other&quot;, &quot;marker&quot;: {&quot;color&quot;: &quot;#4d4d4d&quot;, &quot;symbol&quot;: &quot;line-ns-open&quot;}, &quot;mode&quot;: &quot;markers&quot;, &quot;name&quot;: &quot;other&quot;, &quot;showlegend&quot;: false, &quot;x&quot;: [0.21980661143101032, 0.6145108218763624, 0.3547127345563684, 0.5063470443756409, 0.6809573136136509, 0.09052361152646049, 0.7497481633642955, 0.9484619410400378, 0.8225145389247012, 0.6814980243851597, 0.12772083754763286, 0.49122884970119096, 0.018964061780993857, 0.9676646171040791, 0.28084251969355034, 0.18495631597243112, 0.3958083512578179, 0.05391505899870197, 0.15937500545769956, 0.2970396027071004, 0.921556623402899, 0.0357130125329127, 0.2763934477168264, 0.6153370811460598, 0.2850798311269198, 0.7922344473550397, 0.724020463535328, 0.5673344885068856, 0.6885017507721003, 0.9973017918188987, 0.8367933876111734, 0.4989990728423449, 0.22249356726136604, 0.6648547690197067, 0.8131383102207906, 0.03875357928757217, 0.021761819914518754, 0.7013272106008608, 0.6713822130979822, 0.8238296862955905, 0.7576721297165074, 0.3268648076995565, 0.8684480976917018, 0.4752515941666223, 0.6121748887778725, 0.928301631249479, 0.13491351282535557, 0.3154989924856285, 0.7308994936386798, 0.0994773066676149, 0.7921453087646263, 0.7916459647338355, 0.1494029024618846, 0.7842999247879562, 0.4883057093002957, 0.9351798019090479, 0.5867253944905444, 0.8303304268669456, 0.4662958740783867, 0.4332174254061272, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN], &quot;xaxis&quot;: &quot;x&quot;, &quot;y&quot;: [&quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;], &quot;yaxis&quot;: &quot;y2&quot;, &quot;type&quot;: &quot;scatter&quot;}], &quot;layout&quot;: {&quot;barmode&quot;: &quot;overlay&quot;, &quot;hovermode&quot;: &quot;closest&quot;, &quot;legend&quot;: {&quot;traceorder&quot;: &quot;reversed&quot;, &quot;orientation&quot;: &quot;h&quot;, &quot;yanchor&quot;: &quot;bottom&quot;, &quot;y&quot;: 1.02, &quot;xanchor&quot;: &quot;right&quot;, &quot;x&quot;: 1}, &quot;xaxis&quot;: {&quot;anchor&quot;: &quot;y2&quot;, &quot;domain&quot;: [0.0, 1.0], &quot;zeroline&quot;: false, &quot;title&quot;: {&quot;text&quot;: &quot;Probability&quot;}}, &quot;yaxis&quot;: {&quot;anchor&quot;: &quot;free&quot;, &quot;domain&quot;: [0.35, 1], &quot;position&quot;: 0.0, &quot;title&quot;: {&quot;text&quot;: &quot;Share&quot;}}, &quot;yaxis2&quot;: {&quot;anchor&quot;: &quot;x&quot;, &quot;domain&quot;: [0, 0.25], &quot;dtick&quot;: 1, &quot;showticklabels&quot;: false}, &quot;template&quot;: {&quot;data&quot;: {&quot;histogram2dcontour&quot;: [{&quot;type&quot;: &quot;histogram2dcontour&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;choropleth&quot;: [{&quot;type&quot;: &quot;choropleth&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}], &quot;histogram2d&quot;: [{&quot;type&quot;: &quot;histogram2d&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;heatmap&quot;: [{&quot;type&quot;: &quot;heatmap&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;heatmapgl&quot;: [{&quot;type&quot;: &quot;heatmapgl&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;contourcarpet&quot;: [{&quot;type&quot;: &quot;contourcarpet&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}], &quot;contour&quot;: [{&quot;type&quot;: &quot;contour&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;surface&quot;: [{&quot;type&quot;: &quot;surface&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;mesh3d&quot;: [{&quot;type&quot;: &quot;mesh3d&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}], &quot;scatter&quot;: [{&quot;fillpattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}, &quot;type&quot;: &quot;scatter&quot;}], &quot;parcoords&quot;: [{&quot;type&quot;: &quot;parcoords&quot;, &quot;line&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatterpolargl&quot;: [{&quot;type&quot;: &quot;scatterpolargl&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;bar&quot;: [{&quot;error_x&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}, &quot;error_y&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}, &quot;marker&quot;: {&quot;line&quot;: {&quot;color&quot;: &quot;#E5ECF6&quot;, &quot;width&quot;: 0.5}, &quot;pattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}}, &quot;type&quot;: &quot;bar&quot;}], &quot;scattergeo&quot;: [{&quot;type&quot;: &quot;scattergeo&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatterpolar&quot;: [{&quot;type&quot;: &quot;scatterpolar&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;histogram&quot;: [{&quot;marker&quot;: {&quot;pattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}}, &quot;type&quot;: &quot;histogram&quot;}], &quot;scattergl&quot;: [{&quot;type&quot;: &quot;scattergl&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatter3d&quot;: [{&quot;type&quot;: &quot;scatter3d&quot;, &quot;line&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scattermapbox&quot;: [{&quot;type&quot;: &quot;scattermapbox&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatterternary&quot;: [{&quot;type&quot;: &quot;scatterternary&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scattercarpet&quot;: [{&quot;type&quot;: &quot;scattercarpet&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;carpet&quot;: [{&quot;aaxis&quot;: {&quot;endlinecolor&quot;: &quot;#2a3f5f&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;minorgridcolor&quot;: &quot;white&quot;, &quot;startlinecolor&quot;: &quot;#2a3f5f&quot;}, &quot;baxis&quot;: {&quot;endlinecolor&quot;: &quot;#2a3f5f&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;minorgridcolor&quot;: &quot;white&quot;, &quot;startlinecolor&quot;: &quot;#2a3f5f&quot;}, &quot;type&quot;: &quot;carpet&quot;}], &quot;table&quot;: [{&quot;cells&quot;: {&quot;fill&quot;: {&quot;color&quot;: &quot;#EBF0F8&quot;}, &quot;line&quot;: {&quot;color&quot;: &quot;white&quot;}}, &quot;header&quot;: {&quot;fill&quot;: {&quot;color&quot;: &quot;#C8D4E3&quot;}, &quot;line&quot;: {&quot;color&quot;: &quot;white&quot;}}, &quot;type&quot;: &quot;table&quot;}], &quot;barpolar&quot;: [{&quot;marker&quot;: {&quot;line&quot;: {&quot;color&quot;: &quot;#E5ECF6&quot;, &quot;width&quot;: 0.5}, &quot;pattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}}, &quot;type&quot;: &quot;barpolar&quot;}], &quot;pie&quot;: [{&quot;automargin&quot;: true, &quot;type&quot;: &quot;pie&quot;}]}, &quot;layout&quot;: {&quot;autotypenumbers&quot;: &quot;strict&quot;, &quot;colorway&quot;: [&quot;#636efa&quot;, &quot;#EF553B&quot;, &quot;#00cc96&quot;, &quot;#ab63fa&quot;, &quot;#FFA15A&quot;, &quot;#19d3f3&quot;, &quot;#FF6692&quot;, &quot;#B6E880&quot;, &quot;#FF97FF&quot;, &quot;#FECB52&quot;], &quot;font&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}, &quot;hovermode&quot;: &quot;closest&quot;, &quot;hoverlabel&quot;: {&quot;align&quot;: &quot;left&quot;}, &quot;paper_bgcolor&quot;: &quot;white&quot;, &quot;plot_bgcolor&quot;: &quot;#E5ECF6&quot;, &quot;polar&quot;: {&quot;bgcolor&quot;: &quot;#E5ECF6&quot;, &quot;angularaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}, &quot;radialaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}}, &quot;ternary&quot;: {&quot;bgcolor&quot;: &quot;#E5ECF6&quot;, &quot;aaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}, &quot;baxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}, &quot;caxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}}, &quot;coloraxis&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}, &quot;colorscale&quot;: {&quot;sequential&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]], &quot;sequentialminus&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]], &quot;diverging&quot;: [[0, &quot;#8e0152&quot;], [0.1, &quot;#c51b7d&quot;], [0.2, &quot;#de77ae&quot;], [0.3, &quot;#f1b6da&quot;], [0.4, &quot;#fde0ef&quot;], [0.5, &quot;#f7f7f7&quot;], [0.6, &quot;#e6f5d0&quot;], [0.7, &quot;#b8e186&quot;], [0.8, &quot;#7fbc41&quot;], [0.9, &quot;#4d9221&quot;], [1, &quot;#276419&quot;]]}, &quot;xaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;, &quot;title&quot;: {&quot;standoff&quot;: 15}, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;automargin&quot;: true, &quot;zerolinewidth&quot;: 2}, &quot;yaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;, &quot;title&quot;: {&quot;standoff&quot;: 15}, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;automargin&quot;: true, &quot;zerolinewidth&quot;: 2}, &quot;scene&quot;: {&quot;xaxis&quot;: {&quot;backgroundcolor&quot;: &quot;#E5ECF6&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;showbackground&quot;: true, &quot;ticks&quot;: &quot;&quot;, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;gridwidth&quot;: 2}, &quot;yaxis&quot;: {&quot;backgroundcolor&quot;: &quot;#E5ECF6&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;showbackground&quot;: true, &quot;ticks&quot;: &quot;&quot;, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;gridwidth&quot;: 2}, &quot;zaxis&quot;: {&quot;backgroundcolor&quot;: &quot;#E5ECF6&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;showbackground&quot;: true, &quot;ticks&quot;: &quot;&quot;, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;gridwidth&quot;: 2}}, &quot;shapedefaults&quot;: {&quot;line&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}}, &quot;annotationdefaults&quot;: {&quot;arrowcolor&quot;: &quot;#2a3f5f&quot;, &quot;arrowhead&quot;: 0, &quot;arrowwidth&quot;: 1}, &quot;geo&quot;: {&quot;bgcolor&quot;: &quot;white&quot;, &quot;landcolor&quot;: &quot;#E5ECF6&quot;, &quot;subunitcolor&quot;: &quot;white&quot;, &quot;showland&quot;: true, &quot;showlakes&quot;: true, &quot;lakecolor&quot;: &quot;white&quot;}, &quot;title&quot;: {&quot;x&quot;: 0.05}, &quot;mapbox&quot;: {&quot;style&quot;: &quot;light&quot;}}}}}}, {&quot;id&quot;: &quot;62a42034-6174-4770-9bcb-fd6b0c59d124&quot;, &quot;title&quot;: &quot;0&quot;, &quot;graph&quot;: {&quot;data&quot;: [{&quot;autobinx&quot;: false, &quot;histnorm&quot;: &quot;probability density&quot;, &quot;legendgroup&quot;: &quot;0&quot;, &quot;marker&quot;: {&quot;color&quot;: &quot;#ed0400&quot;}, &quot;name&quot;: &quot;0&quot;, &quot;opacity&quot;: 0.7, &quot;x&quot;: [0.7801933885689897, 0.3854891781236376, 0.6452872654436316, 0.49365295562435907, 0.31904268638634914, 0.9094763884735395, 0.2502518366357045, 0.05153805895996222, 0.17748546107529883, 0.3185019756148403, 0.8722791624523671, 0.508771150298809, 0.9810359382190061, 0.03233538289592086, 0.7191574803064497, 0.8150436840275689, 0.6041916487421821, 0.946084941001298, 0.8406249945423004, 0.7029603972928996, 0.07844337659710099, 0.9642869874670873, 0.7236065522831736, 0.3846629188539402, 0.7149201688730802, 0.20776555264496033, 0.275979536464672, 0.4326655114931144, 0.3114982492278997, 0.002698208181101336, 0.1632066123888266, 0.5010009271576551, 0.777506432738634, 0.33514523098029325, 0.18686168977920936, 0.9612464207124278, 0.9782381800854812, 0.2986727893991392, 0.3286177869020178, 0.1761703137044095, 0.24232787028349256, 0.6731351923004435, 0.13155190230829816, 0.5247484058333777, 0.3878251112221275, 0.07169836875052105, 0.8650864871746444, 0.6845010075143715, 0.2691005063613202, 0.9005226933323851, 0.2078546912353737, 0.20835403526616447, 0.8505970975381154, 0.21570007521204382, 0.5116942906997043, 0.06482019809095207, 0.4132746055094556, 0.16966957313305442, 0.5337041259216133, 0.5667825745938728, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN], &quot;xaxis&quot;: &quot;x&quot;, &quot;xbins&quot;: {&quot;end&quot;: 0.9810359382190061, &quot;size&quot;: 0.05, &quot;start&quot;: 0.002698208181101336}, &quot;yaxis&quot;: &quot;y&quot;, &quot;type&quot;: &quot;histogram&quot;}, {&quot;autobinx&quot;: false, &quot;histnorm&quot;: &quot;probability density&quot;, &quot;legendgroup&quot;: &quot;other&quot;, &quot;marker&quot;: {&quot;color&quot;: &quot;#4d4d4d&quot;}, &quot;name&quot;: &quot;other&quot;, &quot;opacity&quot;: 0.7, &quot;x&quot;: [0.3358218810072069, 0.015822936691518352, 0.8904257558476614, 0.1558481745892566, 0.2198765185917586, 0.5494637505653269, 0.4074499415186511, 0.3601218625361934, 0.1120706767795675, 0.8012088725670009, 0.5237781456565948, 0.06808705252856018, 0.00652227577636999, 0.9584773107097229, 0.5644247052757022, 0.23814865645145855, 0.9290720156205966, 0.15806086613162074, 0.6075204389193146, 0.760353107669808, 0.038861757816567644, 0.08276992826406437, 0.6425146582880592, 0.7751533969332727, 0.5064882545230265, 0.3090238716802237, 0.10608571796361443, 0.9807059609725882, 0.08030854014253719, 0.07546443148015758, 0.9480629052056606, 0.14432308900430224, 0.25947087151394466, 0.19769544116528215, 0.12116769484467016, 0.8805397210808226, 0.16390777216817964, 0.6428327415247873, 0.3986686865674016, 0.12342743625564889, 0.6275622382596596, 0.1098869037019391, 0.6675837605221874, 0.7826254882159862, 0.6316359739726013, 0.7844375040244675, 0.678934407133886, 0.81105401814621, 0.25264306691999017, 0.42194110615462155, 0.18333491927396695, 0.4233112603534507, 0.8472012470105893, 0.1249274532722755, 0.8323611392993138, 0.8167483118081043, 0.7260053431898785, 0.5350940013831245, 0.5904235581213413, 0.34743429722728814, 0.20880881753993763, 0.9883540997062141, 0.09037036241388785, 0.08550538496678162, 0.5613548922575503, 0.338617418921345, 0.20457673610811966, 0.08221981427611114, 0.984218592603517, 0.23469889470038718, 0.9410682857633781, 0.6298120197622392, 0.35435273612921714, 0.13236147970329515, 0.971603600003395, 0.8220414258827828, 0.8701881840727741, 0.3975486715428658, 0.38582706486883167, 0.27755316942689034, 0.7958938680471382, 0.06184537839419857, 0.919032757845101, 0.3171906014922362, 0.47067343725550215, 0.5569163804149716, 0.5872302627756781, 0.9599774201814059, 0.8166346463191281, 0.3560640629138665, 0.28030854462613963, 0.21250963982736015, 0.7906853131454186, 0.6300491270750157, 0.2834050773732104, 0.023784920356150097, 0.9330139649888526, 0.18567278619730054, 0.8316182779038181, 0.8658827328958492, 0.8251514903124471, 0.12123620881786179, 0.5278386532310114, 0.5153815640526257, 0.029598946470610454, 0.3403577702580799, 0.06216561738646187, 0.683733345134051, 0.7029462134249016, 0.4362656489955069, 0.8711934780034154, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN], &quot;xaxis&quot;: &quot;x&quot;, &quot;xbins&quot;: {&quot;end&quot;: 0.9883540997062141, &quot;size&quot;: 0.05, &quot;start&quot;: 0.00652227577636999}, &quot;yaxis&quot;: &quot;y&quot;, &quot;type&quot;: &quot;histogram&quot;}, {&quot;legendgroup&quot;: &quot;0&quot;, &quot;marker&quot;: {&quot;color&quot;: &quot;#ed0400&quot;, &quot;symbol&quot;: &quot;line-ns-open&quot;}, &quot;mode&quot;: &quot;markers&quot;, &quot;name&quot;: &quot;0&quot;, &quot;showlegend&quot;: false, &quot;x&quot;: [0.7801933885689897, 0.3854891781236376, 0.6452872654436316, 0.49365295562435907, 0.31904268638634914, 0.9094763884735395, 0.2502518366357045, 0.05153805895996222, 0.17748546107529883, 0.3185019756148403, 0.8722791624523671, 0.508771150298809, 0.9810359382190061, 0.03233538289592086, 0.7191574803064497, 0.8150436840275689, 0.6041916487421821, 0.946084941001298, 0.8406249945423004, 0.7029603972928996, 0.07844337659710099, 0.9642869874670873, 0.7236065522831736, 0.3846629188539402, 0.7149201688730802, 0.20776555264496033, 0.275979536464672, 0.4326655114931144, 0.3114982492278997, 0.002698208181101336, 0.1632066123888266, 0.5010009271576551, 0.777506432738634, 0.33514523098029325, 0.18686168977920936, 0.9612464207124278, 0.9782381800854812, 0.2986727893991392, 0.3286177869020178, 0.1761703137044095, 0.24232787028349256, 0.6731351923004435, 0.13155190230829816, 0.5247484058333777, 0.3878251112221275, 0.07169836875052105, 0.8650864871746444, 0.6845010075143715, 0.2691005063613202, 0.9005226933323851, 0.2078546912353737, 0.20835403526616447, 0.8505970975381154, 0.21570007521204382, 0.5116942906997043, 0.06482019809095207, 0.4132746055094556, 0.16966957313305442, 0.5337041259216133, 0.5667825745938728, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN], &quot;xaxis&quot;: &quot;x&quot;, &quot;y&quot;: [&quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;, &quot;0&quot;], &quot;yaxis&quot;: &quot;y2&quot;, &quot;type&quot;: &quot;scatter&quot;}, {&quot;legendgroup&quot;: &quot;other&quot;, &quot;marker&quot;: {&quot;color&quot;: &quot;#4d4d4d&quot;, &quot;symbol&quot;: &quot;line-ns-open&quot;}, &quot;mode&quot;: &quot;markers&quot;, &quot;name&quot;: &quot;other&quot;, &quot;showlegend&quot;: false, &quot;x&quot;: [0.3358218810072069, 0.015822936691518352, 0.8904257558476614, 0.1558481745892566, 0.2198765185917586, 0.5494637505653269, 0.4074499415186511, 0.3601218625361934, 0.1120706767795675, 0.8012088725670009, 0.5237781456565948, 0.06808705252856018, 0.00652227577636999, 0.9584773107097229, 0.5644247052757022, 0.23814865645145855, 0.9290720156205966, 0.15806086613162074, 0.6075204389193146, 0.760353107669808, 0.038861757816567644, 0.08276992826406437, 0.6425146582880592, 0.7751533969332727, 0.5064882545230265, 0.3090238716802237, 0.10608571796361443, 0.9807059609725882, 0.08030854014253719, 0.07546443148015758, 0.9480629052056606, 0.14432308900430224, 0.25947087151394466, 0.19769544116528215, 0.12116769484467016, 0.8805397210808226, 0.16390777216817964, 0.6428327415247873, 0.3986686865674016, 0.12342743625564889, 0.6275622382596596, 0.1098869037019391, 0.6675837605221874, 0.7826254882159862, 0.6316359739726013, 0.7844375040244675, 0.678934407133886, 0.81105401814621, 0.25264306691999017, 0.42194110615462155, 0.18333491927396695, 0.4233112603534507, 0.8472012470105893, 0.1249274532722755, 0.8323611392993138, 0.8167483118081043, 0.7260053431898785, 0.5350940013831245, 0.5904235581213413, 0.34743429722728814, 0.20880881753993763, 0.9883540997062141, 0.09037036241388785, 0.08550538496678162, 0.5613548922575503, 0.338617418921345, 0.20457673610811966, 0.08221981427611114, 0.984218592603517, 0.23469889470038718, 0.9410682857633781, 0.6298120197622392, 0.35435273612921714, 0.13236147970329515, 0.971603600003395, 0.8220414258827828, 0.8701881840727741, 0.3975486715428658, 0.38582706486883167, 0.27755316942689034, 0.7958938680471382, 0.06184537839419857, 0.919032757845101, 0.3171906014922362, 0.47067343725550215, 0.5569163804149716, 0.5872302627756781, 0.9599774201814059, 0.8166346463191281, 0.3560640629138665, 0.28030854462613963, 0.21250963982736015, 0.7906853131454186, 0.6300491270750157, 0.2834050773732104, 0.023784920356150097, 0.9330139649888526, 0.18567278619730054, 0.8316182779038181, 0.8658827328958492, 0.8251514903124471, 0.12123620881786179, 0.5278386532310114, 0.5153815640526257, 0.029598946470610454, 0.3403577702580799, 0.06216561738646187, 0.683733345134051, 0.7029462134249016, 0.4362656489955069, 0.8711934780034154, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN], &quot;xaxis&quot;: &quot;x&quot;, &quot;y&quot;: [&quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;, &quot;other&quot;], &quot;yaxis&quot;: &quot;y2&quot;, &quot;type&quot;: &quot;scatter&quot;}], &quot;layout&quot;: {&quot;barmode&quot;: &quot;overlay&quot;, &quot;hovermode&quot;: &quot;closest&quot;, &quot;legend&quot;: {&quot;traceorder&quot;: &quot;reversed&quot;, &quot;orientation&quot;: &quot;h&quot;, &quot;yanchor&quot;: &quot;bottom&quot;, &quot;y&quot;: 1.02, &quot;xanchor&quot;: &quot;right&quot;, &quot;x&quot;: 1}, &quot;xaxis&quot;: {&quot;anchor&quot;: &quot;y2&quot;, &quot;domain&quot;: [0.0, 1.0], &quot;zeroline&quot;: false, &quot;title&quot;: {&quot;text&quot;: &quot;Probability&quot;}}, &quot;yaxis&quot;: {&quot;anchor&quot;: &quot;free&quot;, &quot;domain&quot;: [0.35, 1], &quot;position&quot;: 0.0, &quot;title&quot;: {&quot;text&quot;: &quot;Share&quot;}}, &quot;yaxis2&quot;: {&quot;anchor&quot;: &quot;x&quot;, &quot;domain&quot;: [0, 0.25], &quot;dtick&quot;: 1, &quot;showticklabels&quot;: false}, &quot;template&quot;: {&quot;data&quot;: {&quot;histogram2dcontour&quot;: [{&quot;type&quot;: &quot;histogram2dcontour&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;choropleth&quot;: [{&quot;type&quot;: &quot;choropleth&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}], &quot;histogram2d&quot;: [{&quot;type&quot;: &quot;histogram2d&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;heatmap&quot;: [{&quot;type&quot;: &quot;heatmap&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;heatmapgl&quot;: [{&quot;type&quot;: &quot;heatmapgl&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;contourcarpet&quot;: [{&quot;type&quot;: &quot;contourcarpet&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}], &quot;contour&quot;: [{&quot;type&quot;: &quot;contour&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;surface&quot;: [{&quot;type&quot;: &quot;surface&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;mesh3d&quot;: [{&quot;type&quot;: &quot;mesh3d&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}], &quot;scatter&quot;: [{&quot;fillpattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}, &quot;type&quot;: &quot;scatter&quot;}], &quot;parcoords&quot;: [{&quot;type&quot;: &quot;parcoords&quot;, &quot;line&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatterpolargl&quot;: [{&quot;type&quot;: &quot;scatterpolargl&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;bar&quot;: [{&quot;error_x&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}, &quot;error_y&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}, &quot;marker&quot;: {&quot;line&quot;: {&quot;color&quot;: &quot;#E5ECF6&quot;, &quot;width&quot;: 0.5}, &quot;pattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}}, &quot;type&quot;: &quot;bar&quot;}], &quot;scattergeo&quot;: [{&quot;type&quot;: &quot;scattergeo&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatterpolar&quot;: [{&quot;type&quot;: &quot;scatterpolar&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;histogram&quot;: [{&quot;marker&quot;: {&quot;pattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}}, &quot;type&quot;: &quot;histogram&quot;}], &quot;scattergl&quot;: [{&quot;type&quot;: &quot;scattergl&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatter3d&quot;: [{&quot;type&quot;: &quot;scatter3d&quot;, &quot;line&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scattermapbox&quot;: [{&quot;type&quot;: &quot;scattermapbox&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatterternary&quot;: [{&quot;type&quot;: &quot;scatterternary&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scattercarpet&quot;: [{&quot;type&quot;: &quot;scattercarpet&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;carpet&quot;: [{&quot;aaxis&quot;: {&quot;endlinecolor&quot;: &quot;#2a3f5f&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;minorgridcolor&quot;: &quot;white&quot;, &quot;startlinecolor&quot;: &quot;#2a3f5f&quot;}, &quot;baxis&quot;: {&quot;endlinecolor&quot;: &quot;#2a3f5f&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;minorgridcolor&quot;: &quot;white&quot;, &quot;startlinecolor&quot;: &quot;#2a3f5f&quot;}, &quot;type&quot;: &quot;carpet&quot;}], &quot;table&quot;: [{&quot;cells&quot;: {&quot;fill&quot;: {&quot;color&quot;: &quot;#EBF0F8&quot;}, &quot;line&quot;: {&quot;color&quot;: &quot;white&quot;}}, &quot;header&quot;: {&quot;fill&quot;: {&quot;color&quot;: &quot;#C8D4E3&quot;}, &quot;line&quot;: {&quot;color&quot;: &quot;white&quot;}}, &quot;type&quot;: &quot;table&quot;}], &quot;barpolar&quot;: [{&quot;marker&quot;: {&quot;line&quot;: {&quot;color&quot;: &quot;#E5ECF6&quot;, &quot;width&quot;: 0.5}, &quot;pattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}}, &quot;type&quot;: &quot;barpolar&quot;}], &quot;pie&quot;: [{&quot;automargin&quot;: true, &quot;type&quot;: &quot;pie&quot;}]}, &quot;layout&quot;: {&quot;autotypenumbers&quot;: &quot;strict&quot;, &quot;colorway&quot;: [&quot;#636efa&quot;, &quot;#EF553B&quot;, &quot;#00cc96&quot;, &quot;#ab63fa&quot;, &quot;#FFA15A&quot;, &quot;#19d3f3&quot;, &quot;#FF6692&quot;, &quot;#B6E880&quot;, &quot;#FF97FF&quot;, &quot;#FECB52&quot;], &quot;font&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}, &quot;hovermode&quot;: &quot;closest&quot;, &quot;hoverlabel&quot;: {&quot;align&quot;: &quot;left&quot;}, &quot;paper_bgcolor&quot;: &quot;white&quot;, &quot;plot_bgcolor&quot;: &quot;#E5ECF6&quot;, &quot;polar&quot;: {&quot;bgcolor&quot;: &quot;#E5ECF6&quot;, &quot;angularaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}, &quot;radialaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}}, &quot;ternary&quot;: {&quot;bgcolor&quot;: &quot;#E5ECF6&quot;, &quot;aaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}, &quot;baxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}, &quot;caxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}}, &quot;coloraxis&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}, &quot;colorscale&quot;: {&quot;sequential&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]], &quot;sequentialminus&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]], &quot;diverging&quot;: [[0, &quot;#8e0152&quot;], [0.1, &quot;#c51b7d&quot;], [0.2, &quot;#de77ae&quot;], [0.3, &quot;#f1b6da&quot;], [0.4, &quot;#fde0ef&quot;], [0.5, &quot;#f7f7f7&quot;], [0.6, &quot;#e6f5d0&quot;], [0.7, &quot;#b8e186&quot;], [0.8, &quot;#7fbc41&quot;], [0.9, &quot;#4d9221&quot;], [1, &quot;#276419&quot;]]}, &quot;xaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;, &quot;title&quot;: {&quot;standoff&quot;: 15}, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;automargin&quot;: true, &quot;zerolinewidth&quot;: 2}, &quot;yaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;, &quot;title&quot;: {&quot;standoff&quot;: 15}, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;automargin&quot;: true, &quot;zerolinewidth&quot;: 2}, &quot;scene&quot;: {&quot;xaxis&quot;: {&quot;backgroundcolor&quot;: &quot;#E5ECF6&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;showbackground&quot;: true, &quot;ticks&quot;: &quot;&quot;, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;gridwidth&quot;: 2}, &quot;yaxis&quot;: {&quot;backgroundcolor&quot;: &quot;#E5ECF6&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;showbackground&quot;: true, &quot;ticks&quot;: &quot;&quot;, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;gridwidth&quot;: 2}, &quot;zaxis&quot;: {&quot;backgroundcolor&quot;: &quot;#E5ECF6&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;showbackground&quot;: true, &quot;ticks&quot;: &quot;&quot;, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;gridwidth&quot;: 2}}, &quot;shapedefaults&quot;: {&quot;line&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}}, &quot;annotationdefaults&quot;: {&quot;arrowcolor&quot;: &quot;#2a3f5f&quot;, &quot;arrowhead&quot;: 0, &quot;arrowwidth&quot;: 1}, &quot;geo&quot;: {&quot;bgcolor&quot;: &quot;white&quot;, &quot;landcolor&quot;: &quot;#E5ECF6&quot;, &quot;subunitcolor&quot;: &quot;white&quot;, &quot;showland&quot;: true, &quot;showlakes&quot;: true, &quot;lakecolor&quot;: &quot;white&quot;}, &quot;title&quot;: {&quot;x&quot;: 0.05}, &quot;mapbox&quot;: {&quot;style&quot;: &quot;light&quot;}}}}}}]}, &quot;insights&quot;: [], &quot;alerts&quot;: [], &quot;tabs&quot;: [], &quot;widgets&quot;: [], &quot;pageSize&quot;: 5}, {&quot;type&quot;: &quot;counter&quot;, &quot;title&quot;: &quot;&quot;, &quot;size&quot;: 2, &quot;id&quot;: &quot;b78af3e5-0478-4a1b-868a-e59266069af1&quot;, &quot;details&quot;: &quot;&quot;, &quot;alertsPosition&quot;: null, &quot;alertStats&quot;: null, &quot;params&quot;: {&quot;counters&quot;: [{&quot;value&quot;: &quot;&quot;, &quot;label&quot;: &quot;ROC Curve&quot;}]}, &quot;insights&quot;: [], &quot;alerts&quot;: [], &quot;tabs&quot;: [], &quot;widgets&quot;: [], &quot;pageSize&quot;: 5}, {&quot;type&quot;: &quot;big_graph&quot;, &quot;title&quot;: &quot;&quot;, &quot;size&quot;: 2, &quot;id&quot;: &quot;e14e4175-fc28-49a1-8f0a-0ff907566e89&quot;, &quot;details&quot;: &quot;&quot;, &quot;alertsPosition&quot;: null, &quot;alertStats&quot;: null, &quot;params&quot;: {&quot;data&quot;: [{&quot;legendgroup&quot;: &quot;ROC&quot;, &quot;marker&quot;: {&quot;color&quot;: &quot;#ed0400&quot;, &quot;size&quot;: 6}, &quot;mode&quot;: &quot;lines&quot;, &quot;name&quot;: &quot;ROC&quot;, &quot;x&quot;: [0.0, 0.0, 0.0, 0.047619047619047616, 0.047619047619047616, 0.06349206349206349, 0.06349206349206349, 0.07936507936507936, 0.07936507936507936, 0.1111111111111111, 0.1111111111111111, 0.12698412698412698, 0.12698412698412698, 0.14285714285714285, 0.14285714285714285, 0.15873015873015872, 0.15873015873015872, 0.1746031746031746, 0.1746031746031746, 0.19047619047619047, 0.19047619047619047, 0.2222222222222222, 0.2222222222222222, 0.23809523809523808, 0.23809523809523808, 0.25396825396825395, 0.25396825396825395, 0.2698412698412698, 0.2698412698412698, 0.30158730158730157, 0.30158730158730157, 0.31746031746031744, 0.31746031746031744, 0.3333333333333333, 0.3333333333333333, 0.3492063492063492, 0.3492063492063492, 0.36507936507936506, 0.36507936507936506, 0.38095238095238093, 0.38095238095238093, 0.3968253968253968, 0.3968253968253968, 0.4126984126984127, 0.4126984126984127, 0.4603174603174603, 0.4603174603174603, 0.47619047619047616, 0.47619047619047616, 0.49206349206349204, 0.49206349206349204, 0.5238095238095238, 0.5238095238095238, 0.5714285714285714, 0.5714285714285714, 0.6031746031746031, 0.6031746031746031, 0.6190476190476191, 0.6190476190476191, 0.6349206349206349, 0.6349206349206349, 0.6507936507936508, 0.6507936507936508, 0.6666666666666666, 0.6666666666666666, 0.6825396825396826, 0.6825396825396826, 0.746031746031746, 0.746031746031746, 0.7777777777777778, 0.7777777777777778, 0.7936507936507936, 0.7936507936507936, 0.8095238095238095, 0.8095238095238095, 0.8253968253968254, 0.8253968253968254, 0.873015873015873, 0.873015873015873, 0.8888888888888888, 0.8888888888888888, 0.9047619047619048, 0.9047619047619048, 0.9206349206349206, 0.9206349206349206, 0.9365079365079365, 0.9365079365079365, 0.9523809523809523, 0.9523809523809523, 0.9682539682539683, 0.9682539682539683, 0.9841269841269841, 0.9841269841269841, 1.0, 1.0], &quot;y&quot;: [0.0, 0.009259259259259259, 0.018518518518518517, 0.018518518518518517, 0.07407407407407407, 0.07407407407407407, 0.08333333333333333, 0.08333333333333333, 0.10185185185185185, 0.10185185185185185, 0.12962962962962962, 0.12962962962962962, 0.14814814814814814, 0.14814814814814814, 0.17592592592592593, 0.17592592592592593, 0.21296296296296297, 0.21296296296296297, 0.25, 0.25, 0.26851851851851855, 0.26851851851851855, 0.2777777777777778, 0.2777777777777778, 0.3333333333333333, 0.3333333333333333, 0.37037037037037035, 0.37037037037037035, 0.37962962962962965, 0.37962962962962965, 0.3888888888888889, 0.3888888888888889, 0.39814814814814814, 0.39814814814814814, 0.4166666666666667, 0.4166666666666667, 0.4351851851851852, 0.4351851851851852, 0.4444444444444444, 0.4444444444444444, 0.4537037037037037, 0.4537037037037037, 0.48148148148148145, 0.48148148148148145, 0.5092592592592593, 0.5092592592592593, 0.5185185185185185, 0.5185185185185185, 0.5648148148148148, 0.5648148148148148, 0.5833333333333334, 0.5833333333333334, 0.6018518518518519, 0.6018518518518519, 0.6111111111111112, 0.6111111111111112, 0.6203703703703703, 0.6203703703703703, 0.6388888888888888, 0.6388888888888888, 0.6574074074074074, 0.6574074074074074, 0.6759259259259259, 0.6759259259259259, 0.6944444444444444, 0.6944444444444444, 0.7314814814814815, 0.7314814814814815, 0.75, 0.75, 0.7592592592592593, 0.7592592592592593, 0.7685185185185185, 0.7685185185185185, 0.7777777777777778, 0.7777777777777778, 0.8055555555555556, 0.8055555555555556, 0.8518518518518519, 0.8518518518518519, 0.8888888888888888, 0.8888888888888888, 0.8981481481481481, 0.8981481481481481, 0.9074074074074074, 0.9074074074074074, 0.9166666666666666, 0.9166666666666666, 0.9444444444444444, 0.9444444444444444, 0.9537037037037037, 0.9537037037037037, 0.9907407407407407, 0.9907407407407407, 1.0], &quot;type&quot;: &quot;scatter&quot;, &quot;xaxis&quot;: &quot;x&quot;, &quot;yaxis&quot;: &quot;y&quot;}, {&quot;legendgroup&quot;: &quot;ROC&quot;, &quot;marker&quot;: {&quot;color&quot;: &quot;#ed0400&quot;, &quot;size&quot;: 6}, &quot;mode&quot;: &quot;lines&quot;, &quot;name&quot;: &quot;ROC&quot;, &quot;showlegend&quot;: false, &quot;x&quot;: [0.0, 0.0, 0.006711409395973154, 0.006711409395973154, 0.013422818791946308, 0.013422818791946308, 0.020134228187919462, 0.020134228187919462, 0.026845637583892617, 0.026845637583892617, 0.03355704697986577, 0.03355704697986577, 0.040268456375838924, 0.040268456375838924, 0.04697986577181208, 0.04697986577181208, 0.053691275167785234, 0.053691275167785234, 0.06040268456375839, 0.06040268456375839, 0.08053691275167785, 0.08053691275167785, 0.087248322147651, 0.087248322147651, 0.09395973154362416, 0.09395973154362416, 0.10067114093959731, 0.10067114093959731, 0.11409395973154363, 0.11409395973154363, 0.12080536912751678, 0.12080536912751678, 0.14093959731543623, 0.14093959731543623, 0.1476510067114094, 0.1476510067114094, 0.174496644295302, 0.174496644295302, 0.18120805369127516, 0.18120805369127516, 0.19463087248322147, 0.19463087248322147, 0.20134228187919462, 0.20134228187919462, 0.2080536912751678, 0.2080536912751678, 0.21476510067114093, 0.21476510067114093, 0.2214765100671141, 0.2214765100671141, 0.22818791946308725, 0.22818791946308725, 0.2348993288590604, 0.2348993288590604, 0.24161073825503357, 0.24161073825503357, 0.2483221476510067, 0.2483221476510067, 0.2550335570469799, 0.2550335570469799, 0.2684563758389262, 0.2684563758389262, 0.28859060402684567, 0.28859060402684567, 0.30201342281879195, 0.30201342281879195, 0.3087248322147651, 0.3087248322147651, 0.3221476510067114, 0.3221476510067114, 0.3288590604026846, 0.3288590604026846, 0.33557046979865773, 0.33557046979865773, 0.3422818791946309, 0.3422818791946309, 0.3624161073825503, 0.3624161073825503, 0.3691275167785235, 0.3691275167785235, 0.37583892617449666, 0.37583892617449666, 0.3825503355704698, 0.3825503355704698, 0.38926174496644295, 0.38926174496644295, 0.3959731543624161, 0.3959731543624161, 0.40268456375838924, 0.40268456375838924, 0.4161073825503356, 0.4161073825503356, 0.436241610738255, 0.436241610738255, 0.4429530201342282, 0.4429530201342282, 0.4563758389261745, 0.4563758389261745, 0.4697986577181208, 0.4697986577181208, 0.47651006711409394, 0.47651006711409394, 0.48322147651006714, 0.48322147651006714, 0.4899328859060403, 0.4899328859060403, 0.5167785234899329, 0.5167785234899329, 0.5234899328859061, 0.5234899328859061, 0.5302013422818792, 0.5302013422818792, 0.5570469798657718, 0.5570469798657718, 0.5637583892617449, 0.5637583892617449, 0.5771812080536913, 0.5771812080536913, 0.5973154362416108, 0.5973154362416108, 0.6040268456375839, 0.6040268456375839, 0.6174496644295302, 0.6174496644295302, 0.6241610738255033, 0.6241610738255033, 0.6308724832214765, 0.6308724832214765, 0.6442953020134228, 0.6442953020134228, 0.6510067114093959, 0.6510067114093959, 0.6711409395973155, 0.6711409395973155, 0.6778523489932886, 0.6778523489932886, 0.6845637583892618, 0.6845637583892618, 0.6912751677852349, 0.6912751677852349, 0.697986577181208, 0.697986577181208, 0.7114093959731543, 0.7114093959731543, 0.738255033557047, 0.738255033557047, 0.7583892617449665, 0.7583892617449665, 0.785234899328859, 0.785234899328859, 0.7919463087248322, 0.7919463087248322, 0.7986577181208053, 0.7986577181208053, 0.8187919463087249, 0.8187919463087249, 0.825503355704698, 0.825503355704698, 0.8322147651006712, 0.8322147651006712, 0.8389261744966443, 0.8389261744966443, 0.8456375838926175, 0.8456375838926175, 0.8523489932885906, 0.8523489932885906, 0.8657718120805369, 0.8657718120805369, 0.8791946308724832, 0.8791946308724832, 0.8859060402684564, 0.8859060402684564, 0.9194630872483222, 0.9194630872483222, 0.9463087248322147, 0.9463087248322147, 0.9530201342281879, 0.9530201342281879, 0.9731543624161074, 0.9731543624161074, 0.9932885906040269, 0.9932885906040269, 1.0, 1.0], &quot;y&quot;: [0.0, 0.004016064257028112, 0.004016064257028112, 0.0321285140562249, 0.0321285140562249, 0.05622489959839357, 0.05622489959839357, 0.07228915662650602, 0.07228915662650602, 0.08433734939759036, 0.08433734939759036, 0.09236947791164658, 0.09236947791164658, 0.10040160642570281, 0.10040160642570281, 0.10843373493975904, 0.10843373493975904, 0.11244979919678715, 0.11244979919678715, 0.12048192771084337, 0.12048192771084337, 0.12449799196787148, 0.12449799196787148, 0.13253012048192772, 0.13253012048192772, 0.13654618473895583, 0.13654618473895583, 0.14859437751004015, 0.14859437751004015, 0.15261044176706828, 0.15261044176706828, 0.1566265060240964, 0.1566265060240964, 0.1606425702811245, 0.1606425702811245, 0.1686746987951807, 0.1686746987951807, 0.17269076305220885, 0.17269076305220885, 0.1927710843373494, 0.1927710843373494, 0.19678714859437751, 0.19678714859437751, 0.2289156626506024, 0.2289156626506024, 0.23694779116465864, 0.23694779116465864, 0.24497991967871485, 0.24497991967871485, 0.26104417670682734, 0.26104417670682734, 0.28112449799196787, 0.28112449799196787, 0.2931726907630522, 0.2931726907630522, 0.2971887550200803, 0.2971887550200803, 0.30120481927710846, 0.30120481927710846, 0.3092369477911647, 0.3092369477911647, 0.3333333333333333, 0.3333333333333333, 0.3453815261044177, 0.3453815261044177, 0.357429718875502, 0.357429718875502, 0.36947791164658633, 0.36947791164658633, 0.37751004016064255, 0.37751004016064255, 0.39357429718875503, 0.39357429718875503, 0.41365461847389556, 0.41365461847389556, 0.42570281124497994, 0.42570281124497994, 0.42971887550200805, 0.42971887550200805, 0.4497991967871486, 0.4497991967871486, 0.4538152610441767, 0.4538152610441767, 0.4578313253012048, 0.4578313253012048, 0.46586345381526106, 0.46586345381526106, 0.4779116465863454, 0.4779116465863454, 0.4819277108433735, 0.4819277108433735, 0.4859437751004016, 0.4859437751004016, 0.4899598393574297, 0.4899598393574297, 0.4939759036144578, 0.4939759036144578, 0.4979919678714859, 0.4979919678714859, 0.5140562248995983, 0.5140562248995983, 0.5341365461847389, 0.5341365461847389, 0.5381526104417671, 0.5381526104417671, 0.5421686746987951, 0.5421686746987951, 0.5461847389558233, 0.5461847389558233, 0.5542168674698795, 0.5542168674698795, 0.570281124497992, 0.570281124497992, 0.5742971887550201, 0.5742971887550201, 0.5783132530120482, 0.5783132530120482, 0.5943775100401606, 0.5943775100401606, 0.606425702811245, 0.606425702811245, 0.6265060240963856, 0.6265060240963856, 0.6305220883534136, 0.6305220883534136, 0.6345381526104418, 0.6345381526104418, 0.642570281124498, 0.642570281124498, 0.6465863453815262, 0.6465863453815262, 0.6546184738955824, 0.6546184738955824, 0.6706827309236948, 0.6706827309236948, 0.6827309236947792, 0.6827309236947792, 0.6867469879518072, 0.6867469879518072, 0.7028112449799196, 0.7028112449799196, 0.7068273092369478, 0.7068273092369478, 0.7469879518072289, 0.7469879518072289, 0.7590361445783133, 0.7590361445783133, 0.7630522088353414, 0.7630522088353414, 0.7831325301204819, 0.7831325301204819, 0.7991967871485943, 0.7991967871485943, 0.8112449799196787, 0.8112449799196787, 0.8313253012048193, 0.8313253012048193, 0.8514056224899599, 0.8514056224899599, 0.8594377510040161, 0.8594377510040161, 0.8674698795180723, 0.8674698795180723, 0.8755020080321285, 0.8755020080321285, 0.891566265060241, 0.891566265060241, 0.8955823293172691, 0.8955823293172691, 0.9076305220883534, 0.9076305220883534, 0.9116465863453815, 0.9116465863453815, 0.9156626506024096, 0.9156626506024096, 0.9196787148594378, 0.9196787148594378, 0.9236947791164659, 0.9236947791164659, 0.9357429718875502, 0.9357429718875502, 0.9919678714859438, 0.9919678714859438, 1.0], &quot;type&quot;: &quot;scatter&quot;, &quot;xaxis&quot;: &quot;x2&quot;, &quot;yaxis&quot;: &quot;y2&quot;}], &quot;layout&quot;: {&quot;template&quot;: {&quot;data&quot;: {&quot;histogram2dcontour&quot;: [{&quot;type&quot;: &quot;histogram2dcontour&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;choropleth&quot;: [{&quot;type&quot;: &quot;choropleth&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}], &quot;histogram2d&quot;: [{&quot;type&quot;: &quot;histogram2d&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;heatmap&quot;: [{&quot;type&quot;: &quot;heatmap&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;heatmapgl&quot;: [{&quot;type&quot;: &quot;heatmapgl&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;contourcarpet&quot;: [{&quot;type&quot;: &quot;contourcarpet&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}], &quot;contour&quot;: [{&quot;type&quot;: &quot;contour&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;surface&quot;: [{&quot;type&quot;: &quot;surface&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;mesh3d&quot;: [{&quot;type&quot;: &quot;mesh3d&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}], &quot;scatter&quot;: [{&quot;fillpattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}, &quot;type&quot;: &quot;scatter&quot;}], &quot;parcoords&quot;: [{&quot;type&quot;: &quot;parcoords&quot;, &quot;line&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatterpolargl&quot;: [{&quot;type&quot;: &quot;scatterpolargl&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;bar&quot;: [{&quot;error_x&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}, &quot;error_y&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}, &quot;marker&quot;: {&quot;line&quot;: {&quot;color&quot;: &quot;#E5ECF6&quot;, &quot;width&quot;: 0.5}, &quot;pattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}}, &quot;type&quot;: &quot;bar&quot;}], &quot;scattergeo&quot;: [{&quot;type&quot;: &quot;scattergeo&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatterpolar&quot;: [{&quot;type&quot;: &quot;scatterpolar&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;histogram&quot;: [{&quot;marker&quot;: {&quot;pattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}}, &quot;type&quot;: &quot;histogram&quot;}], &quot;scattergl&quot;: [{&quot;type&quot;: &quot;scattergl&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatter3d&quot;: [{&quot;type&quot;: &quot;scatter3d&quot;, &quot;line&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scattermapbox&quot;: [{&quot;type&quot;: &quot;scattermapbox&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatterternary&quot;: [{&quot;type&quot;: &quot;scatterternary&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scattercarpet&quot;: [{&quot;type&quot;: &quot;scattercarpet&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;carpet&quot;: [{&quot;aaxis&quot;: {&quot;endlinecolor&quot;: &quot;#2a3f5f&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;minorgridcolor&quot;: &quot;white&quot;, &quot;startlinecolor&quot;: &quot;#2a3f5f&quot;}, &quot;baxis&quot;: {&quot;endlinecolor&quot;: &quot;#2a3f5f&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;minorgridcolor&quot;: &quot;white&quot;, &quot;startlinecolor&quot;: &quot;#2a3f5f&quot;}, &quot;type&quot;: &quot;carpet&quot;}], &quot;table&quot;: [{&quot;cells&quot;: {&quot;fill&quot;: {&quot;color&quot;: &quot;#EBF0F8&quot;}, &quot;line&quot;: {&quot;color&quot;: &quot;white&quot;}}, &quot;header&quot;: {&quot;fill&quot;: {&quot;color&quot;: &quot;#C8D4E3&quot;}, &quot;line&quot;: {&quot;color&quot;: &quot;white&quot;}}, &quot;type&quot;: &quot;table&quot;}], &quot;barpolar&quot;: [{&quot;marker&quot;: {&quot;line&quot;: {&quot;color&quot;: &quot;#E5ECF6&quot;, &quot;width&quot;: 0.5}, &quot;pattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}}, &quot;type&quot;: &quot;barpolar&quot;}], &quot;pie&quot;: [{&quot;automargin&quot;: true, &quot;type&quot;: &quot;pie&quot;}]}, &quot;layout&quot;: {&quot;autotypenumbers&quot;: &quot;strict&quot;, &quot;colorway&quot;: [&quot;#636efa&quot;, &quot;#EF553B&quot;, &quot;#00cc96&quot;, &quot;#ab63fa&quot;, &quot;#FFA15A&quot;, &quot;#19d3f3&quot;, &quot;#FF6692&quot;, &quot;#B6E880&quot;, &quot;#FF97FF&quot;, &quot;#FECB52&quot;], &quot;font&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}, &quot;hovermode&quot;: &quot;closest&quot;, &quot;hoverlabel&quot;: {&quot;align&quot;: &quot;left&quot;}, &quot;paper_bgcolor&quot;: &quot;white&quot;, &quot;plot_bgcolor&quot;: &quot;#E5ECF6&quot;, &quot;polar&quot;: {&quot;bgcolor&quot;: &quot;#E5ECF6&quot;, &quot;angularaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}, &quot;radialaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}}, &quot;ternary&quot;: {&quot;bgcolor&quot;: &quot;#E5ECF6&quot;, &quot;aaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}, &quot;baxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}, &quot;caxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}}, &quot;coloraxis&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}, &quot;colorscale&quot;: {&quot;sequential&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]], &quot;sequentialminus&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]], &quot;diverging&quot;: [[0, &quot;#8e0152&quot;], [0.1, &quot;#c51b7d&quot;], [0.2, &quot;#de77ae&quot;], [0.3, &quot;#f1b6da&quot;], [0.4, &quot;#fde0ef&quot;], [0.5, &quot;#f7f7f7&quot;], [0.6, &quot;#e6f5d0&quot;], [0.7, &quot;#b8e186&quot;], [0.8, &quot;#7fbc41&quot;], [0.9, &quot;#4d9221&quot;], [1, &quot;#276419&quot;]]}, &quot;xaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;, &quot;title&quot;: {&quot;standoff&quot;: 15}, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;automargin&quot;: true, &quot;zerolinewidth&quot;: 2}, &quot;yaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;, &quot;title&quot;: {&quot;standoff&quot;: 15}, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;automargin&quot;: true, &quot;zerolinewidth&quot;: 2}, &quot;scene&quot;: {&quot;xaxis&quot;: {&quot;backgroundcolor&quot;: &quot;#E5ECF6&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;showbackground&quot;: true, &quot;ticks&quot;: &quot;&quot;, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;gridwidth&quot;: 2}, &quot;yaxis&quot;: {&quot;backgroundcolor&quot;: &quot;#E5ECF6&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;showbackground&quot;: true, &quot;ticks&quot;: &quot;&quot;, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;gridwidth&quot;: 2}, &quot;zaxis&quot;: {&quot;backgroundcolor&quot;: &quot;#E5ECF6&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;showbackground&quot;: true, &quot;ticks&quot;: &quot;&quot;, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;gridwidth&quot;: 2}}, &quot;shapedefaults&quot;: {&quot;line&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}}, &quot;annotationdefaults&quot;: {&quot;arrowcolor&quot;: &quot;#2a3f5f&quot;, &quot;arrowhead&quot;: 0, &quot;arrowwidth&quot;: 1}, &quot;geo&quot;: {&quot;bgcolor&quot;: &quot;white&quot;, &quot;landcolor&quot;: &quot;#E5ECF6&quot;, &quot;subunitcolor&quot;: &quot;white&quot;, &quot;showland&quot;: true, &quot;showlakes&quot;: true, &quot;lakecolor&quot;: &quot;white&quot;}, &quot;title&quot;: {&quot;x&quot;: 0.05}, &quot;mapbox&quot;: {&quot;style&quot;: &quot;light&quot;}}}, &quot;xaxis&quot;: {&quot;anchor&quot;: &quot;y&quot;, &quot;domain&quot;: [0.0, 0.45], &quot;title&quot;: {&quot;text&quot;: &quot;False Positive Rate&quot;}}, &quot;yaxis&quot;: {&quot;anchor&quot;: &quot;x&quot;, &quot;domain&quot;: [0.0, 1.0], &quot;title&quot;: {&quot;text&quot;: &quot;True Positive Rate&quot;}}, &quot;xaxis2&quot;: {&quot;anchor&quot;: &quot;y2&quot;, &quot;domain&quot;: [0.55, 1.0], &quot;title&quot;: {&quot;text&quot;: &quot;False Positive Rate&quot;}}, &quot;yaxis2&quot;: {&quot;anchor&quot;: &quot;x2&quot;, &quot;domain&quot;: [0.0, 1.0], &quot;matches&quot;: &quot;y&quot;, &quot;showticklabels&quot;: false}, &quot;annotations&quot;: [{&quot;font&quot;: {&quot;size&quot;: 16}, &quot;showarrow&quot;: false, &quot;text&quot;: &quot;current&quot;, &quot;x&quot;: 0.225, &quot;xanchor&quot;: &quot;center&quot;, &quot;xref&quot;: &quot;paper&quot;, &quot;y&quot;: 1.0, &quot;yanchor&quot;: &quot;bottom&quot;, &quot;yref&quot;: &quot;paper&quot;}, {&quot;font&quot;: {&quot;size&quot;: 16}, &quot;showarrow&quot;: false, &quot;text&quot;: &quot;reference&quot;, &quot;x&quot;: 0.775, &quot;xanchor&quot;: &quot;center&quot;, &quot;xref&quot;: &quot;paper&quot;, &quot;y&quot;: 1.0, &quot;yanchor&quot;: &quot;bottom&quot;, &quot;yref&quot;: &quot;paper&quot;}], &quot;showlegend&quot;: true}}, &quot;insights&quot;: [], &quot;alerts&quot;: [], &quot;tabs&quot;: [], &quot;widgets&quot;: [], &quot;pageSize&quot;: 5}, {&quot;type&quot;: &quot;counter&quot;, &quot;title&quot;: &quot;&quot;, &quot;size&quot;: 2, &quot;id&quot;: &quot;75b4eeab-90b8-49c2-9742-3528ecb4b008&quot;, &quot;details&quot;: &quot;&quot;, &quot;alertsPosition&quot;: null, &quot;alertStats&quot;: null, &quot;params&quot;: {&quot;counters&quot;: [{&quot;value&quot;: &quot;&quot;, &quot;label&quot;: &quot;Precision-Recall Curve&quot;}]}, &quot;insights&quot;: [], &quot;alerts&quot;: [], &quot;tabs&quot;: [], &quot;widgets&quot;: [], &quot;pageSize&quot;: 5}, {&quot;type&quot;: &quot;big_graph&quot;, &quot;title&quot;: &quot;&quot;, &quot;size&quot;: 2, &quot;id&quot;: &quot;e7240759-4ace-4a18-ab5c-a6e1b055c77e&quot;, &quot;details&quot;: &quot;&quot;, &quot;alertsPosition&quot;: null, &quot;alertStats&quot;: null, &quot;params&quot;: {&quot;data&quot;: [{&quot;legendgroup&quot;: &quot;PR&quot;, &quot;marker&quot;: {&quot;color&quot;: &quot;#ed0400&quot;, &quot;size&quot;: 6}, &quot;mode&quot;: &quot;lines&quot;, &quot;name&quot;: &quot;PR&quot;, &quot;x&quot;: [1.0, 0.9907407407407407, 0.9907407407407407, 0.9814814814814815, 0.9722222222222222, 0.9629629629629629, 0.9537037037037037, 0.9537037037037037, 0.9444444444444444, 0.9444444444444444, 0.9351851851851852, 0.9259259259259259, 0.9166666666666666, 0.9166666666666666, 0.9074074074074074, 0.9074074074074074, 0.8981481481481481, 0.8981481481481481, 0.8888888888888888, 0.8888888888888888, 0.8796296296296297, 0.8703703703703703, 0.8611111111111112, 0.8518518518518519, 0.8518518518518519, 0.8425925925925926, 0.8333333333333334, 0.8240740740740741, 0.8148148148148148, 0.8055555555555556, 0.8055555555555556, 0.8055555555555556, 0.8055555555555556, 0.7962962962962963, 0.7870370370370371, 0.7777777777777778, 0.7777777777777778, 0.7685185185185185, 0.7685185185185185, 0.7592592592592593, 0.7592592592592593, 0.75, 0.75, 0.75, 0.7407407407407407, 0.7314814814814815, 0.7314814814814815, 0.7314814814814815, 0.7314814814814815, 0.7314814814814815, 0.7222222222222222, 0.7129629629629629, 0.7037037037037037, 0.6944444444444444, 0.6944444444444444, 0.6851851851851852, 0.6759259259259259, 0.6759259259259259, 0.6666666666666666, 0.6574074074074074, 0.6574074074074074, 0.6481481481481481, 0.6388888888888888, 0.6388888888888888, 0.6296296296296297, 0.6203703703703703, 0.6203703703703703, 0.6111111111111112, 0.6111111111111112, 0.6111111111111112, 0.6018518518518519, 0.6018518518518519, 0.6018518518518519, 0.6018518518518519, 0.5925925925925926, 0.5833333333333334, 0.5833333333333334, 0.5833333333333334, 0.5740740740740741, 0.5648148148148148, 0.5648148148148148, 0.5555555555555556, 0.5462962962962963, 0.5370370370370371, 0.5277777777777778, 0.5185185185185185, 0.5185185185185185, 0.5092592592592593, 0.5092592592592593, 0.5092592592592593, 0.5092592592592593, 0.5, 0.49074074074074076, 0.48148148148148145, 0.48148148148148145, 0.4722222222222222, 0.46296296296296297, 0.4537037037037037, 0.4537037037037037, 0.4444444444444444, 0.4444444444444444, 0.4351851851851852, 0.4351851851851852, 0.42592592592592593, 0.4166666666666667, 0.4166666666666667, 0.4074074074074074, 0.39814814814814814, 0.39814814814814814, 0.3888888888888889, 0.3888888888888889, 0.37962962962962965, 0.37962962962962965, 0.37962962962962965, 0.37037037037037035, 0.37037037037037035, 0.3611111111111111, 0.35185185185185186, 0.3425925925925926, 0.3333333333333333, 0.3333333333333333, 0.32407407407407407, 0.3148148148148148, 0.3055555555555556, 0.2962962962962963, 0.28703703703703703, 0.2777777777777778, 0.2777777777777778, 0.26851851851851855, 0.26851851851851855, 0.26851851851851855, 0.25925925925925924, 0.25, 0.25, 0.24074074074074073, 0.23148148148148148, 0.2222222222222222, 0.21296296296296297, 0.21296296296296297, 0.2037037037037037, 0.19444444444444445, 0.18518518518518517, 0.17592592592592593, 0.17592592592592593, 0.16666666666666666, 0.1574074074074074, 0.14814814814814814, 0.14814814814814814, 0.1388888888888889, 0.12962962962962962, 0.12962962962962962, 0.12037037037037036, 0.1111111111111111, 0.10185185185185185, 0.10185185185185185, 0.10185185185185185, 0.09259259259259259, 0.08333333333333333, 0.08333333333333333, 0.07407407407407407, 0.07407407407407407, 0.06481481481481481, 0.05555555555555555, 0.046296296296296294, 0.037037037037037035, 0.027777777777777776, 0.018518518518518517, 0.018518518518518517, 0.018518518518518517, 0.018518518518518517, 0.009259259259259259, 0.0], &quot;y&quot;: [0.631578947368421, 0.6294117647058823, 0.6331360946745562, 0.6309523809523809, 0.6287425149700598, 0.6265060240963856, 0.6242424242424243, 0.6280487804878049, 0.6257668711656442, 0.6296296296296297, 0.6273291925465838, 0.625, 0.6226415094339622, 0.6265822784810127, 0.6242038216560509, 0.6282051282051282, 0.6258064516129033, 0.6298701298701299, 0.6274509803921569, 0.631578947368421, 0.6291390728476821, 0.6266666666666667, 0.6241610738255033, 0.6216216216216216, 0.6258503401360545, 0.6232876712328768, 0.6206896551724138, 0.6180555555555556, 0.6153846153846154, 0.6126760563380281, 0.6170212765957447, 0.6214285714285714, 0.6258992805755396, 0.6231884057971014, 0.6204379562043796, 0.6176470588235294, 0.6222222222222222, 0.6194029850746269, 0.6240601503759399, 0.6212121212121212, 0.6259541984732825, 0.6230769230769231, 0.627906976744186, 0.6328125, 0.6299212598425197, 0.626984126984127, 0.632, 0.6370967741935484, 0.6422764227642277, 0.6475409836065574, 0.6446280991735537, 0.6416666666666667, 0.6386554621848739, 0.635593220338983, 0.6410256410256411, 0.6379310344827587, 0.6347826086956522, 0.6403508771929824, 0.6371681415929203, 0.6339285714285714, 0.6396396396396397, 0.6363636363636364, 0.6330275229357798, 0.6388888888888888, 0.6355140186915887, 0.6320754716981132, 0.638095238095238, 0.6346153846153846, 0.6407766990291263, 0.6470588235294118, 0.6435643564356436, 0.65, 0.6565656565656566, 0.6632653061224489, 0.6597938144329897, 0.65625, 0.6631578947368421, 0.6702127659574468, 0.6666666666666666, 0.6630434782608695, 0.6703296703296703, 0.6666666666666666, 0.6629213483146067, 0.6590909090909091, 0.6551724137931034, 0.6511627906976745, 0.6588235294117647, 0.6547619047619048, 0.6626506024096386, 0.6707317073170732, 0.6790123456790124, 0.675, 0.6708860759493671, 0.6666666666666666, 0.6753246753246753, 0.6710526315789473, 0.6666666666666666, 0.6621621621621622, 0.6712328767123288, 0.6666666666666666, 0.676056338028169, 0.6714285714285714, 0.6811594202898551, 0.6764705882352942, 0.6716417910447762, 0.6818181818181818, 0.676923076923077, 0.671875, 0.6825396825396826, 0.6774193548387096, 0.6885245901639344, 0.6833333333333333, 0.6949152542372882, 0.7068965517241379, 0.7017543859649122, 0.7142857142857143, 0.7090909090909091, 0.7037037037037037, 0.6981132075471698, 0.6923076923076923, 0.7058823529411765, 0.7, 0.6938775510204082, 0.6875, 0.6808510638297872, 0.6739130434782609, 0.6666666666666666, 0.6818181818181818, 0.6744186046511628, 0.6904761904761905, 0.7073170731707317, 0.7, 0.6923076923076923, 0.7105263157894737, 0.7027027027027027, 0.6944444444444444, 0.6857142857142857, 0.6764705882352942, 0.696969696969697, 0.6875, 0.6774193548387096, 0.6666666666666666, 0.6551724137931034, 0.6785714285714286, 0.6666666666666666, 0.6538461538461539, 0.64, 0.6666666666666666, 0.6521739130434783, 0.6363636363636364, 0.6666666666666666, 0.65, 0.631578947368421, 0.6111111111111112, 0.6470588235294118, 0.6875, 0.6666666666666666, 0.6428571428571429, 0.6923076923076923, 0.6666666666666666, 0.7272727272727273, 0.7, 0.6666666666666666, 0.625, 0.5714285714285714, 0.5, 0.4, 0.5, 0.6666666666666666, 1.0, 1.0, 1.0], &quot;type&quot;: &quot;scatter&quot;, &quot;xaxis&quot;: &quot;x&quot;, &quot;yaxis&quot;: &quot;y&quot;}, {&quot;legendgroup&quot;: &quot;PR&quot;, &quot;marker&quot;: {&quot;color&quot;: &quot;#ed0400&quot;, &quot;size&quot;: 6}, &quot;mode&quot;: &quot;lines&quot;, &quot;name&quot;: &quot;PR&quot;, &quot;showlegend&quot;: false, &quot;x&quot;: [1.0, 0.9959839357429718, 0.9919678714859438, 0.9919678714859438, 0.9879518072289156, 0.9839357429718876, 0.9799196787148594, 0.9759036144578314, 0.9718875502008032, 0.9678714859437751, 0.963855421686747, 0.9598393574297188, 0.9558232931726908, 0.9518072289156626, 0.9477911646586346, 0.9437751004016064, 0.9397590361445783, 0.9357429718875502, 0.9357429718875502, 0.9357429718875502, 0.9357429718875502, 0.9317269076305221, 0.927710843373494, 0.9236947791164659, 0.9236947791164659, 0.9236947791164659, 0.9236947791164659, 0.9196787148594378, 0.9196787148594378, 0.9156626506024096, 0.9156626506024096, 0.9156626506024096, 0.9156626506024096, 0.9156626506024096, 0.9116465863453815, 0.9116465863453815, 0.9116465863453815, 0.9116465863453815, 0.9116465863453815, 0.9116465863453815, 0.9076305220883534, 0.9076305220883534, 0.9036144578313253, 0.8995983935742972, 0.8955823293172691, 0.8955823293172691, 0.8955823293172691, 0.891566265060241, 0.891566265060241, 0.891566265060241, 0.8875502008032129, 0.8835341365461847, 0.8795180722891566, 0.8755020080321285, 0.8755020080321285, 0.8714859437751004, 0.8674698795180723, 0.8674698795180723, 0.8634538152610441, 0.8594377510040161, 0.8594377510040161, 0.8554216867469879, 0.8514056224899599, 0.8514056224899599, 0.8473895582329317, 0.8433734939759037, 0.8393574297188755, 0.8353413654618473, 0.8313253012048193, 0.8313253012048193, 0.8273092369477911, 0.8232931726907631, 0.8192771084337349, 0.8152610441767069, 0.8112449799196787, 0.8112449799196787, 0.8112449799196787, 0.8112449799196787, 0.8072289156626506, 0.8032128514056225, 0.7991967871485943, 0.7991967871485943, 0.7951807228915663, 0.7911646586345381, 0.7871485943775101, 0.7831325301204819, 0.7831325301204819, 0.7791164658634538, 0.7751004016064257, 0.7710843373493976, 0.7670682730923695, 0.7630522088353414, 0.7630522088353414, 0.7630522088353414, 0.7630522088353414, 0.7630522088353414, 0.7590361445783133, 0.7590361445783133, 0.7590361445783133, 0.7590361445783133, 0.7550200803212851, 0.751004016064257, 0.7469879518072289, 0.7469879518072289, 0.7469879518072289, 0.7469879518072289, 0.7469879518072289, 0.7429718875502008, 0.7389558232931727, 0.7349397590361446, 0.7309236947791165, 0.7269076305220884, 0.7228915662650602, 0.7188755020080321, 0.714859437751004, 0.7108433734939759, 0.7068273092369478, 0.7068273092369478, 0.7068273092369478, 0.7028112449799196, 0.7028112449799196, 0.6987951807228916, 0.6947791164658634, 0.6907630522088354, 0.6867469879518072, 0.6867469879518072, 0.6827309236947792, 0.6827309236947792, 0.678714859437751, 0.6746987951807228, 0.6706827309236948, 0.6706827309236948, 0.6666666666666666, 0.6626506024096386, 0.6586345381526104, 0.6546184738955824, 0.6546184738955824, 0.6546184738955824, 0.6546184738955824, 0.6506024096385542, 0.6465863453815262, 0.6465863453815262, 0.642570281124498, 0.642570281124498, 0.642570281124498, 0.6385542168674698, 0.6345381526104418, 0.6345381526104418, 0.6305220883534136, 0.6305220883534136, 0.6265060240963856, 0.6265060240963856, 0.6265060240963856, 0.6224899598393574, 0.6184738955823293, 0.6144578313253012, 0.6104417670682731, 0.606425702811245, 0.606425702811245, 0.6024096385542169, 0.5983935742971888, 0.5943775100401606, 0.5943775100401606, 0.5943775100401606, 0.5943775100401606, 0.5903614457831325, 0.5863453815261044, 0.5823293172690763, 0.5783132530120482, 0.5783132530120482, 0.5783132530120482, 0.5742971887550201, 0.5742971887550201, 0.570281124497992, 0.570281124497992, 0.570281124497992, 0.570281124497992, 0.570281124497992, 0.5662650602409639, 0.5622489959839357, 0.5582329317269076, 0.5542168674698795, 0.5542168674698795, 0.5502008032128514, 0.5461847389558233, 0.5461847389558233, 0.5421686746987951, 0.5421686746987951, 0.5421686746987951, 0.5421686746987951, 0.5421686746987951, 0.5381526104417671, 0.5381526104417671, 0.5341365461847389, 0.5341365461847389, 0.5301204819277109, 0.5261044176706827, 0.5220883534136547, 0.5180722891566265, 0.5140562248995983, 0.5140562248995983, 0.5100401606425703, 0.5060240963855421, 0.5020080321285141, 0.4979919678714859, 0.4979919678714859, 0.4979919678714859, 0.4939759036144578, 0.4939759036144578, 0.4939759036144578, 0.4899598393574297, 0.4899598393574297, 0.4859437751004016, 0.4859437751004016, 0.4859437751004016, 0.4859437751004016, 0.4819277108433735, 0.4819277108433735, 0.4819277108433735, 0.4779116465863454, 0.4779116465863454, 0.4738955823293173, 0.46987951807228917, 0.46586345381526106, 0.46586345381526106, 0.46184738955823296, 0.4578313253012048, 0.4578313253012048, 0.4538152610441767, 0.4538152610441767, 0.4497991967871486, 0.4497991967871486, 0.4457831325301205, 0.44176706827309237, 0.43775100401606426, 0.43373493975903615, 0.42971887550200805, 0.42971887550200805, 0.42570281124497994, 0.42570281124497994, 0.42570281124497994, 0.42570281124497994, 0.42168674698795183, 0.41767068273092367, 0.41365461847389556, 0.41365461847389556, 0.40963855421686746, 0.40562248995983935, 0.40160642570281124, 0.39759036144578314, 0.39357429718875503, 0.39357429718875503, 0.3895582329317269, 0.3855421686746988, 0.3815261044176707, 0.37751004016064255, 0.37751004016064255, 0.37349397590361444, 0.36947791164658633, 0.36947791164658633, 0.36947791164658633, 0.3654618473895582, 0.3614457831325301, 0.357429718875502, 0.357429718875502, 0.3534136546184739, 0.3493975903614458, 0.3453815261044177, 0.3453815261044177, 0.3453815261044177, 0.3413654618473896, 0.3373493975903614, 0.3333333333333333, 0.3333333333333333, 0.3333333333333333, 0.3333333333333333, 0.3293172690763052, 0.3253012048192771, 0.321285140562249, 0.3172690763052209, 0.3132530120481928, 0.3092369477911647, 0.3092369477911647, 0.3092369477911647, 0.30522088353413657, 0.30120481927710846, 0.30120481927710846, 0.2971887550200803, 0.2971887550200803, 0.2931726907630522, 0.2931726907630522, 0.2891566265060241, 0.285140562248996, 0.28112449799196787, 0.28112449799196787, 0.27710843373493976, 0.27309236947791166, 0.26907630522088355, 0.26506024096385544, 0.26104417670682734, 0.26104417670682734, 0.2570281124497992, 0.25301204819277107, 0.24899598393574296, 0.24497991967871485, 0.24497991967871485, 0.24096385542168675, 0.23694779116465864, 0.23694779116465864, 0.23293172690763053, 0.2289156626506024, 0.2289156626506024, 0.2248995983935743, 0.22088353413654618, 0.21686746987951808, 0.21285140562248997, 0.20883534136546184, 0.20481927710843373, 0.20080321285140562, 0.19678714859437751, 0.19678714859437751, 0.1927710843373494, 0.1927710843373494, 0.1927710843373494, 0.18875502008032127, 0.18473895582329317, 0.18072289156626506, 0.17670682730923695, 0.17269076305220885, 0.17269076305220885, 0.1686746987951807, 0.1686746987951807, 0.1686746987951807, 0.1686746987951807, 0.1686746987951807, 0.1646586345381526, 0.1606425702811245, 0.1606425702811245, 0.1566265060240964, 0.1566265060240964, 0.1566265060240964, 0.1566265060240964, 0.15261044176706828, 0.15261044176706828, 0.14859437751004015, 0.14859437751004015, 0.14859437751004015, 0.14457831325301204, 0.14056224899598393, 0.13654618473895583, 0.13654618473895583, 0.13253012048192772, 0.13253012048192772, 0.1285140562248996, 0.12449799196787148, 0.12449799196787148, 0.12048192771084337, 0.12048192771084337, 0.12048192771084337, 0.12048192771084337, 0.11646586345381527, 0.11244979919678715, 0.11244979919678715, 0.10843373493975904, 0.10843373493975904, 0.10441767068273092, 0.10040160642570281, 0.10040160642570281, 0.0963855421686747, 0.09236947791164658, 0.09236947791164658, 0.08835341365461848, 0.08433734939759036, 0.08433734939759036, 0.08032128514056225, 0.07630522088353414, 0.07228915662650602, 0.07228915662650602, 0.06827309236947791, 0.0642570281124498, 0.060240963855421686, 0.05622489959839357, 0.05622489959839357, 0.05220883534136546, 0.04819277108433735, 0.04417670682730924, 0.040160642570281124, 0.03614457831325301, 0.0321285140562249, 0.0321285140562249, 0.028112449799196786, 0.024096385542168676, 0.020080321285140562, 0.01606425702811245, 0.012048192771084338, 0.008032128514056224, 0.004016064257028112, 0.004016064257028112, 0.0], &quot;y&quot;: [0.6256281407035176, 0.6246851385390428, 0.6237373737373737, 0.6253164556962025, 0.6243654822335025, 0.6234096692111959, 0.6224489795918368, 0.6214833759590793, 0.6205128205128205, 0.6195372750642674, 0.6185567010309279, 0.6175710594315246, 0.616580310880829, 0.6155844155844156, 0.6145833333333334, 0.6135770234986945, 0.612565445026178, 0.6115485564304461, 0.6131578947368421, 0.6147757255936676, 0.6164021164021164, 0.6153846153846154, 0.6143617021276596, 0.6133333333333333, 0.6149732620320856, 0.6166219839142091, 0.6182795698924731, 0.6172506738544474, 0.6189189189189189, 0.6178861788617886, 0.6195652173913043, 0.6212534059945504, 0.6229508196721312, 0.6246575342465753, 0.6236263736263736, 0.6253443526170799, 0.6270718232044199, 0.628808864265928, 0.6305555555555555, 0.6323119777158774, 0.6312849162011173, 0.6330532212885154, 0.6320224719101124, 0.6309859154929578, 0.6299435028248588, 0.6317280453257791, 0.6335227272727273, 0.6324786324786325, 0.6342857142857142, 0.6361031518624641, 0.6350574712643678, 0.6340057636887608, 0.6329479768786127, 0.6318840579710145, 0.6337209302325582, 0.6326530612244898, 0.631578947368421, 0.6334310850439883, 0.6323529411764706, 0.6312684365781711, 0.6331360946745562, 0.6320474777448071, 0.6309523809523809, 0.6328358208955224, 0.6317365269461078, 0.6306306306306306, 0.6295180722891566, 0.6283987915407855, 0.6272727272727273, 0.6291793313069909, 0.6280487804878049, 0.6269113149847095, 0.6257668711656442, 0.6246153846153846, 0.6234567901234568, 0.6253869969040248, 0.6273291925465838, 0.6292834890965732, 0.628125, 0.6269592476489029, 0.6257861635220126, 0.6277602523659306, 0.6265822784810127, 0.6253968253968254, 0.6242038216560509, 0.6230031948881789, 0.625, 0.6237942122186495, 0.6225806451612903, 0.6213592233009708, 0.6201298701298701, 0.6188925081433225, 0.6209150326797386, 0.6229508196721312, 0.625, 0.6270627062706271, 0.6258278145695364, 0.627906976744186, 0.63, 0.6321070234113713, 0.6308724832214765, 0.6296296296296297, 0.6283783783783784, 0.6305084745762712, 0.6326530612244898, 0.6348122866894198, 0.636986301369863, 0.6357388316151202, 0.6344827586206897, 0.6332179930795848, 0.6319444444444444, 0.6306620209059234, 0.6293706293706294, 0.6280701754385964, 0.6267605633802817, 0.6254416961130742, 0.624113475177305, 0.6263345195729537, 0.6285714285714286, 0.6272401433691757, 0.6294964028776978, 0.628158844765343, 0.6268115942028986, 0.6254545454545455, 0.6240875912408759, 0.6263736263736264, 0.625, 0.6273062730627307, 0.6259259259259259, 0.6245353159851301, 0.6231343283582089, 0.6254681647940075, 0.6240601503759399, 0.6226415094339622, 0.6212121212121212, 0.6197718631178707, 0.6221374045801527, 0.6245210727969349, 0.6269230769230769, 0.6254826254826255, 0.624031007751938, 0.6264591439688716, 0.625, 0.6274509803921569, 0.6299212598425197, 0.6284584980237155, 0.626984126984127, 0.6294820717131474, 0.628, 0.6305220883534136, 0.6290322580645161, 0.631578947368421, 0.6341463414634146, 0.6326530612244898, 0.6311475409836066, 0.6296296296296297, 0.628099173553719, 0.6265560165975104, 0.6291666666666667, 0.6276150627615062, 0.6260504201680672, 0.6244725738396625, 0.6271186440677966, 0.6297872340425532, 0.6324786324786325, 0.630901287553648, 0.6293103448275862, 0.6277056277056277, 0.6260869565217392, 0.62882096069869, 0.631578947368421, 0.6299559471365639, 0.6327433628318584, 0.6311111111111111, 0.6339285714285714, 0.6367713004484304, 0.6396396396396397, 0.6425339366515838, 0.6409090909090909, 0.639269406392694, 0.6376146788990825, 0.6359447004608295, 0.6388888888888888, 0.6372093023255814, 0.6355140186915887, 0.6384976525821596, 0.6367924528301887, 0.6398104265402843, 0.6428571428571429, 0.645933014354067, 0.6490384615384616, 0.6473429951690821, 0.6504854368932039, 0.6487804878048781, 0.6519607843137255, 0.6502463054187192, 0.6485148514851485, 0.6467661691542289, 0.645, 0.6432160804020101, 0.6464646464646465, 0.6446700507614214, 0.6428571428571429, 0.6410256410256411, 0.6391752577319587, 0.6424870466321243, 0.6458333333333334, 0.643979057591623, 0.6473684210526316, 0.6507936507936508, 0.648936170212766, 0.6524064171122995, 0.6505376344086021, 0.654054054054054, 0.657608695652174, 0.6612021857923497, 0.6593406593406593, 0.6629834254143646, 0.6666666666666666, 0.664804469273743, 0.6685393258426966, 0.6666666666666666, 0.6647727272727273, 0.6628571428571428, 0.6666666666666666, 0.6647398843930635, 0.6627906976744186, 0.6666666666666666, 0.6647058823529411, 0.6686390532544378, 0.6666666666666666, 0.6706586826347305, 0.6686746987951807, 0.6666666666666666, 0.6646341463414634, 0.6625766871165644, 0.6604938271604939, 0.6645962732919255, 0.6625, 0.6666666666666666, 0.6708860759493671, 0.6751592356687898, 0.6730769230769231, 0.6709677419354839, 0.6688311688311688, 0.673202614379085, 0.6710526315789473, 0.6688741721854304, 0.6666666666666666, 0.6644295302013423, 0.6621621621621622, 0.6666666666666666, 0.6643835616438356, 0.6620689655172414, 0.6597222222222222, 0.6573426573426573, 0.6619718309859155, 0.6595744680851063, 0.6571428571428571, 0.6618705035971223, 0.6666666666666666, 0.6642335766423357, 0.6617647058823529, 0.6592592592592592, 0.664179104477612, 0.6616541353383458, 0.6590909090909091, 0.6564885496183206, 0.6615384615384615, 0.6666666666666666, 0.6640625, 0.6614173228346457, 0.6587301587301587, 0.664, 0.6693548387096774, 0.6747967479674797, 0.6721311475409836, 0.6694214876033058, 0.6666666666666666, 0.6638655462184874, 0.6610169491525424, 0.6581196581196581, 0.6637931034482759, 0.6695652173913044, 0.6666666666666666, 0.6637168141592921, 0.6696428571428571, 0.6666666666666666, 0.6727272727272727, 0.6697247706422018, 0.6759259259259259, 0.6728971962616822, 0.6698113207547169, 0.6666666666666666, 0.6730769230769231, 0.6699029126213593, 0.6666666666666666, 0.6633663366336634, 0.66, 0.6565656565656566, 0.6632653061224489, 0.6597938144329897, 0.65625, 0.6526315789473685, 0.648936170212766, 0.6559139784946236, 0.6521739130434783, 0.6483516483516484, 0.6555555555555556, 0.651685393258427, 0.6477272727272727, 0.6551724137931034, 0.6511627906976745, 0.6470588235294118, 0.6428571428571429, 0.6385542168674698, 0.6341463414634146, 0.6296296296296297, 0.625, 0.620253164556962, 0.6282051282051282, 0.6233766233766234, 0.631578947368421, 0.64, 0.6351351351351351, 0.6301369863013698, 0.625, 0.6197183098591549, 0.6142857142857143, 0.6231884057971014, 0.6176470588235294, 0.6268656716417911, 0.6363636363636364, 0.6461538461538462, 0.65625, 0.6507936507936508, 0.6451612903225806, 0.6557377049180327, 0.65, 0.6610169491525424, 0.6724137931034483, 0.6842105263157895, 0.6785714285714286, 0.6909090909090909, 0.6851851851851852, 0.6981132075471698, 0.7115384615384616, 0.7058823529411765, 0.7, 0.6938775510204082, 0.7083333333333334, 0.7021276595744681, 0.717391304347826, 0.7111111111111111, 0.7045454545454546, 0.7209302325581395, 0.7142857142857143, 0.7317073170731707, 0.75, 0.7692307692307693, 0.7631578947368421, 0.7567567567567568, 0.7777777777777778, 0.7714285714285715, 0.7941176470588235, 0.7878787878787878, 0.78125, 0.8064516129032258, 0.8, 0.7931034482758621, 0.8214285714285714, 0.8148148148148148, 0.8076923076923077, 0.84, 0.8333333333333334, 0.8260869565217391, 0.8181818181818182, 0.8571428571428571, 0.85, 0.8421052631578947, 0.8333333333333334, 0.8235294117647058, 0.875, 0.8666666666666667, 0.8571428571428571, 0.8461538461538461, 0.8333333333333334, 0.8181818181818182, 0.8, 0.8888888888888888, 0.875, 0.8571428571428571, 0.8333333333333334, 0.8, 0.75, 0.6666666666666666, 0.5, 1.0, 1.0], &quot;type&quot;: &quot;scatter&quot;, &quot;xaxis&quot;: &quot;x2&quot;, &quot;yaxis&quot;: &quot;y2&quot;}], &quot;layout&quot;: {&quot;template&quot;: {&quot;data&quot;: {&quot;histogram2dcontour&quot;: [{&quot;type&quot;: &quot;histogram2dcontour&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;choropleth&quot;: [{&quot;type&quot;: &quot;choropleth&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}], &quot;histogram2d&quot;: [{&quot;type&quot;: &quot;histogram2d&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;heatmap&quot;: [{&quot;type&quot;: &quot;heatmap&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;heatmapgl&quot;: [{&quot;type&quot;: &quot;heatmapgl&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;contourcarpet&quot;: [{&quot;type&quot;: &quot;contourcarpet&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}], &quot;contour&quot;: [{&quot;type&quot;: &quot;contour&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;surface&quot;: [{&quot;type&quot;: &quot;surface&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;mesh3d&quot;: [{&quot;type&quot;: &quot;mesh3d&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}], &quot;scatter&quot;: [{&quot;fillpattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}, &quot;type&quot;: &quot;scatter&quot;}], &quot;parcoords&quot;: [{&quot;type&quot;: &quot;parcoords&quot;, &quot;line&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatterpolargl&quot;: [{&quot;type&quot;: &quot;scatterpolargl&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;bar&quot;: [{&quot;error_x&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}, &quot;error_y&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}, &quot;marker&quot;: {&quot;line&quot;: {&quot;color&quot;: &quot;#E5ECF6&quot;, &quot;width&quot;: 0.5}, &quot;pattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}}, &quot;type&quot;: &quot;bar&quot;}], &quot;scattergeo&quot;: [{&quot;type&quot;: &quot;scattergeo&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatterpolar&quot;: [{&quot;type&quot;: &quot;scatterpolar&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;histogram&quot;: [{&quot;marker&quot;: {&quot;pattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}}, &quot;type&quot;: &quot;histogram&quot;}], &quot;scattergl&quot;: [{&quot;type&quot;: &quot;scattergl&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatter3d&quot;: [{&quot;type&quot;: &quot;scatter3d&quot;, &quot;line&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scattermapbox&quot;: [{&quot;type&quot;: &quot;scattermapbox&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatterternary&quot;: [{&quot;type&quot;: &quot;scatterternary&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scattercarpet&quot;: [{&quot;type&quot;: &quot;scattercarpet&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;carpet&quot;: [{&quot;aaxis&quot;: {&quot;endlinecolor&quot;: &quot;#2a3f5f&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;minorgridcolor&quot;: &quot;white&quot;, &quot;startlinecolor&quot;: &quot;#2a3f5f&quot;}, &quot;baxis&quot;: {&quot;endlinecolor&quot;: &quot;#2a3f5f&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;minorgridcolor&quot;: &quot;white&quot;, &quot;startlinecolor&quot;: &quot;#2a3f5f&quot;}, &quot;type&quot;: &quot;carpet&quot;}], &quot;table&quot;: [{&quot;cells&quot;: {&quot;fill&quot;: {&quot;color&quot;: &quot;#EBF0F8&quot;}, &quot;line&quot;: {&quot;color&quot;: &quot;white&quot;}}, &quot;header&quot;: {&quot;fill&quot;: {&quot;color&quot;: &quot;#C8D4E3&quot;}, &quot;line&quot;: {&quot;color&quot;: &quot;white&quot;}}, &quot;type&quot;: &quot;table&quot;}], &quot;barpolar&quot;: [{&quot;marker&quot;: {&quot;line&quot;: {&quot;color&quot;: &quot;#E5ECF6&quot;, &quot;width&quot;: 0.5}, &quot;pattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}}, &quot;type&quot;: &quot;barpolar&quot;}], &quot;pie&quot;: [{&quot;automargin&quot;: true, &quot;type&quot;: &quot;pie&quot;}]}, &quot;layout&quot;: {&quot;autotypenumbers&quot;: &quot;strict&quot;, &quot;colorway&quot;: [&quot;#636efa&quot;, &quot;#EF553B&quot;, &quot;#00cc96&quot;, &quot;#ab63fa&quot;, &quot;#FFA15A&quot;, &quot;#19d3f3&quot;, &quot;#FF6692&quot;, &quot;#B6E880&quot;, &quot;#FF97FF&quot;, &quot;#FECB52&quot;], &quot;font&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}, &quot;hovermode&quot;: &quot;closest&quot;, &quot;hoverlabel&quot;: {&quot;align&quot;: &quot;left&quot;}, &quot;paper_bgcolor&quot;: &quot;white&quot;, &quot;plot_bgcolor&quot;: &quot;#E5ECF6&quot;, &quot;polar&quot;: {&quot;bgcolor&quot;: &quot;#E5ECF6&quot;, &quot;angularaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}, &quot;radialaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}}, &quot;ternary&quot;: {&quot;bgcolor&quot;: &quot;#E5ECF6&quot;, &quot;aaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}, &quot;baxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}, &quot;caxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}}, &quot;coloraxis&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}, &quot;colorscale&quot;: {&quot;sequential&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]], &quot;sequentialminus&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]], &quot;diverging&quot;: [[0, &quot;#8e0152&quot;], [0.1, &quot;#c51b7d&quot;], [0.2, &quot;#de77ae&quot;], [0.3, &quot;#f1b6da&quot;], [0.4, &quot;#fde0ef&quot;], [0.5, &quot;#f7f7f7&quot;], [0.6, &quot;#e6f5d0&quot;], [0.7, &quot;#b8e186&quot;], [0.8, &quot;#7fbc41&quot;], [0.9, &quot;#4d9221&quot;], [1, &quot;#276419&quot;]]}, &quot;xaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;, &quot;title&quot;: {&quot;standoff&quot;: 15}, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;automargin&quot;: true, &quot;zerolinewidth&quot;: 2}, &quot;yaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;, &quot;title&quot;: {&quot;standoff&quot;: 15}, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;automargin&quot;: true, &quot;zerolinewidth&quot;: 2}, &quot;scene&quot;: {&quot;xaxis&quot;: {&quot;backgroundcolor&quot;: &quot;#E5ECF6&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;showbackground&quot;: true, &quot;ticks&quot;: &quot;&quot;, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;gridwidth&quot;: 2}, &quot;yaxis&quot;: {&quot;backgroundcolor&quot;: &quot;#E5ECF6&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;showbackground&quot;: true, &quot;ticks&quot;: &quot;&quot;, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;gridwidth&quot;: 2}, &quot;zaxis&quot;: {&quot;backgroundcolor&quot;: &quot;#E5ECF6&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;showbackground&quot;: true, &quot;ticks&quot;: &quot;&quot;, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;gridwidth&quot;: 2}}, &quot;shapedefaults&quot;: {&quot;line&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}}, &quot;annotationdefaults&quot;: {&quot;arrowcolor&quot;: &quot;#2a3f5f&quot;, &quot;arrowhead&quot;: 0, &quot;arrowwidth&quot;: 1}, &quot;geo&quot;: {&quot;bgcolor&quot;: &quot;white&quot;, &quot;landcolor&quot;: &quot;#E5ECF6&quot;, &quot;subunitcolor&quot;: &quot;white&quot;, &quot;showland&quot;: true, &quot;showlakes&quot;: true, &quot;lakecolor&quot;: &quot;white&quot;}, &quot;title&quot;: {&quot;x&quot;: 0.05}, &quot;mapbox&quot;: {&quot;style&quot;: &quot;light&quot;}}}, &quot;xaxis&quot;: {&quot;anchor&quot;: &quot;y&quot;, &quot;domain&quot;: [0.0, 0.45], &quot;title&quot;: {&quot;text&quot;: &quot;Recall&quot;}}, &quot;yaxis&quot;: {&quot;anchor&quot;: &quot;x&quot;, &quot;domain&quot;: [0.0, 1.0], &quot;title&quot;: {&quot;text&quot;: &quot;Precision&quot;}}, &quot;xaxis2&quot;: {&quot;anchor&quot;: &quot;y2&quot;, &quot;domain&quot;: [0.55, 1.0], &quot;title&quot;: {&quot;text&quot;: &quot;Recall&quot;}}, &quot;yaxis2&quot;: {&quot;anchor&quot;: &quot;x2&quot;, &quot;domain&quot;: [0.0, 1.0], &quot;matches&quot;: &quot;y&quot;, &quot;showticklabels&quot;: false}, &quot;annotations&quot;: [{&quot;font&quot;: {&quot;size&quot;: 16}, &quot;showarrow&quot;: false, &quot;text&quot;: &quot;current&quot;, &quot;x&quot;: 0.225, &quot;xanchor&quot;: &quot;center&quot;, &quot;xref&quot;: &quot;paper&quot;, &quot;y&quot;: 1.0, &quot;yanchor&quot;: &quot;bottom&quot;, &quot;yref&quot;: &quot;paper&quot;}, {&quot;font&quot;: {&quot;size&quot;: 16}, &quot;showarrow&quot;: false, &quot;text&quot;: &quot;reference&quot;, &quot;x&quot;: 0.775, &quot;xanchor&quot;: &quot;center&quot;, &quot;xref&quot;: &quot;paper&quot;, &quot;y&quot;: 1.0, &quot;yanchor&quot;: &quot;bottom&quot;, &quot;yref&quot;: &quot;paper&quot;}], &quot;showlegend&quot;: true}}, &quot;insights&quot;: [], &quot;alerts&quot;: [], &quot;tabs&quot;: [], &quot;widgets&quot;: [], &quot;pageSize&quot;: 5}, {&quot;type&quot;: &quot;table&quot;, &quot;title&quot;: &quot;Current: Precision-Recall Table&quot;, &quot;size&quot;: 2, &quot;id&quot;: &quot;95499411-bb24-4001-b9dc-19b1b76f89a9&quot;, &quot;details&quot;: &quot;&quot;, &quot;alertsPosition&quot;: null, &quot;alertStats&quot;: null, &quot;params&quot;: {&quot;header&quot;: [&quot;Top(%)&quot;, &quot;Count&quot;, &quot;Prob&quot;, &quot;TP&quot;, &quot;FP&quot;, &quot;Precision&quot;, &quot;Recall&quot;], &quot;data&quot;: [[&quot;5.3&quot;, &quot;9.0&quot;, &quot;0.94&quot;, &quot;6.0&quot;, &quot;3.0&quot;, &quot;66.7&quot;, &quot;5.6&quot;], [&quot;10.5&quot;, &quot;18.0&quot;, &quot;0.91&quot;, &quot;11.0&quot;, &quot;7.0&quot;, &quot;61.1&quot;, &quot;10.2&quot;], [&quot;15.8&quot;, &quot;27.0&quot;, &quot;0.87&quot;, &quot;18.0&quot;, &quot;9.0&quot;, &quot;66.7&quot;, &quot;16.7&quot;], [&quot;21.1&quot;, &quot;36.0&quot;, &quot;0.82&quot;, &quot;25.0&quot;, &quot;11.0&quot;, &quot;69.4&quot;, &quot;23.1&quot;], [&quot;26.3&quot;, &quot;45.0&quot;, &quot;0.79&quot;, &quot;30.0&quot;, &quot;15.0&quot;, &quot;66.7&quot;, &quot;27.8&quot;], [&quot;31.6&quot;, &quot;54.0&quot;, &quot;0.74&quot;, &quot;38.0&quot;, &quot;16.0&quot;, &quot;70.4&quot;, &quot;35.2&quot;], [&quot;36.8&quot;, &quot;63.0&quot;, &quot;0.68&quot;, &quot;43.0&quot;, &quot;20.0&quot;, &quot;68.3&quot;, &quot;39.8&quot;], [&quot;42.1&quot;, &quot;72.0&quot;, &quot;0.65&quot;, &quot;48.0&quot;, &quot;24.0&quot;, &quot;66.7&quot;, &quot;44.4&quot;], [&quot;47.4&quot;, &quot;81.0&quot;, &quot;0.59&quot;, &quot;55.0&quot;, &quot;26.0&quot;, &quot;67.9&quot;, &quot;50.9&quot;], [&quot;52.6&quot;, &quot;90.0&quot;, &quot;0.49&quot;, &quot;60.0&quot;, &quot;30.0&quot;, &quot;66.7&quot;, &quot;55.6&quot;], [&quot;57.9&quot;, &quot;99.0&quot;, &quot;0.45&quot;, &quot;65.0&quot;, &quot;34.0&quot;, &quot;65.7&quot;, &quot;60.2&quot;], [&quot;63.2&quot;, &quot;108.0&quot;, &quot;0.37&quot;, &quot;69.0&quot;, &quot;39.0&quot;, &quot;63.9&quot;, &quot;63.9&quot;], [&quot;68.4&quot;, &quot;117.0&quot;, &quot;0.32&quot;, &quot;75.0&quot;, &quot;42.0&quot;, &quot;64.1&quot;, &quot;69.4&quot;], [&quot;73.7&quot;, &quot;126.0&quot;, &quot;0.24&quot;, &quot;79.0&quot;, &quot;47.0&quot;, &quot;62.7&quot;, &quot;73.1&quot;], [&quot;78.9&quot;, &quot;135.0&quot;, &quot;0.19&quot;, &quot;84.0&quot;, &quot;51.0&quot;, &quot;62.2&quot;, &quot;77.8&quot;], [&quot;84.2&quot;, &quot;144.0&quot;, &quot;0.15&quot;, &quot;89.0&quot;, &quot;55.0&quot;, &quot;61.8&quot;, &quot;82.4&quot;], [&quot;89.5&quot;, &quot;153.0&quot;, &quot;0.1&quot;, &quot;96.0&quot;, &quot;57.0&quot;, &quot;62.7&quot;, &quot;88.9&quot;], [&quot;94.7&quot;, &quot;162.0&quot;, &quot;0.04&quot;, &quot;102.0&quot;, &quot;60.0&quot;, &quot;63.0&quot;, &quot;94.4&quot;], [&quot;100.0&quot;, &quot;171.0&quot;, &quot;0.01&quot;, &quot;108.0&quot;, &quot;63.0&quot;, &quot;63.2&quot;, &quot;100.0&quot;]]}, &quot;insights&quot;: [], &quot;alerts&quot;: [], &quot;tabs&quot;: [], &quot;widgets&quot;: [], &quot;pageSize&quot;: 5}, {&quot;type&quot;: &quot;table&quot;, &quot;title&quot;: &quot;Reference: Precision-Recall Table&quot;, &quot;size&quot;: 2, &quot;id&quot;: &quot;063c5e2d-dbe4-4d61-abe9-ffb415cdadd5&quot;, &quot;details&quot;: &quot;&quot;, &quot;alertsPosition&quot;: null, &quot;alertStats&quot;: null, &quot;params&quot;: {&quot;header&quot;: [&quot;Top(%)&quot;, &quot;Count&quot;, &quot;Prob&quot;, &quot;TP&quot;, &quot;FP&quot;, &quot;Precision&quot;, &quot;Recall&quot;], &quot;data&quot;: [[&quot;5.0&quot;, &quot;20.0&quot;, &quot;0.93&quot;, &quot;17.0&quot;, &quot;3.0&quot;, &quot;85.0&quot;, &quot;6.8&quot;], [&quot;10.1&quot;, &quot;40.0&quot;, &quot;0.88&quot;, &quot;30.0&quot;, &quot;10.0&quot;, &quot;75.0&quot;, &quot;12.0&quot;], [&quot;15.1&quot;, &quot;60.0&quot;, &quot;0.8&quot;, &quot;39.0&quot;, &quot;21.0&quot;, &quot;65.0&quot;, &quot;15.7&quot;], [&quot;20.1&quot;, &quot;80.0&quot;, &quot;0.77&quot;, &quot;50.0&quot;, &quot;30.0&quot;, &quot;62.5&quot;, &quot;20.1&quot;], [&quot;25.1&quot;, &quot;100.0&quot;, &quot;0.73&quot;, &quot;66.0&quot;, &quot;34.0&quot;, &quot;66.0&quot;, &quot;26.5&quot;], [&quot;30.2&quot;, &quot;120.0&quot;, &quot;0.69&quot;, &quot;80.0&quot;, &quot;40.0&quot;, &quot;66.7&quot;, &quot;32.1&quot;], [&quot;35.2&quot;, &quot;140.0&quot;, &quot;0.64&quot;, &quot;92.0&quot;, &quot;48.0&quot;, &quot;65.7&quot;, &quot;36.9&quot;], [&quot;40.2&quot;, &quot;160.0&quot;, &quot;0.59&quot;, &quot;106.0&quot;, &quot;54.0&quot;, &quot;66.2&quot;, &quot;42.6&quot;], [&quot;45.2&quot;, &quot;180.0&quot;, &quot;0.54&quot;, &quot;120.0&quot;, &quot;60.0&quot;, &quot;66.7&quot;, &quot;48.2&quot;], [&quot;50.3&quot;, &quot;200.0&quot;, &quot;0.51&quot;, &quot;129.0&quot;, &quot;71.0&quot;, &quot;64.5&quot;, &quot;51.8&quot;], [&quot;55.3&quot;, &quot;220.0&quot;, &quot;0.46&quot;, &quot;141.0&quot;, &quot;79.0&quot;, &quot;64.1&quot;, &quot;56.6&quot;], [&quot;60.3&quot;, &quot;240.0&quot;, &quot;0.4&quot;, &quot;151.0&quot;, &quot;89.0&quot;, &quot;62.9&quot;, &quot;60.6&quot;], [&quot;65.3&quot;, &quot;260.0&quot;, &quot;0.35&quot;, &quot;163.0&quot;, &quot;97.0&quot;, &quot;62.7&quot;, &quot;65.5&quot;], [&quot;70.4&quot;, &quot;280.0&quot;, &quot;0.32&quot;, &quot;176.0&quot;, &quot;104.0&quot;, &quot;62.9&quot;, &quot;70.7&quot;], [&quot;75.4&quot;, &quot;300.0&quot;, &quot;0.25&quot;, &quot;189.0&quot;, &quot;111.0&quot;, &quot;63.0&quot;, &quot;75.9&quot;], [&quot;80.4&quot;, &quot;320.0&quot;, &quot;0.21&quot;, &quot;201.0&quot;, &quot;119.0&quot;, &quot;62.8&quot;, &quot;80.7&quot;], [&quot;85.4&quot;, &quot;340.0&quot;, &quot;0.14&quot;, &quot;215.0&quot;, &quot;125.0&quot;, &quot;63.2&quot;, &quot;86.3&quot;], [&quot;90.5&quot;, &quot;360.0&quot;, &quot;0.09&quot;, &quot;227.0&quot;, &quot;133.0&quot;, &quot;63.1&quot;, &quot;91.2&quot;], [&quot;95.5&quot;, &quot;380.0&quot;, &quot;0.04&quot;, &quot;233.0&quot;, &quot;147.0&quot;, &quot;61.3&quot;, &quot;93.6&quot;], [&quot;100.0&quot;, &quot;398.0&quot;, &quot;0.0&quot;, &quot;249.0&quot;, &quot;149.0&quot;, &quot;62.6&quot;, &quot;100.0&quot;]]}, &quot;insights&quot;: [], &quot;alerts&quot;: [], &quot;tabs&quot;: [], &quot;widgets&quot;: [], &quot;pageSize&quot;: 5}, {&quot;type&quot;: &quot;counter&quot;, &quot;title&quot;: &quot;&quot;, &quot;size&quot;: 2, &quot;id&quot;: &quot;5f836607-0892-4cd6-bb1f-4fcdd95b8db6&quot;, &quot;details&quot;: &quot;&quot;, &quot;alertsPosition&quot;: null, &quot;alertStats&quot;: null, &quot;params&quot;: {&quot;counters&quot;: [{&quot;value&quot;: &quot;&quot;, &quot;label&quot;: &quot;Classification Quality By Feature&quot;}]}, &quot;insights&quot;: [], &quot;alerts&quot;: [], &quot;tabs&quot;: [], &quot;widgets&quot;: [], &quot;pageSize&quot;: 5}, {&quot;type&quot;: &quot;big_table&quot;, &quot;title&quot;: &quot;&quot;, &quot;size&quot;: 2, &quot;id&quot;: &quot;650d75c1-d5d7-41b4-b83b-79eceb78a109&quot;, &quot;details&quot;: &quot;&quot;, &quot;alertsPosition&quot;: null, &quot;alertStats&quot;: null, &quot;params&quot;: {&quot;rowsPerPage&quot;: 10, &quot;columns&quot;: [{&quot;title&quot;: &quot;Feature&quot;, &quot;field&quot;: &quot;f1&quot;}], &quot;data&quot;: [{&quot;details&quot;: {&quot;parts&quot;: [{&quot;title&quot;: &quot;All&quot;, &quot;id&quot;: &quot;All_area error&quot;}, {&quot;title&quot;: &quot;0&quot;, &quot;id&quot;: &quot;area error_0&quot;}, {&quot;title&quot;: &quot;1&quot;, &quot;id&quot;: &quot;area error_1&quot;}], &quot;insights&quot;: []}, &quot;f1&quot;: &quot;area error&quot;}, {&quot;details&quot;: {&quot;parts&quot;: [{&quot;title&quot;: &quot;All&quot;, &quot;id&quot;: &quot;All_compactness error&quot;}, {&quot;title&quot;: &quot;0&quot;, &quot;id&quot;: &quot;compactness error_0&quot;}, {&quot;title&quot;: &quot;1&quot;, &quot;id&quot;: &quot;compactness error_1&quot;}], &quot;insights&quot;: []}, &quot;f1&quot;: &quot;compactness error&quot;}, {&quot;details&quot;: {&quot;parts&quot;: [{&quot;title&quot;: &quot;All&quot;, &quot;id&quot;: &quot;All_concave points error&quot;}, {&quot;title&quot;: &quot;0&quot;, &quot;id&quot;: &quot;concave points error_0&quot;}, {&quot;title&quot;: &quot;1&quot;, &quot;id&quot;: &quot;concave points error_1&quot;}], &quot;insights&quot;: []}, &quot;f1&quot;: &quot;concave points error&quot;}, {&quot;details&quot;: {&quot;parts&quot;: [{&quot;title&quot;: &quot;All&quot;, &quot;id&quot;: &quot;All_concavity error&quot;}, {&quot;title&quot;: &quot;0&quot;, &quot;id&quot;: &quot;concavity error_0&quot;}, {&quot;title&quot;: &quot;1&quot;, &quot;id&quot;: &quot;concavity error_1&quot;}], &quot;insights&quot;: []}, &quot;f1&quot;: &quot;concavity error&quot;}, {&quot;details&quot;: {&quot;parts&quot;: [{&quot;title&quot;: &quot;All&quot;, &quot;id&quot;: &quot;All_fractal dimension error&quot;}, {&quot;title&quot;: &quot;0&quot;, &quot;id&quot;: &quot;fractal dimension error_0&quot;}, {&quot;title&quot;: &quot;1&quot;, &quot;id&quot;: &quot;fractal dimension error_1&quot;}], &quot;insights&quot;: []}, &quot;f1&quot;: &quot;fractal dimension error&quot;}, {&quot;details&quot;: {&quot;parts&quot;: [{&quot;title&quot;: &quot;All&quot;, &quot;id&quot;: &quot;All_mean area&quot;}, {&quot;title&quot;: &quot;0&quot;, &quot;id&quot;: &quot;mean area_0&quot;}, {&quot;title&quot;: &quot;1&quot;, &quot;id&quot;: &quot;mean area_1&quot;}], &quot;insights&quot;: []}, &quot;f1&quot;: &quot;mean area&quot;}, {&quot;details&quot;: {&quot;parts&quot;: [{&quot;title&quot;: &quot;All&quot;, &quot;id&quot;: &quot;All_mean compactness&quot;}, {&quot;title&quot;: &quot;0&quot;, &quot;id&quot;: &quot;mean compactness_0&quot;}, {&quot;title&quot;: &quot;1&quot;, &quot;id&quot;: &quot;mean compactness_1&quot;}], &quot;insights&quot;: []}, &quot;f1&quot;: &quot;mean compactness&quot;}, {&quot;details&quot;: {&quot;parts&quot;: [{&quot;title&quot;: &quot;All&quot;, &quot;id&quot;: &quot;All_mean concave points&quot;}, {&quot;title&quot;: &quot;0&quot;, &quot;id&quot;: &quot;mean concave points_0&quot;}, {&quot;title&quot;: &quot;1&quot;, &quot;id&quot;: &quot;mean concave points_1&quot;}], &quot;insights&quot;: []}, &quot;f1&quot;: &quot;mean concave points&quot;}, {&quot;details&quot;: {&quot;parts&quot;: [{&quot;title&quot;: &quot;All&quot;, &quot;id&quot;: &quot;All_mean concavity&quot;}, {&quot;title&quot;: &quot;0&quot;, &quot;id&quot;: &quot;mean concavity_0&quot;}, {&quot;title&quot;: &quot;1&quot;, &quot;id&quot;: &quot;mean concavity_1&quot;}], &quot;insights&quot;: []}, &quot;f1&quot;: &quot;mean concavity&quot;}, {&quot;details&quot;: {&quot;parts&quot;: [{&quot;title&quot;: &quot;All&quot;, &quot;id&quot;: &quot;All_mean fractal dimension&quot;}, {&quot;title&quot;: &quot;0&quot;, &quot;id&quot;: &quot;mean fractal dimension_0&quot;}, {&quot;title&quot;: &quot;1&quot;, &quot;id&quot;: &quot;mean fractal dimension_1&quot;}], &quot;insights&quot;: []}, &quot;f1&quot;: &quot;mean fractal dimension&quot;}, {&quot;details&quot;: {&quot;parts&quot;: [{&quot;title&quot;: &quot;All&quot;, &quot;id&quot;: &quot;All_mean perimeter&quot;}, {&quot;title&quot;: &quot;0&quot;, &quot;id&quot;: &quot;mean perimeter_0&quot;}, {&quot;title&quot;: &quot;1&quot;, &quot;id&quot;: &quot;mean perimeter_1&quot;}], &quot;insights&quot;: []}, &quot;f1&quot;: &quot;mean perimeter&quot;}, {&quot;details&quot;: {&quot;parts&quot;: [{&quot;title&quot;: &quot;All&quot;, &quot;id&quot;: &quot;All_mean radius&quot;}, {&quot;title&quot;: &quot;0&quot;, &quot;id&quot;: &quot;mean radius_0&quot;}, {&quot;title&quot;: &quot;1&quot;, &quot;id&quot;: &quot;mean radius_1&quot;}], &quot;insights&quot;: []}, &quot;f1&quot;: &quot;mean radius&quot;}, {&quot;details&quot;: {&quot;parts&quot;: [{&quot;title&quot;: &quot;All&quot;, &quot;id&quot;: &quot;All_mean smoothness&quot;}, {&quot;title&quot;: &quot;0&quot;, &quot;id&quot;: &quot;mean smoothness_0&quot;}, {&quot;title&quot;: &quot;1&quot;, &quot;id&quot;: &quot;mean smoothness_1&quot;}], &quot;insights&quot;: []}, &quot;f1&quot;: &quot;mean smoothness&quot;}, {&quot;details&quot;: {&quot;parts&quot;: [{&quot;title&quot;: &quot;All&quot;, &quot;id&quot;: &quot;All_mean symmetry&quot;}, {&quot;title&quot;: &quot;0&quot;, &quot;id&quot;: &quot;mean symmetry_0&quot;}, {&quot;title&quot;: &quot;1&quot;, &quot;id&quot;: &quot;mean symmetry_1&quot;}], &quot;insights&quot;: []}, &quot;f1&quot;: &quot;mean symmetry&quot;}, {&quot;details&quot;: {&quot;parts&quot;: [{&quot;title&quot;: &quot;All&quot;, &quot;id&quot;: &quot;All_mean texture&quot;}, {&quot;title&quot;: &quot;0&quot;, &quot;id&quot;: &quot;mean texture_0&quot;}, {&quot;title&quot;: &quot;1&quot;, &quot;id&quot;: &quot;mean texture_1&quot;}], &quot;insights&quot;: []}, &quot;f1&quot;: &quot;mean texture&quot;}, {&quot;details&quot;: {&quot;parts&quot;: [{&quot;title&quot;: &quot;All&quot;, &quot;id&quot;: &quot;All_perimeter error&quot;}, {&quot;title&quot;: &quot;0&quot;, &quot;id&quot;: &quot;perimeter error_0&quot;}, {&quot;title&quot;: &quot;1&quot;, &quot;id&quot;: &quot;perimeter error_1&quot;}], &quot;insights&quot;: []}, &quot;f1&quot;: &quot;perimeter error&quot;}, {&quot;details&quot;: {&quot;parts&quot;: [{&quot;title&quot;: &quot;All&quot;, &quot;id&quot;: &quot;All_radius error&quot;}, {&quot;title&quot;: &quot;0&quot;, &quot;id&quot;: &quot;radius error_0&quot;}, {&quot;title&quot;: &quot;1&quot;, &quot;id&quot;: &quot;radius error_1&quot;}], &quot;insights&quot;: []}, &quot;f1&quot;: &quot;radius error&quot;}, {&quot;details&quot;: {&quot;parts&quot;: [{&quot;title&quot;: &quot;All&quot;, &quot;id&quot;: &quot;All_smoothness error&quot;}, {&quot;title&quot;: &quot;0&quot;, &quot;id&quot;: &quot;smoothness error_0&quot;}, {&quot;title&quot;: &quot;1&quot;, &quot;id&quot;: &quot;smoothness error_1&quot;}], &quot;insights&quot;: []}, &quot;f1&quot;: &quot;smoothness error&quot;}, {&quot;details&quot;: {&quot;parts&quot;: [{&quot;title&quot;: &quot;All&quot;, &quot;id&quot;: &quot;All_symmetry error&quot;}, {&quot;title&quot;: &quot;0&quot;, &quot;id&quot;: &quot;symmetry error_0&quot;}, {&quot;title&quot;: &quot;1&quot;, &quot;id&quot;: &quot;symmetry error_1&quot;}], &quot;insights&quot;: []}, &quot;f1&quot;: &quot;symmetry error&quot;}, {&quot;details&quot;: {&quot;parts&quot;: [{&quot;title&quot;: &quot;All&quot;, &quot;id&quot;: &quot;All_texture error&quot;}, {&quot;title&quot;: &quot;0&quot;, &quot;id&quot;: &quot;texture error_0&quot;}, {&quot;title&quot;: &quot;1&quot;, &quot;id&quot;: &quot;texture error_1&quot;}], &quot;insights&quot;: []}, &quot;f1&quot;: &quot;texture error&quot;}, {&quot;details&quot;: {&quot;parts&quot;: [{&quot;title&quot;: &quot;All&quot;, &quot;id&quot;: &quot;All_worst area&quot;}, {&quot;title&quot;: &quot;0&quot;, &quot;id&quot;: &quot;worst area_0&quot;}, {&quot;title&quot;: &quot;1&quot;, &quot;id&quot;: &quot;worst area_1&quot;}], &quot;insights&quot;: []}, &quot;f1&quot;: &quot;worst area&quot;}, {&quot;details&quot;: {&quot;parts&quot;: [{&quot;title&quot;: &quot;All&quot;, &quot;id&quot;: &quot;All_worst compactness&quot;}, {&quot;title&quot;: &quot;0&quot;, &quot;id&quot;: &quot;worst compactness_0&quot;}, {&quot;title&quot;: &quot;1&quot;, &quot;id&quot;: &quot;worst compactness_1&quot;}], &quot;insights&quot;: []}, &quot;f1&quot;: &quot;worst compactness&quot;}, {&quot;details&quot;: {&quot;parts&quot;: [{&quot;title&quot;: &quot;All&quot;, &quot;id&quot;: &quot;All_worst concave points&quot;}, {&quot;title&quot;: &quot;0&quot;, &quot;id&quot;: &quot;worst concave points_0&quot;}, {&quot;title&quot;: &quot;1&quot;, &quot;id&quot;: &quot;worst concave points_1&quot;}], &quot;insights&quot;: []}, &quot;f1&quot;: &quot;worst concave points&quot;}, {&quot;details&quot;: {&quot;parts&quot;: [{&quot;title&quot;: &quot;All&quot;, &quot;id&quot;: &quot;All_worst concavity&quot;}, {&quot;title&quot;: &quot;0&quot;, &quot;id&quot;: &quot;worst concavity_0&quot;}, {&quot;title&quot;: &quot;1&quot;, &quot;id&quot;: &quot;worst concavity_1&quot;}], &quot;insights&quot;: []}, &quot;f1&quot;: &quot;worst concavity&quot;}, {&quot;details&quot;: {&quot;parts&quot;: [{&quot;title&quot;: &quot;All&quot;, &quot;id&quot;: &quot;All_worst fractal dimension&quot;}, {&quot;title&quot;: &quot;0&quot;, &quot;id&quot;: &quot;worst fractal dimension_0&quot;}, {&quot;title&quot;: &quot;1&quot;, &quot;id&quot;: &quot;worst fractal dimension_1&quot;}], &quot;insights&quot;: []}, &quot;f1&quot;: &quot;worst fractal dimension&quot;}, {&quot;details&quot;: {&quot;parts&quot;: [{&quot;title&quot;: &quot;All&quot;, &quot;id&quot;: &quot;All_worst perimeter&quot;}, {&quot;title&quot;: &quot;0&quot;, &quot;id&quot;: &quot;worst perimeter_0&quot;}, {&quot;title&quot;: &quot;1&quot;, &quot;id&quot;: &quot;worst perimeter_1&quot;}], &quot;insights&quot;: []}, &quot;f1&quot;: &quot;worst perimeter&quot;}, {&quot;details&quot;: {&quot;parts&quot;: [{&quot;title&quot;: &quot;All&quot;, &quot;id&quot;: &quot;All_worst radius&quot;}, {&quot;title&quot;: &quot;0&quot;, &quot;id&quot;: &quot;worst radius_0&quot;}, {&quot;title&quot;: &quot;1&quot;, &quot;id&quot;: &quot;worst radius_1&quot;}], &quot;insights&quot;: []}, &quot;f1&quot;: &quot;worst radius&quot;}, {&quot;details&quot;: {&quot;parts&quot;: [{&quot;title&quot;: &quot;All&quot;, &quot;id&quot;: &quot;All_worst smoothness&quot;}, {&quot;title&quot;: &quot;0&quot;, &quot;id&quot;: &quot;worst smoothness_0&quot;}, {&quot;title&quot;: &quot;1&quot;, &quot;id&quot;: &quot;worst smoothness_1&quot;}], &quot;insights&quot;: []}, &quot;f1&quot;: &quot;worst smoothness&quot;}, {&quot;details&quot;: {&quot;parts&quot;: [{&quot;title&quot;: &quot;All&quot;, &quot;id&quot;: &quot;All_worst symmetry&quot;}, {&quot;title&quot;: &quot;0&quot;, &quot;id&quot;: &quot;worst symmetry_0&quot;}, {&quot;title&quot;: &quot;1&quot;, &quot;id&quot;: &quot;worst symmetry_1&quot;}], &quot;insights&quot;: []}, &quot;f1&quot;: &quot;worst symmetry&quot;}, {&quot;details&quot;: {&quot;parts&quot;: [{&quot;title&quot;: &quot;All&quot;, &quot;id&quot;: &quot;All_worst texture&quot;}, {&quot;title&quot;: &quot;0&quot;, &quot;id&quot;: &quot;worst texture_0&quot;}, {&quot;title&quot;: &quot;1&quot;, &quot;id&quot;: &quot;worst texture_1&quot;}], &quot;insights&quot;: []}, &quot;f1&quot;: &quot;worst texture&quot;}]}, &quot;insights&quot;: [], &quot;alerts&quot;: [], &quot;tabs&quot;: [], &quot;widgets&quot;: [], &quot;pageSize&quot;: 5}]};\n",
" var additional_graphs_evidently_dashboard_d6c0af891526482183ee027422628b59 = {&quot;a9822d57-2b6d-4710-91b9-e90cfcf6bd71&quot;: {&quot;type&quot;: &quot;big_graph&quot;, &quot;title&quot;: &quot;&quot;, &quot;size&quot;: 2, &quot;id&quot;: &quot;a9822d57-2b6d-4710-91b9-e90cfcf6bd71&quot;, &quot;details&quot;: &quot;&quot;, &quot;alertsPosition&quot;: null, &quot;alertStats&quot;: null, &quot;params&quot;: {&quot;data&quot;: [{&quot;marker&quot;: {&quot;color&quot;: &quot;#ed0400&quot;}, &quot;name&quot;: &quot;current&quot;, &quot;visible&quot;: true, &quot;x&quot;: [1, 0], &quot;y&quot;: [108, 63], &quot;type&quot;: &quot;bar&quot;, &quot;xaxis&quot;: &quot;x&quot;, &quot;yaxis&quot;: &quot;y&quot;}, {&quot;marker&quot;: {&quot;color&quot;: &quot;#ed0400&quot;}, &quot;name&quot;: &quot;current&quot;, &quot;visible&quot;: false, &quot;x&quot;: [1, 0], &quot;y&quot;: [63.1578947368421, 36.84210526315789], &quot;type&quot;: &quot;bar&quot;, &quot;xaxis&quot;: &quot;x&quot;, &quot;yaxis&quot;: &quot;y&quot;}, {&quot;marker&quot;: {&quot;color&quot;: &quot;#4d4d4d&quot;}, &quot;name&quot;: &quot;reference&quot;, &quot;visible&quot;: true, &quot;x&quot;: [1, 0], &quot;y&quot;: [249, 149], &quot;type&quot;: &quot;bar&quot;, &quot;xaxis&quot;: &quot;x&quot;, &quot;yaxis&quot;: &quot;y&quot;}, {&quot;marker&quot;: {&quot;color&quot;: &quot;#4d4d4d&quot;}, &quot;name&quot;: &quot;reference&quot;, &quot;visible&quot;: false, &quot;x&quot;: [1, 0], &quot;y&quot;: [62.562814070351756, 37.437185929648244], &quot;type&quot;: &quot;bar&quot;, &quot;xaxis&quot;: &quot;x&quot;, &quot;yaxis&quot;: &quot;y&quot;}], &quot;layout&quot;: {&quot;template&quot;: {&quot;data&quot;: {&quot;histogram2dcontour&quot;: [{&quot;type&quot;: &quot;histogram2dcontour&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;choropleth&quot;: [{&quot;type&quot;: &quot;choropleth&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}], &quot;histogram2d&quot;: [{&quot;type&quot;: &quot;histogram2d&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;heatmap&quot;: [{&quot;type&quot;: &quot;heatmap&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;heatmapgl&quot;: [{&quot;type&quot;: &quot;heatmapgl&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;contourcarpet&quot;: [{&quot;type&quot;: &quot;contourcarpet&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}], &quot;contour&quot;: [{&quot;type&quot;: &quot;contour&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;surface&quot;: [{&quot;type&quot;: &quot;surface&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;mesh3d&quot;: [{&quot;type&quot;: &quot;mesh3d&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}], &quot;scatter&quot;: [{&quot;fillpattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}, &quot;type&quot;: &quot;scatter&quot;}], &quot;parcoords&quot;: [{&quot;type&quot;: &quot;parcoords&quot;, &quot;line&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatterpolargl&quot;: [{&quot;type&quot;: &quot;scatterpolargl&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;bar&quot;: [{&quot;error_x&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}, &quot;error_y&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}, &quot;marker&quot;: {&quot;line&quot;: {&quot;color&quot;: &quot;#E5ECF6&quot;, &quot;width&quot;: 0.5}, &quot;pattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}}, &quot;type&quot;: &quot;bar&quot;}], &quot;scattergeo&quot;: [{&quot;type&quot;: &quot;scattergeo&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatterpolar&quot;: [{&quot;type&quot;: &quot;scatterpolar&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;histogram&quot;: [{&quot;marker&quot;: {&quot;pattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}}, &quot;type&quot;: &quot;histogram&quot;}], &quot;scattergl&quot;: [{&quot;type&quot;: &quot;scattergl&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatter3d&quot;: [{&quot;type&quot;: &quot;scatter3d&quot;, &quot;line&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scattermapbox&quot;: [{&quot;type&quot;: &quot;scattermapbox&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatterternary&quot;: [{&quot;type&quot;: &quot;scatterternary&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scattercarpet&quot;: [{&quot;type&quot;: &quot;scattercarpet&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;carpet&quot;: [{&quot;aaxis&quot;: {&quot;endlinecolor&quot;: &quot;#2a3f5f&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;minorgridcolor&quot;: &quot;white&quot;, &quot;startlinecolor&quot;: &quot;#2a3f5f&quot;}, &quot;baxis&quot;: {&quot;endlinecolor&quot;: &quot;#2a3f5f&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;minorgridcolor&quot;: &quot;white&quot;, &quot;startlinecolor&quot;: &quot;#2a3f5f&quot;}, &quot;type&quot;: &quot;carpet&quot;}], &quot;table&quot;: [{&quot;cells&quot;: {&quot;fill&quot;: {&quot;color&quot;: &quot;#EBF0F8&quot;}, &quot;line&quot;: {&quot;color&quot;: &quot;white&quot;}}, &quot;header&quot;: {&quot;fill&quot;: {&quot;color&quot;: &quot;#C8D4E3&quot;}, &quot;line&quot;: {&quot;color&quot;: &quot;white&quot;}}, &quot;type&quot;: &quot;table&quot;}], &quot;barpolar&quot;: [{&quot;marker&quot;: {&quot;line&quot;: {&quot;color&quot;: &quot;#E5ECF6&quot;, &quot;width&quot;: 0.5}, &quot;pattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}}, &quot;type&quot;: &quot;barpolar&quot;}], &quot;pie&quot;: [{&quot;automargin&quot;: true, &quot;type&quot;: &quot;pie&quot;}]}, &quot;layout&quot;: {&quot;autotypenumbers&quot;: &quot;strict&quot;, &quot;colorway&quot;: [&quot;#636efa&quot;, &quot;#EF553B&quot;, &quot;#00cc96&quot;, &quot;#ab63fa&quot;, &quot;#FFA15A&quot;, &quot;#19d3f3&quot;, &quot;#FF6692&quot;, &quot;#B6E880&quot;, &quot;#FF97FF&quot;, &quot;#FECB52&quot;], &quot;font&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}, &quot;hovermode&quot;: &quot;closest&quot;, &quot;hoverlabel&quot;: {&quot;align&quot;: &quot;left&quot;}, &quot;paper_bgcolor&quot;: &quot;white&quot;, &quot;plot_bgcolor&quot;: &quot;#E5ECF6&quot;, &quot;polar&quot;: {&quot;bgcolor&quot;: &quot;#E5ECF6&quot;, &quot;angularaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}, &quot;radialaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}}, &quot;ternary&quot;: {&quot;bgcolor&quot;: &quot;#E5ECF6&quot;, &quot;aaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}, &quot;baxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}, &quot;caxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}}, &quot;coloraxis&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}, &quot;colorscale&quot;: {&quot;sequential&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]], &quot;sequentialminus&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]], &quot;diverging&quot;: [[0, &quot;#8e0152&quot;], [0.1, &quot;#c51b7d&quot;], [0.2, &quot;#de77ae&quot;], [0.3, &quot;#f1b6da&quot;], [0.4, &quot;#fde0ef&quot;], [0.5, &quot;#f7f7f7&quot;], [0.6, &quot;#e6f5d0&quot;], [0.7, &quot;#b8e186&quot;], [0.8, &quot;#7fbc41&quot;], [0.9, &quot;#4d9221&quot;], [1, &quot;#276419&quot;]]}, &quot;xaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;, &quot;title&quot;: {&quot;standoff&quot;: 15}, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;automargin&quot;: true, &quot;zerolinewidth&quot;: 2}, &quot;yaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;, &quot;title&quot;: {&quot;standoff&quot;: 15}, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;automargin&quot;: true, &quot;zerolinewidth&quot;: 2}, &quot;scene&quot;: {&quot;xaxis&quot;: {&quot;backgroundcolor&quot;: &quot;#E5ECF6&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;showbackground&quot;: true, &quot;ticks&quot;: &quot;&quot;, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;gridwidth&quot;: 2}, &quot;yaxis&quot;: {&quot;backgroundcolor&quot;: &quot;#E5ECF6&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;showbackground&quot;: true, &quot;ticks&quot;: &quot;&quot;, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;gridwidth&quot;: 2}, &quot;zaxis&quot;: {&quot;backgroundcolor&quot;: &quot;#E5ECF6&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;showbackground&quot;: true, &quot;ticks&quot;: &quot;&quot;, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;gridwidth&quot;: 2}}, &quot;shapedefaults&quot;: {&quot;line&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}}, &quot;annotationdefaults&quot;: {&quot;arrowcolor&quot;: &quot;#2a3f5f&quot;, &quot;arrowhead&quot;: 0, &quot;arrowwidth&quot;: 1}, &quot;geo&quot;: {&quot;bgcolor&quot;: &quot;white&quot;, &quot;landcolor&quot;: &quot;#E5ECF6&quot;, &quot;subunitcolor&quot;: &quot;white&quot;, &quot;showland&quot;: true, &quot;showlakes&quot;: true, &quot;lakecolor&quot;: &quot;white&quot;}, &quot;title&quot;: {&quot;x&quot;: 0.05}, &quot;mapbox&quot;: {&quot;style&quot;: &quot;light&quot;}}}, &quot;xaxis&quot;: {&quot;anchor&quot;: &quot;y&quot;, &quot;domain&quot;: [0.0, 1.0], &quot;title&quot;: {&quot;text&quot;: &quot;&quot;}}, &quot;yaxis&quot;: {&quot;anchor&quot;: &quot;x&quot;, &quot;domain&quot;: [0.0, 1.0], &quot;title&quot;: {&quot;text&quot;: &quot;Count&quot;}}, &quot;updatemenus&quot;: [{&quot;buttons&quot;: [{&quot;args&quot;: [{&quot;visible&quot;: [true, false, true, false]}, {&quot;yaxis&quot;: {&quot;title&quot;: &quot;Count&quot;}}], &quot;label&quot;: &quot;abs&quot;, &quot;method&quot;: &quot;update&quot;}, {&quot;args&quot;: [{&quot;visible&quot;: [false, true, false, true]}, {&quot;yaxis&quot;: {&quot;title&quot;: &quot;Percent&quot;}}], &quot;label&quot;: &quot;perc&quot;, &quot;method&quot;: &quot;update&quot;}], &quot;direction&quot;: &quot;right&quot;, &quot;type&quot;: &quot;buttons&quot;, &quot;x&quot;: 1.05, &quot;y&quot;: 1.2, &quot;yanchor&quot;: &quot;top&quot;}]}}, &quot;insights&quot;: [], &quot;additionalGraphs&quot;: [], &quot;alerts&quot;: [], &quot;tabs&quot;: [], &quot;widgets&quot;: [], &quot;pageSize&quot;: 5}, &quot;0f0afcb6-1350-44c3-9bb2-36bd60492d32&quot;: {&quot;type&quot;: &quot;big_graph&quot;, &quot;title&quot;: &quot;&quot;, &quot;size&quot;: 2, &quot;id&quot;: &quot;0f0afcb6-1350-44c3-9bb2-36bd60492d32&quot;, &quot;details&quot;: &quot;&quot;, &quot;alertsPosition&quot;: null, &quot;alertStats&quot;: null, &quot;params&quot;: {&quot;data&quot;: [{&quot;fill&quot;: &quot;toself&quot;, &quot;fillcolor&quot;: &quot;LightGreen&quot;, &quot;line&quot;: {&quot;color&quot;: &quot;LightGreen&quot;, &quot;dash&quot;: &quot;solid&quot;, &quot;width&quot;: 0}, &quot;marker&quot;: {&quot;size&quot;: 0}, &quot;name&quot;: &quot;reference (+/- 1std)&quot;, &quot;opacity&quot;: 0.5, &quot;x&quot;: [0, 170, 170, 0], &quot;y&quot;: [0.21856152165612264, 0.21856152165612264, 0.7753013414019033, 0.7753013414019033], &quot;type&quot;: &quot;scatter&quot;}, {&quot;marker&quot;: {&quot;color&quot;: &quot;#ed0400&quot;, &quot;size&quot;: 6}, &quot;mode&quot;: &quot;markers&quot;, &quot;name&quot;: &quot;Current&quot;, &quot;x&quot;: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170], &quot;y&quot;: [0.6641781189927931, 0.9841770633084816, 0.10957424415233863, 0.8441518254107434, 0.7801234814082414, 0.21980661143101032, 0.4505362494346731, 0.5925500584813489, 0.6398781374638066, 0.8879293232204325, 0.1987911274329991, 0.47622185434340525, 0.6145108218763624, 0.3547127345563684, 0.5063470443756409, 0.9319129474714398, 0.99347772422363, 0.6809573136136509, 0.04152268929027714, 0.09052361152646049, 0.4355752947242978, 0.7618513435485414, 0.0709279843794034, 0.8419391338683793, 0.7497481633642955, 0.3924795610806854, 0.23964689233019199, 0.9484619410400378, 0.9611382421834324, 0.9172300717359356, 0.3574853417119408, 0.8225145389247012, 0.22484660306672732, 0.6814980243851597, 0.12772083754763286, 0.4935117454769735, 0.6909761283197763, 0.8939142820363856, 0.49122884970119096, 0.01929403902741178, 0.9196914598574628, 0.9245355685198424, 0.05193709479433939, 0.018964061780993857, 0.8556769109956978, 0.7405291284860553, 0.8023045588347179, 0.8788323051553298, 0.11946027891917743, 0.9676646171040791, 0.8360922278318204, 0.28084251969355034, 0.18495631597243112, 0.3571672584752127, 0.6013313134325984, 0.3958083512578179, 0.8765725637443511, 0.3724377617403404, 0.8901130962980609, 0.3324162394778126, 0.2173745117840138, 0.3683640260273987, 0.21556249597553245, 0.05391505899870197, 0.15937500545769956, 0.2970396027071004, 0.321065592866114, 0.18894598185378997, 0.921556623402899, 0.7473569330800098, 0.5780588938453785, 0.0357130125329127, 0.816665080726033, 0.2763934477168264, 0.5766887396465493, 0.6153370811460598, 0.1527987529894107, 0.2850798311269198, 0.8750725467277245, 0.16763886070068623, 0.7922344473550397, 0.18325168819189575, 0.2739946568101215, 0.46490599861687554, 0.724020463535328, 0.4095764418786587, 0.5673344885068856, 0.6525657027727119, 0.6885017507721003, 0.7911911824600624, 0.9973017918188987, 0.011645900293785871, 0.9096296375861121, 0.8367933876111734, 0.9144946150332184, 0.4386451077424497, 0.661382581078655, 0.7954232638918803, 0.4989990728423449, 0.9177801857238889, 0.015781407396483038, 0.7653011052996128, 0.22249356726136604, 0.05893171423662191, 0.3701879802377608, 0.6648547690197067, 0.6456472638707829, 0.8676385202967049, 0.8131383102207906, 0.028396399996605037, 0.17795857411721716, 0.1298118159272259, 0.6024513284571342, 0.6141729351311683, 0.7224468305731097, 0.20410613195286176, 0.03875357928757217, 0.9381546216058014, 0.08096724215489903, 0.6828093985077638, 0.021761819914518754, 0.5293265627444979, 0.7013272106008608, 0.4430836195850284, 0.41276973722432186, 0.04002257981859414, 0.6713822130979822, 0.18336535368087192, 0.8238296862955905, 0.7576721297165074, 0.6439359370861335, 0.7196914553738604, 0.3268648076995565, 0.7874903601726398, 0.8684480976917018, 0.4752515941666223, 0.6121748887778725, 0.20931468685458143, 0.3699508729249843, 0.7165949226267896, 0.928301631249479, 0.9762150796438499, 0.06698603501114742, 0.13491351282535557, 0.8143272138026995, 0.3154989924856285, 0.16838172209618185, 0.13411726710415084, 0.17484850968755294, 0.7308994936386798, 0.8787637911821382, 0.0994773066676149, 0.4721613467689886, 0.4846184359473743, 0.7921453087646263, 0.7916459647338355, 0.9704010535293895, 0.6596422297419201, 0.1494029024618846, 0.9378343826135381, 0.7842999247879562, 0.4883057093002957, 0.31626665486594896, 0.9351798019090479, 0.5867253944905444, 0.2970537865750984, 0.5637343510044931, 0.8303304268669456, 0.4662958740783867, 0.4332174254061272, 0.1288065219965846], &quot;type&quot;: &quot;scattergl&quot;}, {&quot;marker&quot;: {&quot;color&quot;: &quot;green&quot;}, &quot;mode&quot;: &quot;lines&quot;, &quot;name&quot;: &quot;reference (mean)&quot;, &quot;x&quot;: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170], &quot;y&quot;: [0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013, 0.496931431529013], &quot;type&quot;: &quot;scatter&quot;}], &quot;layout&quot;: {&quot;template&quot;: {&quot;data&quot;: {&quot;histogram2dcontour&quot;: [{&quot;type&quot;: &quot;histogram2dcontour&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;choropleth&quot;: [{&quot;type&quot;: &quot;choropleth&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}], &quot;histogram2d&quot;: [{&quot;type&quot;: &quot;histogram2d&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;heatmap&quot;: [{&quot;type&quot;: &quot;heatmap&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;heatmapgl&quot;: [{&quot;type&quot;: &quot;heatmapgl&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;contourcarpet&quot;: [{&quot;type&quot;: &quot;contourcarpet&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}], &quot;contour&quot;: [{&quot;type&quot;: &quot;contour&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;surface&quot;: [{&quot;type&quot;: &quot;surface&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;mesh3d&quot;: [{&quot;type&quot;: &quot;mesh3d&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}], &quot;scatter&quot;: [{&quot;fillpattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}, &quot;type&quot;: &quot;scatter&quot;}], &quot;parcoords&quot;: [{&quot;type&quot;: &quot;parcoords&quot;, &quot;line&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatterpolargl&quot;: [{&quot;type&quot;: &quot;scatterpolargl&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;bar&quot;: [{&quot;error_x&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}, &quot;error_y&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}, &quot;marker&quot;: {&quot;line&quot;: {&quot;color&quot;: &quot;#E5ECF6&quot;, &quot;width&quot;: 0.5}, &quot;pattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}}, &quot;type&quot;: &quot;bar&quot;}], &quot;scattergeo&quot;: [{&quot;type&quot;: &quot;scattergeo&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatterpolar&quot;: [{&quot;type&quot;: &quot;scatterpolar&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;histogram&quot;: [{&quot;marker&quot;: {&quot;pattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}}, &quot;type&quot;: &quot;histogram&quot;}], &quot;scattergl&quot;: [{&quot;type&quot;: &quot;scattergl&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatter3d&quot;: [{&quot;type&quot;: &quot;scatter3d&quot;, &quot;line&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scattermapbox&quot;: [{&quot;type&quot;: &quot;scattermapbox&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatterternary&quot;: [{&quot;type&quot;: &quot;scatterternary&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scattercarpet&quot;: [{&quot;type&quot;: &quot;scattercarpet&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;carpet&quot;: [{&quot;aaxis&quot;: {&quot;endlinecolor&quot;: &quot;#2a3f5f&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;minorgridcolor&quot;: &quot;white&quot;, &quot;startlinecolor&quot;: &quot;#2a3f5f&quot;}, &quot;baxis&quot;: {&quot;endlinecolor&quot;: &quot;#2a3f5f&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;minorgridcolor&quot;: &quot;white&quot;, &quot;startlinecolor&quot;: &quot;#2a3f5f&quot;}, &quot;type&quot;: &quot;carpet&quot;}], &quot;table&quot;: [{&quot;cells&quot;: {&quot;fill&quot;: {&quot;color&quot;: &quot;#EBF0F8&quot;}, &quot;line&quot;: {&quot;color&quot;: &quot;white&quot;}}, &quot;header&quot;: {&quot;fill&quot;: {&quot;color&quot;: &quot;#C8D4E3&quot;}, &quot;line&quot;: {&quot;color&quot;: &quot;white&quot;}}, &quot;type&quot;: &quot;table&quot;}], &quot;barpolar&quot;: [{&quot;marker&quot;: {&quot;line&quot;: {&quot;color&quot;: &quot;#E5ECF6&quot;, &quot;width&quot;: 0.5}, &quot;pattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}}, &quot;type&quot;: &quot;barpolar&quot;}], &quot;pie&quot;: [{&quot;automargin&quot;: true, &quot;type&quot;: &quot;pie&quot;}]}, &quot;layout&quot;: {&quot;autotypenumbers&quot;: &quot;strict&quot;, &quot;colorway&quot;: [&quot;#636efa&quot;, &quot;#EF553B&quot;, &quot;#00cc96&quot;, &quot;#ab63fa&quot;, &quot;#FFA15A&quot;, &quot;#19d3f3&quot;, &quot;#FF6692&quot;, &quot;#B6E880&quot;, &quot;#FF97FF&quot;, &quot;#FECB52&quot;], &quot;font&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}, &quot;hovermode&quot;: &quot;closest&quot;, &quot;hoverlabel&quot;: {&quot;align&quot;: &quot;left&quot;}, &quot;paper_bgcolor&quot;: &quot;white&quot;, &quot;plot_bgcolor&quot;: &quot;#E5ECF6&quot;, &quot;polar&quot;: {&quot;bgcolor&quot;: &quot;#E5ECF6&quot;, &quot;angularaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}, &quot;radialaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}}, &quot;ternary&quot;: {&quot;bgcolor&quot;: &quot;#E5ECF6&quot;, &quot;aaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}, &quot;baxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}, &quot;caxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}}, &quot;coloraxis&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}, &quot;colorscale&quot;: {&quot;sequential&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]], &quot;sequentialminus&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]], &quot;diverging&quot;: [[0, &quot;#8e0152&quot;], [0.1, &quot;#c51b7d&quot;], [0.2, &quot;#de77ae&quot;], [0.3, &quot;#f1b6da&quot;], [0.4, &quot;#fde0ef&quot;], [0.5, &quot;#f7f7f7&quot;], [0.6, &quot;#e6f5d0&quot;], [0.7, &quot;#b8e186&quot;], [0.8, &quot;#7fbc41&quot;], [0.9, &quot;#4d9221&quot;], [1, &quot;#276419&quot;]]}, &quot;xaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;, &quot;title&quot;: {&quot;standoff&quot;: 15}, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;automargin&quot;: true, &quot;zerolinewidth&quot;: 2}, &quot;yaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;, &quot;title&quot;: {&quot;standoff&quot;: 15}, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;automargin&quot;: true, &quot;zerolinewidth&quot;: 2}, &quot;scene&quot;: {&quot;xaxis&quot;: {&quot;backgroundcolor&quot;: &quot;#E5ECF6&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;showbackground&quot;: true, &quot;ticks&quot;: &quot;&quot;, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;gridwidth&quot;: 2}, &quot;yaxis&quot;: {&quot;backgroundcolor&quot;: &quot;#E5ECF6&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;showbackground&quot;: true, &quot;ticks&quot;: &quot;&quot;, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;gridwidth&quot;: 2}, &quot;zaxis&quot;: {&quot;backgroundcolor&quot;: &quot;#E5ECF6&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;showbackground&quot;: true, &quot;ticks&quot;: &quot;&quot;, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;gridwidth&quot;: 2}}, &quot;shapedefaults&quot;: {&quot;line&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}}, &quot;annotationdefaults&quot;: {&quot;arrowcolor&quot;: &quot;#2a3f5f&quot;, &quot;arrowhead&quot;: 0, &quot;arrowwidth&quot;: 1}, &quot;geo&quot;: {&quot;bgcolor&quot;: &quot;white&quot;, &quot;landcolor&quot;: &quot;#E5ECF6&quot;, &quot;subunitcolor&quot;: &quot;white&quot;, &quot;showland&quot;: true, &quot;showlakes&quot;: true, &quot;lakecolor&quot;: &quot;white&quot;}, &quot;title&quot;: {&quot;x&quot;: 0.05}, &quot;mapbox&quot;: {&quot;style&quot;: &quot;light&quot;}}}, &quot;legend&quot;: {&quot;orientation&quot;: &quot;h&quot;, &quot;yanchor&quot;: &quot;bottom&quot;, &quot;y&quot;: 1.02, &quot;xanchor&quot;: &quot;right&quot;, &quot;x&quot;: 1}, &quot;xaxis&quot;: {&quot;title&quot;: {&quot;text&quot;: &quot;Index&quot;}}, &quot;yaxis&quot;: {&quot;title&quot;: {&quot;text&quot;: &quot;prediction&quot;}}, &quot;showlegend&quot;: true}}, &quot;insights&quot;: [], &quot;additionalGraphs&quot;: [], &quot;alerts&quot;: [], &quot;tabs&quot;: [], &quot;widgets&quot;: [], &quot;pageSize&quot;: 5}, &quot;f69e4dd9-b48d-4ab9-ba0e-f6c49e159238&quot;: {&quot;type&quot;: &quot;big_graph&quot;, &quot;title&quot;: &quot;&quot;, &quot;size&quot;: 2, &quot;id&quot;: &quot;f69e4dd9-b48d-4ab9-ba0e-f6c49e159238&quot;, &quot;details&quot;: &quot;&quot;, &quot;alertsPosition&quot;: null, &quot;alertStats&quot;: null, &quot;params&quot;: {&quot;data&quot;: [{&quot;marker&quot;: {&quot;color&quot;: &quot;#ed0400&quot;}, &quot;name&quot;: &quot;current&quot;, &quot;visible&quot;: true, &quot;x&quot;: [4.026859853056841e-05, 0.0832022186415207, 0.16636416868451084, 0.24952611872750097, 0.3326880687704911, 0.41585001881348127, 0.49901196885647137, 0.5821739188994616, 0.6653358689424517, 0.7484978189854418, 0.831659769028432, 0.9148217190714221, 0.9979836691144123], &quot;y&quot;: [16, 12, 17, 11, 11, 15, 6, 16, 14, 19, 16, 18], &quot;type&quot;: &quot;bar&quot;, &quot;xaxis&quot;: &quot;x&quot;, &quot;yaxis&quot;: &quot;y&quot;}, {&quot;marker&quot;: {&quot;color&quot;: &quot;#ed0400&quot;}, &quot;name&quot;: &quot;current&quot;, &quot;visible&quot;: false, &quot;x&quot;: [4.026859853056841e-05, 0.0832022186415207, 0.16636416868451084, 0.24952611872750097, 0.3326880687704911, 0.41585001881348127, 0.49901196885647137, 0.5821739188994616, 0.6653358689424517, 0.7484978189854418, 0.831659769028432, 0.9148217190714221, 0.9979836691144123], &quot;y&quot;: [9.35672514619883, 7.017543859649122, 9.941520467836257, 6.432748538011696, 6.432748538011696, 8.771929824561402, 3.508771929824561, 9.35672514619883, 8.187134502923977, 11.11111111111111, 9.35672514619883, 10.526315789473683], &quot;type&quot;: &quot;bar&quot;, &quot;xaxis&quot;: &quot;x&quot;, &quot;yaxis&quot;: &quot;y&quot;}, {&quot;marker&quot;: {&quot;color&quot;: &quot;#4d4d4d&quot;}, &quot;name&quot;: &quot;reference&quot;, &quot;visible&quot;: true, &quot;x&quot;: [4.026859853056841e-05, 0.0832022186415207, 0.16636416868451084, 0.24952611872750097, 0.3326880687704911, 0.41585001881348127, 0.49901196885647137, 0.5821739188994616, 0.6653358689424517, 0.7484978189854418, 0.831659769028432, 0.9148217190714221, 0.9979836691144123], &quot;y&quot;: [33, 32, 30, 27, 38, 32, 40, 36, 39, 42, 22, 27], &quot;type&quot;: &quot;bar&quot;, &quot;xaxis&quot;: &quot;x&quot;, &quot;yaxis&quot;: &quot;y&quot;}, {&quot;marker&quot;: {&quot;color&quot;: &quot;#4d4d4d&quot;}, &quot;name&quot;: &quot;reference&quot;, &quot;visible&quot;: false, &quot;x&quot;: [4.026859853056841e-05, 0.0832022186415207, 0.16636416868451084, 0.24952611872750097, 0.3326880687704911, 0.41585001881348127, 0.49901196885647137, 0.5821739188994616, 0.6653358689424517, 0.7484978189854418, 0.831659769028432, 0.9148217190714221, 0.9979836691144123], &quot;y&quot;: [8.291457286432161, 8.040201005025125, 7.537688442211055, 6.78391959798995, 9.547738693467336, 8.040201005025125, 10.050251256281408, 9.045226130653267, 9.798994974874372, 10.552763819095476, 5.527638190954774, 6.78391959798995], &quot;type&quot;: &quot;bar&quot;, &quot;xaxis&quot;: &quot;x&quot;, &quot;yaxis&quot;: &quot;y&quot;}], &quot;layout&quot;: {&quot;template&quot;: {&quot;data&quot;: {&quot;histogram2dcontour&quot;: [{&quot;type&quot;: &quot;histogram2dcontour&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;choropleth&quot;: [{&quot;type&quot;: &quot;choropleth&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}], &quot;histogram2d&quot;: [{&quot;type&quot;: &quot;histogram2d&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;heatmap&quot;: [{&quot;type&quot;: &quot;heatmap&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;heatmapgl&quot;: [{&quot;type&quot;: &quot;heatmapgl&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;contourcarpet&quot;: [{&quot;type&quot;: &quot;contourcarpet&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}], &quot;contour&quot;: [{&quot;type&quot;: &quot;contour&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;surface&quot;: [{&quot;type&quot;: &quot;surface&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;mesh3d&quot;: [{&quot;type&quot;: &quot;mesh3d&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}], &quot;scatter&quot;: [{&quot;fillpattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}, &quot;type&quot;: &quot;scatter&quot;}], &quot;parcoords&quot;: [{&quot;type&quot;: &quot;parcoords&quot;, &quot;line&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatterpolargl&quot;: [{&quot;type&quot;: &quot;scatterpolargl&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;bar&quot;: [{&quot;error_x&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}, &quot;error_y&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}, &quot;marker&quot;: {&quot;line&quot;: {&quot;color&quot;: &quot;#E5ECF6&quot;, &quot;width&quot;: 0.5}, &quot;pattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}}, &quot;type&quot;: &quot;bar&quot;}], &quot;scattergeo&quot;: [{&quot;type&quot;: &quot;scattergeo&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatterpolar&quot;: [{&quot;type&quot;: &quot;scatterpolar&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;histogram&quot;: [{&quot;marker&quot;: {&quot;pattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}}, &quot;type&quot;: &quot;histogram&quot;}], &quot;scattergl&quot;: [{&quot;type&quot;: &quot;scattergl&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatter3d&quot;: [{&quot;type&quot;: &quot;scatter3d&quot;, &quot;line&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scattermapbox&quot;: [{&quot;type&quot;: &quot;scattermapbox&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatterternary&quot;: [{&quot;type&quot;: &quot;scatterternary&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scattercarpet&quot;: [{&quot;type&quot;: &quot;scattercarpet&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;carpet&quot;: [{&quot;aaxis&quot;: {&quot;endlinecolor&quot;: &quot;#2a3f5f&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;minorgridcolor&quot;: &quot;white&quot;, &quot;startlinecolor&quot;: &quot;#2a3f5f&quot;}, &quot;baxis&quot;: {&quot;endlinecolor&quot;: &quot;#2a3f5f&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;minorgridcolor&quot;: &quot;white&quot;, &quot;startlinecolor&quot;: &quot;#2a3f5f&quot;}, &quot;type&quot;: &quot;carpet&quot;}], &quot;table&quot;: [{&quot;cells&quot;: {&quot;fill&quot;: {&quot;color&quot;: &quot;#EBF0F8&quot;}, &quot;line&quot;: {&quot;color&quot;: &quot;white&quot;}}, &quot;header&quot;: {&quot;fill&quot;: {&quot;color&quot;: &quot;#C8D4E3&quot;}, &quot;line&quot;: {&quot;color&quot;: &quot;white&quot;}}, &quot;type&quot;: &quot;table&quot;}], &quot;barpolar&quot;: [{&quot;marker&quot;: {&quot;line&quot;: {&quot;color&quot;: &quot;#E5ECF6&quot;, &quot;width&quot;: 0.5}, &quot;pattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}}, &quot;type&quot;: &quot;barpolar&quot;}], &quot;pie&quot;: [{&quot;automargin&quot;: true, &quot;type&quot;: &quot;pie&quot;}]}, &quot;layout&quot;: {&quot;autotypenumbers&quot;: &quot;strict&quot;, &quot;colorway&quot;: [&quot;#636efa&quot;, &quot;#EF553B&quot;, &quot;#00cc96&quot;, &quot;#ab63fa&quot;, &quot;#FFA15A&quot;, &quot;#19d3f3&quot;, &quot;#FF6692&quot;, &quot;#B6E880&quot;, &quot;#FF97FF&quot;, &quot;#FECB52&quot;], &quot;font&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}, &quot;hovermode&quot;: &quot;closest&quot;, &quot;hoverlabel&quot;: {&quot;align&quot;: &quot;left&quot;}, &quot;paper_bgcolor&quot;: &quot;white&quot;, &quot;plot_bgcolor&quot;: &quot;#E5ECF6&quot;, &quot;polar&quot;: {&quot;bgcolor&quot;: &quot;#E5ECF6&quot;, &quot;angularaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}, &quot;radialaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}}, &quot;ternary&quot;: {&quot;bgcolor&quot;: &quot;#E5ECF6&quot;, &quot;aaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}, &quot;baxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}, &quot;caxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}}, &quot;coloraxis&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}, &quot;colorscale&quot;: {&quot;sequential&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]], &quot;sequentialminus&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]], &quot;diverging&quot;: [[0, &quot;#8e0152&quot;], [0.1, &quot;#c51b7d&quot;], [0.2, &quot;#de77ae&quot;], [0.3, &quot;#f1b6da&quot;], [0.4, &quot;#fde0ef&quot;], [0.5, &quot;#f7f7f7&quot;], [0.6, &quot;#e6f5d0&quot;], [0.7, &quot;#b8e186&quot;], [0.8, &quot;#7fbc41&quot;], [0.9, &quot;#4d9221&quot;], [1, &quot;#276419&quot;]]}, &quot;xaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;, &quot;title&quot;: {&quot;standoff&quot;: 15}, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;automargin&quot;: true, &quot;zerolinewidth&quot;: 2}, &quot;yaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;, &quot;title&quot;: {&quot;standoff&quot;: 15}, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;automargin&quot;: true, &quot;zerolinewidth&quot;: 2}, &quot;scene&quot;: {&quot;xaxis&quot;: {&quot;backgroundcolor&quot;: &quot;#E5ECF6&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;showbackground&quot;: true, &quot;ticks&quot;: &quot;&quot;, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;gridwidth&quot;: 2}, &quot;yaxis&quot;: {&quot;backgroundcolor&quot;: &quot;#E5ECF6&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;showbackground&quot;: true, &quot;ticks&quot;: &quot;&quot;, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;gridwidth&quot;: 2}, &quot;zaxis&quot;: {&quot;backgroundcolor&quot;: &quot;#E5ECF6&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;showbackground&quot;: true, &quot;ticks&quot;: &quot;&quot;, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;gridwidth&quot;: 2}}, &quot;shapedefaults&quot;: {&quot;line&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}}, &quot;annotationdefaults&quot;: {&quot;arrowcolor&quot;: &quot;#2a3f5f&quot;, &quot;arrowhead&quot;: 0, &quot;arrowwidth&quot;: 1}, &quot;geo&quot;: {&quot;bgcolor&quot;: &quot;white&quot;, &quot;landcolor&quot;: &quot;#E5ECF6&quot;, &quot;subunitcolor&quot;: &quot;white&quot;, &quot;showland&quot;: true, &quot;showlakes&quot;: true, &quot;lakecolor&quot;: &quot;white&quot;}, &quot;title&quot;: {&quot;x&quot;: 0.05}, &quot;mapbox&quot;: {&quot;style&quot;: &quot;light&quot;}}}, &quot;xaxis&quot;: {&quot;anchor&quot;: &quot;y&quot;, &quot;domain&quot;: [0.0, 1.0], &quot;title&quot;: {&quot;text&quot;: &quot;&quot;}}, &quot;yaxis&quot;: {&quot;anchor&quot;: &quot;x&quot;, &quot;domain&quot;: [0.0, 1.0], &quot;title&quot;: {&quot;text&quot;: &quot;Count&quot;}}, &quot;updatemenus&quot;: [{&quot;buttons&quot;: [{&quot;args&quot;: [{&quot;visible&quot;: [true, false, true, false]}, {&quot;yaxis&quot;: {&quot;title&quot;: &quot;Count&quot;}}], &quot;label&quot;: &quot;abs&quot;, &quot;method&quot;: &quot;update&quot;}, {&quot;args&quot;: [{&quot;visible&quot;: [false, true, false, true]}, {&quot;yaxis&quot;: {&quot;title&quot;: &quot;Percent&quot;}}], &quot;label&quot;: &quot;perc&quot;, &quot;method&quot;: &quot;update&quot;}], &quot;direction&quot;: &quot;right&quot;, &quot;type&quot;: &quot;buttons&quot;, &quot;x&quot;: 1.05, &quot;y&quot;: 1.2, &quot;yanchor&quot;: &quot;top&quot;}]}}, &quot;insights&quot;: [], &quot;additionalGraphs&quot;: [], &quot;alerts&quot;: [], &quot;tabs&quot;: [], &quot;widgets&quot;: [], &quot;pageSize&quot;: 5}, &quot;e18a43ef-2f6c-48a7-ad9f-5a67160fc283&quot;: {&quot;type&quot;: &quot;big_graph&quot;, &quot;title&quot;: &quot;&quot;, &quot;size&quot;: 2, &quot;id&quot;: &quot;e18a43ef-2f6c-48a7-ad9f-5a67160fc283&quot;, &quot;details&quot;: &quot;&quot;, &quot;alertsPosition&quot;: null, &quot;alertStats&quot;: null, &quot;params&quot;: {&quot;data&quot;: [{&quot;fill&quot;: &quot;toself&quot;, &quot;fillcolor&quot;: &quot;LightGreen&quot;, &quot;line&quot;: {&quot;color&quot;: &quot;LightGreen&quot;, &quot;dash&quot;: &quot;solid&quot;, &quot;width&quot;: 0}, &quot;marker&quot;: {&quot;size&quot;: 0}, &quot;name&quot;: &quot;reference (+/- 1std)&quot;, &quot;opacity&quot;: 0.5, &quot;x&quot;: [0, 170, 170, 0], &quot;y&quot;: [0.0723581896667348, 0.0723581896667348, 0.46463652892623, 0.46463652892623], &quot;type&quot;: &quot;scatter&quot;}, {&quot;marker&quot;: {&quot;color&quot;: &quot;#ed0400&quot;, &quot;size&quot;: 6}, &quot;mode&quot;: &quot;markers&quot;, &quot;name&quot;: &quot;Current&quot;, &quot;x&quot;: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170], &quot;y&quot;: [0.2671, 0.2687, 0.3791, 0.2403, 0.1797, 0.9387, 0.4756, 0.2489, 0.4858, 0.1384, 0.139, 0.2318, 0.0775, 0.3344, 0.1791, 0.2432, 0.1101, 0.01005, 0.0, 0.4433, 0.2779, 0.1603, 0.7053, 0.01235, 0.07239, 0.08539, 0.2866, 0.2, 0.1255, 0.6566, 0.1564, 0.08636, 0.02085, 0.1206, 0.06572, 0.09076, 0.1459, 0.06735, 0.3784, 0.09189, 0.07987, 0.4029, 0.2302, 0.1471, 0.07153, 0.312, 0.09996, 0.0, 0.2758, 0.3344, 0.3889, 0.6133, 0.3162, 0.1559, 0.0942, 0.1876, 0.1898, 0.6476, 0.503, 0.1275, 0.1731, 0.4504, 0.4107, 0.1472, 0.03619, 0.3911, 0.7356, 0.7681, 0.08803, 0.3439, 0.3809, 0.3965, 0.0846, 0.5862, 0.0, 0.1848, 0.06231, 0.3209, 0.09755, 0.2247, 0.2992, 0.005518, 0.3349, 0.6991, 0.208, 0.4429, 1.105, 0.5165, 0.2912, 0.1791, 0.2267, 0.2654, 0.1856, 0.0, 0.01335, 0.13, 0.3215, 0.4646, 0.07116, 0.5036, 0.2902, 0.0, 0.3786, 0.3301, 0.06194, 0.1366, 0.1688, 0.3794, 0.3103, 0.2437, 0.2829, 0.1804, 0.3064, 0.3442, 1.252, 0.678, 0.1397, 0.1125, 0.02168, 0.7026, 0.222, 0.1399, 0.1943, 0.4185, 0.2434, 0.4399, 0.4704, 0.1277, 0.1364, 0.6091, 0.7119, 1.17, 0.1565, 0.07915, 0.2962, 0.6305, 0.3438, 0.1181, 0.2604, 0.4967, 0.1067, 0.5372, 0.08615, 0.1186, 0.5106, 0.1604, 0.6399, 0.3861, 0.363, 0.03517, 0.2712, 0.04921, 0.0688, 0.1381, 0.1089, 0.9608, 0.3458, 0.0, 0.122, 0.0458, 0.0, 0.4341, 0.00692, 0.2388, 0.1547, 0.2939, 0.1039, 0.1611, 0.3486, 0.3381, 0.7727], &quot;type&quot;: &quot;scattergl&quot;}, {&quot;marker&quot;: {&quot;color&quot;: &quot;green&quot;}, &quot;mode&quot;: &quot;lines&quot;, &quot;name&quot;: &quot;reference (mean)&quot;, &quot;x&quot;: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170], &quot;y&quot;: [0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824, 0.2684973592964824], &quot;type&quot;: &quot;scatter&quot;}], &quot;layout&quot;: {&quot;template&quot;: {&quot;data&quot;: {&quot;histogram2dcontour&quot;: [{&quot;type&quot;: &quot;histogram2dcontour&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;choropleth&quot;: [{&quot;type&quot;: &quot;choropleth&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}], &quot;histogram2d&quot;: [{&quot;type&quot;: &quot;histogram2d&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;heatmap&quot;: [{&quot;type&quot;: &quot;heatmap&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;heatmapgl&quot;: [{&quot;type&quot;: &quot;heatmapgl&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;contourcarpet&quot;: [{&quot;type&quot;: &quot;contourcarpet&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}], &quot;contour&quot;: [{&quot;type&quot;: &quot;contour&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;surface&quot;: [{&quot;type&quot;: &quot;surface&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;mesh3d&quot;: [{&quot;type&quot;: &quot;mesh3d&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}], &quot;scatter&quot;: [{&quot;fillpattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}, &quot;type&quot;: &quot;scatter&quot;}], &quot;parcoords&quot;: [{&quot;type&quot;: &quot;parcoords&quot;, &quot;line&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatterpolargl&quot;: [{&quot;type&quot;: &quot;scatterpolargl&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;bar&quot;: [{&quot;error_x&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}, &quot;error_y&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}, &quot;marker&quot;: {&quot;line&quot;: {&quot;color&quot;: &quot;#E5ECF6&quot;, &quot;width&quot;: 0.5}, &quot;pattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}}, &quot;type&quot;: &quot;bar&quot;}], &quot;scattergeo&quot;: [{&quot;type&quot;: &quot;scattergeo&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatterpolar&quot;: [{&quot;type&quot;: &quot;scatterpolar&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;histogram&quot;: [{&quot;marker&quot;: {&quot;pattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}}, &quot;type&quot;: &quot;histogram&quot;}], &quot;scattergl&quot;: [{&quot;type&quot;: &quot;scattergl&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatter3d&quot;: [{&quot;type&quot;: &quot;scatter3d&quot;, &quot;line&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scattermapbox&quot;: [{&quot;type&quot;: &quot;scattermapbox&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatterternary&quot;: [{&quot;type&quot;: &quot;scatterternary&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scattercarpet&quot;: [{&quot;type&quot;: &quot;scattercarpet&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;carpet&quot;: [{&quot;aaxis&quot;: {&quot;endlinecolor&quot;: &quot;#2a3f5f&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;minorgridcolor&quot;: &quot;white&quot;, &quot;startlinecolor&quot;: &quot;#2a3f5f&quot;}, &quot;baxis&quot;: {&quot;endlinecolor&quot;: &quot;#2a3f5f&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;minorgridcolor&quot;: &quot;white&quot;, &quot;startlinecolor&quot;: &quot;#2a3f5f&quot;}, &quot;type&quot;: &quot;carpet&quot;}], &quot;table&quot;: [{&quot;cells&quot;: {&quot;fill&quot;: {&quot;color&quot;: &quot;#EBF0F8&quot;}, &quot;line&quot;: {&quot;color&quot;: &quot;white&quot;}}, &quot;header&quot;: {&quot;fill&quot;: {&quot;color&quot;: &quot;#C8D4E3&quot;}, &quot;line&quot;: {&quot;color&quot;: &quot;white&quot;}}, &quot;type&quot;: &quot;table&quot;}], &quot;barpolar&quot;: [{&quot;marker&quot;: {&quot;line&quot;: {&quot;color&quot;: &quot;#E5ECF6&quot;, &quot;width&quot;: 0.5}, &quot;pattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}}, &quot;type&quot;: &quot;barpolar&quot;}], &quot;pie&quot;: [{&quot;automargin&quot;: true, &quot;type&quot;: &quot;pie&quot;}]}, &quot;layout&quot;: {&quot;autotypenumbers&quot;: &quot;strict&quot;, &quot;colorway&quot;: [&quot;#636efa&quot;, &quot;#EF553B&quot;, &quot;#00cc96&quot;, &quot;#ab63fa&quot;, &quot;#FFA15A&quot;, &quot;#19d3f3&quot;, &quot;#FF6692&quot;, &quot;#B6E880&quot;, &quot;#FF97FF&quot;, &quot;#FECB52&quot;], &quot;font&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}, &quot;hovermode&quot;: &quot;closest&quot;, &quot;hoverlabel&quot;: {&quot;align&quot;: &quot;left&quot;}, &quot;paper_bgcolor&quot;: &quot;white&quot;, &quot;plot_bgcolor&quot;: &quot;#E5ECF6&quot;, &quot;polar&quot;: {&quot;bgcolor&quot;: &quot;#E5ECF6&quot;, &quot;angularaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}, &quot;radialaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}}, &quot;ternary&quot;: {&quot;bgcolor&quot;: &quot;#E5ECF6&quot;, &quot;aaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}, &quot;baxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}, &quot;caxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}}, &quot;coloraxis&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}, &quot;colorscale&quot;: {&quot;sequential&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]], &quot;sequentialminus&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]], &quot;diverging&quot;: [[0, &quot;#8e0152&quot;], [0.1, &quot;#c51b7d&quot;], [0.2, &quot;#de77ae&quot;], [0.3, &quot;#f1b6da&quot;], [0.4, &quot;#fde0ef&quot;], [0.5, &quot;#f7f7f7&quot;], [0.6, &quot;#e6f5d0&quot;], [0.7, &quot;#b8e186&quot;], [0.8, &quot;#7fbc41&quot;], [0.9, &quot;#4d9221&quot;], [1, &quot;#276419&quot;]]}, &quot;xaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;, &quot;title&quot;: {&quot;standoff&quot;: 15}, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;automargin&quot;: true, &quot;zerolinewidth&quot;: 2}, &quot;yaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;, &quot;title&quot;: {&quot;standoff&quot;: 15}, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;automargin&quot;: true, &quot;zerolinewidth&quot;: 2}, &quot;scene&quot;: {&quot;xaxis&quot;: {&quot;backgroundcolor&quot;: &quot;#E5ECF6&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;showbackground&quot;: true, &quot;ticks&quot;: &quot;&quot;, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;gridwidth&quot;: 2}, &quot;yaxis&quot;: {&quot;backgroundcolor&quot;: &quot;#E5ECF6&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;showbackground&quot;: true, &quot;ticks&quot;: &quot;&quot;, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;gridwidth&quot;: 2}, &quot;zaxis&quot;: {&quot;backgroundcolor&quot;: &quot;#E5ECF6&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;showbackground&quot;: true, &quot;ticks&quot;: &quot;&quot;, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;gridwidth&quot;: 2}}, &quot;shapedefaults&quot;: {&quot;line&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}}, &quot;annotationdefaults&quot;: {&quot;arrowcolor&quot;: &quot;#2a3f5f&quot;, &quot;arrowhead&quot;: 0, &quot;arrowwidth&quot;: 1}, &quot;geo&quot;: {&quot;bgcolor&quot;: &quot;white&quot;, &quot;landcolor&quot;: &quot;#E5ECF6&quot;, &quot;subunitcolor&quot;: &quot;white&quot;, &quot;showland&quot;: true, &quot;showlakes&quot;: true, &quot;lakecolor&quot;: &quot;white&quot;}, &quot;title&quot;: {&quot;x&quot;: 0.05}, &quot;mapbox&quot;: {&quot;style&quot;: &quot;light&quot;}}}, &quot;legend&quot;: {&quot;orientation&quot;: &quot;h&quot;, &quot;yanchor&quot;: &quot;bottom&quot;, &quot;y&quot;: 1.02, &quot;xanchor&quot;: &quot;right&quot;, &quot;x&quot;: 1}, &quot;xaxis&quot;: {&quot;title&quot;: {&quot;text&quot;: &quot;Index&quot;}}, &quot;yaxis&quot;: {&quot;title&quot;: {&quot;text&quot;: &quot;worst concavity&quot;}}, &quot;showlegend&quot;: true}}, &quot;insights&quot;: [], &quot;additionalGraphs&quot;: [], &quot;alerts&quot;: [], &quot;tabs&quot;: [], &quot;widgets&quot;: [], &quot;pageSize&quot;: 5}, &quot;3753ef16-fcfe-4da1-8062-d0cca2fcfd0d&quot;: {&quot;type&quot;: &quot;big_graph&quot;, &quot;title&quot;: &quot;&quot;, &quot;size&quot;: 2, &quot;id&quot;: &quot;3753ef16-fcfe-4da1-8062-d0cca2fcfd0d&quot;, &quot;details&quot;: &quot;&quot;, &quot;alertsPosition&quot;: null, &quot;alertStats&quot;: null, &quot;params&quot;: {&quot;data&quot;: [{&quot;marker&quot;: {&quot;color&quot;: &quot;#ed0400&quot;}, &quot;name&quot;: &quot;current&quot;, &quot;visible&quot;: true, &quot;x&quot;: [0.0, 0.08942857142857143, 0.17885714285714285, 0.2682857142857143, 0.3577142857142857, 0.4471428571428571, 0.5365714285714286, 0.626, 0.7154285714285714, 0.8048571428571428, 0.8942857142857142, 0.9837142857142857, 1.0731428571428572, 1.1625714285714286, 1.252], &quot;y&quot;: [34, 37, 25, 27, 17, 10, 4, 9, 3, 0, 2, 0, 1, 2], &quot;type&quot;: &quot;bar&quot;, &quot;xaxis&quot;: &quot;x&quot;, &quot;yaxis&quot;: &quot;y&quot;}, {&quot;marker&quot;: {&quot;color&quot;: &quot;#ed0400&quot;}, &quot;name&quot;: &quot;current&quot;, &quot;visible&quot;: false, &quot;x&quot;: [0.0, 0.08942857142857143, 0.17885714285714285, 0.2682857142857143, 0.3577142857142857, 0.4471428571428571, 0.5365714285714286, 0.626, 0.7154285714285714, 0.8048571428571428, 0.8942857142857142, 0.9837142857142857, 1.0731428571428572, 1.1625714285714286, 1.252], &quot;y&quot;: [19.883040935672515, 21.637426900584796, 14.619883040935672, 15.789473684210526, 9.941520467836257, 5.847953216374268, 2.3391812865497075, 5.263157894736842, 1.7543859649122806, 0.0, 1.1695906432748537, 0.0, 0.5847953216374269, 1.1695906432748537], &quot;type&quot;: &quot;bar&quot;, &quot;xaxis&quot;: &quot;x&quot;, &quot;yaxis&quot;: &quot;y&quot;}, {&quot;marker&quot;: {&quot;color&quot;: &quot;#4d4d4d&quot;}, &quot;name&quot;: &quot;reference&quot;, &quot;visible&quot;: true, &quot;x&quot;: [0.0, 0.08942857142857143, 0.17885714285714285, 0.2682857142857143, 0.3577142857142857, 0.4471428571428571, 0.5365714285714286, 0.626, 0.7154285714285714, 0.8048571428571428, 0.8942857142857142, 0.9837142857142857, 1.0731428571428572, 1.1625714285714286, 1.252], &quot;y&quot;: [77, 82, 73, 47, 47, 27, 20, 15, 4, 4, 2, 0, 0, 0], &quot;type&quot;: &quot;bar&quot;, &quot;xaxis&quot;: &quot;x&quot;, &quot;yaxis&quot;: &quot;y&quot;}, {&quot;marker&quot;: {&quot;color&quot;: &quot;#4d4d4d&quot;}, &quot;name&quot;: &quot;reference&quot;, &quot;visible&quot;: false, &quot;x&quot;: [0.0, 0.08942857142857143, 0.17885714285714285, 0.2682857142857143, 0.3577142857142857, 0.4471428571428571, 0.5365714285714286, 0.626, 0.7154285714285714, 0.8048571428571428, 0.8942857142857142, 0.9837142857142857, 1.0731428571428572, 1.1625714285714286, 1.252], &quot;y&quot;: [19.34673366834171, 20.603015075376884, 18.341708542713565, 11.809045226130653, 11.809045226130653, 6.78391959798995, 5.025125628140704, 3.7688442211055273, 1.0050251256281406, 1.0050251256281406, 0.5025125628140703, 0.0, 0.0, 0.0], &quot;type&quot;: &quot;bar&quot;, &quot;xaxis&quot;: &quot;x&quot;, &quot;yaxis&quot;: &quot;y&quot;}], &quot;layout&quot;: {&quot;template&quot;: {&quot;data&quot;: {&quot;histogram2dcontour&quot;: [{&quot;type&quot;: &quot;histogram2dcontour&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;choropleth&quot;: [{&quot;type&quot;: &quot;choropleth&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}], &quot;histogram2d&quot;: [{&quot;type&quot;: &quot;histogram2d&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;heatmap&quot;: [{&quot;type&quot;: &quot;heatmap&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;heatmapgl&quot;: [{&quot;type&quot;: &quot;heatmapgl&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;contourcarpet&quot;: [{&quot;type&quot;: &quot;contourcarpet&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}], &quot;contour&quot;: [{&quot;type&quot;: &quot;contour&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;surface&quot;: [{&quot;type&quot;: &quot;surface&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;mesh3d&quot;: [{&quot;type&quot;: &quot;mesh3d&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}], &quot;scatter&quot;: [{&quot;fillpattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}, &quot;type&quot;: &quot;scatter&quot;}], &quot;parcoords&quot;: [{&quot;type&quot;: &quot;parcoords&quot;, &quot;line&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatterpolargl&quot;: [{&quot;type&quot;: &quot;scatterpolargl&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;bar&quot;: [{&quot;error_x&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}, &quot;error_y&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}, &quot;marker&quot;: {&quot;line&quot;: {&quot;color&quot;: &quot;#E5ECF6&quot;, &quot;width&quot;: 0.5}, &quot;pattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}}, &quot;type&quot;: &quot;bar&quot;}], &quot;scattergeo&quot;: [{&quot;type&quot;: &quot;scattergeo&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatterpolar&quot;: [{&quot;type&quot;: &quot;scatterpolar&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;histogram&quot;: [{&quot;marker&quot;: {&quot;pattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}}, &quot;type&quot;: &quot;histogram&quot;}], &quot;scattergl&quot;: [{&quot;type&quot;: &quot;scattergl&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatter3d&quot;: [{&quot;type&quot;: &quot;scatter3d&quot;, &quot;line&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scattermapbox&quot;: [{&quot;type&quot;: &quot;scattermapbox&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatterternary&quot;: [{&quot;type&quot;: &quot;scatterternary&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scattercarpet&quot;: [{&quot;type&quot;: &quot;scattercarpet&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;carpet&quot;: [{&quot;aaxis&quot;: {&quot;endlinecolor&quot;: &quot;#2a3f5f&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;minorgridcolor&quot;: &quot;white&quot;, &quot;startlinecolor&quot;: &quot;#2a3f5f&quot;}, &quot;baxis&quot;: {&quot;endlinecolor&quot;: &quot;#2a3f5f&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;minorgridcolor&quot;: &quot;white&quot;, &quot;startlinecolor&quot;: &quot;#2a3f5f&quot;}, &quot;type&quot;: &quot;carpet&quot;}], &quot;table&quot;: [{&quot;cells&quot;: {&quot;fill&quot;: {&quot;color&quot;: &quot;#EBF0F8&quot;}, &quot;line&quot;: {&quot;color&quot;: &quot;white&quot;}}, &quot;header&quot;: {&quot;fill&quot;: {&quot;color&quot;: &quot;#C8D4E3&quot;}, &quot;line&quot;: {&quot;color&quot;: &quot;white&quot;}}, &quot;type&quot;: &quot;table&quot;}], &quot;barpolar&quot;: [{&quot;marker&quot;: {&quot;line&quot;: {&quot;color&quot;: &quot;#E5ECF6&quot;, &quot;width&quot;: 0.5}, &quot;pattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}}, &quot;type&quot;: &quot;barpolar&quot;}], &quot;pie&quot;: [{&quot;automargin&quot;: true, &quot;type&quot;: &quot;pie&quot;}]}, &quot;layout&quot;: {&quot;autotypenumbers&quot;: &quot;strict&quot;, &quot;colorway&quot;: [&quot;#636efa&quot;, &quot;#EF553B&quot;, &quot;#00cc96&quot;, &quot;#ab63fa&quot;, &quot;#FFA15A&quot;, &quot;#19d3f3&quot;, &quot;#FF6692&quot;, &quot;#B6E880&quot;, &quot;#FF97FF&quot;, &quot;#FECB52&quot;], &quot;font&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}, &quot;hovermode&quot;: &quot;closest&quot;, &quot;hoverlabel&quot;: {&quot;align&quot;: &quot;left&quot;}, &quot;paper_bgcolor&quot;: &quot;white&quot;, &quot;plot_bgcolor&quot;: &quot;#E5ECF6&quot;, &quot;polar&quot;: {&quot;bgcolor&quot;: &quot;#E5ECF6&quot;, &quot;angularaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}, &quot;radialaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}}, &quot;ternary&quot;: {&quot;bgcolor&quot;: &quot;#E5ECF6&quot;, &quot;aaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}, &quot;baxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}, &quot;caxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}}, &quot;coloraxis&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}, &quot;colorscale&quot;: {&quot;sequential&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]], &quot;sequentialminus&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]], &quot;diverging&quot;: [[0, &quot;#8e0152&quot;], [0.1, &quot;#c51b7d&quot;], [0.2, &quot;#de77ae&quot;], [0.3, &quot;#f1b6da&quot;], [0.4, &quot;#fde0ef&quot;], [0.5, &quot;#f7f7f7&quot;], [0.6, &quot;#e6f5d0&quot;], [0.7, &quot;#b8e186&quot;], [0.8, &quot;#7fbc41&quot;], [0.9, &quot;#4d9221&quot;], [1, &quot;#276419&quot;]]}, &quot;xaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;, &quot;title&quot;: {&quot;standoff&quot;: 15}, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;automargin&quot;: true, &quot;zerolinewidth&quot;: 2}, &quot;yaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;, &quot;title&quot;: {&quot;standoff&quot;: 15}, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;automargin&quot;: true, &quot;zerolinewidth&quot;: 2}, &quot;scene&quot;: {&quot;xaxis&quot;: {&quot;backgroundcolor&quot;: &quot;#E5ECF6&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;showbackground&quot;: true, &quot;ticks&quot;: &quot;&quot;, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;gridwidth&quot;: 2}, &quot;yaxis&quot;: {&quot;backgroundcolor&quot;: &quot;#E5ECF6&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;showbackground&quot;: true, &quot;ticks&quot;: &quot;&quot;, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;gridwidth&quot;: 2}, &quot;zaxis&quot;: {&quot;backgroundcolor&quot;: &quot;#E5ECF6&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;showbackground&quot;: true, &quot;ticks&quot;: &quot;&quot;, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;gridwidth&quot;: 2}}, &quot;shapedefaults&quot;: {&quot;line&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}}, &quot;annotationdefaults&quot;: {&quot;arrowcolor&quot;: &quot;#2a3f5f&quot;, &quot;arrowhead&quot;: 0, &quot;arrowwidth&quot;: 1}, &quot;geo&quot;: {&quot;bgcolor&quot;: &quot;white&quot;, &quot;landcolor&quot;: &quot;#E5ECF6&quot;, &quot;subunitcolor&quot;: &quot;white&quot;, &quot;showland&quot;: true, &quot;showlakes&quot;: true, &quot;lakecolor&quot;: &quot;white&quot;}, &quot;title&quot;: {&quot;x&quot;: 0.05}, &quot;mapbox&quot;: {&quot;style&quot;: &quot;light&quot;}}}, &quot;xaxis&quot;: {&quot;anchor&quot;: &quot;y&quot;, &quot;domain&quot;: [0.0, 1.0], &quot;title&quot;: {&quot;text&quot;: &quot;&quot;}}, &quot;yaxis&quot;: {&quot;anchor&quot;: &quot;x&quot;, &quot;domain&quot;: [0.0, 1.0], &quot;title&quot;: {&quot;text&quot;: &quot;Count&quot;}}, &quot;updatemenus&quot;: [{&quot;buttons&quot;: [{&quot;args&quot;: [{&quot;visible&quot;: [true, false, true, false]}, {&quot;yaxis&quot;: {&quot;title&quot;: &quot;Count&quot;}}], &quot;label&quot;: &quot;abs&quot;, &quot;method&quot;: &quot;update&quot;}, {&quot;args&quot;: [{&quot;visible&quot;: [false, true, false, true]}, {&quot;yaxis&quot;: {&quot;title&quot;: &quot;Percent&quot;}}], &quot;label&quot;: &quot;perc&quot;, &quot;method&quot;: &quot;update&quot;}], &quot;direction&quot;: &quot;right&quot;, &quot;type&quot;: &quot;buttons&quot;, &quot;x&quot;: 1.05, &quot;y&quot;: 1.2, &quot;yanchor&quot;: &quot;top&quot;}]}}, &quot;insights&quot;: [], &quot;additionalGraphs&quot;: [], &quot;alerts&quot;: [], &quot;tabs&quot;: [], &quot;widgets&quot;: [], &quot;pageSize&quot;: 5}, &quot;fa363e40-c98e-4cbe-b263-a33bbf59be47&quot;: {&quot;type&quot;: &quot;big_graph&quot;, &quot;title&quot;: &quot;&quot;, &quot;size&quot;: 2, &quot;id&quot;: &quot;fa363e40-c98e-4cbe-b263-a33bbf59be47&quot;, &quot;details&quot;: &quot;&quot;, &quot;alertsPosition&quot;: null, &quot;alertStats&quot;: null, &quot;params&quot;: {&quot;data&quot;: [{&quot;fill&quot;: &quot;toself&quot;, &quot;fillcolor&quot;: &quot;LightGreen&quot;, &quot;line&quot;: {&quot;color&quot;: &quot;LightGreen&quot;, &quot;dash&quot;: &quot;solid&quot;, &quot;width&quot;: 0}, &quot;marker&quot;: {&quot;size&quot;: 0}, &quot;name&quot;: &quot;reference (+/- 1std)&quot;, &quot;opacity&quot;: 0.5, &quot;x&quot;: [0, 170, 170, 0], &quot;y&quot;: [0.012355939084046443, 0.012355939084046443, 0.028388729257662098, 0.028388729257662098], &quot;type&quot;: &quot;scatter&quot;}, {&quot;marker&quot;: {&quot;color&quot;: &quot;#ed0400&quot;, &quot;size&quot;: 6}, &quot;mode&quot;: &quot;markers&quot;, &quot;name&quot;: &quot;Current&quot;, &quot;x&quot;: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170], &quot;y&quot;: [0.01782, 0.01386, 0.01397, 0.02187, 0.0184, 0.02324, 0.01518, 0.01925, 0.02134, 0.01316, 0.01347, 0.02091, 0.01924, 0.04022, 0.01129, 0.03056, 0.0158, 0.02572, 0.02659, 0.01948, 0.0122, 0.02015, 0.02045, 0.01445, 0.03194, 0.02572, 0.01461, 0.01843, 0.01909, 0.01527, 0.02912, 0.01465, 0.031, 0.01054, 0.02637, 0.03218, 0.0146, 0.02921, 0.01369, 0.02085, 0.0271, 0.0212, 0.01848, 0.01616, 0.02678, 0.01568, 0.03997, 0.03004, 0.01449, 0.01878, 0.01144, 0.02007, 0.02514, 0.01715, 0.03127, 0.01093, 0.02719, 0.01065, 0.01377, 0.01692, 0.01748, 0.0225, 0.01114, 0.01414, 0.01939, 0.01365, 0.01495, 0.07895, 0.03139, 0.02751, 0.02689, 0.02008, 0.01719, 0.01682, 0.02882, 0.01698, 0.01263, 0.02062, 0.01671, 0.02108, 0.01535, 0.017, 0.02418, 0.02401, 0.01419, 0.01884, 0.01789, 0.01673, 0.0247, 0.01202, 0.01972, 0.01354, 0.01055, 0.01989, 0.04243, 0.03281, 0.01898, 0.01998, 0.02388, 0.01594, 0.01547, 0.02277, 0.02591, 0.01414, 0.02466, 0.01835, 0.01879, 0.02201, 0.01454, 0.01254, 0.0155, 0.01677, 0.01185, 0.01367, 0.04197, 0.01798, 0.04192, 0.02158, 0.04183, 0.01857, 0.04077, 0.01501, 0.01799, 0.01057, 0.01958, 0.01029, 0.01602, 0.0196, 0.01291, 0.01543, 0.03003, 0.02137, 0.01103, 0.02349, 0.009539, 0.03672, 0.01315, 0.03476, 0.02427, 0.01522, 0.01718, 0.01356, 0.01938, 0.01619, 0.01705, 0.02632, 0.01237, 0.03176, 0.01172, 0.01227, 0.01095, 0.0297, 0.02574, 0.01884, 0.01537, 0.03112, 0.02186, 0.02676, 0.01551, 0.02009, 0.03799, 0.0175, 0.02538, 0.02639, 0.03151, 0.02161, 0.02254, 0.0187, 0.0388, 0.02434, 0.01266], &quot;type&quot;: &quot;scattergl&quot;}, {&quot;marker&quot;: {&quot;color&quot;: &quot;green&quot;}, &quot;mode&quot;: &quot;lines&quot;, &quot;name&quot;: &quot;reference (mean)&quot;, &quot;x&quot;: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170], &quot;y&quot;: [0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427, 0.02037233417085427], &quot;type&quot;: &quot;scatter&quot;}], &quot;layout&quot;: {&quot;template&quot;: {&quot;data&quot;: {&quot;histogram2dcontour&quot;: [{&quot;type&quot;: &quot;histogram2dcontour&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;choropleth&quot;: [{&quot;type&quot;: &quot;choropleth&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}], &quot;histogram2d&quot;: [{&quot;type&quot;: &quot;histogram2d&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;heatmap&quot;: [{&quot;type&quot;: &quot;heatmap&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;heatmapgl&quot;: [{&quot;type&quot;: &quot;heatmapgl&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;contourcarpet&quot;: [{&quot;type&quot;: &quot;contourcarpet&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}], &quot;contour&quot;: [{&quot;type&quot;: &quot;contour&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;surface&quot;: [{&quot;type&quot;: &quot;surface&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;mesh3d&quot;: [{&quot;type&quot;: &quot;mesh3d&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}], &quot;scatter&quot;: [{&quot;fillpattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}, &quot;type&quot;: &quot;scatter&quot;}], &quot;parcoords&quot;: [{&quot;type&quot;: &quot;parcoords&quot;, &quot;line&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatterpolargl&quot;: [{&quot;type&quot;: &quot;scatterpolargl&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;bar&quot;: [{&quot;error_x&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}, &quot;error_y&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}, &quot;marker&quot;: {&quot;line&quot;: {&quot;color&quot;: &quot;#E5ECF6&quot;, &quot;width&quot;: 0.5}, &quot;pattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}}, &quot;type&quot;: &quot;bar&quot;}], &quot;scattergeo&quot;: [{&quot;type&quot;: &quot;scattergeo&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatterpolar&quot;: [{&quot;type&quot;: &quot;scatterpolar&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;histogram&quot;: [{&quot;marker&quot;: {&quot;pattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}}, &quot;type&quot;: &quot;histogram&quot;}], &quot;scattergl&quot;: [{&quot;type&quot;: &quot;scattergl&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatter3d&quot;: [{&quot;type&quot;: &quot;scatter3d&quot;, &quot;line&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scattermapbox&quot;: [{&quot;type&quot;: &quot;scattermapbox&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatterternary&quot;: [{&quot;type&quot;: &quot;scatterternary&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scattercarpet&quot;: [{&quot;type&quot;: &quot;scattercarpet&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;carpet&quot;: [{&quot;aaxis&quot;: {&quot;endlinecolor&quot;: &quot;#2a3f5f&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;minorgridcolor&quot;: &quot;white&quot;, &quot;startlinecolor&quot;: &quot;#2a3f5f&quot;}, &quot;baxis&quot;: {&quot;endlinecolor&quot;: &quot;#2a3f5f&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;minorgridcolor&quot;: &quot;white&quot;, &quot;startlinecolor&quot;: &quot;#2a3f5f&quot;}, &quot;type&quot;: &quot;carpet&quot;}], &quot;table&quot;: [{&quot;cells&quot;: {&quot;fill&quot;: {&quot;color&quot;: &quot;#EBF0F8&quot;}, &quot;line&quot;: {&quot;color&quot;: &quot;white&quot;}}, &quot;header&quot;: {&quot;fill&quot;: {&quot;color&quot;: &quot;#C8D4E3&quot;}, &quot;line&quot;: {&quot;color&quot;: &quot;white&quot;}}, &quot;type&quot;: &quot;table&quot;}], &quot;barpolar&quot;: [{&quot;marker&quot;: {&quot;line&quot;: {&quot;color&quot;: &quot;#E5ECF6&quot;, &quot;width&quot;: 0.5}, &quot;pattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}}, &quot;type&quot;: &quot;barpolar&quot;}], &quot;pie&quot;: [{&quot;automargin&quot;: true, &quot;type&quot;: &quot;pie&quot;}]}, &quot;layout&quot;: {&quot;autotypenumbers&quot;: &quot;strict&quot;, &quot;colorway&quot;: [&quot;#636efa&quot;, &quot;#EF553B&quot;, &quot;#00cc96&quot;, &quot;#ab63fa&quot;, &quot;#FFA15A&quot;, &quot;#19d3f3&quot;, &quot;#FF6692&quot;, &quot;#B6E880&quot;, &quot;#FF97FF&quot;, &quot;#FECB52&quot;], &quot;font&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}, &quot;hovermode&quot;: &quot;closest&quot;, &quot;hoverlabel&quot;: {&quot;align&quot;: &quot;left&quot;}, &quot;paper_bgcolor&quot;: &quot;white&quot;, &quot;plot_bgcolor&quot;: &quot;#E5ECF6&quot;, &quot;polar&quot;: {&quot;bgcolor&quot;: &quot;#E5ECF6&quot;, &quot;angularaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}, &quot;radialaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}}, &quot;ternary&quot;: {&quot;bgcolor&quot;: &quot;#E5ECF6&quot;, &quot;aaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}, &quot;baxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}, &quot;caxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}}, &quot;coloraxis&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}, &quot;colorscale&quot;: {&quot;sequential&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]], &quot;sequentialminus&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]], &quot;diverging&quot;: [[0, &quot;#8e0152&quot;], [0.1, &quot;#c51b7d&quot;], [0.2, &quot;#de77ae&quot;], [0.3, &quot;#f1b6da&quot;], [0.4, &quot;#fde0ef&quot;], [0.5, &quot;#f7f7f7&quot;], [0.6, &quot;#e6f5d0&quot;], [0.7, &quot;#b8e186&quot;], [0.8, &quot;#7fbc41&quot;], [0.9, &quot;#4d9221&quot;], [1, &quot;#276419&quot;]]}, &quot;xaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;, &quot;title&quot;: {&quot;standoff&quot;: 15}, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;automargin&quot;: true, &quot;zerolinewidth&quot;: 2}, &quot;yaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;, &quot;title&quot;: {&quot;standoff&quot;: 15}, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;automargin&quot;: true, &quot;zerolinewidth&quot;: 2}, &quot;scene&quot;: {&quot;xaxis&quot;: {&quot;backgroundcolor&quot;: &quot;#E5ECF6&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;showbackground&quot;: true, &quot;ticks&quot;: &quot;&quot;, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;gridwidth&quot;: 2}, &quot;yaxis&quot;: {&quot;backgroundcolor&quot;: &quot;#E5ECF6&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;showbackground&quot;: true, &quot;ticks&quot;: &quot;&quot;, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;gridwidth&quot;: 2}, &quot;zaxis&quot;: {&quot;backgroundcolor&quot;: &quot;#E5ECF6&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;showbackground&quot;: true, &quot;ticks&quot;: &quot;&quot;, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;gridwidth&quot;: 2}}, &quot;shapedefaults&quot;: {&quot;line&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}}, &quot;annotationdefaults&quot;: {&quot;arrowcolor&quot;: &quot;#2a3f5f&quot;, &quot;arrowhead&quot;: 0, &quot;arrowwidth&quot;: 1}, &quot;geo&quot;: {&quot;bgcolor&quot;: &quot;white&quot;, &quot;landcolor&quot;: &quot;#E5ECF6&quot;, &quot;subunitcolor&quot;: &quot;white&quot;, &quot;showland&quot;: true, &quot;showlakes&quot;: true, &quot;lakecolor&quot;: &quot;white&quot;}, &quot;title&quot;: {&quot;x&quot;: 0.05}, &quot;mapbox&quot;: {&quot;style&quot;: &quot;light&quot;}}}, &quot;legend&quot;: {&quot;orientation&quot;: &quot;h&quot;, &quot;yanchor&quot;: &quot;bottom&quot;, &quot;y&quot;: 1.02, &quot;xanchor&quot;: &quot;right&quot;, &quot;x&quot;: 1}, &quot;xaxis&quot;: {&quot;title&quot;: {&quot;text&quot;: &quot;Index&quot;}}, &quot;yaxis&quot;: {&quot;title&quot;: {&quot;text&quot;: &quot;symmetry error&quot;}}, &quot;showlegend&quot;: true}}, &quot;insights&quot;: [], &quot;additionalGraphs&quot;: [], &quot;alerts&quot;: [], &quot;tabs&quot;: [], &quot;widgets&quot;: [], &quot;pageSize&quot;: 5}, &quot;5e521926-11c8-4f05-92dd-509abcec2efe&quot;: {&quot;type&quot;: &quot;big_graph&quot;, &quot;title&quot;: &quot;&quot;, &quot;size&quot;: 2, &quot;id&quot;: &quot;5e521926-11c8-4f05-92dd-509abcec2efe&quot;, &quot;details&quot;: &quot;&quot;, &quot;alertsPosition&quot;: null, &quot;alertStats&quot;: null, &quot;params&quot;: {&quot;data&quot;: [{&quot;marker&quot;: {&quot;color&quot;: &quot;#ed0400&quot;}, &quot;name&quot;: &quot;current&quot;, &quot;visible&quot;: true, &quot;x&quot;: [0.007882, 0.012619866666666667, 0.017357733333333333, 0.022095600000000003, 0.02683346666666667, 0.03157133333333334, 0.03630920000000001, 0.04104706666666667, 0.04578493333333334, 0.05052280000000001, 0.05526066666666667, 0.05999853333333334, 0.06473640000000001, 0.06947426666666667, 0.07421213333333335, 0.07895], &quot;y&quot;: [19, 51, 45, 24, 16, 5, 6, 4, 0, 0, 0, 0, 0, 0, 1], &quot;type&quot;: &quot;bar&quot;, &quot;xaxis&quot;: &quot;x&quot;, &quot;yaxis&quot;: &quot;y&quot;}, {&quot;marker&quot;: {&quot;color&quot;: &quot;#ed0400&quot;}, &quot;name&quot;: &quot;current&quot;, &quot;visible&quot;: false, &quot;x&quot;: [0.007882, 0.012619866666666667, 0.017357733333333333, 0.022095600000000003, 0.02683346666666667, 0.03157133333333334, 0.03630920000000001, 0.04104706666666667, 0.04578493333333334, 0.05052280000000001, 0.05526066666666667, 0.05999853333333334, 0.06473640000000001, 0.06947426666666667, 0.07421213333333335, 0.07895], &quot;y&quot;: [11.11111111111111, 29.82456140350877, 26.31578947368421, 14.035087719298245, 9.35672514619883, 2.923976608187134, 3.508771929824561, 2.3391812865497075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5847953216374269], &quot;type&quot;: &quot;bar&quot;, &quot;xaxis&quot;: &quot;x&quot;, &quot;yaxis&quot;: &quot;y&quot;}, {&quot;marker&quot;: {&quot;color&quot;: &quot;#4d4d4d&quot;}, &quot;name&quot;: &quot;reference&quot;, &quot;visible&quot;: true, &quot;x&quot;: [0.007882, 0.012619866666666667, 0.017357733333333333, 0.022095600000000003, 0.02683346666666667, 0.03157133333333334, 0.03630920000000001, 0.04104706666666667, 0.04578493333333334, 0.05052280000000001, 0.05526066666666667, 0.05999853333333334, 0.06473640000000001, 0.06947426666666667, 0.07421213333333335, 0.07895], &quot;y&quot;: [27, 138, 121, 52, 30, 14, 4, 3, 2, 3, 3, 1, 0, 0, 0], &quot;type&quot;: &quot;bar&quot;, &quot;xaxis&quot;: &quot;x&quot;, &quot;yaxis&quot;: &quot;y&quot;}, {&quot;marker&quot;: {&quot;color&quot;: &quot;#4d4d4d&quot;}, &quot;name&quot;: &quot;reference&quot;, &quot;visible&quot;: false, &quot;x&quot;: [0.007882, 0.012619866666666667, 0.017357733333333333, 0.022095600000000003, 0.02683346666666667, 0.03157133333333334, 0.03630920000000001, 0.04104706666666667, 0.04578493333333334, 0.05052280000000001, 0.05526066666666667, 0.05999853333333334, 0.06473640000000001, 0.06947426666666667, 0.07421213333333335, 0.07895], &quot;y&quot;: [6.78391959798995, 34.67336683417086, 30.402010050251256, 13.06532663316583, 7.537688442211055, 3.5175879396984926, 1.0050251256281406, 0.7537688442211055, 0.5025125628140703, 0.7537688442211055, 0.7537688442211055, 0.25125628140703515, 0.0, 0.0, 0.0], &quot;type&quot;: &quot;bar&quot;, &quot;xaxis&quot;: &quot;x&quot;, &quot;yaxis&quot;: &quot;y&quot;}], &quot;layout&quot;: {&quot;template&quot;: {&quot;data&quot;: {&quot;histogram2dcontour&quot;: [{&quot;type&quot;: &quot;histogram2dcontour&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;choropleth&quot;: [{&quot;type&quot;: &quot;choropleth&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}], &quot;histogram2d&quot;: [{&quot;type&quot;: &quot;histogram2d&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;heatmap&quot;: [{&quot;type&quot;: &quot;heatmap&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;heatmapgl&quot;: [{&quot;type&quot;: &quot;heatmapgl&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;contourcarpet&quot;: [{&quot;type&quot;: &quot;contourcarpet&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}], &quot;contour&quot;: [{&quot;type&quot;: &quot;contour&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;surface&quot;: [{&quot;type&quot;: &quot;surface&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;mesh3d&quot;: [{&quot;type&quot;: &quot;mesh3d&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}], &quot;scatter&quot;: [{&quot;fillpattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}, &quot;type&quot;: &quot;scatter&quot;}], &quot;parcoords&quot;: [{&quot;type&quot;: &quot;parcoords&quot;, &quot;line&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatterpolargl&quot;: [{&quot;type&quot;: &quot;scatterpolargl&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;bar&quot;: [{&quot;error_x&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}, &quot;error_y&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}, &quot;marker&quot;: {&quot;line&quot;: {&quot;color&quot;: &quot;#E5ECF6&quot;, &quot;width&quot;: 0.5}, &quot;pattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}}, &quot;type&quot;: &quot;bar&quot;}], &quot;scattergeo&quot;: [{&quot;type&quot;: &quot;scattergeo&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatterpolar&quot;: [{&quot;type&quot;: &quot;scatterpolar&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;histogram&quot;: [{&quot;marker&quot;: {&quot;pattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}}, &quot;type&quot;: &quot;histogram&quot;}], &quot;scattergl&quot;: [{&quot;type&quot;: &quot;scattergl&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatter3d&quot;: [{&quot;type&quot;: &quot;scatter3d&quot;, &quot;line&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scattermapbox&quot;: [{&quot;type&quot;: &quot;scattermapbox&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatterternary&quot;: [{&quot;type&quot;: &quot;scatterternary&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scattercarpet&quot;: [{&quot;type&quot;: &quot;scattercarpet&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;carpet&quot;: [{&quot;aaxis&quot;: {&quot;endlinecolor&quot;: &quot;#2a3f5f&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;minorgridcolor&quot;: &quot;white&quot;, &quot;startlinecolor&quot;: &quot;#2a3f5f&quot;}, &quot;baxis&quot;: {&quot;endlinecolor&quot;: &quot;#2a3f5f&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;minorgridcolor&quot;: &quot;white&quot;, &quot;startlinecolor&quot;: &quot;#2a3f5f&quot;}, &quot;type&quot;: &quot;carpet&quot;}], &quot;table&quot;: [{&quot;cells&quot;: {&quot;fill&quot;: {&quot;color&quot;: &quot;#EBF0F8&quot;}, &quot;line&quot;: {&quot;color&quot;: &quot;white&quot;}}, &quot;header&quot;: {&quot;fill&quot;: {&quot;color&quot;: &quot;#C8D4E3&quot;}, &quot;line&quot;: {&quot;color&quot;: &quot;white&quot;}}, &quot;type&quot;: &quot;table&quot;}], &quot;barpolar&quot;: [{&quot;marker&quot;: {&quot;line&quot;: {&quot;color&quot;: &quot;#E5ECF6&quot;, &quot;width&quot;: 0.5}, &quot;pattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}}, &quot;type&quot;: &quot;barpolar&quot;}], &quot;pie&quot;: [{&quot;automargin&quot;: true, &quot;type&quot;: &quot;pie&quot;}]}, &quot;layout&quot;: {&quot;autotypenumbers&quot;: &quot;strict&quot;, &quot;colorway&quot;: [&quot;#636efa&quot;, &quot;#EF553B&quot;, &quot;#00cc96&quot;, &quot;#ab63fa&quot;, &quot;#FFA15A&quot;, &quot;#19d3f3&quot;, &quot;#FF6692&quot;, &quot;#B6E880&quot;, &quot;#FF97FF&quot;, &quot;#FECB52&quot;], &quot;font&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}, &quot;hovermode&quot;: &quot;closest&quot;, &quot;hoverlabel&quot;: {&quot;align&quot;: &quot;left&quot;}, &quot;paper_bgcolor&quot;: &quot;white&quot;, &quot;plot_bgcolor&quot;: &quot;#E5ECF6&quot;, &quot;polar&quot;: {&quot;bgcolor&quot;: &quot;#E5ECF6&quot;, &quot;angularaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}, &quot;radialaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}}, &quot;ternary&quot;: {&quot;bgcolor&quot;: &quot;#E5ECF6&quot;, &quot;aaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}, &quot;baxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}, &quot;caxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}}, &quot;coloraxis&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}, &quot;colorscale&quot;: {&quot;sequential&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]], &quot;sequentialminus&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]], &quot;diverging&quot;: [[0, &quot;#8e0152&quot;], [0.1, &quot;#c51b7d&quot;], [0.2, &quot;#de77ae&quot;], [0.3, &quot;#f1b6da&quot;], [0.4, &quot;#fde0ef&quot;], [0.5, &quot;#f7f7f7&quot;], [0.6, &quot;#e6f5d0&quot;], [0.7, &quot;#b8e186&quot;], [0.8, &quot;#7fbc41&quot;], [0.9, &quot;#4d9221&quot;], [1, &quot;#276419&quot;]]}, &quot;xaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;, &quot;title&quot;: {&quot;standoff&quot;: 15}, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;automargin&quot;: true, &quot;zerolinewidth&quot;: 2}, &quot;yaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;, &quot;title&quot;: {&quot;standoff&quot;: 15}, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;automargin&quot;: true, &quot;zerolinewidth&quot;: 2}, &quot;scene&quot;: {&quot;xaxis&quot;: {&quot;backgroundcolor&quot;: &quot;#E5ECF6&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;showbackground&quot;: true, &quot;ticks&quot;: &quot;&quot;, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;gridwidth&quot;: 2}, &quot;yaxis&quot;: {&quot;backgroundcolor&quot;: &quot;#E5ECF6&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;showbackground&quot;: true, &quot;ticks&quot;: &quot;&quot;, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;gridwidth&quot;: 2}, &quot;zaxis&quot;: {&quot;backgroundcolor&quot;: &quot;#E5ECF6&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;showbackground&quot;: true, &quot;ticks&quot;: &quot;&quot;, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;gridwidth&quot;: 2}}, &quot;shapedefaults&quot;: {&quot;line&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}}, &quot;annotationdefaults&quot;: {&quot;arrowcolor&quot;: &quot;#2a3f5f&quot;, &quot;arrowhead&quot;: 0, &quot;arrowwidth&quot;: 1}, &quot;geo&quot;: {&quot;bgcolor&quot;: &quot;white&quot;, &quot;landcolor&quot;: &quot;#E5ECF6&quot;, &quot;subunitcolor&quot;: &quot;white&quot;, &quot;showland&quot;: true, &quot;showlakes&quot;: true, &quot;lakecolor&quot;: &quot;white&quot;}, &quot;title&quot;: {&quot;x&quot;: 0.05}, &quot;mapbox&quot;: {&quot;style&quot;: &quot;light&quot;}}}, &quot;xaxis&quot;: {&quot;anchor&quot;: &quot;y&quot;, &quot;domain&quot;: [0.0, 1.0], &quot;title&quot;: {&quot;text&quot;: &quot;&quot;}}, &quot;yaxis&quot;: {&quot;anchor&quot;: &quot;x&quot;, &quot;domain&quot;: [0.0, 1.0], &quot;title&quot;: {&quot;text&quot;: &quot;Count&quot;}}, &quot;updatemenus&quot;: [{&quot;buttons&quot;: [{&quot;args&quot;: [{&quot;visible&quot;: [true, false, true, false]}, {&quot;yaxis&quot;: {&quot;title&quot;: &quot;Count&quot;}}], &quot;label&quot;: &quot;abs&quot;, &quot;method&quot;: &quot;update&quot;}, {&quot;args&quot;: [{&quot;visible&quot;: [false, true, false, true]}, {&quot;yaxis&quot;: {&quot;title&quot;: &quot;Percent&quot;}}], &quot;label&quot;: &quot;perc&quot;, &quot;method&quot;: &quot;update&quot;}], &quot;direction&quot;: &quot;right&quot;, &quot;type&quot;: &quot;buttons&quot;, &quot;x&quot;: 1.05, &quot;y&quot;: 1.2, &quot;yanchor&quot;: &quot;top&quot;}]}}, &quot;insights&quot;: [], &quot;additionalGraphs&quot;: [], &quot;alerts&quot;: [], &quot;tabs&quot;: [], &quot;widgets&quot;: [], &quot;pageSize&quot;: 5}, &quot;d8dbeb74-d90b-4faf-bfc6-e4dac1d690d3&quot;: {&quot;type&quot;: &quot;big_graph&quot;, &quot;title&quot;: &quot;&quot;, &quot;size&quot;: 2, &quot;id&quot;: &quot;d8dbeb74-d90b-4faf-bfc6-e4dac1d690d3&quot;, &quot;details&quot;: &quot;&quot;, &quot;alertsPosition&quot;: null, &quot;alertStats&quot;: null, &quot;params&quot;: {&quot;data&quot;: [{&quot;fill&quot;: &quot;toself&quot;, &quot;fillcolor&quot;: &quot;LightGreen&quot;, &quot;line&quot;: {&quot;color&quot;: &quot;LightGreen&quot;, &quot;dash&quot;: &quot;solid&quot;, &quot;width&quot;: 0}, &quot;marker&quot;: {&quot;size&quot;: 0}, &quot;name&quot;: &quot;reference (+/- 1std)&quot;, &quot;opacity&quot;: 0.5, &quot;x&quot;: [0, 170, 170, 0], &quot;y&quot;: [0.0011399666015994717, 0.0011399666015994717, 0.006441803750159322, 0.006441803750159322], &quot;type&quot;: &quot;scatter&quot;}, {&quot;marker&quot;: {&quot;color&quot;: &quot;#ed0400&quot;, &quot;size&quot;: 6}, &quot;mode&quot;: &quot;markers&quot;, &quot;name&quot;: &quot;Current&quot;, &quot;x&quot;: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170], &quot;y&quot;: [0.003586, 0.001698, 0.002461, 0.006005, 0.005512, 0.006185, 0.003796, 0.003742, 0.004603, 0.002095, 0.001828, 0.003493, 0.00152, 0.006187, 0.001366, 0.01039, 0.001779, 0.002278, 0.0041, 0.002689, 0.00313, 0.001798, 0.004028, 0.002411, 0.002211, 0.006164, 0.002613, 0.004938, 0.002133, 0.006299, 0.004723, 0.00253, 0.004225, 0.001697, 0.003761, 0.002386, 0.003042, 0.002005, 0.002179, 0.002893, 0.003451, 0.004867, 0.001982, 0.002922, 0.003002, 0.002477, 0.003901, 0.003324, 0.002671, 0.003696, 0.001575, 0.00456, 0.004198, 0.005528, 0.009423, 0.001672, 0.007596, 0.005893, 0.003187, 0.002817, 0.002848, 0.004571, 0.004239, 0.001892, 0.002222, 0.003407, 0.005984, 0.005987, 0.001988, 0.004572, 0.004306, 0.004144, 0.001444, 0.004584, 0.006872, 0.002787, 0.002925, 0.002695, 0.00236, 0.003721, 0.002373, 0.00203, 0.003249, 0.005002, 0.002751, 0.00866, 0.01008, 0.0113, 0.007358, 0.003107, 0.002607, 0.001787, 0.003237, 0.001773, 0.001963, 0.004638, 0.002498, 0.004506, 0.001619, 0.003739, 0.00243, 0.00322, 0.007054, 0.003336, 0.002977, 0.002318, 0.005348, 0.002897, 0.002528, 0.001219, 0.001948, 0.002784, 0.003589, 0.002299, 0.009559, 0.005295, 0.005822, 0.002619, 0.005953, 0.005466, 0.02286, 0.001588, 0.002484, 0.003391, 0.004463, 0.002205, 0.003884, 0.003913, 0.002074, 0.003896, 0.006193, 0.006142, 0.001957, 0.001661, 0.001656, 0.004394, 0.002464, 0.00356, 0.004841, 0.001976, 0.002198, 0.001997, 0.002371, 0.002081, 0.004005, 0.003705, 0.002556, 0.002365, 0.002575, 0.002564, 0.001629, 0.001432, 0.002582, 0.001817, 0.002052, 0.005037, 0.003949, 0.002783, 0.002168, 0.002377, 0.001688, 0.004031, 0.00347, 0.004205, 0.00175, 0.00483, 0.001906, 0.002626, 0.01792, 0.006995, 0.007555], &quot;type&quot;: &quot;scattergl&quot;}, {&quot;marker&quot;: {&quot;color&quot;: &quot;green&quot;}, &quot;mode&quot;: &quot;lines&quot;, &quot;name&quot;: &quot;reference (mean)&quot;, &quot;x&quot;: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170], &quot;y&quot;: [0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397, 0.003790885175879397], &quot;type&quot;: &quot;scatter&quot;}], &quot;layout&quot;: {&quot;template&quot;: {&quot;data&quot;: {&quot;histogram2dcontour&quot;: [{&quot;type&quot;: &quot;histogram2dcontour&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;choropleth&quot;: [{&quot;type&quot;: &quot;choropleth&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}], &quot;histogram2d&quot;: [{&quot;type&quot;: &quot;histogram2d&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;heatmap&quot;: [{&quot;type&quot;: &quot;heatmap&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;heatmapgl&quot;: [{&quot;type&quot;: &quot;heatmapgl&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;contourcarpet&quot;: [{&quot;type&quot;: &quot;contourcarpet&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}], &quot;contour&quot;: [{&quot;type&quot;: &quot;contour&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;surface&quot;: [{&quot;type&quot;: &quot;surface&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;mesh3d&quot;: [{&quot;type&quot;: &quot;mesh3d&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}], &quot;scatter&quot;: [{&quot;fillpattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}, &quot;type&quot;: &quot;scatter&quot;}], &quot;parcoords&quot;: [{&quot;type&quot;: &quot;parcoords&quot;, &quot;line&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatterpolargl&quot;: [{&quot;type&quot;: &quot;scatterpolargl&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;bar&quot;: [{&quot;error_x&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}, &quot;error_y&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}, &quot;marker&quot;: {&quot;line&quot;: {&quot;color&quot;: &quot;#E5ECF6&quot;, &quot;width&quot;: 0.5}, &quot;pattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}}, &quot;type&quot;: &quot;bar&quot;}], &quot;scattergeo&quot;: [{&quot;type&quot;: &quot;scattergeo&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatterpolar&quot;: [{&quot;type&quot;: &quot;scatterpolar&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;histogram&quot;: [{&quot;marker&quot;: {&quot;pattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}}, &quot;type&quot;: &quot;histogram&quot;}], &quot;scattergl&quot;: [{&quot;type&quot;: &quot;scattergl&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatter3d&quot;: [{&quot;type&quot;: &quot;scatter3d&quot;, &quot;line&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scattermapbox&quot;: [{&quot;type&quot;: &quot;scattermapbox&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatterternary&quot;: [{&quot;type&quot;: &quot;scatterternary&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scattercarpet&quot;: [{&quot;type&quot;: &quot;scattercarpet&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;carpet&quot;: [{&quot;aaxis&quot;: {&quot;endlinecolor&quot;: &quot;#2a3f5f&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;minorgridcolor&quot;: &quot;white&quot;, &quot;startlinecolor&quot;: &quot;#2a3f5f&quot;}, &quot;baxis&quot;: {&quot;endlinecolor&quot;: &quot;#2a3f5f&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;minorgridcolor&quot;: &quot;white&quot;, &quot;startlinecolor&quot;: &quot;#2a3f5f&quot;}, &quot;type&quot;: &quot;carpet&quot;}], &quot;table&quot;: [{&quot;cells&quot;: {&quot;fill&quot;: {&quot;color&quot;: &quot;#EBF0F8&quot;}, &quot;line&quot;: {&quot;color&quot;: &quot;white&quot;}}, &quot;header&quot;: {&quot;fill&quot;: {&quot;color&quot;: &quot;#C8D4E3&quot;}, &quot;line&quot;: {&quot;color&quot;: &quot;white&quot;}}, &quot;type&quot;: &quot;table&quot;}], &quot;barpolar&quot;: [{&quot;marker&quot;: {&quot;line&quot;: {&quot;color&quot;: &quot;#E5ECF6&quot;, &quot;width&quot;: 0.5}, &quot;pattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}}, &quot;type&quot;: &quot;barpolar&quot;}], &quot;pie&quot;: [{&quot;automargin&quot;: true, &quot;type&quot;: &quot;pie&quot;}]}, &quot;layout&quot;: {&quot;autotypenumbers&quot;: &quot;strict&quot;, &quot;colorway&quot;: [&quot;#636efa&quot;, &quot;#EF553B&quot;, &quot;#00cc96&quot;, &quot;#ab63fa&quot;, &quot;#FFA15A&quot;, &quot;#19d3f3&quot;, &quot;#FF6692&quot;, &quot;#B6E880&quot;, &quot;#FF97FF&quot;, &quot;#FECB52&quot;], &quot;font&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}, &quot;hovermode&quot;: &quot;closest&quot;, &quot;hoverlabel&quot;: {&quot;align&quot;: &quot;left&quot;}, &quot;paper_bgcolor&quot;: &quot;white&quot;, &quot;plot_bgcolor&quot;: &quot;#E5ECF6&quot;, &quot;polar&quot;: {&quot;bgcolor&quot;: &quot;#E5ECF6&quot;, &quot;angularaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}, &quot;radialaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}}, &quot;ternary&quot;: {&quot;bgcolor&quot;: &quot;#E5ECF6&quot;, &quot;aaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}, &quot;baxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}, &quot;caxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}}, &quot;coloraxis&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}, &quot;colorscale&quot;: {&quot;sequential&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]], &quot;sequentialminus&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]], &quot;diverging&quot;: [[0, &quot;#8e0152&quot;], [0.1, &quot;#c51b7d&quot;], [0.2, &quot;#de77ae&quot;], [0.3, &quot;#f1b6da&quot;], [0.4, &quot;#fde0ef&quot;], [0.5, &quot;#f7f7f7&quot;], [0.6, &quot;#e6f5d0&quot;], [0.7, &quot;#b8e186&quot;], [0.8, &quot;#7fbc41&quot;], [0.9, &quot;#4d9221&quot;], [1, &quot;#276419&quot;]]}, &quot;xaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;, &quot;title&quot;: {&quot;standoff&quot;: 15}, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;automargin&quot;: true, &quot;zerolinewidth&quot;: 2}, &quot;yaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;, &quot;title&quot;: {&quot;standoff&quot;: 15}, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;automargin&quot;: true, &quot;zerolinewidth&quot;: 2}, &quot;scene&quot;: {&quot;xaxis&quot;: {&quot;backgroundcolor&quot;: &quot;#E5ECF6&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;showbackground&quot;: true, &quot;ticks&quot;: &quot;&quot;, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;gridwidth&quot;: 2}, &quot;yaxis&quot;: {&quot;backgroundcolor&quot;: &quot;#E5ECF6&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;showbackground&quot;: true, &quot;ticks&quot;: &quot;&quot;, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;gridwidth&quot;: 2}, &quot;zaxis&quot;: {&quot;backgroundcolor&quot;: &quot;#E5ECF6&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;showbackground&quot;: true, &quot;ticks&quot;: &quot;&quot;, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;gridwidth&quot;: 2}}, &quot;shapedefaults&quot;: {&quot;line&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}}, &quot;annotationdefaults&quot;: {&quot;arrowcolor&quot;: &quot;#2a3f5f&quot;, &quot;arrowhead&quot;: 0, &quot;arrowwidth&quot;: 1}, &quot;geo&quot;: {&quot;bgcolor&quot;: &quot;white&quot;, &quot;landcolor&quot;: &quot;#E5ECF6&quot;, &quot;subunitcolor&quot;: &quot;white&quot;, &quot;showland&quot;: true, &quot;showlakes&quot;: true, &quot;lakecolor&quot;: &quot;white&quot;}, &quot;title&quot;: {&quot;x&quot;: 0.05}, &quot;mapbox&quot;: {&quot;style&quot;: &quot;light&quot;}}}, &quot;legend&quot;: {&quot;orientation&quot;: &quot;h&quot;, &quot;yanchor&quot;: &quot;bottom&quot;, &quot;y&quot;: 1.02, &quot;xanchor&quot;: &quot;right&quot;, &quot;x&quot;: 1}, &quot;xaxis&quot;: {&quot;title&quot;: {&quot;text&quot;: &quot;Index&quot;}}, &quot;yaxis&quot;: {&quot;title&quot;: {&quot;text&quot;: &quot;fractal dimension error&quot;}}, &quot;showlegend&quot;: true}}, &quot;insights&quot;: [], &quot;additionalGraphs&quot;: [], &quot;alerts&quot;: [], &quot;tabs&quot;: [], &quot;widgets&quot;: [], &quot;pageSize&quot;: 5}, &quot;695aadb1-8f41-44eb-a8a0-cee1e0868c01&quot;: {&quot;type&quot;: &quot;big_graph&quot;, &quot;title&quot;: &quot;&quot;, &quot;size&quot;: 2, &quot;id&quot;: &quot;695aadb1-8f41-44eb-a8a0-cee1e0868c01&quot;, &quot;details&quot;: &quot;&quot;, &quot;alertsPosition&quot;: null, &quot;alertStats&quot;: null, &quot;params&quot;: {&quot;data&quot;: [{&quot;marker&quot;: {&quot;color&quot;: &quot;#ed0400&quot;}, &quot;name&quot;: &quot;current&quot;, &quot;visible&quot;: true, &quot;x&quot;: [0.0008948, 0.0027038749999999997, 0.00451295, 0.006322024999999999, 0.008131099999999999, 0.009940174999999999, 0.011749249999999998, 0.013558324999999998, 0.015367399999999998, 0.017176475, 0.01898555, 0.020794625, 0.022603699999999997, 0.024412774999999998, 0.026221849999999998, 0.028030924999999998, 0.02984], &quot;y&quot;: [73, 54, 30, 6, 3, 3, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0], &quot;type&quot;: &quot;bar&quot;, &quot;xaxis&quot;: &quot;x&quot;, &quot;yaxis&quot;: &quot;y&quot;}, {&quot;marker&quot;: {&quot;color&quot;: &quot;#ed0400&quot;}, &quot;name&quot;: &quot;current&quot;, &quot;visible&quot;: false, &quot;x&quot;: [0.0008948, 0.0027038749999999997, 0.00451295, 0.006322024999999999, 0.008131099999999999, 0.009940174999999999, 0.011749249999999998, 0.013558324999999998, 0.015367399999999998, 0.017176475, 0.01898555, 0.020794625, 0.022603699999999997, 0.024412774999999998, 0.026221849999999998, 0.028030924999999998, 0.02984], &quot;y&quot;: [42.69005847953216, 31.57894736842105, 17.543859649122805, 3.508771929824561, 1.7543859649122806, 1.7543859649122806, 0.0, 0.0, 0.0, 0.5847953216374269, 0.0, 0.0, 0.5847953216374269, 0.0, 0.0, 0.0], &quot;type&quot;: &quot;bar&quot;, &quot;xaxis&quot;: &quot;x&quot;, &quot;yaxis&quot;: &quot;y&quot;}, {&quot;marker&quot;: {&quot;color&quot;: &quot;#4d4d4d&quot;}, &quot;name&quot;: &quot;reference&quot;, &quot;visible&quot;: true, &quot;x&quot;: [0.0008948, 0.0027038749999999997, 0.00451295, 0.006322024999999999, 0.008131099999999999, 0.009940174999999999, 0.011749249999999998, 0.013558324999999998, 0.015367399999999998, 0.017176475, 0.01898555, 0.020794625, 0.022603699999999997, 0.024412774999999998, 0.026221849999999998, 0.028030924999999998, 0.02984], &quot;y&quot;: [148, 150, 62, 19, 8, 3, 6, 0, 0, 0, 0, 1, 0, 0, 0, 1], &quot;type&quot;: &quot;bar&quot;, &quot;xaxis&quot;: &quot;x&quot;, &quot;yaxis&quot;: &quot;y&quot;}, {&quot;marker&quot;: {&quot;color&quot;: &quot;#4d4d4d&quot;}, &quot;name&quot;: &quot;reference&quot;, &quot;visible&quot;: false, &quot;x&quot;: [0.0008948, 0.0027038749999999997, 0.00451295, 0.006322024999999999, 0.008131099999999999, 0.009940174999999999, 0.011749249999999998, 0.013558324999999998, 0.015367399999999998, 0.017176475, 0.01898555, 0.020794625, 0.022603699999999997, 0.024412774999999998, 0.026221849999999998, 0.028030924999999998, 0.02984], &quot;y&quot;: [37.185929648241206, 37.68844221105528, 15.577889447236181, 4.773869346733668, 2.0100502512562812, 0.7537688442211055, 1.507537688442211, 0.0, 0.0, 0.0, 0.0, 0.25125628140703515, 0.0, 0.0, 0.0, 0.25125628140703515], &quot;type&quot;: &quot;bar&quot;, &quot;xaxis&quot;: &quot;x&quot;, &quot;yaxis&quot;: &quot;y&quot;}], &quot;layout&quot;: {&quot;template&quot;: {&quot;data&quot;: {&quot;histogram2dcontour&quot;: [{&quot;type&quot;: &quot;histogram2dcontour&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;choropleth&quot;: [{&quot;type&quot;: &quot;choropleth&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}], &quot;histogram2d&quot;: [{&quot;type&quot;: &quot;histogram2d&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;heatmap&quot;: [{&quot;type&quot;: &quot;heatmap&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;heatmapgl&quot;: [{&quot;type&quot;: &quot;heatmapgl&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;contourcarpet&quot;: [{&quot;type&quot;: &quot;contourcarpet&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}], &quot;contour&quot;: [{&quot;type&quot;: &quot;contour&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;surface&quot;: [{&quot;type&quot;: &quot;surface&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;mesh3d&quot;: [{&quot;type&quot;: &quot;mesh3d&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}], &quot;scatter&quot;: [{&quot;fillpattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}, &quot;type&quot;: &quot;scatter&quot;}], &quot;parcoords&quot;: [{&quot;type&quot;: &quot;parcoords&quot;, &quot;line&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatterpolargl&quot;: [{&quot;type&quot;: &quot;scatterpolargl&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;bar&quot;: [{&quot;error_x&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}, &quot;error_y&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}, &quot;marker&quot;: {&quot;line&quot;: {&quot;color&quot;: &quot;#E5ECF6&quot;, &quot;width&quot;: 0.5}, &quot;pattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}}, &quot;type&quot;: &quot;bar&quot;}], &quot;scattergeo&quot;: [{&quot;type&quot;: &quot;scattergeo&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatterpolar&quot;: [{&quot;type&quot;: &quot;scatterpolar&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;histogram&quot;: [{&quot;marker&quot;: {&quot;pattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}}, &quot;type&quot;: &quot;histogram&quot;}], &quot;scattergl&quot;: [{&quot;type&quot;: &quot;scattergl&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatter3d&quot;: [{&quot;type&quot;: &quot;scatter3d&quot;, &quot;line&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scattermapbox&quot;: [{&quot;type&quot;: &quot;scattermapbox&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatterternary&quot;: [{&quot;type&quot;: &quot;scatterternary&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scattercarpet&quot;: [{&quot;type&quot;: &quot;scattercarpet&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;carpet&quot;: [{&quot;aaxis&quot;: {&quot;endlinecolor&quot;: &quot;#2a3f5f&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;minorgridcolor&quot;: &quot;white&quot;, &quot;startlinecolor&quot;: &quot;#2a3f5f&quot;}, &quot;baxis&quot;: {&quot;endlinecolor&quot;: &quot;#2a3f5f&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;minorgridcolor&quot;: &quot;white&quot;, &quot;startlinecolor&quot;: &quot;#2a3f5f&quot;}, &quot;type&quot;: &quot;carpet&quot;}], &quot;table&quot;: [{&quot;cells&quot;: {&quot;fill&quot;: {&quot;color&quot;: &quot;#EBF0F8&quot;}, &quot;line&quot;: {&quot;color&quot;: &quot;white&quot;}}, &quot;header&quot;: {&quot;fill&quot;: {&quot;color&quot;: &quot;#C8D4E3&quot;}, &quot;line&quot;: {&quot;color&quot;: &quot;white&quot;}}, &quot;type&quot;: &quot;table&quot;}], &quot;barpolar&quot;: [{&quot;marker&quot;: {&quot;line&quot;: {&quot;color&quot;: &quot;#E5ECF6&quot;, &quot;width&quot;: 0.5}, &quot;pattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}}, &quot;type&quot;: &quot;barpolar&quot;}], &quot;pie&quot;: [{&quot;automargin&quot;: true, &quot;type&quot;: &quot;pie&quot;}]}, &quot;layout&quot;: {&quot;autotypenumbers&quot;: &quot;strict&quot;, &quot;colorway&quot;: [&quot;#636efa&quot;, &quot;#EF553B&quot;, &quot;#00cc96&quot;, &quot;#ab63fa&quot;, &quot;#FFA15A&quot;, &quot;#19d3f3&quot;, &quot;#FF6692&quot;, &quot;#B6E880&quot;, &quot;#FF97FF&quot;, &quot;#FECB52&quot;], &quot;font&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}, &quot;hovermode&quot;: &quot;closest&quot;, &quot;hoverlabel&quot;: {&quot;align&quot;: &quot;left&quot;}, &quot;paper_bgcolor&quot;: &quot;white&quot;, &quot;plot_bgcolor&quot;: &quot;#E5ECF6&quot;, &quot;polar&quot;: {&quot;bgcolor&quot;: &quot;#E5ECF6&quot;, &quot;angularaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}, &quot;radialaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}}, &quot;ternary&quot;: {&quot;bgcolor&quot;: &quot;#E5ECF6&quot;, &quot;aaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}, &quot;baxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}, &quot;caxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}}, &quot;coloraxis&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}, &quot;colorscale&quot;: {&quot;sequential&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]], &quot;sequentialminus&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]], &quot;diverging&quot;: [[0, &quot;#8e0152&quot;], [0.1, &quot;#c51b7d&quot;], [0.2, &quot;#de77ae&quot;], [0.3, &quot;#f1b6da&quot;], [0.4, &quot;#fde0ef&quot;], [0.5, &quot;#f7f7f7&quot;], [0.6, &quot;#e6f5d0&quot;], [0.7, &quot;#b8e186&quot;], [0.8, &quot;#7fbc41&quot;], [0.9, &quot;#4d9221&quot;], [1, &quot;#276419&quot;]]}, &quot;xaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;, &quot;title&quot;: {&quot;standoff&quot;: 15}, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;automargin&quot;: true, &quot;zerolinewidth&quot;: 2}, &quot;yaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;, &quot;title&quot;: {&quot;standoff&quot;: 15}, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;automargin&quot;: true, &quot;zerolinewidth&quot;: 2}, &quot;scene&quot;: {&quot;xaxis&quot;: {&quot;backgroundcolor&quot;: &quot;#E5ECF6&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;showbackground&quot;: true, &quot;ticks&quot;: &quot;&quot;, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;gridwidth&quot;: 2}, &quot;yaxis&quot;: {&quot;backgroundcolor&quot;: &quot;#E5ECF6&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;showbackground&quot;: true, &quot;ticks&quot;: &quot;&quot;, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;gridwidth&quot;: 2}, &quot;zaxis&quot;: {&quot;backgroundcolor&quot;: &quot;#E5ECF6&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;showbackground&quot;: true, &quot;ticks&quot;: &quot;&quot;, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;gridwidth&quot;: 2}}, &quot;shapedefaults&quot;: {&quot;line&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}}, &quot;annotationdefaults&quot;: {&quot;arrowcolor&quot;: &quot;#2a3f5f&quot;, &quot;arrowhead&quot;: 0, &quot;arrowwidth&quot;: 1}, &quot;geo&quot;: {&quot;bgcolor&quot;: &quot;white&quot;, &quot;landcolor&quot;: &quot;#E5ECF6&quot;, &quot;subunitcolor&quot;: &quot;white&quot;, &quot;showland&quot;: true, &quot;showlakes&quot;: true, &quot;lakecolor&quot;: &quot;white&quot;}, &quot;title&quot;: {&quot;x&quot;: 0.05}, &quot;mapbox&quot;: {&quot;style&quot;: &quot;light&quot;}}}, &quot;xaxis&quot;: {&quot;anchor&quot;: &quot;y&quot;, &quot;domain&quot;: [0.0, 1.0], &quot;title&quot;: {&quot;text&quot;: &quot;&quot;}}, &quot;yaxis&quot;: {&quot;anchor&quot;: &quot;x&quot;, &quot;domain&quot;: [0.0, 1.0], &quot;title&quot;: {&quot;text&quot;: &quot;Count&quot;}}, &quot;updatemenus&quot;: [{&quot;buttons&quot;: [{&quot;args&quot;: [{&quot;visible&quot;: [true, false, true, false]}, {&quot;yaxis&quot;: {&quot;title&quot;: &quot;Count&quot;}}], &quot;label&quot;: &quot;abs&quot;, &quot;method&quot;: &quot;update&quot;}, {&quot;args&quot;: [{&quot;visible&quot;: [false, true, false, true]}, {&quot;yaxis&quot;: {&quot;title&quot;: &quot;Percent&quot;}}], &quot;label&quot;: &quot;perc&quot;, &quot;method&quot;: &quot;update&quot;}], &quot;direction&quot;: &quot;right&quot;, &quot;type&quot;: &quot;buttons&quot;, &quot;x&quot;: 1.05, &quot;y&quot;: 1.2, &quot;yanchor&quot;: &quot;top&quot;}]}}, &quot;insights&quot;: [], &quot;additionalGraphs&quot;: [], &quot;alerts&quot;: [], &quot;tabs&quot;: [], &quot;widgets&quot;: [], &quot;pageSize&quot;: 5}, &quot;8e548d25-7679-424f-8588-899458942e62&quot;: {&quot;type&quot;: &quot;big_graph&quot;, &quot;title&quot;: &quot;&quot;, &quot;size&quot;: 2, &quot;id&quot;: &quot;8e548d25-7679-424f-8588-899458942e62&quot;, &quot;details&quot;: &quot;&quot;, &quot;alertsPosition&quot;: null, &quot;alertStats&quot;: null, &quot;params&quot;: {&quot;data&quot;: [{&quot;fill&quot;: &quot;toself&quot;, &quot;fillcolor&quot;: &quot;LightGreen&quot;, &quot;line&quot;: {&quot;color&quot;: &quot;LightGreen&quot;, &quot;dash&quot;: &quot;solid&quot;, &quot;width&quot;: 0}, &quot;marker&quot;: {&quot;size&quot;: 0}, &quot;name&quot;: &quot;reference (+/- 1std)&quot;, &quot;opacity&quot;: 0.5, &quot;x&quot;: [0, 170, 170, 0], &quot;y&quot;: [67.96680271612598, 67.96680271612598, 116.54586060045696, 116.54586060045696], &quot;type&quot;: &quot;scatter&quot;}, {&quot;marker&quot;: {&quot;color&quot;: &quot;#ed0400&quot;, &quot;size&quot;: 6}, &quot;mode&quot;: &quot;markers&quot;, &quot;name&quot;: &quot;Current&quot;, &quot;x&quot;: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170], &quot;y&quot;: [81.09, 123.6, 101.7, 81.47, 74.65, 140.1, 147.2, 115.0, 86.49, 88.97, 84.1, 109.3, 95.5, 107.5, 78.94, 129.1, 94.66, 64.73, 43.79, 137.8, 90.43, 78.07, 144.4, 63.19, 74.23, 87.91, 85.79, 65.67, 81.87, 114.2, 71.49, 76.84, 61.93, 87.76, 65.12, 73.34, 102.7, 74.24, 119.6, 94.57, 67.41, 98.0, 75.46, 75.51, 76.2, 72.48, 59.96, 59.26, 75.21, 84.08, 111.6, 124.8, 87.02, 90.31, 78.11, 84.28, 66.52, 171.5, 88.4, 72.23, 83.19, 130.0, 142.0, 92.25, 77.88, 81.35, 105.7, 143.7, 75.27, 84.52, 90.63, 103.6, 89.75, 109.3, 47.98, 87.32, 89.79, 91.43, 68.26, 73.16, 106.2, 71.38, 94.25, 138.9, 115.2, 103.2, 83.97, 119.0, 78.75, 82.82, 76.95, 87.44, 98.73, 70.67, 71.94, 62.5, 131.2, 91.56, 70.87, 112.4, 101.2, 61.24, 120.2, 117.8, 68.89, 75.89, 79.85, 152.1, 93.97, 94.21, 104.1, 73.87, 92.55, 135.7, 58.79, 142.7, 59.2, 68.01, 64.55, 96.73, 96.03, 73.06, 78.27, 130.5, 79.78, 138.1, 98.64, 61.49, 85.48, 127.9, 122.8, 103.4, 91.22, 74.33, 98.17, 102.5, 88.1, 66.72, 95.77, 94.49, 70.92, 130.0, 65.75, 81.89, 88.64, 84.18, 117.3, 134.7, 98.92, 88.37, 97.26, 78.29, 51.71, 86.6, 71.76, 152.8, 129.1, 47.92, 94.89, 70.47, 60.73, 61.64, 63.76, 81.92, 96.71, 67.49, 81.37, 94.7, 64.6, 92.33, 84.95], &quot;type&quot;: &quot;scattergl&quot;}, {&quot;marker&quot;: {&quot;color&quot;: &quot;green&quot;}, &quot;mode&quot;: &quot;lines&quot;, &quot;name&quot;: &quot;reference (mean)&quot;, &quot;x&quot;: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170], &quot;y&quot;: [92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147, 92.25633165829147], &quot;type&quot;: &quot;scatter&quot;}], &quot;layout&quot;: {&quot;template&quot;: {&quot;data&quot;: {&quot;histogram2dcontour&quot;: [{&quot;type&quot;: &quot;histogram2dcontour&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;choropleth&quot;: [{&quot;type&quot;: &quot;choropleth&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}], &quot;histogram2d&quot;: [{&quot;type&quot;: &quot;histogram2d&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;heatmap&quot;: [{&quot;type&quot;: &quot;heatmap&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;heatmapgl&quot;: [{&quot;type&quot;: &quot;heatmapgl&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;contourcarpet&quot;: [{&quot;type&quot;: &quot;contourcarpet&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}], &quot;contour&quot;: [{&quot;type&quot;: &quot;contour&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;surface&quot;: [{&quot;type&quot;: &quot;surface&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;mesh3d&quot;: [{&quot;type&quot;: &quot;mesh3d&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}], &quot;scatter&quot;: [{&quot;fillpattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}, &quot;type&quot;: &quot;scatter&quot;}], &quot;parcoords&quot;: [{&quot;type&quot;: &quot;parcoords&quot;, &quot;line&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatterpolargl&quot;: [{&quot;type&quot;: &quot;scatterpolargl&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;bar&quot;: [{&quot;error_x&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}, &quot;error_y&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}, &quot;marker&quot;: {&quot;line&quot;: {&quot;color&quot;: &quot;#E5ECF6&quot;, &quot;width&quot;: 0.5}, &quot;pattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}}, &quot;type&quot;: &quot;bar&quot;}], &quot;scattergeo&quot;: [{&quot;type&quot;: &quot;scattergeo&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatterpolar&quot;: [{&quot;type&quot;: &quot;scatterpolar&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;histogram&quot;: [{&quot;marker&quot;: {&quot;pattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}}, &quot;type&quot;: &quot;histogram&quot;}], &quot;scattergl&quot;: [{&quot;type&quot;: &quot;scattergl&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatter3d&quot;: [{&quot;type&quot;: &quot;scatter3d&quot;, &quot;line&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scattermapbox&quot;: [{&quot;type&quot;: &quot;scattermapbox&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatterternary&quot;: [{&quot;type&quot;: &quot;scatterternary&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scattercarpet&quot;: [{&quot;type&quot;: &quot;scattercarpet&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;carpet&quot;: [{&quot;aaxis&quot;: {&quot;endlinecolor&quot;: &quot;#2a3f5f&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;minorgridcolor&quot;: &quot;white&quot;, &quot;startlinecolor&quot;: &quot;#2a3f5f&quot;}, &quot;baxis&quot;: {&quot;endlinecolor&quot;: &quot;#2a3f5f&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;minorgridcolor&quot;: &quot;white&quot;, &quot;startlinecolor&quot;: &quot;#2a3f5f&quot;}, &quot;type&quot;: &quot;carpet&quot;}], &quot;table&quot;: [{&quot;cells&quot;: {&quot;fill&quot;: {&quot;color&quot;: &quot;#EBF0F8&quot;}, &quot;line&quot;: {&quot;color&quot;: &quot;white&quot;}}, &quot;header&quot;: {&quot;fill&quot;: {&quot;color&quot;: &quot;#C8D4E3&quot;}, &quot;line&quot;: {&quot;color&quot;: &quot;white&quot;}}, &quot;type&quot;: &quot;table&quot;}], &quot;barpolar&quot;: [{&quot;marker&quot;: {&quot;line&quot;: {&quot;color&quot;: &quot;#E5ECF6&quot;, &quot;width&quot;: 0.5}, &quot;pattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}}, &quot;type&quot;: &quot;barpolar&quot;}], &quot;pie&quot;: [{&quot;automargin&quot;: true, &quot;type&quot;: &quot;pie&quot;}]}, &quot;layout&quot;: {&quot;autotypenumbers&quot;: &quot;strict&quot;, &quot;colorway&quot;: [&quot;#636efa&quot;, &quot;#EF553B&quot;, &quot;#00cc96&quot;, &quot;#ab63fa&quot;, &quot;#FFA15A&quot;, &quot;#19d3f3&quot;, &quot;#FF6692&quot;, &quot;#B6E880&quot;, &quot;#FF97FF&quot;, &quot;#FECB52&quot;], &quot;font&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}, &quot;hovermode&quot;: &quot;closest&quot;, &quot;hoverlabel&quot;: {&quot;align&quot;: &quot;left&quot;}, &quot;paper_bgcolor&quot;: &quot;white&quot;, &quot;plot_bgcolor&quot;: &quot;#E5ECF6&quot;, &quot;polar&quot;: {&quot;bgcolor&quot;: &quot;#E5ECF6&quot;, &quot;angularaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}, &quot;radialaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}}, &quot;ternary&quot;: {&quot;bgcolor&quot;: &quot;#E5ECF6&quot;, &quot;aaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}, &quot;baxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}, &quot;caxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}}, &quot;coloraxis&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}, &quot;colorscale&quot;: {&quot;sequential&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]], &quot;sequentialminus&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]], &quot;diverging&quot;: [[0, &quot;#8e0152&quot;], [0.1, &quot;#c51b7d&quot;], [0.2, &quot;#de77ae&quot;], [0.3, &quot;#f1b6da&quot;], [0.4, &quot;#fde0ef&quot;], [0.5, &quot;#f7f7f7&quot;], [0.6, &quot;#e6f5d0&quot;], [0.7, &quot;#b8e186&quot;], [0.8, &quot;#7fbc41&quot;], [0.9, &quot;#4d9221&quot;], [1, &quot;#276419&quot;]]}, &quot;xaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;, &quot;title&quot;: {&quot;standoff&quot;: 15}, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;automargin&quot;: true, &quot;zerolinewidth&quot;: 2}, &quot;yaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;, &quot;title&quot;: {&quot;standoff&quot;: 15}, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;automargin&quot;: true, &quot;zerolinewidth&quot;: 2}, &quot;scene&quot;: {&quot;xaxis&quot;: {&quot;backgroundcolor&quot;: &quot;#E5ECF6&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;showbackground&quot;: true, &quot;ticks&quot;: &quot;&quot;, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;gridwidth&quot;: 2}, &quot;yaxis&quot;: {&quot;backgroundcolor&quot;: &quot;#E5ECF6&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;showbackground&quot;: true, &quot;ticks&quot;: &quot;&quot;, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;gridwidth&quot;: 2}, &quot;zaxis&quot;: {&quot;backgroundcolor&quot;: &quot;#E5ECF6&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;showbackground&quot;: true, &quot;ticks&quot;: &quot;&quot;, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;gridwidth&quot;: 2}}, &quot;shapedefaults&quot;: {&quot;line&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}}, &quot;annotationdefaults&quot;: {&quot;arrowcolor&quot;: &quot;#2a3f5f&quot;, &quot;arrowhead&quot;: 0, &quot;arrowwidth&quot;: 1}, &quot;geo&quot;: {&quot;bgcolor&quot;: &quot;white&quot;, &quot;landcolor&quot;: &quot;#E5ECF6&quot;, &quot;subunitcolor&quot;: &quot;white&quot;, &quot;showland&quot;: true, &quot;showlakes&quot;: true, &quot;lakecolor&quot;: &quot;white&quot;}, &quot;title&quot;: {&quot;x&quot;: 0.05}, &quot;mapbox&quot;: {&quot;style&quot;: &quot;light&quot;}}}, &quot;legend&quot;: {&quot;orientation&quot;: &quot;h&quot;, &quot;yanchor&quot;: &quot;bottom&quot;, &quot;y&quot;: 1.02, &quot;xanchor&quot;: &quot;right&quot;, &quot;x&quot;: 1}, &quot;xaxis&quot;: {&quot;title&quot;: {&quot;text&quot;: &quot;Index&quot;}}, &quot;yaxis&quot;: {&quot;title&quot;: {&quot;text&quot;: &quot;mean perimeter&quot;}}, &quot;showlegend&quot;: true}}, &quot;insights&quot;: [], &quot;additionalGraphs&quot;: [], &quot;alerts&quot;: [], &quot;tabs&quot;: [], &quot;widgets&quot;: [], &quot;pageSize&quot;: 5}, &quot;8c79a7c7-2800-4b09-a47e-32ed3557ac4e&quot;: {&quot;type&quot;: &quot;big_graph&quot;, &quot;title&quot;: &quot;&quot;, &quot;size&quot;: 2, &quot;id&quot;: &quot;8c79a7c7-2800-4b09-a47e-32ed3557ac4e&quot;, &quot;details&quot;: &quot;&quot;, &quot;alertsPosition&quot;: null, &quot;alertStats&quot;: null, &quot;params&quot;: {&quot;data&quot;: [{&quot;marker&quot;: {&quot;color&quot;: &quot;#ed0400&quot;}, &quot;name&quot;: &quot;current&quot;, &quot;visible&quot;: true, &quot;x&quot;: [43.79, 54.12642857142857, 64.46285714285715, 74.79928571428572, 85.13571428571429, 95.47214285714286, 105.80857142857144, 116.14500000000001, 126.48142857142858, 136.81785714285715, 147.15428571428572, 157.4907142857143, 167.82714285714286, 178.16357142857143, 188.5], &quot;y&quot;: [4, 12, 31, 33, 33, 20, 9, 8, 9, 8, 3, 0, 1, 0], &quot;type&quot;: &quot;bar&quot;, &quot;xaxis&quot;: &quot;x&quot;, &quot;yaxis&quot;: &quot;y&quot;}, {&quot;marker&quot;: {&quot;color&quot;: &quot;#ed0400&quot;}, &quot;name&quot;: &quot;current&quot;, &quot;visible&quot;: false, &quot;x&quot;: [43.79, 54.12642857142857, 64.46285714285715, 74.79928571428572, 85.13571428571429, 95.47214285714286, 105.80857142857144, 116.14500000000001, 126.48142857142858, 136.81785714285715, 147.15428571428572, 157.4907142857143, 167.82714285714286, 178.16357142857143, 188.5], &quot;y&quot;: [2.3391812865497075, 7.017543859649122, 18.128654970760234, 19.298245614035086, 19.298245614035086, 11.695906432748536, 5.263157894736842, 4.678362573099415, 5.263157894736842, 4.678362573099415, 1.7543859649122806, 0.0, 0.5847953216374269, 0.0], &quot;type&quot;: &quot;bar&quot;, &quot;xaxis&quot;: &quot;x&quot;, &quot;yaxis&quot;: &quot;y&quot;}, {&quot;marker&quot;: {&quot;color&quot;: &quot;#4d4d4d&quot;}, &quot;name&quot;: &quot;reference&quot;, &quot;visible&quot;: true, &quot;x&quot;: [43.79, 54.12642857142857, 64.46285714285715, 74.79928571428572, 85.13571428571429, 95.47214285714286, 105.80857142857144, 116.14500000000001, 126.48142857142858, 136.81785714285715, 147.15428571428572, 157.4907142857143, 167.82714285714286, 178.16357142857143, 188.5], &quot;y&quot;: [3, 30, 59, 98, 68, 41, 30, 23, 30, 5, 4, 3, 1, 3], &quot;type&quot;: &quot;bar&quot;, &quot;xaxis&quot;: &quot;x&quot;, &quot;yaxis&quot;: &quot;y&quot;}, {&quot;marker&quot;: {&quot;color&quot;: &quot;#4d4d4d&quot;}, &quot;name&quot;: &quot;reference&quot;, &quot;visible&quot;: false, &quot;x&quot;: [43.79, 54.12642857142857, 64.46285714285715, 74.79928571428572, 85.13571428571429, 95.47214285714286, 105.80857142857144, 116.14500000000001, 126.48142857142858, 136.81785714285715, 147.15428571428572, 157.4907142857143, 167.82714285714286, 178.16357142857143, 188.5], &quot;y&quot;: [0.7537688442211055, 7.537688442211055, 14.824120603015075, 24.623115577889447, 17.08542713567839, 10.301507537688442, 7.537688442211055, 5.778894472361809, 7.537688442211055, 1.256281407035176, 1.0050251256281406, 0.7537688442211055, 0.25125628140703515, 0.7537688442211055], &quot;type&quot;: &quot;bar&quot;, &quot;xaxis&quot;: &quot;x&quot;, &quot;yaxis&quot;: &quot;y&quot;}], &quot;layout&quot;: {&quot;template&quot;: {&quot;data&quot;: {&quot;histogram2dcontour&quot;: [{&quot;type&quot;: &quot;histogram2dcontour&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;choropleth&quot;: [{&quot;type&quot;: &quot;choropleth&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}], &quot;histogram2d&quot;: [{&quot;type&quot;: &quot;histogram2d&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;heatmap&quot;: [{&quot;type&quot;: &quot;heatmap&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;heatmapgl&quot;: [{&quot;type&quot;: &quot;heatmapgl&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;contourcarpet&quot;: [{&quot;type&quot;: &quot;contourcarpet&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}], &quot;contour&quot;: [{&quot;type&quot;: &quot;contour&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;surface&quot;: [{&quot;type&quot;: &quot;surface&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;mesh3d&quot;: [{&quot;type&quot;: &quot;mesh3d&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}], &quot;scatter&quot;: [{&quot;fillpattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}, &quot;type&quot;: &quot;scatter&quot;}], &quot;parcoords&quot;: [{&quot;type&quot;: &quot;parcoords&quot;, &quot;line&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatterpolargl&quot;: [{&quot;type&quot;: &quot;scatterpolargl&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;bar&quot;: [{&quot;error_x&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}, &quot;error_y&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}, &quot;marker&quot;: {&quot;line&quot;: {&quot;color&quot;: &quot;#E5ECF6&quot;, &quot;width&quot;: 0.5}, &quot;pattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}}, &quot;type&quot;: &quot;bar&quot;}], &quot;scattergeo&quot;: [{&quot;type&quot;: &quot;scattergeo&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatterpolar&quot;: [{&quot;type&quot;: &quot;scatterpolar&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;histogram&quot;: [{&quot;marker&quot;: {&quot;pattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}}, &quot;type&quot;: &quot;histogram&quot;}], &quot;scattergl&quot;: [{&quot;type&quot;: &quot;scattergl&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatter3d&quot;: [{&quot;type&quot;: &quot;scatter3d&quot;, &quot;line&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scattermapbox&quot;: [{&quot;type&quot;: &quot;scattermapbox&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatterternary&quot;: [{&quot;type&quot;: &quot;scatterternary&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scattercarpet&quot;: [{&quot;type&quot;: &quot;scattercarpet&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;carpet&quot;: [{&quot;aaxis&quot;: {&quot;endlinecolor&quot;: &quot;#2a3f5f&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;minorgridcolor&quot;: &quot;white&quot;, &quot;startlinecolor&quot;: &quot;#2a3f5f&quot;}, &quot;baxis&quot;: {&quot;endlinecolor&quot;: &quot;#2a3f5f&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;minorgridcolor&quot;: &quot;white&quot;, &quot;startlinecolor&quot;: &quot;#2a3f5f&quot;}, &quot;type&quot;: &quot;carpet&quot;}], &quot;table&quot;: [{&quot;cells&quot;: {&quot;fill&quot;: {&quot;color&quot;: &quot;#EBF0F8&quot;}, &quot;line&quot;: {&quot;color&quot;: &quot;white&quot;}}, &quot;header&quot;: {&quot;fill&quot;: {&quot;color&quot;: &quot;#C8D4E3&quot;}, &quot;line&quot;: {&quot;color&quot;: &quot;white&quot;}}, &quot;type&quot;: &quot;table&quot;}], &quot;barpolar&quot;: [{&quot;marker&quot;: {&quot;line&quot;: {&quot;color&quot;: &quot;#E5ECF6&quot;, &quot;width&quot;: 0.5}, &quot;pattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}}, &quot;type&quot;: &quot;barpolar&quot;}], &quot;pie&quot;: [{&quot;automargin&quot;: true, &quot;type&quot;: &quot;pie&quot;}]}, &quot;layout&quot;: {&quot;autotypenumbers&quot;: &quot;strict&quot;, &quot;colorway&quot;: [&quot;#636efa&quot;, &quot;#EF553B&quot;, &quot;#00cc96&quot;, &quot;#ab63fa&quot;, &quot;#FFA15A&quot;, &quot;#19d3f3&quot;, &quot;#FF6692&quot;, &quot;#B6E880&quot;, &quot;#FF97FF&quot;, &quot;#FECB52&quot;], &quot;font&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}, &quot;hovermode&quot;: &quot;closest&quot;, &quot;hoverlabel&quot;: {&quot;align&quot;: &quot;left&quot;}, &quot;paper_bgcolor&quot;: &quot;white&quot;, &quot;plot_bgcolor&quot;: &quot;#E5ECF6&quot;, &quot;polar&quot;: {&quot;bgcolor&quot;: &quot;#E5ECF6&quot;, &quot;angularaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}, &quot;radialaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}}, &quot;ternary&quot;: {&quot;bgcolor&quot;: &quot;#E5ECF6&quot;, &quot;aaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}, &quot;baxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}, &quot;caxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}}, &quot;coloraxis&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}, &quot;colorscale&quot;: {&quot;sequential&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]], &quot;sequentialminus&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]], &quot;diverging&quot;: [[0, &quot;#8e0152&quot;], [0.1, &quot;#c51b7d&quot;], [0.2, &quot;#de77ae&quot;], [0.3, &quot;#f1b6da&quot;], [0.4, &quot;#fde0ef&quot;], [0.5, &quot;#f7f7f7&quot;], [0.6, &quot;#e6f5d0&quot;], [0.7, &quot;#b8e186&quot;], [0.8, &quot;#7fbc41&quot;], [0.9, &quot;#4d9221&quot;], [1, &quot;#276419&quot;]]}, &quot;xaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;, &quot;title&quot;: {&quot;standoff&quot;: 15}, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;automargin&quot;: true, &quot;zerolinewidth&quot;: 2}, &quot;yaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;, &quot;title&quot;: {&quot;standoff&quot;: 15}, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;automargin&quot;: true, &quot;zerolinewidth&quot;: 2}, &quot;scene&quot;: {&quot;xaxis&quot;: {&quot;backgroundcolor&quot;: &quot;#E5ECF6&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;showbackground&quot;: true, &quot;ticks&quot;: &quot;&quot;, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;gridwidth&quot;: 2}, &quot;yaxis&quot;: {&quot;backgroundcolor&quot;: &quot;#E5ECF6&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;showbackground&quot;: true, &quot;ticks&quot;: &quot;&quot;, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;gridwidth&quot;: 2}, &quot;zaxis&quot;: {&quot;backgroundcolor&quot;: &quot;#E5ECF6&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;showbackground&quot;: true, &quot;ticks&quot;: &quot;&quot;, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;gridwidth&quot;: 2}}, &quot;shapedefaults&quot;: {&quot;line&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}}, &quot;annotationdefaults&quot;: {&quot;arrowcolor&quot;: &quot;#2a3f5f&quot;, &quot;arrowhead&quot;: 0, &quot;arrowwidth&quot;: 1}, &quot;geo&quot;: {&quot;bgcolor&quot;: &quot;white&quot;, &quot;landcolor&quot;: &quot;#E5ECF6&quot;, &quot;subunitcolor&quot;: &quot;white&quot;, &quot;showland&quot;: true, &quot;showlakes&quot;: true, &quot;lakecolor&quot;: &quot;white&quot;}, &quot;title&quot;: {&quot;x&quot;: 0.05}, &quot;mapbox&quot;: {&quot;style&quot;: &quot;light&quot;}}}, &quot;xaxis&quot;: {&quot;anchor&quot;: &quot;y&quot;, &quot;domain&quot;: [0.0, 1.0], &quot;title&quot;: {&quot;text&quot;: &quot;&quot;}}, &quot;yaxis&quot;: {&quot;anchor&quot;: &quot;x&quot;, &quot;domain&quot;: [0.0, 1.0], &quot;title&quot;: {&quot;text&quot;: &quot;Count&quot;}}, &quot;updatemenus&quot;: [{&quot;buttons&quot;: [{&quot;args&quot;: [{&quot;visible&quot;: [true, false, true, false]}, {&quot;yaxis&quot;: {&quot;title&quot;: &quot;Count&quot;}}], &quot;label&quot;: &quot;abs&quot;, &quot;method&quot;: &quot;update&quot;}, {&quot;args&quot;: [{&quot;visible&quot;: [false, true, false, true]}, {&quot;yaxis&quot;: {&quot;title&quot;: &quot;Percent&quot;}}], &quot;label&quot;: &quot;perc&quot;, &quot;method&quot;: &quot;update&quot;}], &quot;direction&quot;: &quot;right&quot;, &quot;type&quot;: &quot;buttons&quot;, &quot;x&quot;: 1.05, &quot;y&quot;: 1.2, &quot;yanchor&quot;: &quot;top&quot;}]}}, &quot;insights&quot;: [], &quot;additionalGraphs&quot;: [], &quot;alerts&quot;: [], &quot;tabs&quot;: [], &quot;widgets&quot;: [], &quot;pageSize&quot;: 5}, &quot;a46d15c0-6513-4d9d-81d4-a23a5426b212&quot;: {&quot;type&quot;: &quot;big_graph&quot;, &quot;title&quot;: &quot;&quot;, &quot;size&quot;: 2, &quot;id&quot;: &quot;a46d15c0-6513-4d9d-81d4-a23a5426b212&quot;, &quot;details&quot;: &quot;&quot;, &quot;alertsPosition&quot;: null, &quot;alertStats&quot;: null, &quot;params&quot;: {&quot;data&quot;: [{&quot;fill&quot;: &quot;toself&quot;, &quot;fillcolor&quot;: &quot;LightGreen&quot;, &quot;line&quot;: {&quot;color&quot;: &quot;LightGreen&quot;, &quot;dash&quot;: &quot;solid&quot;, &quot;width&quot;: 0}, &quot;marker&quot;: {&quot;size&quot;: 0}, &quot;name&quot;: &quot;reference (+/- 1std)&quot;, &quot;opacity&quot;: 0.5, &quot;x&quot;: [0, 170, 170, 0], &quot;y&quot;: [0.055415654334247895, 0.055415654334247895, 0.069912184861732, 0.069912184861732], &quot;type&quot;: &quot;scatter&quot;}, {&quot;marker&quot;: {&quot;color&quot;: &quot;#ed0400&quot;, &quot;size&quot;: 6}, &quot;mode&quot;: &quot;markers&quot;, &quot;name&quot;: &quot;Current&quot;, &quot;x&quot;: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170], &quot;y&quot;: [0.06373, 0.05461, 0.05796, 0.07102, 0.06782, 0.07016, 0.0614, 0.06149, 0.06902, 0.05536, 0.05584, 0.05534, 0.05266, 0.06532, 0.05808, 0.07224, 0.05348, 0.06331, 0.07818, 0.06251, 0.06566, 0.06161, 0.06606, 0.06439, 0.05878, 0.06641, 0.05594, 0.06127, 0.06183, 0.06487, 0.06552, 0.05907, 0.07029, 0.06155, 0.06908, 0.05907, 0.05697, 0.06113, 0.05742, 0.05866, 0.06481, 0.06464, 0.0632, 0.06057, 0.05875, 0.06529, 0.07696, 0.06059, 0.06461, 0.05935, 0.0558, 0.06197, 0.0731, 0.06457, 0.07839, 0.05549, 0.07279, 0.06782, 0.06419, 0.0627, 0.05997, 0.05999, 0.05623, 0.05433, 0.05945, 0.06019, 0.07331, 0.08142, 0.0578, 0.0654, 0.06877, 0.06082, 0.05764, 0.06323, 0.07285, 0.06639, 0.05835, 0.0613, 0.05688, 0.06914, 0.05891, 0.06081, 0.05636, 0.05898, 0.0551, 0.07596, 0.08243, 0.07369, 0.06659, 0.06476, 0.05968, 0.06317, 0.06869, 0.05502, 0.06028, 0.07065, 0.05533, 0.07421, 0.06105, 0.05407, 0.05549, 0.06422, 0.06673, 0.06069, 0.06328, 0.06677, 0.06761, 0.05484, 0.06081, 0.05355, 0.05391, 0.06168, 0.06129, 0.05674, 0.08046, 0.07398, 0.06963, 0.06329, 0.0696, 0.07077, 0.07192, 0.05865, 0.06228, 0.06188, 0.06404, 0.05661, 0.06768, 0.06413, 0.05701, 0.06261, 0.07871, 0.07152, 0.05586, 0.06128, 0.05526, 0.07032, 0.06079, 0.0644, 0.06346, 0.06466, 0.0634, 0.05395, 0.06569, 0.05581, 0.07325, 0.05899, 0.05916, 0.05024, 0.06317, 0.05848, 0.05684, 0.05708, 0.06503, 0.0571, 0.05628, 0.07039, 0.06, 0.05884, 0.05703, 0.06148, 0.06447, 0.07125, 0.06048, 0.06184, 0.05294, 0.06915, 0.05653, 0.0568, 0.08116, 0.07237, 0.06409], &quot;type&quot;: &quot;scattergl&quot;}, {&quot;marker&quot;: {&quot;color&quot;: &quot;green&quot;}, &quot;mode&quot;: &quot;lines&quot;, &quot;name&quot;: &quot;reference (mean)&quot;, &quot;x&quot;: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170], &quot;y&quot;: [0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995, 0.06266391959798995], &quot;type&quot;: &quot;scatter&quot;}], &quot;layout&quot;: {&quot;template&quot;: {&quot;data&quot;: {&quot;histogram2dcontour&quot;: [{&quot;type&quot;: &quot;histogram2dcontour&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;choropleth&quot;: [{&quot;type&quot;: &quot;choropleth&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}], &quot;histogram2d&quot;: [{&quot;type&quot;: &quot;histogram2d&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;heatmap&quot;: [{&quot;type&quot;: &quot;heatmap&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;heatmapgl&quot;: [{&quot;type&quot;: &quot;heatmapgl&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;contourcarpet&quot;: [{&quot;type&quot;: &quot;contourcarpet&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}], &quot;contour&quot;: [{&quot;type&quot;: &quot;contour&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;surface&quot;: [{&quot;type&quot;: &quot;surface&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;mesh3d&quot;: [{&quot;type&quot;: &quot;mesh3d&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}], &quot;scatter&quot;: [{&quot;fillpattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}, &quot;type&quot;: &quot;scatter&quot;}], &quot;parcoords&quot;: [{&quot;type&quot;: &quot;parcoords&quot;, &quot;line&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatterpolargl&quot;: [{&quot;type&quot;: &quot;scatterpolargl&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;bar&quot;: [{&quot;error_x&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}, &quot;error_y&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}, &quot;marker&quot;: {&quot;line&quot;: {&quot;color&quot;: &quot;#E5ECF6&quot;, &quot;width&quot;: 0.5}, &quot;pattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}}, &quot;type&quot;: &quot;bar&quot;}], &quot;scattergeo&quot;: [{&quot;type&quot;: &quot;scattergeo&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatterpolar&quot;: [{&quot;type&quot;: &quot;scatterpolar&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;histogram&quot;: [{&quot;marker&quot;: {&quot;pattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}}, &quot;type&quot;: &quot;histogram&quot;}], &quot;scattergl&quot;: [{&quot;type&quot;: &quot;scattergl&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatter3d&quot;: [{&quot;type&quot;: &quot;scatter3d&quot;, &quot;line&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scattermapbox&quot;: [{&quot;type&quot;: &quot;scattermapbox&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatterternary&quot;: [{&quot;type&quot;: &quot;scatterternary&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scattercarpet&quot;: [{&quot;type&quot;: &quot;scattercarpet&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;carpet&quot;: [{&quot;aaxis&quot;: {&quot;endlinecolor&quot;: &quot;#2a3f5f&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;minorgridcolor&quot;: &quot;white&quot;, &quot;startlinecolor&quot;: &quot;#2a3f5f&quot;}, &quot;baxis&quot;: {&quot;endlinecolor&quot;: &quot;#2a3f5f&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;minorgridcolor&quot;: &quot;white&quot;, &quot;startlinecolor&quot;: &quot;#2a3f5f&quot;}, &quot;type&quot;: &quot;carpet&quot;}], &quot;table&quot;: [{&quot;cells&quot;: {&quot;fill&quot;: {&quot;color&quot;: &quot;#EBF0F8&quot;}, &quot;line&quot;: {&quot;color&quot;: &quot;white&quot;}}, &quot;header&quot;: {&quot;fill&quot;: {&quot;color&quot;: &quot;#C8D4E3&quot;}, &quot;line&quot;: {&quot;color&quot;: &quot;white&quot;}}, &quot;type&quot;: &quot;table&quot;}], &quot;barpolar&quot;: [{&quot;marker&quot;: {&quot;line&quot;: {&quot;color&quot;: &quot;#E5ECF6&quot;, &quot;width&quot;: 0.5}, &quot;pattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}}, &quot;type&quot;: &quot;barpolar&quot;}], &quot;pie&quot;: [{&quot;automargin&quot;: true, &quot;type&quot;: &quot;pie&quot;}]}, &quot;layout&quot;: {&quot;autotypenumbers&quot;: &quot;strict&quot;, &quot;colorway&quot;: [&quot;#636efa&quot;, &quot;#EF553B&quot;, &quot;#00cc96&quot;, &quot;#ab63fa&quot;, &quot;#FFA15A&quot;, &quot;#19d3f3&quot;, &quot;#FF6692&quot;, &quot;#B6E880&quot;, &quot;#FF97FF&quot;, &quot;#FECB52&quot;], &quot;font&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}, &quot;hovermode&quot;: &quot;closest&quot;, &quot;hoverlabel&quot;: {&quot;align&quot;: &quot;left&quot;}, &quot;paper_bgcolor&quot;: &quot;white&quot;, &quot;plot_bgcolor&quot;: &quot;#E5ECF6&quot;, &quot;polar&quot;: {&quot;bgcolor&quot;: &quot;#E5ECF6&quot;, &quot;angularaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}, &quot;radialaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}}, &quot;ternary&quot;: {&quot;bgcolor&quot;: &quot;#E5ECF6&quot;, &quot;aaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}, &quot;baxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}, &quot;caxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}}, &quot;coloraxis&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}, &quot;colorscale&quot;: {&quot;sequential&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]], &quot;sequentialminus&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]], &quot;diverging&quot;: [[0, &quot;#8e0152&quot;], [0.1, &quot;#c51b7d&quot;], [0.2, &quot;#de77ae&quot;], [0.3, &quot;#f1b6da&quot;], [0.4, &quot;#fde0ef&quot;], [0.5, &quot;#f7f7f7&quot;], [0.6, &quot;#e6f5d0&quot;], [0.7, &quot;#b8e186&quot;], [0.8, &quot;#7fbc41&quot;], [0.9, &quot;#4d9221&quot;], [1, &quot;#276419&quot;]]}, &quot;xaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;, &quot;title&quot;: {&quot;standoff&quot;: 15}, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;automargin&quot;: true, &quot;zerolinewidth&quot;: 2}, &quot;yaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;, &quot;title&quot;: {&quot;standoff&quot;: 15}, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;automargin&quot;: true, &quot;zerolinewidth&quot;: 2}, &quot;scene&quot;: {&quot;xaxis&quot;: {&quot;backgroundcolor&quot;: &quot;#E5ECF6&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;showbackground&quot;: true, &quot;ticks&quot;: &quot;&quot;, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;gridwidth&quot;: 2}, &quot;yaxis&quot;: {&quot;backgroundcolor&quot;: &quot;#E5ECF6&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;showbackground&quot;: true, &quot;ticks&quot;: &quot;&quot;, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;gridwidth&quot;: 2}, &quot;zaxis&quot;: {&quot;backgroundcolor&quot;: &quot;#E5ECF6&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;showbackground&quot;: true, &quot;ticks&quot;: &quot;&quot;, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;gridwidth&quot;: 2}}, &quot;shapedefaults&quot;: {&quot;line&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}}, &quot;annotationdefaults&quot;: {&quot;arrowcolor&quot;: &quot;#2a3f5f&quot;, &quot;arrowhead&quot;: 0, &quot;arrowwidth&quot;: 1}, &quot;geo&quot;: {&quot;bgcolor&quot;: &quot;white&quot;, &quot;landcolor&quot;: &quot;#E5ECF6&quot;, &quot;subunitcolor&quot;: &quot;white&quot;, &quot;showland&quot;: true, &quot;showlakes&quot;: true, &quot;lakecolor&quot;: &quot;white&quot;}, &quot;title&quot;: {&quot;x&quot;: 0.05}, &quot;mapbox&quot;: {&quot;style&quot;: &quot;light&quot;}}}, &quot;legend&quot;: {&quot;orientation&quot;: &quot;h&quot;, &quot;yanchor&quot;: &quot;bottom&quot;, &quot;y&quot;: 1.02, &quot;xanchor&quot;: &quot;right&quot;, &quot;x&quot;: 1}, &quot;xaxis&quot;: {&quot;title&quot;: {&quot;text&quot;: &quot;Index&quot;}}, &quot;yaxis&quot;: {&quot;title&quot;: {&quot;text&quot;: &quot;mean fractal dimension&quot;}}, &quot;showlegend&quot;: true}}, &quot;insights&quot;: [], &quot;additionalGraphs&quot;: [], &quot;alerts&quot;: [], &quot;tabs&quot;: [], &quot;widgets&quot;: [], &quot;pageSize&quot;: 5}, &quot;b8c7bb3a-1087-4566-8d08-4db380414115&quot;: {&quot;type&quot;: &quot;big_graph&quot;, &quot;title&quot;: &quot;&quot;, &quot;size&quot;: 2, &quot;id&quot;: &quot;b8c7bb3a-1087-4566-8d08-4db380414115&quot;, &quot;details&quot;: &quot;&quot;, &quot;alertsPosition&quot;: null, &quot;alertStats&quot;: null, &quot;params&quot;: {&quot;data&quot;: [{&quot;marker&quot;: {&quot;color&quot;: &quot;#ed0400&quot;}, &quot;name&quot;: &quot;current&quot;, &quot;visible&quot;: true, &quot;x&quot;: [0.04996, 0.05335142857142857, 0.056742857142857143, 0.06013428571428571, 0.06352571428571428, 0.06691714285714286, 0.07030857142857143, 0.0737, 0.07709142857142857, 0.08048285714285715, 0.0838742857142857, 0.08726571428571428, 0.09065714285714285, 0.09404857142857143, 0.09744], &quot;y&quot;: [3, 27, 32, 39, 29, 14, 16, 4, 4, 3, 0, 0, 0, 0], &quot;type&quot;: &quot;bar&quot;, &quot;xaxis&quot;: &quot;x&quot;, &quot;yaxis&quot;: &quot;y&quot;}, {&quot;marker&quot;: {&quot;color&quot;: &quot;#ed0400&quot;}, &quot;name&quot;: &quot;current&quot;, &quot;visible&quot;: false, &quot;x&quot;: [0.04996, 0.05335142857142857, 0.056742857142857143, 0.06013428571428571, 0.06352571428571428, 0.06691714285714286, 0.07030857142857143, 0.0737, 0.07709142857142857, 0.08048285714285715, 0.0838742857142857, 0.08726571428571428, 0.09065714285714285, 0.09404857142857143, 0.09744], &quot;y&quot;: [1.7543859649122806, 15.789473684210526, 18.71345029239766, 22.807017543859647, 16.95906432748538, 8.187134502923977, 9.35672514619883, 2.3391812865497075, 2.3391812865497075, 1.7543859649122806, 0.0, 0.0, 0.0, 0.0], &quot;type&quot;: &quot;bar&quot;, &quot;xaxis&quot;: &quot;x&quot;, &quot;yaxis&quot;: &quot;y&quot;}, {&quot;marker&quot;: {&quot;color&quot;: &quot;#4d4d4d&quot;}, &quot;name&quot;: &quot;reference&quot;, &quot;visible&quot;: true, &quot;x&quot;: [0.04996, 0.05335142857142857, 0.056742857142857143, 0.06013428571428571, 0.06352571428571428, 0.06691714285714286, 0.07030857142857143, 0.0737, 0.07709142857142857, 0.08048285714285715, 0.0838742857142857, 0.08726571428571428, 0.09065714285714285, 0.09404857142857143, 0.09744], &quot;y&quot;: [19, 62, 80, 98, 55, 37, 17, 14, 7, 2, 1, 2, 1, 3], &quot;type&quot;: &quot;bar&quot;, &quot;xaxis&quot;: &quot;x&quot;, &quot;yaxis&quot;: &quot;y&quot;}, {&quot;marker&quot;: {&quot;color&quot;: &quot;#4d4d4d&quot;}, &quot;name&quot;: &quot;reference&quot;, &quot;visible&quot;: false, &quot;x&quot;: [0.04996, 0.05335142857142857, 0.056742857142857143, 0.06013428571428571, 0.06352571428571428, 0.06691714285714286, 0.07030857142857143, 0.0737, 0.07709142857142857, 0.08048285714285715, 0.0838742857142857, 0.08726571428571428, 0.09065714285714285, 0.09404857142857143, 0.09744], &quot;y&quot;: [4.773869346733668, 15.577889447236181, 20.100502512562816, 24.623115577889447, 13.819095477386934, 9.296482412060302, 4.271356783919598, 3.5175879396984926, 1.7587939698492463, 0.5025125628140703, 0.25125628140703515, 0.5025125628140703, 0.25125628140703515, 0.7537688442211055], &quot;type&quot;: &quot;bar&quot;, &quot;xaxis&quot;: &quot;x&quot;, &quot;yaxis&quot;: &quot;y&quot;}], &quot;layout&quot;: {&quot;template&quot;: {&quot;data&quot;: {&quot;histogram2dcontour&quot;: [{&quot;type&quot;: &quot;histogram2dcontour&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;choropleth&quot;: [{&quot;type&quot;: &quot;choropleth&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}], &quot;histogram2d&quot;: [{&quot;type&quot;: &quot;histogram2d&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;heatmap&quot;: [{&quot;type&quot;: &quot;heatmap&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;heatmapgl&quot;: [{&quot;type&quot;: &quot;heatmapgl&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;contourcarpet&quot;: [{&quot;type&quot;: &quot;contourcarpet&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}], &quot;contour&quot;: [{&quot;type&quot;: &quot;contour&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;surface&quot;: [{&quot;type&quot;: &quot;surface&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;mesh3d&quot;: [{&quot;type&quot;: &quot;mesh3d&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}], &quot;scatter&quot;: [{&quot;fillpattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}, &quot;type&quot;: &quot;scatter&quot;}], &quot;parcoords&quot;: [{&quot;type&quot;: &quot;parcoords&quot;, &quot;line&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatterpolargl&quot;: [{&quot;type&quot;: &quot;scatterpolargl&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;bar&quot;: [{&quot;error_x&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}, &quot;error_y&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}, &quot;marker&quot;: {&quot;line&quot;: {&quot;color&quot;: &quot;#E5ECF6&quot;, &quot;width&quot;: 0.5}, &quot;pattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}}, &quot;type&quot;: &quot;bar&quot;}], &quot;scattergeo&quot;: [{&quot;type&quot;: &quot;scattergeo&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatterpolar&quot;: [{&quot;type&quot;: &quot;scatterpolar&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;histogram&quot;: [{&quot;marker&quot;: {&quot;pattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}}, &quot;type&quot;: &quot;histogram&quot;}], &quot;scattergl&quot;: [{&quot;type&quot;: &quot;scattergl&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatter3d&quot;: [{&quot;type&quot;: &quot;scatter3d&quot;, &quot;line&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scattermapbox&quot;: [{&quot;type&quot;: &quot;scattermapbox&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatterternary&quot;: [{&quot;type&quot;: &quot;scatterternary&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scattercarpet&quot;: [{&quot;type&quot;: &quot;scattercarpet&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;carpet&quot;: [{&quot;aaxis&quot;: {&quot;endlinecolor&quot;: &quot;#2a3f5f&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;minorgridcolor&quot;: &quot;white&quot;, &quot;startlinecolor&quot;: &quot;#2a3f5f&quot;}, &quot;baxis&quot;: {&quot;endlinecolor&quot;: &quot;#2a3f5f&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;minorgridcolor&quot;: &quot;white&quot;, &quot;startlinecolor&quot;: &quot;#2a3f5f&quot;}, &quot;type&quot;: &quot;carpet&quot;}], &quot;table&quot;: [{&quot;cells&quot;: {&quot;fill&quot;: {&quot;color&quot;: &quot;#EBF0F8&quot;}, &quot;line&quot;: {&quot;color&quot;: &quot;white&quot;}}, &quot;header&quot;: {&quot;fill&quot;: {&quot;color&quot;: &quot;#C8D4E3&quot;}, &quot;line&quot;: {&quot;color&quot;: &quot;white&quot;}}, &quot;type&quot;: &quot;table&quot;}], &quot;barpolar&quot;: [{&quot;marker&quot;: {&quot;line&quot;: {&quot;color&quot;: &quot;#E5ECF6&quot;, &quot;width&quot;: 0.5}, &quot;pattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}}, &quot;type&quot;: &quot;barpolar&quot;}], &quot;pie&quot;: [{&quot;automargin&quot;: true, &quot;type&quot;: &quot;pie&quot;}]}, &quot;layout&quot;: {&quot;autotypenumbers&quot;: &quot;strict&quot;, &quot;colorway&quot;: [&quot;#636efa&quot;, &quot;#EF553B&quot;, &quot;#00cc96&quot;, &quot;#ab63fa&quot;, &quot;#FFA15A&quot;, &quot;#19d3f3&quot;, &quot;#FF6692&quot;, &quot;#B6E880&quot;, &quot;#FF97FF&quot;, &quot;#FECB52&quot;], &quot;font&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}, &quot;hovermode&quot;: &quot;closest&quot;, &quot;hoverlabel&quot;: {&quot;align&quot;: &quot;left&quot;}, &quot;paper_bgcolor&quot;: &quot;white&quot;, &quot;plot_bgcolor&quot;: &quot;#E5ECF6&quot;, &quot;polar&quot;: {&quot;bgcolor&quot;: &quot;#E5ECF6&quot;, &quot;angularaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}, &quot;radialaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}}, &quot;ternary&quot;: {&quot;bgcolor&quot;: &quot;#E5ECF6&quot;, &quot;aaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}, &quot;baxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}, &quot;caxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}}, &quot;coloraxis&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}, &quot;colorscale&quot;: {&quot;sequential&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]], &quot;sequentialminus&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]], &quot;diverging&quot;: [[0, &quot;#8e0152&quot;], [0.1, &quot;#c51b7d&quot;], [0.2, &quot;#de77ae&quot;], [0.3, &quot;#f1b6da&quot;], [0.4, &quot;#fde0ef&quot;], [0.5, &quot;#f7f7f7&quot;], [0.6, &quot;#e6f5d0&quot;], [0.7, &quot;#b8e186&quot;], [0.8, &quot;#7fbc41&quot;], [0.9, &quot;#4d9221&quot;], [1, &quot;#276419&quot;]]}, &quot;xaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;, &quot;title&quot;: {&quot;standoff&quot;: 15}, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;automargin&quot;: true, &quot;zerolinewidth&quot;: 2}, &quot;yaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;, &quot;title&quot;: {&quot;standoff&quot;: 15}, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;automargin&quot;: true, &quot;zerolinewidth&quot;: 2}, &quot;scene&quot;: {&quot;xaxis&quot;: {&quot;backgroundcolor&quot;: &quot;#E5ECF6&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;showbackground&quot;: true, &quot;ticks&quot;: &quot;&quot;, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;gridwidth&quot;: 2}, &quot;yaxis&quot;: {&quot;backgroundcolor&quot;: &quot;#E5ECF6&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;showbackground&quot;: true, &quot;ticks&quot;: &quot;&quot;, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;gridwidth&quot;: 2}, &quot;zaxis&quot;: {&quot;backgroundcolor&quot;: &quot;#E5ECF6&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;showbackground&quot;: true, &quot;ticks&quot;: &quot;&quot;, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;gridwidth&quot;: 2}}, &quot;shapedefaults&quot;: {&quot;line&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}}, &quot;annotationdefaults&quot;: {&quot;arrowcolor&quot;: &quot;#2a3f5f&quot;, &quot;arrowhead&quot;: 0, &quot;arrowwidth&quot;: 1}, &quot;geo&quot;: {&quot;bgcolor&quot;: &quot;white&quot;, &quot;landcolor&quot;: &quot;#E5ECF6&quot;, &quot;subunitcolor&quot;: &quot;white&quot;, &quot;showland&quot;: true, &quot;showlakes&quot;: true, &quot;lakecolor&quot;: &quot;white&quot;}, &quot;title&quot;: {&quot;x&quot;: 0.05}, &quot;mapbox&quot;: {&quot;style&quot;: &quot;light&quot;}}}, &quot;xaxis&quot;: {&quot;anchor&quot;: &quot;y&quot;, &quot;domain&quot;: [0.0, 1.0], &quot;title&quot;: {&quot;text&quot;: &quot;&quot;}}, &quot;yaxis&quot;: {&quot;anchor&quot;: &quot;x&quot;, &quot;domain&quot;: [0.0, 1.0], &quot;title&quot;: {&quot;text&quot;: &quot;Count&quot;}}, &quot;updatemenus&quot;: [{&quot;buttons&quot;: [{&quot;args&quot;: [{&quot;visible&quot;: [true, false, true, false]}, {&quot;yaxis&quot;: {&quot;title&quot;: &quot;Count&quot;}}], &quot;label&quot;: &quot;abs&quot;, &quot;method&quot;: &quot;update&quot;}, {&quot;args&quot;: [{&quot;visible&quot;: [false, true, false, true]}, {&quot;yaxis&quot;: {&quot;title&quot;: &quot;Percent&quot;}}], &quot;label&quot;: &quot;perc&quot;, &quot;method&quot;: &quot;update&quot;}], &quot;direction&quot;: &quot;right&quot;, &quot;type&quot;: &quot;buttons&quot;, &quot;x&quot;: 1.05, &quot;y&quot;: 1.2, &quot;yanchor&quot;: &quot;top&quot;}]}}, &quot;insights&quot;: [], &quot;additionalGraphs&quot;: [], &quot;alerts&quot;: [], &quot;tabs&quot;: [], &quot;widgets&quot;: [], &quot;pageSize&quot;: 5}, &quot;31fa7b0e-1bf6-47fa-ae06-d49b7fb74465&quot;: {&quot;type&quot;: &quot;big_graph&quot;, &quot;title&quot;: &quot;&quot;, &quot;size&quot;: 2, &quot;id&quot;: &quot;31fa7b0e-1bf6-47fa-ae06-d49b7fb74465&quot;, &quot;details&quot;: &quot;&quot;, &quot;alertsPosition&quot;: null, &quot;alertStats&quot;: null, &quot;params&quot;: {&quot;data&quot;: [{&quot;fill&quot;: &quot;toself&quot;, &quot;fillcolor&quot;: &quot;LightGreen&quot;, &quot;line&quot;: {&quot;color&quot;: &quot;LightGreen&quot;, &quot;dash&quot;: &quot;solid&quot;, &quot;width&quot;: 0}, &quot;marker&quot;: {&quot;size&quot;: 0}, &quot;name&quot;: &quot;reference (+/- 1std)&quot;, &quot;opacity&quot;: 0.5, &quot;x&quot;: [0, 170, 170, 0], &quot;y&quot;: [0.052094553280922336, 0.052094553280922336, 0.15451182862862542, 0.15451182862862542], &quot;type&quot;: &quot;scatter&quot;}, {&quot;marker&quot;: {&quot;color&quot;: &quot;#ed0400&quot;, &quot;size&quot;: 6}, &quot;mode&quot;: &quot;markers&quot;, &quot;name&quot;: &quot;Current&quot;, &quot;x&quot;: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170], &quot;y&quot;: [0.1058, 0.1029, 0.1223, 0.1316, 0.112, 0.277, 0.1954, 0.1157, 0.1535, 0.05319, 0.05205, 0.09182, 0.05352, 0.1283, 0.06307, 0.1791, 0.05016, 0.07504, 0.07568, 0.1739, 0.128, 0.09758, 0.2087, 0.03912, 0.05688, 0.1047, 0.08575, 0.07658, 0.07952, 0.183, 0.08194, 0.05241, 0.08333, 0.07255, 0.08502, 0.05473, 0.06669, 0.0434, 0.109, 0.08606, 0.08578, 0.09769, 0.1168, 0.069, 0.0721, 0.06575, 0.1225, 0.04971, 0.09453, 0.0958, 0.08995, 0.1887, 0.1483, 0.09755, 0.1296, 0.05994, 0.1111, 0.2665, 0.1255, 0.07608, 0.09546, 0.1599, 0.1159, 0.05223, 0.04202, 0.07529, 0.1752, 0.3454, 0.05562, 0.1125, 0.1267, 0.1292, 0.05361, 0.1556, 0.04878, 0.1155, 0.06945, 0.1279, 0.05139, 0.1111, 0.1284, 0.04458, 0.09947, 0.1606, 0.07027, 0.2284, 0.2396, 0.2004, 0.1073, 0.08834, 0.07165, 0.1138, 0.1364, 0.03558, 0.06779, 0.08404, 0.1034, 0.1768, 0.05113, 0.1109, 0.08799, 0.04102, 0.2146, 0.1304, 0.06602, 0.09713, 0.1015, 0.1275, 0.1021, 0.06698, 0.08424, 0.07808, 0.1039, 0.1143, 0.1413, 0.2832, 0.08751, 0.07234, 0.08061, 0.1595, 0.1676, 0.06889, 0.06679, 0.131, 0.09445, 0.1175, 0.1649, 0.06258, 0.05696, 0.1719, 0.2776, 0.2087, 0.0522, 0.05253, 0.0623, 0.2135, 0.1147, 0.05971, 0.1339, 0.1206, 0.07804, 0.1027, 0.07542, 0.03729, 0.1469, 0.07899, 0.1314, 0.1348, 0.1052, 0.06718, 0.07081, 0.04571, 0.05943, 0.08165, 0.03813, 0.2768, 0.1558, 0.04362, 0.07074, 0.03834, 0.02344, 0.09228, 0.04695, 0.1038, 0.04605, 0.1013, 0.05234, 0.07214, 0.1294, 0.1681, 0.1346], &quot;type&quot;: &quot;scattergl&quot;}, {&quot;marker&quot;: {&quot;color&quot;: &quot;green&quot;}, &quot;mode&quot;: &quot;lines&quot;, &quot;name&quot;: &quot;reference (mean)&quot;, &quot;x&quot;: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170], &quot;y&quot;: [0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387, 0.10330319095477387], &quot;type&quot;: &quot;scatter&quot;}], &quot;layout&quot;: {&quot;template&quot;: {&quot;data&quot;: {&quot;histogram2dcontour&quot;: [{&quot;type&quot;: &quot;histogram2dcontour&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;choropleth&quot;: [{&quot;type&quot;: &quot;choropleth&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}], &quot;histogram2d&quot;: [{&quot;type&quot;: &quot;histogram2d&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;heatmap&quot;: [{&quot;type&quot;: &quot;heatmap&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;heatmapgl&quot;: [{&quot;type&quot;: &quot;heatmapgl&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;contourcarpet&quot;: [{&quot;type&quot;: &quot;contourcarpet&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}], &quot;contour&quot;: [{&quot;type&quot;: &quot;contour&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;surface&quot;: [{&quot;type&quot;: &quot;surface&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;mesh3d&quot;: [{&quot;type&quot;: &quot;mesh3d&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}], &quot;scatter&quot;: [{&quot;fillpattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}, &quot;type&quot;: &quot;scatter&quot;}], &quot;parcoords&quot;: [{&quot;type&quot;: &quot;parcoords&quot;, &quot;line&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatterpolargl&quot;: [{&quot;type&quot;: &quot;scatterpolargl&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;bar&quot;: [{&quot;error_x&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}, &quot;error_y&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}, &quot;marker&quot;: {&quot;line&quot;: {&quot;color&quot;: &quot;#E5ECF6&quot;, &quot;width&quot;: 0.5}, &quot;pattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}}, &quot;type&quot;: &quot;bar&quot;}], &quot;scattergeo&quot;: [{&quot;type&quot;: &quot;scattergeo&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatterpolar&quot;: [{&quot;type&quot;: &quot;scatterpolar&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;histogram&quot;: [{&quot;marker&quot;: {&quot;pattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}}, &quot;type&quot;: &quot;histogram&quot;}], &quot;scattergl&quot;: [{&quot;type&quot;: &quot;scattergl&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatter3d&quot;: [{&quot;type&quot;: &quot;scatter3d&quot;, &quot;line&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scattermapbox&quot;: [{&quot;type&quot;: &quot;scattermapbox&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatterternary&quot;: [{&quot;type&quot;: &quot;scatterternary&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scattercarpet&quot;: [{&quot;type&quot;: &quot;scattercarpet&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;carpet&quot;: [{&quot;aaxis&quot;: {&quot;endlinecolor&quot;: &quot;#2a3f5f&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;minorgridcolor&quot;: &quot;white&quot;, &quot;startlinecolor&quot;: &quot;#2a3f5f&quot;}, &quot;baxis&quot;: {&quot;endlinecolor&quot;: &quot;#2a3f5f&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;minorgridcolor&quot;: &quot;white&quot;, &quot;startlinecolor&quot;: &quot;#2a3f5f&quot;}, &quot;type&quot;: &quot;carpet&quot;}], &quot;table&quot;: [{&quot;cells&quot;: {&quot;fill&quot;: {&quot;color&quot;: &quot;#EBF0F8&quot;}, &quot;line&quot;: {&quot;color&quot;: &quot;white&quot;}}, &quot;header&quot;: {&quot;fill&quot;: {&quot;color&quot;: &quot;#C8D4E3&quot;}, &quot;line&quot;: {&quot;color&quot;: &quot;white&quot;}}, &quot;type&quot;: &quot;table&quot;}], &quot;barpolar&quot;: [{&quot;marker&quot;: {&quot;line&quot;: {&quot;color&quot;: &quot;#E5ECF6&quot;, &quot;width&quot;: 0.5}, &quot;pattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}}, &quot;type&quot;: &quot;barpolar&quot;}], &quot;pie&quot;: [{&quot;automargin&quot;: true, &quot;type&quot;: &quot;pie&quot;}]}, &quot;layout&quot;: {&quot;autotypenumbers&quot;: &quot;strict&quot;, &quot;colorway&quot;: [&quot;#636efa&quot;, &quot;#EF553B&quot;, &quot;#00cc96&quot;, &quot;#ab63fa&quot;, &quot;#FFA15A&quot;, &quot;#19d3f3&quot;, &quot;#FF6692&quot;, &quot;#B6E880&quot;, &quot;#FF97FF&quot;, &quot;#FECB52&quot;], &quot;font&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}, &quot;hovermode&quot;: &quot;closest&quot;, &quot;hoverlabel&quot;: {&quot;align&quot;: &quot;left&quot;}, &quot;paper_bgcolor&quot;: &quot;white&quot;, &quot;plot_bgcolor&quot;: &quot;#E5ECF6&quot;, &quot;polar&quot;: {&quot;bgcolor&quot;: &quot;#E5ECF6&quot;, &quot;angularaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}, &quot;radialaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}}, &quot;ternary&quot;: {&quot;bgcolor&quot;: &quot;#E5ECF6&quot;, &quot;aaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}, &quot;baxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}, &quot;caxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}}, &quot;coloraxis&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}, &quot;colorscale&quot;: {&quot;sequential&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]], &quot;sequentialminus&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]], &quot;diverging&quot;: [[0, &quot;#8e0152&quot;], [0.1, &quot;#c51b7d&quot;], [0.2, &quot;#de77ae&quot;], [0.3, &quot;#f1b6da&quot;], [0.4, &quot;#fde0ef&quot;], [0.5, &quot;#f7f7f7&quot;], [0.6, &quot;#e6f5d0&quot;], [0.7, &quot;#b8e186&quot;], [0.8, &quot;#7fbc41&quot;], [0.9, &quot;#4d9221&quot;], [1, &quot;#276419&quot;]]}, &quot;xaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;, &quot;title&quot;: {&quot;standoff&quot;: 15}, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;automargin&quot;: true, &quot;zerolinewidth&quot;: 2}, &quot;yaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;, &quot;title&quot;: {&quot;standoff&quot;: 15}, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;automargin&quot;: true, &quot;zerolinewidth&quot;: 2}, &quot;scene&quot;: {&quot;xaxis&quot;: {&quot;backgroundcolor&quot;: &quot;#E5ECF6&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;showbackground&quot;: true, &quot;ticks&quot;: &quot;&quot;, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;gridwidth&quot;: 2}, &quot;yaxis&quot;: {&quot;backgroundcolor&quot;: &quot;#E5ECF6&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;showbackground&quot;: true, &quot;ticks&quot;: &quot;&quot;, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;gridwidth&quot;: 2}, &quot;zaxis&quot;: {&quot;backgroundcolor&quot;: &quot;#E5ECF6&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;showbackground&quot;: true, &quot;ticks&quot;: &quot;&quot;, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;gridwidth&quot;: 2}}, &quot;shapedefaults&quot;: {&quot;line&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}}, &quot;annotationdefaults&quot;: {&quot;arrowcolor&quot;: &quot;#2a3f5f&quot;, &quot;arrowhead&quot;: 0, &quot;arrowwidth&quot;: 1}, &quot;geo&quot;: {&quot;bgcolor&quot;: &quot;white&quot;, &quot;landcolor&quot;: &quot;#E5ECF6&quot;, &quot;subunitcolor&quot;: &quot;white&quot;, &quot;showland&quot;: true, &quot;showlakes&quot;: true, &quot;lakecolor&quot;: &quot;white&quot;}, &quot;title&quot;: {&quot;x&quot;: 0.05}, &quot;mapbox&quot;: {&quot;style&quot;: &quot;light&quot;}}}, &quot;legend&quot;: {&quot;orientation&quot;: &quot;h&quot;, &quot;yanchor&quot;: &quot;bottom&quot;, &quot;y&quot;: 1.02, &quot;xanchor&quot;: &quot;right&quot;, &quot;x&quot;: 1}, &quot;xaxis&quot;: {&quot;title&quot;: {&quot;text&quot;: &quot;Index&quot;}}, &quot;yaxis&quot;: {&quot;title&quot;: {&quot;text&quot;: &quot;mean compactness&quot;}}, &quot;showlegend&quot;: true}}, &quot;insights&quot;: [], &quot;additionalGraphs&quot;: [], &quot;alerts&quot;: [], &quot;tabs&quot;: [], &quot;widgets&quot;: [], &quot;pageSize&quot;: 5}, &quot;98792665-92a1-4c4a-bea8-f429db1fdb15&quot;: {&quot;type&quot;: &quot;big_graph&quot;, &quot;title&quot;: &quot;&quot;, &quot;size&quot;: 2, &quot;id&quot;: &quot;98792665-92a1-4c4a-bea8-f429db1fdb15&quot;, &quot;details&quot;: &quot;&quot;, &quot;alertsPosition&quot;: null, &quot;alertStats&quot;: null, &quot;params&quot;: {&quot;data&quot;: [{&quot;marker&quot;: {&quot;color&quot;: &quot;#ed0400&quot;}, &quot;name&quot;: &quot;current&quot;, &quot;visible&quot;: true, &quot;x&quot;: [0.01938, 0.04266714285714286, 0.06595428571428572, 0.08924142857142858, 0.11252857142857142, 0.1358157142857143, 0.15910285714285716, 0.18239, 0.20567714285714286, 0.22896428571428573, 0.25225142857142857, 0.2755385714285714, 0.2988257142857143, 0.32211285714285715, 0.3454], &quot;y&quot;: [8, 31, 40, 30, 28, 7, 11, 4, 5, 1, 1, 4, 0, 1], &quot;type&quot;: &quot;bar&quot;, &quot;xaxis&quot;: &quot;x&quot;, &quot;yaxis&quot;: &quot;y&quot;}, {&quot;marker&quot;: {&quot;color&quot;: &quot;#ed0400&quot;}, &quot;name&quot;: &quot;current&quot;, &quot;visible&quot;: false, &quot;x&quot;: [0.01938, 0.04266714285714286, 0.06595428571428572, 0.08924142857142858, 0.11252857142857142, 0.1358157142857143, 0.15910285714285716, 0.18239, 0.20567714285714286, 0.22896428571428573, 0.25225142857142857, 0.2755385714285714, 0.2988257142857143, 0.32211285714285715, 0.3454], &quot;y&quot;: [4.678362573099415, 18.128654970760234, 23.391812865497073, 17.543859649122805, 16.374269005847953, 4.093567251461988, 6.432748538011696, 2.3391812865497075, 2.923976608187134, 0.5847953216374269, 0.5847953216374269, 2.3391812865497075, 0.0, 0.5847953216374269], &quot;type&quot;: &quot;bar&quot;, &quot;xaxis&quot;: &quot;x&quot;, &quot;yaxis&quot;: &quot;y&quot;}, {&quot;marker&quot;: {&quot;color&quot;: &quot;#4d4d4d&quot;}, &quot;name&quot;: &quot;reference&quot;, &quot;visible&quot;: true, &quot;x&quot;: [0.01938, 0.04266714285714286, 0.06595428571428572, 0.08924142857142858, 0.11252857142857142, 0.1358157142857143, 0.15910285714285716, 0.18239, 0.20567714285714286, 0.22896428571428573, 0.25225142857142857, 0.2755385714285714, 0.2988257142857143, 0.32211285714285715, 0.3454], &quot;y&quot;: [27, 80, 88, 55, 62, 31, 20, 15, 11, 5, 1, 2, 1, 0], &quot;type&quot;: &quot;bar&quot;, &quot;xaxis&quot;: &quot;x&quot;, &quot;yaxis&quot;: &quot;y&quot;}, {&quot;marker&quot;: {&quot;color&quot;: &quot;#4d4d4d&quot;}, &quot;name&quot;: &quot;reference&quot;, &quot;visible&quot;: false, &quot;x&quot;: [0.01938, 0.04266714285714286, 0.06595428571428572, 0.08924142857142858, 0.11252857142857142, 0.1358157142857143, 0.15910285714285716, 0.18239, 0.20567714285714286, 0.22896428571428573, 0.25225142857142857, 0.2755385714285714, 0.2988257142857143, 0.32211285714285715, 0.3454], &quot;y&quot;: [6.78391959798995, 20.100502512562816, 22.110552763819097, 13.819095477386934, 15.577889447236181, 7.788944723618091, 5.025125628140704, 3.7688442211055273, 2.763819095477387, 1.256281407035176, 0.25125628140703515, 0.5025125628140703, 0.25125628140703515, 0.0], &quot;type&quot;: &quot;bar&quot;, &quot;xaxis&quot;: &quot;x&quot;, &quot;yaxis&quot;: &quot;y&quot;}], &quot;layout&quot;: {&quot;template&quot;: {&quot;data&quot;: {&quot;histogram2dcontour&quot;: [{&quot;type&quot;: &quot;histogram2dcontour&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;choropleth&quot;: [{&quot;type&quot;: &quot;choropleth&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}], &quot;histogram2d&quot;: [{&quot;type&quot;: &quot;histogram2d&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;heatmap&quot;: [{&quot;type&quot;: &quot;heatmap&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;heatmapgl&quot;: [{&quot;type&quot;: &quot;heatmapgl&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;contourcarpet&quot;: [{&quot;type&quot;: &quot;contourcarpet&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}], &quot;contour&quot;: [{&quot;type&quot;: &quot;contour&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;surface&quot;: [{&quot;type&quot;: &quot;surface&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;mesh3d&quot;: [{&quot;type&quot;: &quot;mesh3d&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}], &quot;scatter&quot;: [{&quot;fillpattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}, &quot;type&quot;: &quot;scatter&quot;}], &quot;parcoords&quot;: [{&quot;type&quot;: &quot;parcoords&quot;, &quot;line&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatterpolargl&quot;: [{&quot;type&quot;: &quot;scatterpolargl&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;bar&quot;: [{&quot;error_x&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}, &quot;error_y&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}, &quot;marker&quot;: {&quot;line&quot;: {&quot;color&quot;: &quot;#E5ECF6&quot;, &quot;width&quot;: 0.5}, &quot;pattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}}, &quot;type&quot;: &quot;bar&quot;}], &quot;scattergeo&quot;: [{&quot;type&quot;: &quot;scattergeo&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatterpolar&quot;: [{&quot;type&quot;: &quot;scatterpolar&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;histogram&quot;: [{&quot;marker&quot;: {&quot;pattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}}, &quot;type&quot;: &quot;histogram&quot;}], &quot;scattergl&quot;: [{&quot;type&quot;: &quot;scattergl&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatter3d&quot;: [{&quot;type&quot;: &quot;scatter3d&quot;, &quot;line&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scattermapbox&quot;: [{&quot;type&quot;: &quot;scattermapbox&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatterternary&quot;: [{&quot;type&quot;: &quot;scatterternary&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scattercarpet&quot;: [{&quot;type&quot;: &quot;scattercarpet&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;carpet&quot;: [{&quot;aaxis&quot;: {&quot;endlinecolor&quot;: &quot;#2a3f5f&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;minorgridcolor&quot;: &quot;white&quot;, &quot;startlinecolor&quot;: &quot;#2a3f5f&quot;}, &quot;baxis&quot;: {&quot;endlinecolor&quot;: &quot;#2a3f5f&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;minorgridcolor&quot;: &quot;white&quot;, &quot;startlinecolor&quot;: &quot;#2a3f5f&quot;}, &quot;type&quot;: &quot;carpet&quot;}], &quot;table&quot;: [{&quot;cells&quot;: {&quot;fill&quot;: {&quot;color&quot;: &quot;#EBF0F8&quot;}, &quot;line&quot;: {&quot;color&quot;: &quot;white&quot;}}, &quot;header&quot;: {&quot;fill&quot;: {&quot;color&quot;: &quot;#C8D4E3&quot;}, &quot;line&quot;: {&quot;color&quot;: &quot;white&quot;}}, &quot;type&quot;: &quot;table&quot;}], &quot;barpolar&quot;: [{&quot;marker&quot;: {&quot;line&quot;: {&quot;color&quot;: &quot;#E5ECF6&quot;, &quot;width&quot;: 0.5}, &quot;pattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}}, &quot;type&quot;: &quot;barpolar&quot;}], &quot;pie&quot;: [{&quot;automargin&quot;: true, &quot;type&quot;: &quot;pie&quot;}]}, &quot;layout&quot;: {&quot;autotypenumbers&quot;: &quot;strict&quot;, &quot;colorway&quot;: [&quot;#636efa&quot;, &quot;#EF553B&quot;, &quot;#00cc96&quot;, &quot;#ab63fa&quot;, &quot;#FFA15A&quot;, &quot;#19d3f3&quot;, &quot;#FF6692&quot;, &quot;#B6E880&quot;, &quot;#FF97FF&quot;, &quot;#FECB52&quot;], &quot;font&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}, &quot;hovermode&quot;: &quot;closest&quot;, &quot;hoverlabel&quot;: {&quot;align&quot;: &quot;left&quot;}, &quot;paper_bgcolor&quot;: &quot;white&quot;, &quot;plot_bgcolor&quot;: &quot;#E5ECF6&quot;, &quot;polar&quot;: {&quot;bgcolor&quot;: &quot;#E5ECF6&quot;, &quot;angularaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}, &quot;radialaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}}, &quot;ternary&quot;: {&quot;bgcolor&quot;: &quot;#E5ECF6&quot;, &quot;aaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}, &quot;baxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}, &quot;caxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}}, &quot;coloraxis&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}, &quot;colorscale&quot;: {&quot;sequential&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]], &quot;sequentialminus&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]], &quot;diverging&quot;: [[0, &quot;#8e0152&quot;], [0.1, &quot;#c51b7d&quot;], [0.2, &quot;#de77ae&quot;], [0.3, &quot;#f1b6da&quot;], [0.4, &quot;#fde0ef&quot;], [0.5, &quot;#f7f7f7&quot;], [0.6, &quot;#e6f5d0&quot;], [0.7, &quot;#b8e186&quot;], [0.8, &quot;#7fbc41&quot;], [0.9, &quot;#4d9221&quot;], [1, &quot;#276419&quot;]]}, &quot;xaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;, &quot;title&quot;: {&quot;standoff&quot;: 15}, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;automargin&quot;: true, &quot;zerolinewidth&quot;: 2}, &quot;yaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;, &quot;title&quot;: {&quot;standoff&quot;: 15}, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;automargin&quot;: true, &quot;zerolinewidth&quot;: 2}, &quot;scene&quot;: {&quot;xaxis&quot;: {&quot;backgroundcolor&quot;: &quot;#E5ECF6&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;showbackground&quot;: true, &quot;ticks&quot;: &quot;&quot;, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;gridwidth&quot;: 2}, &quot;yaxis&quot;: {&quot;backgroundcolor&quot;: &quot;#E5ECF6&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;showbackground&quot;: true, &quot;ticks&quot;: &quot;&quot;, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;gridwidth&quot;: 2}, &quot;zaxis&quot;: {&quot;backgroundcolor&quot;: &quot;#E5ECF6&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;showbackground&quot;: true, &quot;ticks&quot;: &quot;&quot;, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;gridwidth&quot;: 2}}, &quot;shapedefaults&quot;: {&quot;line&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}}, &quot;annotationdefaults&quot;: {&quot;arrowcolor&quot;: &quot;#2a3f5f&quot;, &quot;arrowhead&quot;: 0, &quot;arrowwidth&quot;: 1}, &quot;geo&quot;: {&quot;bgcolor&quot;: &quot;white&quot;, &quot;landcolor&quot;: &quot;#E5ECF6&quot;, &quot;subunitcolor&quot;: &quot;white&quot;, &quot;showland&quot;: true, &quot;showlakes&quot;: true, &quot;lakecolor&quot;: &quot;white&quot;}, &quot;title&quot;: {&quot;x&quot;: 0.05}, &quot;mapbox&quot;: {&quot;style&quot;: &quot;light&quot;}}}, &quot;xaxis&quot;: {&quot;anchor&quot;: &quot;y&quot;, &quot;domain&quot;: [0.0, 1.0], &quot;title&quot;: {&quot;text&quot;: &quot;&quot;}}, &quot;yaxis&quot;: {&quot;anchor&quot;: &quot;x&quot;, &quot;domain&quot;: [0.0, 1.0], &quot;title&quot;: {&quot;text&quot;: &quot;Count&quot;}}, &quot;updatemenus&quot;: [{&quot;buttons&quot;: [{&quot;args&quot;: [{&quot;visible&quot;: [true, false, true, false]}, {&quot;yaxis&quot;: {&quot;title&quot;: &quot;Count&quot;}}], &quot;label&quot;: &quot;abs&quot;, &quot;method&quot;: &quot;update&quot;}, {&quot;args&quot;: [{&quot;visible&quot;: [false, true, false, true]}, {&quot;yaxis&quot;: {&quot;title&quot;: &quot;Percent&quot;}}], &quot;label&quot;: &quot;perc&quot;, &quot;method&quot;: &quot;update&quot;}], &quot;direction&quot;: &quot;right&quot;, &quot;type&quot;: &quot;buttons&quot;, &quot;x&quot;: 1.05, &quot;y&quot;: 1.2, &quot;yanchor&quot;: &quot;top&quot;}]}}, &quot;insights&quot;: [], &quot;additionalGraphs&quot;: [], &quot;alerts&quot;: [], &quot;tabs&quot;: [], &quot;widgets&quot;: [], &quot;pageSize&quot;: 5}, &quot;f49a8812-0e5b-4daa-83dc-53fc5834e693&quot;: {&quot;type&quot;: &quot;big_graph&quot;, &quot;title&quot;: &quot;&quot;, &quot;size&quot;: 2, &quot;id&quot;: &quot;f49a8812-0e5b-4daa-83dc-53fc5834e693&quot;, &quot;details&quot;: &quot;&quot;, &quot;alertsPosition&quot;: null, &quot;alertStats&quot;: null, &quot;params&quot;: {&quot;data&quot;: [{&quot;fill&quot;: &quot;toself&quot;, &quot;fillcolor&quot;: &quot;LightGreen&quot;, &quot;line&quot;: {&quot;color&quot;: &quot;LightGreen&quot;, &quot;dash&quot;: &quot;solid&quot;, &quot;width&quot;: 0}, &quot;marker&quot;: {&quot;size&quot;: 0}, &quot;name&quot;: &quot;reference (+/- 1std)&quot;, &quot;opacity&quot;: 0.5, &quot;x&quot;: [0, 170, 170, 0], &quot;y&quot;: [10.6403480777644, 10.6403480777644, 17.71180770113007, 17.71180770113007], &quot;type&quot;: &quot;scatter&quot;}, {&quot;marker&quot;: {&quot;color&quot;: &quot;#ed0400&quot;, &quot;size&quot;: 6}, &quot;mode&quot;: &quot;markers&quot;, &quot;name&quot;: &quot;Current&quot;, &quot;x&quot;: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170], &quot;y&quot;: [12.47, 18.94, 15.46, 12.4, 11.54, 20.6, 22.01, 17.57, 13.34, 13.9, 13.21, 16.78, 14.97, 16.26, 12.34, 19.1, 14.81, 10.16, 6.981, 20.55, 13.8, 12.1, 21.61, 10.03, 11.6, 13.53, 13.28, 10.29, 12.76, 17.2, 11.13, 12.06, 9.742, 13.68, 10.18, 11.52, 16.02, 11.74, 18.25, 14.62, 10.49, 15.08, 11.61, 11.84, 11.89, 11.34, 9.295, 9.423, 11.67, 12.89, 17.19, 18.63, 13.11, 13.94, 11.9, 13.17, 10.25, 25.22, 13.48, 11.29, 12.86, 19.69, 21.56, 14.4, 12.3, 12.62, 15.78, 20.18, 11.81, 12.98, 13.77, 15.78, 14.06, 16.46, 7.729, 13.47, 14.03, 13.96, 10.75, 11.27, 16.16, 11.25, 14.48, 20.94, 17.93, 15.32, 12.46, 17.6, 12.05, 12.86, 12.0, 13.46, 15.04, 11.2, 11.22, 9.777, 20.13, 13.81, 11.15, 17.27, 15.7, 9.738, 18.05, 17.99, 10.82, 11.75, 12.34, 23.09, 14.44, 14.64, 16.07, 11.52, 14.22, 20.73, 9.029, 21.09, 9.173, 10.65, 10.17, 14.54, 14.41, 11.43, 12.25, 19.89, 12.36, 21.1, 14.87, 9.667, 13.4, 19.27, 17.99, 15.22, 14.26, 11.7, 15.27, 15.34, 13.51, 10.48, 14.64, 14.45, 11.04, 19.81, 10.26, 12.89, 13.4, 12.96, 17.75, 20.58, 15.28, 13.78, 15.1, 12.34, 8.196, 13.45, 11.32, 22.27, 19.4, 7.76, 14.86, 11.13, 9.72, 9.606, 10.08, 12.56, 15.13, 10.48, 12.78, 14.74, 9.904, 13.82, 12.89], &quot;type&quot;: &quot;scattergl&quot;}, {&quot;marker&quot;: {&quot;color&quot;: &quot;green&quot;}, &quot;mode&quot;: &quot;lines&quot;, &quot;name&quot;: &quot;reference (mean)&quot;, &quot;x&quot;: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170], &quot;y&quot;: [14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235, 14.176077889447235], &quot;type&quot;: &quot;scatter&quot;}], &quot;layout&quot;: {&quot;template&quot;: {&quot;data&quot;: {&quot;histogram2dcontour&quot;: [{&quot;type&quot;: &quot;histogram2dcontour&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;choropleth&quot;: [{&quot;type&quot;: &quot;choropleth&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}], &quot;histogram2d&quot;: [{&quot;type&quot;: &quot;histogram2d&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;heatmap&quot;: [{&quot;type&quot;: &quot;heatmap&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;heatmapgl&quot;: [{&quot;type&quot;: &quot;heatmapgl&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;contourcarpet&quot;: [{&quot;type&quot;: &quot;contourcarpet&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}], &quot;contour&quot;: [{&quot;type&quot;: &quot;contour&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;surface&quot;: [{&quot;type&quot;: &quot;surface&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;mesh3d&quot;: [{&quot;type&quot;: &quot;mesh3d&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}], &quot;scatter&quot;: [{&quot;fillpattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}, &quot;type&quot;: &quot;scatter&quot;}], &quot;parcoords&quot;: [{&quot;type&quot;: &quot;parcoords&quot;, &quot;line&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatterpolargl&quot;: [{&quot;type&quot;: &quot;scatterpolargl&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;bar&quot;: [{&quot;error_x&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}, &quot;error_y&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}, &quot;marker&quot;: {&quot;line&quot;: {&quot;color&quot;: &quot;#E5ECF6&quot;, &quot;width&quot;: 0.5}, &quot;pattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}}, &quot;type&quot;: &quot;bar&quot;}], &quot;scattergeo&quot;: [{&quot;type&quot;: &quot;scattergeo&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatterpolar&quot;: [{&quot;type&quot;: &quot;scatterpolar&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;histogram&quot;: [{&quot;marker&quot;: {&quot;pattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}}, &quot;type&quot;: &quot;histogram&quot;}], &quot;scattergl&quot;: [{&quot;type&quot;: &quot;scattergl&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatter3d&quot;: [{&quot;type&quot;: &quot;scatter3d&quot;, &quot;line&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scattermapbox&quot;: [{&quot;type&quot;: &quot;scattermapbox&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatterternary&quot;: [{&quot;type&quot;: &quot;scatterternary&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scattercarpet&quot;: [{&quot;type&quot;: &quot;scattercarpet&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;carpet&quot;: [{&quot;aaxis&quot;: {&quot;endlinecolor&quot;: &quot;#2a3f5f&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;minorgridcolor&quot;: &quot;white&quot;, &quot;startlinecolor&quot;: &quot;#2a3f5f&quot;}, &quot;baxis&quot;: {&quot;endlinecolor&quot;: &quot;#2a3f5f&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;minorgridcolor&quot;: &quot;white&quot;, &quot;startlinecolor&quot;: &quot;#2a3f5f&quot;}, &quot;type&quot;: &quot;carpet&quot;}], &quot;table&quot;: [{&quot;cells&quot;: {&quot;fill&quot;: {&quot;color&quot;: &quot;#EBF0F8&quot;}, &quot;line&quot;: {&quot;color&quot;: &quot;white&quot;}}, &quot;header&quot;: {&quot;fill&quot;: {&quot;color&quot;: &quot;#C8D4E3&quot;}, &quot;line&quot;: {&quot;color&quot;: &quot;white&quot;}}, &quot;type&quot;: &quot;table&quot;}], &quot;barpolar&quot;: [{&quot;marker&quot;: {&quot;line&quot;: {&quot;color&quot;: &quot;#E5ECF6&quot;, &quot;width&quot;: 0.5}, &quot;pattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}}, &quot;type&quot;: &quot;barpolar&quot;}], &quot;pie&quot;: [{&quot;automargin&quot;: true, &quot;type&quot;: &quot;pie&quot;}]}, &quot;layout&quot;: {&quot;autotypenumbers&quot;: &quot;strict&quot;, &quot;colorway&quot;: [&quot;#636efa&quot;, &quot;#EF553B&quot;, &quot;#00cc96&quot;, &quot;#ab63fa&quot;, &quot;#FFA15A&quot;, &quot;#19d3f3&quot;, &quot;#FF6692&quot;, &quot;#B6E880&quot;, &quot;#FF97FF&quot;, &quot;#FECB52&quot;], &quot;font&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}, &quot;hovermode&quot;: &quot;closest&quot;, &quot;hoverlabel&quot;: {&quot;align&quot;: &quot;left&quot;}, &quot;paper_bgcolor&quot;: &quot;white&quot;, &quot;plot_bgcolor&quot;: &quot;#E5ECF6&quot;, &quot;polar&quot;: {&quot;bgcolor&quot;: &quot;#E5ECF6&quot;, &quot;angularaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}, &quot;radialaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}}, &quot;ternary&quot;: {&quot;bgcolor&quot;: &quot;#E5ECF6&quot;, &quot;aaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}, &quot;baxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}, &quot;caxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}}, &quot;coloraxis&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}, &quot;colorscale&quot;: {&quot;sequential&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]], &quot;sequentialminus&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]], &quot;diverging&quot;: [[0, &quot;#8e0152&quot;], [0.1, &quot;#c51b7d&quot;], [0.2, &quot;#de77ae&quot;], [0.3, &quot;#f1b6da&quot;], [0.4, &quot;#fde0ef&quot;], [0.5, &quot;#f7f7f7&quot;], [0.6, &quot;#e6f5d0&quot;], [0.7, &quot;#b8e186&quot;], [0.8, &quot;#7fbc41&quot;], [0.9, &quot;#4d9221&quot;], [1, &quot;#276419&quot;]]}, &quot;xaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;, &quot;title&quot;: {&quot;standoff&quot;: 15}, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;automargin&quot;: true, &quot;zerolinewidth&quot;: 2}, &quot;yaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;, &quot;title&quot;: {&quot;standoff&quot;: 15}, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;automargin&quot;: true, &quot;zerolinewidth&quot;: 2}, &quot;scene&quot;: {&quot;xaxis&quot;: {&quot;backgroundcolor&quot;: &quot;#E5ECF6&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;showbackground&quot;: true, &quot;ticks&quot;: &quot;&quot;, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;gridwidth&quot;: 2}, &quot;yaxis&quot;: {&quot;backgroundcolor&quot;: &quot;#E5ECF6&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;showbackground&quot;: true, &quot;ticks&quot;: &quot;&quot;, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;gridwidth&quot;: 2}, &quot;zaxis&quot;: {&quot;backgroundcolor&quot;: &quot;#E5ECF6&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;showbackground&quot;: true, &quot;ticks&quot;: &quot;&quot;, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;gridwidth&quot;: 2}}, &quot;shapedefaults&quot;: {&quot;line&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}}, &quot;annotationdefaults&quot;: {&quot;arrowcolor&quot;: &quot;#2a3f5f&quot;, &quot;arrowhead&quot;: 0, &quot;arrowwidth&quot;: 1}, &quot;geo&quot;: {&quot;bgcolor&quot;: &quot;white&quot;, &quot;landcolor&quot;: &quot;#E5ECF6&quot;, &quot;subunitcolor&quot;: &quot;white&quot;, &quot;showland&quot;: true, &quot;showlakes&quot;: true, &quot;lakecolor&quot;: &quot;white&quot;}, &quot;title&quot;: {&quot;x&quot;: 0.05}, &quot;mapbox&quot;: {&quot;style&quot;: &quot;light&quot;}}}, &quot;legend&quot;: {&quot;orientation&quot;: &quot;h&quot;, &quot;yanchor&quot;: &quot;bottom&quot;, &quot;y&quot;: 1.02, &quot;xanchor&quot;: &quot;right&quot;, &quot;x&quot;: 1}, &quot;xaxis&quot;: {&quot;title&quot;: {&quot;text&quot;: &quot;Index&quot;}}, &quot;yaxis&quot;: {&quot;title&quot;: {&quot;text&quot;: &quot;mean radius&quot;}}, &quot;showlegend&quot;: true}}, &quot;insights&quot;: [], &quot;additionalGraphs&quot;: [], &quot;alerts&quot;: [], &quot;tabs&quot;: [], &quot;widgets&quot;: [], &quot;pageSize&quot;: 5}, &quot;1d0d53dd-62cc-42fc-82b1-7e6a6d5eb44f&quot;: {&quot;type&quot;: &quot;big_graph&quot;, &quot;title&quot;: &quot;&quot;, &quot;size&quot;: 2, &quot;id&quot;: &quot;1d0d53dd-62cc-42fc-82b1-7e6a6d5eb44f&quot;, &quot;details&quot;: &quot;&quot;, &quot;alertsPosition&quot;: null, &quot;alertStats&quot;: null, &quot;params&quot;: {&quot;data&quot;: [{&quot;marker&quot;: {&quot;color&quot;: &quot;#ed0400&quot;}, &quot;name&quot;: &quot;current&quot;, &quot;visible&quot;: true, &quot;x&quot;: [6.981, 8.490214285714286, 9.99942857142857, 11.508642857142856, 13.017857142857142, 14.527071428571428, 16.03628571428571, 17.545499999999997, 19.054714285714283, 20.56392857142857, 22.073142857142855, 23.58235714285714, 25.091571428571427, 26.600785714285713, 28.11], &quot;y&quot;: [4, 11, 26, 37, 31, 23, 8, 10, 9, 9, 2, 0, 1, 0], &quot;type&quot;: &quot;bar&quot;, &quot;xaxis&quot;: &quot;x&quot;, &quot;yaxis&quot;: &quot;y&quot;}, {&quot;marker&quot;: {&quot;color&quot;: &quot;#ed0400&quot;}, &quot;name&quot;: &quot;current&quot;, &quot;visible&quot;: false, &quot;x&quot;: [6.981, 8.490214285714286, 9.99942857142857, 11.508642857142856, 13.017857142857142, 14.527071428571428, 16.03628571428571, 17.545499999999997, 19.054714285714283, 20.56392857142857, 22.073142857142855, 23.58235714285714, 25.091571428571427, 26.600785714285713, 28.11], &quot;y&quot;: [2.3391812865497075, 6.432748538011696, 15.204678362573098, 21.637426900584796, 18.128654970760234, 13.450292397660817, 4.678362573099415, 5.847953216374268, 5.263157894736842, 5.263157894736842, 1.1695906432748537, 0.0, 0.5847953216374269, 0.0], &quot;type&quot;: &quot;bar&quot;, &quot;xaxis&quot;: &quot;x&quot;, &quot;yaxis&quot;: &quot;y&quot;}, {&quot;marker&quot;: {&quot;color&quot;: &quot;#4d4d4d&quot;}, &quot;name&quot;: &quot;reference&quot;, &quot;visible&quot;: true, &quot;x&quot;: [6.981, 8.490214285714286, 9.99942857142857, 11.508642857142856, 13.017857142857142, 14.527071428571428, 16.03628571428571, 17.545499999999997, 19.054714285714283, 20.56392857142857, 22.073142857142855, 23.58235714285714, 25.091571428571427, 26.600785714285713, 28.11], &quot;y&quot;: [2, 30, 52, 98, 72, 44, 29, 22, 31, 8, 4, 2, 1, 3], &quot;type&quot;: &quot;bar&quot;, &quot;xaxis&quot;: &quot;x&quot;, &quot;yaxis&quot;: &quot;y&quot;}, {&quot;marker&quot;: {&quot;color&quot;: &quot;#4d4d4d&quot;}, &quot;name&quot;: &quot;reference&quot;, &quot;visible&quot;: false, &quot;x&quot;: [6.981, 8.490214285714286, 9.99942857142857, 11.508642857142856, 13.017857142857142, 14.527071428571428, 16.03628571428571, 17.545499999999997, 19.054714285714283, 20.56392857142857, 22.073142857142855, 23.58235714285714, 25.091571428571427, 26.600785714285713, 28.11], &quot;y&quot;: [0.5025125628140703, 7.537688442211055, 13.06532663316583, 24.623115577889447, 18.090452261306535, 11.055276381909549, 7.2864321608040195, 5.527638190954774, 7.788944723618091, 2.0100502512562812, 1.0050251256281406, 0.5025125628140703, 0.25125628140703515, 0.7537688442211055], &quot;type&quot;: &quot;bar&quot;, &quot;xaxis&quot;: &quot;x&quot;, &quot;yaxis&quot;: &quot;y&quot;}], &quot;layout&quot;: {&quot;template&quot;: {&quot;data&quot;: {&quot;histogram2dcontour&quot;: [{&quot;type&quot;: &quot;histogram2dcontour&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;choropleth&quot;: [{&quot;type&quot;: &quot;choropleth&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}], &quot;histogram2d&quot;: [{&quot;type&quot;: &quot;histogram2d&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;heatmap&quot;: [{&quot;type&quot;: &quot;heatmap&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;heatmapgl&quot;: [{&quot;type&quot;: &quot;heatmapgl&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;contourcarpet&quot;: [{&quot;type&quot;: &quot;contourcarpet&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}], &quot;contour&quot;: [{&quot;type&quot;: &quot;contour&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;surface&quot;: [{&quot;type&quot;: &quot;surface&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;mesh3d&quot;: [{&quot;type&quot;: &quot;mesh3d&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}], &quot;scatter&quot;: [{&quot;fillpattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}, &quot;type&quot;: &quot;scatter&quot;}], &quot;parcoords&quot;: [{&quot;type&quot;: &quot;parcoords&quot;, &quot;line&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatterpolargl&quot;: [{&quot;type&quot;: &quot;scatterpolargl&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;bar&quot;: [{&quot;error_x&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}, &quot;error_y&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}, &quot;marker&quot;: {&quot;line&quot;: {&quot;color&quot;: &quot;#E5ECF6&quot;, &quot;width&quot;: 0.5}, &quot;pattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}}, &quot;type&quot;: &quot;bar&quot;}], &quot;scattergeo&quot;: [{&quot;type&quot;: &quot;scattergeo&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatterpolar&quot;: [{&quot;type&quot;: &quot;scatterpolar&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;histogram&quot;: [{&quot;marker&quot;: {&quot;pattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}}, &quot;type&quot;: &quot;histogram&quot;}], &quot;scattergl&quot;: [{&quot;type&quot;: &quot;scattergl&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatter3d&quot;: [{&quot;type&quot;: &quot;scatter3d&quot;, &quot;line&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scattermapbox&quot;: [{&quot;type&quot;: &quot;scattermapbox&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatterternary&quot;: [{&quot;type&quot;: &quot;scatterternary&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scattercarpet&quot;: [{&quot;type&quot;: &quot;scattercarpet&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;carpet&quot;: [{&quot;aaxis&quot;: {&quot;endlinecolor&quot;: &quot;#2a3f5f&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;minorgridcolor&quot;: &quot;white&quot;, &quot;startlinecolor&quot;: &quot;#2a3f5f&quot;}, &quot;baxis&quot;: {&quot;endlinecolor&quot;: &quot;#2a3f5f&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;minorgridcolor&quot;: &quot;white&quot;, &quot;startlinecolor&quot;: &quot;#2a3f5f&quot;}, &quot;type&quot;: &quot;carpet&quot;}], &quot;table&quot;: [{&quot;cells&quot;: {&quot;fill&quot;: {&quot;color&quot;: &quot;#EBF0F8&quot;}, &quot;line&quot;: {&quot;color&quot;: &quot;white&quot;}}, &quot;header&quot;: {&quot;fill&quot;: {&quot;color&quot;: &quot;#C8D4E3&quot;}, &quot;line&quot;: {&quot;color&quot;: &quot;white&quot;}}, &quot;type&quot;: &quot;table&quot;}], &quot;barpolar&quot;: [{&quot;marker&quot;: {&quot;line&quot;: {&quot;color&quot;: &quot;#E5ECF6&quot;, &quot;width&quot;: 0.5}, &quot;pattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}}, &quot;type&quot;: &quot;barpolar&quot;}], &quot;pie&quot;: [{&quot;automargin&quot;: true, &quot;type&quot;: &quot;pie&quot;}]}, &quot;layout&quot;: {&quot;autotypenumbers&quot;: &quot;strict&quot;, &quot;colorway&quot;: [&quot;#636efa&quot;, &quot;#EF553B&quot;, &quot;#00cc96&quot;, &quot;#ab63fa&quot;, &quot;#FFA15A&quot;, &quot;#19d3f3&quot;, &quot;#FF6692&quot;, &quot;#B6E880&quot;, &quot;#FF97FF&quot;, &quot;#FECB52&quot;], &quot;font&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}, &quot;hovermode&quot;: &quot;closest&quot;, &quot;hoverlabel&quot;: {&quot;align&quot;: &quot;left&quot;}, &quot;paper_bgcolor&quot;: &quot;white&quot;, &quot;plot_bgcolor&quot;: &quot;#E5ECF6&quot;, &quot;polar&quot;: {&quot;bgcolor&quot;: &quot;#E5ECF6&quot;, &quot;angularaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}, &quot;radialaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}}, &quot;ternary&quot;: {&quot;bgcolor&quot;: &quot;#E5ECF6&quot;, &quot;aaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}, &quot;baxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}, &quot;caxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}}, &quot;coloraxis&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}, &quot;colorscale&quot;: {&quot;sequential&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]], &quot;sequentialminus&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]], &quot;diverging&quot;: [[0, &quot;#8e0152&quot;], [0.1, &quot;#c51b7d&quot;], [0.2, &quot;#de77ae&quot;], [0.3, &quot;#f1b6da&quot;], [0.4, &quot;#fde0ef&quot;], [0.5, &quot;#f7f7f7&quot;], [0.6, &quot;#e6f5d0&quot;], [0.7, &quot;#b8e186&quot;], [0.8, &quot;#7fbc41&quot;], [0.9, &quot;#4d9221&quot;], [1, &quot;#276419&quot;]]}, &quot;xaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;, &quot;title&quot;: {&quot;standoff&quot;: 15}, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;automargin&quot;: true, &quot;zerolinewidth&quot;: 2}, &quot;yaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;, &quot;title&quot;: {&quot;standoff&quot;: 15}, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;automargin&quot;: true, &quot;zerolinewidth&quot;: 2}, &quot;scene&quot;: {&quot;xaxis&quot;: {&quot;backgroundcolor&quot;: &quot;#E5ECF6&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;showbackground&quot;: true, &quot;ticks&quot;: &quot;&quot;, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;gridwidth&quot;: 2}, &quot;yaxis&quot;: {&quot;backgroundcolor&quot;: &quot;#E5ECF6&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;showbackground&quot;: true, &quot;ticks&quot;: &quot;&quot;, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;gridwidth&quot;: 2}, &quot;zaxis&quot;: {&quot;backgroundcolor&quot;: &quot;#E5ECF6&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;showbackground&quot;: true, &quot;ticks&quot;: &quot;&quot;, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;gridwidth&quot;: 2}}, &quot;shapedefaults&quot;: {&quot;line&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}}, &quot;annotationdefaults&quot;: {&quot;arrowcolor&quot;: &quot;#2a3f5f&quot;, &quot;arrowhead&quot;: 0, &quot;arrowwidth&quot;: 1}, &quot;geo&quot;: {&quot;bgcolor&quot;: &quot;white&quot;, &quot;landcolor&quot;: &quot;#E5ECF6&quot;, &quot;subunitcolor&quot;: &quot;white&quot;, &quot;showland&quot;: true, &quot;showlakes&quot;: true, &quot;lakecolor&quot;: &quot;white&quot;}, &quot;title&quot;: {&quot;x&quot;: 0.05}, &quot;mapbox&quot;: {&quot;style&quot;: &quot;light&quot;}}}, &quot;xaxis&quot;: {&quot;anchor&quot;: &quot;y&quot;, &quot;domain&quot;: [0.0, 1.0], &quot;title&quot;: {&quot;text&quot;: &quot;&quot;}}, &quot;yaxis&quot;: {&quot;anchor&quot;: &quot;x&quot;, &quot;domain&quot;: [0.0, 1.0], &quot;title&quot;: {&quot;text&quot;: &quot;Count&quot;}}, &quot;updatemenus&quot;: [{&quot;buttons&quot;: [{&quot;args&quot;: [{&quot;visible&quot;: [true, false, true, false]}, {&quot;yaxis&quot;: {&quot;title&quot;: &quot;Count&quot;}}], &quot;label&quot;: &quot;abs&quot;, &quot;method&quot;: &quot;update&quot;}, {&quot;args&quot;: [{&quot;visible&quot;: [false, true, false, true]}, {&quot;yaxis&quot;: {&quot;title&quot;: &quot;Percent&quot;}}], &quot;label&quot;: &quot;perc&quot;, &quot;method&quot;: &quot;update&quot;}], &quot;direction&quot;: &quot;right&quot;, &quot;type&quot;: &quot;buttons&quot;, &quot;x&quot;: 1.05, &quot;y&quot;: 1.2, &quot;yanchor&quot;: &quot;top&quot;}]}}, &quot;insights&quot;: [], &quot;additionalGraphs&quot;: [], &quot;alerts&quot;: [], &quot;tabs&quot;: [], &quot;widgets&quot;: [], &quot;pageSize&quot;: 5}, &quot;9c0ab307-4505-4629-b836-af6eb474b4bb&quot;: {&quot;type&quot;: &quot;big_graph&quot;, &quot;title&quot;: &quot;&quot;, &quot;size&quot;: 2, &quot;id&quot;: &quot;9c0ab307-4505-4629-b836-af6eb474b4bb&quot;, &quot;details&quot;: &quot;&quot;, &quot;alertsPosition&quot;: null, &quot;alertStats&quot;: null, &quot;params&quot;: {&quot;data&quot;: [{&quot;fill&quot;: &quot;toself&quot;, &quot;fillcolor&quot;: &quot;LightGreen&quot;, &quot;line&quot;: {&quot;color&quot;: &quot;LightGreen&quot;, &quot;dash&quot;: &quot;solid&quot;, &quot;width&quot;: 0}, &quot;marker&quot;: {&quot;size&quot;: 0}, &quot;name&quot;: &quot;reference (+/- 1std)&quot;, &quot;opacity&quot;: 0.5, &quot;x&quot;: [0, 170, 170, 0], &quot;y&quot;: [14.945096849960526, 14.945096849960526, 23.37324485858219, 23.37324485858219], &quot;type&quot;: &quot;scatter&quot;}, {&quot;marker&quot;: {&quot;color&quot;: &quot;#ed0400&quot;, &quot;size&quot;: 6}, &quot;mode&quot;: &quot;markers&quot;, &quot;name&quot;: &quot;Current&quot;, &quot;x&quot;: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170], &quot;y&quot;: [18.6, 21.31, 19.48, 17.68, 14.44, 29.33, 21.9, 15.05, 15.86, 16.62, 25.25, 18.8, 19.76, 21.88, 12.27, 26.29, 14.7, 19.59, 13.43, 20.86, 15.79, 17.72, 22.28, 21.28, 24.49, 10.94, 13.72, 27.61, 18.84, 24.52, 22.44, 12.74, 19.12, 16.33, 17.53, 18.75, 23.24, 14.02, 19.98, 24.02, 19.29, 25.74, 16.02, 18.94, 17.36, 21.26, 13.9, 27.88, 20.02, 15.7, 22.07, 25.11, 22.54, 13.17, 14.65, 18.22, 16.18, 24.91, 20.82, 13.04, 18.0, 21.25, 22.39, 26.99, 19.02, 23.97, 22.91, 23.97, 17.39, 19.35, 22.29, 17.89, 17.18, 20.11, 25.49, 14.06, 21.25, 17.05, 14.97, 12.96, 21.54, 14.78, 21.46, 23.56, 24.48, 17.27, 24.04, 23.33, 22.72, 13.32, 15.65, 18.75, 16.74, 29.37, 19.86, 16.99, 28.25, 23.75, 13.08, 25.42, 20.31, 11.97, 16.15, 20.66, 24.21, 17.56, 22.22, 19.83, 15.18, 16.85, 19.65, 14.93, 27.85, 31.12, 17.33, 26.57, 13.86, 25.22, 14.88, 27.54, 19.73, 15.39, 17.94, 20.26, 21.8, 20.52, 16.67, 18.49, 16.95, 26.47, 10.38, 30.62, 18.17, 19.11, 12.91, 14.26, 18.89, 19.86, 15.24, 20.22, 16.83, 22.15, 12.22, 13.12, 20.52, 18.29, 28.03, 22.14, 22.41, 15.79, 22.02, 14.95, 16.84, 18.3, 27.08, 19.67, 23.5, 24.54, 16.94, 16.62, 18.22, 16.84, 15.11, 19.07, 29.81, 14.98, 16.49, 25.42, 18.06, 24.49, 14.11], &quot;type&quot;: &quot;scattergl&quot;}, {&quot;marker&quot;: {&quot;color&quot;: &quot;green&quot;}, &quot;mode&quot;: &quot;lines&quot;, &quot;name&quot;: &quot;reference (mean)&quot;, &quot;x&quot;: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170], &quot;y&quot;: [19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136, 19.15917085427136], &quot;type&quot;: &quot;scatter&quot;}], &quot;layout&quot;: {&quot;template&quot;: {&quot;data&quot;: {&quot;histogram2dcontour&quot;: [{&quot;type&quot;: &quot;histogram2dcontour&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;choropleth&quot;: [{&quot;type&quot;: &quot;choropleth&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}], &quot;histogram2d&quot;: [{&quot;type&quot;: &quot;histogram2d&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;heatmap&quot;: [{&quot;type&quot;: &quot;heatmap&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;heatmapgl&quot;: [{&quot;type&quot;: &quot;heatmapgl&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;contourcarpet&quot;: [{&quot;type&quot;: &quot;contourcarpet&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}], &quot;contour&quot;: [{&quot;type&quot;: &quot;contour&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;surface&quot;: [{&quot;type&quot;: &quot;surface&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;mesh3d&quot;: [{&quot;type&quot;: &quot;mesh3d&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}], &quot;scatter&quot;: [{&quot;fillpattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}, &quot;type&quot;: &quot;scatter&quot;}], &quot;parcoords&quot;: [{&quot;type&quot;: &quot;parcoords&quot;, &quot;line&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatterpolargl&quot;: [{&quot;type&quot;: &quot;scatterpolargl&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;bar&quot;: [{&quot;error_x&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}, &quot;error_y&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}, &quot;marker&quot;: {&quot;line&quot;: {&quot;color&quot;: &quot;#E5ECF6&quot;, &quot;width&quot;: 0.5}, &quot;pattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}}, &quot;type&quot;: &quot;bar&quot;}], &quot;scattergeo&quot;: [{&quot;type&quot;: &quot;scattergeo&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatterpolar&quot;: [{&quot;type&quot;: &quot;scatterpolar&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;histogram&quot;: [{&quot;marker&quot;: {&quot;pattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}}, &quot;type&quot;: &quot;histogram&quot;}], &quot;scattergl&quot;: [{&quot;type&quot;: &quot;scattergl&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatter3d&quot;: [{&quot;type&quot;: &quot;scatter3d&quot;, &quot;line&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scattermapbox&quot;: [{&quot;type&quot;: &quot;scattermapbox&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatterternary&quot;: [{&quot;type&quot;: &quot;scatterternary&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scattercarpet&quot;: [{&quot;type&quot;: &quot;scattercarpet&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;carpet&quot;: [{&quot;aaxis&quot;: {&quot;endlinecolor&quot;: &quot;#2a3f5f&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;minorgridcolor&quot;: &quot;white&quot;, &quot;startlinecolor&quot;: &quot;#2a3f5f&quot;}, &quot;baxis&quot;: {&quot;endlinecolor&quot;: &quot;#2a3f5f&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;minorgridcolor&quot;: &quot;white&quot;, &quot;startlinecolor&quot;: &quot;#2a3f5f&quot;}, &quot;type&quot;: &quot;carpet&quot;}], &quot;table&quot;: [{&quot;cells&quot;: {&quot;fill&quot;: {&quot;color&quot;: &quot;#EBF0F8&quot;}, &quot;line&quot;: {&quot;color&quot;: &quot;white&quot;}}, &quot;header&quot;: {&quot;fill&quot;: {&quot;color&quot;: &quot;#C8D4E3&quot;}, &quot;line&quot;: {&quot;color&quot;: &quot;white&quot;}}, &quot;type&quot;: &quot;table&quot;}], &quot;barpolar&quot;: [{&quot;marker&quot;: {&quot;line&quot;: {&quot;color&quot;: &quot;#E5ECF6&quot;, &quot;width&quot;: 0.5}, &quot;pattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}}, &quot;type&quot;: &quot;barpolar&quot;}], &quot;pie&quot;: [{&quot;automargin&quot;: true, &quot;type&quot;: &quot;pie&quot;}]}, &quot;layout&quot;: {&quot;autotypenumbers&quot;: &quot;strict&quot;, &quot;colorway&quot;: [&quot;#636efa&quot;, &quot;#EF553B&quot;, &quot;#00cc96&quot;, &quot;#ab63fa&quot;, &quot;#FFA15A&quot;, &quot;#19d3f3&quot;, &quot;#FF6692&quot;, &quot;#B6E880&quot;, &quot;#FF97FF&quot;, &quot;#FECB52&quot;], &quot;font&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}, &quot;hovermode&quot;: &quot;closest&quot;, &quot;hoverlabel&quot;: {&quot;align&quot;: &quot;left&quot;}, &quot;paper_bgcolor&quot;: &quot;white&quot;, &quot;plot_bgcolor&quot;: &quot;#E5ECF6&quot;, &quot;polar&quot;: {&quot;bgcolor&quot;: &quot;#E5ECF6&quot;, &quot;angularaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}, &quot;radialaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}}, &quot;ternary&quot;: {&quot;bgcolor&quot;: &quot;#E5ECF6&quot;, &quot;aaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}, &quot;baxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}, &quot;caxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}}, &quot;coloraxis&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}, &quot;colorscale&quot;: {&quot;sequential&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]], &quot;sequentialminus&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]], &quot;diverging&quot;: [[0, &quot;#8e0152&quot;], [0.1, &quot;#c51b7d&quot;], [0.2, &quot;#de77ae&quot;], [0.3, &quot;#f1b6da&quot;], [0.4, &quot;#fde0ef&quot;], [0.5, &quot;#f7f7f7&quot;], [0.6, &quot;#e6f5d0&quot;], [0.7, &quot;#b8e186&quot;], [0.8, &quot;#7fbc41&quot;], [0.9, &quot;#4d9221&quot;], [1, &quot;#276419&quot;]]}, &quot;xaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;, &quot;title&quot;: {&quot;standoff&quot;: 15}, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;automargin&quot;: true, &quot;zerolinewidth&quot;: 2}, &quot;yaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;, &quot;title&quot;: {&quot;standoff&quot;: 15}, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;automargin&quot;: true, &quot;zerolinewidth&quot;: 2}, &quot;scene&quot;: {&quot;xaxis&quot;: {&quot;backgroundcolor&quot;: &quot;#E5ECF6&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;showbackground&quot;: true, &quot;ticks&quot;: &quot;&quot;, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;gridwidth&quot;: 2}, &quot;yaxis&quot;: {&quot;backgroundcolor&quot;: &quot;#E5ECF6&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;showbackground&quot;: true, &quot;ticks&quot;: &quot;&quot;, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;gridwidth&quot;: 2}, &quot;zaxis&quot;: {&quot;backgroundcolor&quot;: &quot;#E5ECF6&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;showbackground&quot;: true, &quot;ticks&quot;: &quot;&quot;, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;gridwidth&quot;: 2}}, &quot;shapedefaults&quot;: {&quot;line&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}}, &quot;annotationdefaults&quot;: {&quot;arrowcolor&quot;: &quot;#2a3f5f&quot;, &quot;arrowhead&quot;: 0, &quot;arrowwidth&quot;: 1}, &quot;geo&quot;: {&quot;bgcolor&quot;: &quot;white&quot;, &quot;landcolor&quot;: &quot;#E5ECF6&quot;, &quot;subunitcolor&quot;: &quot;white&quot;, &quot;showland&quot;: true, &quot;showlakes&quot;: true, &quot;lakecolor&quot;: &quot;white&quot;}, &quot;title&quot;: {&quot;x&quot;: 0.05}, &quot;mapbox&quot;: {&quot;style&quot;: &quot;light&quot;}}}, &quot;legend&quot;: {&quot;orientation&quot;: &quot;h&quot;, &quot;yanchor&quot;: &quot;bottom&quot;, &quot;y&quot;: 1.02, &quot;xanchor&quot;: &quot;right&quot;, &quot;x&quot;: 1}, &quot;xaxis&quot;: {&quot;title&quot;: {&quot;text&quot;: &quot;Index&quot;}}, &quot;yaxis&quot;: {&quot;title&quot;: {&quot;text&quot;: &quot;mean texture&quot;}}, &quot;showlegend&quot;: true}}, &quot;insights&quot;: [], &quot;additionalGraphs&quot;: [], &quot;alerts&quot;: [], &quot;tabs&quot;: [], &quot;widgets&quot;: [], &quot;pageSize&quot;: 5}, &quot;321f9285-844e-4569-9fcb-097e40a7423e&quot;: {&quot;type&quot;: &quot;big_graph&quot;, &quot;title&quot;: &quot;&quot;, &quot;size&quot;: 2, &quot;id&quot;: &quot;321f9285-844e-4569-9fcb-097e40a7423e&quot;, &quot;details&quot;: &quot;&quot;, &quot;alertsPosition&quot;: null, &quot;alertStats&quot;: null, &quot;params&quot;: {&quot;data&quot;: [{&quot;marker&quot;: {&quot;color&quot;: &quot;#ed0400&quot;}, &quot;name&quot;: &quot;current&quot;, &quot;visible&quot;: true, &quot;x&quot;: [9.71, 11.822142857142858, 13.934285714285714, 16.04642857142857, 18.158571428571427, 20.270714285714284, 22.382857142857144, 24.495, 26.607142857142858, 28.719285714285714, 30.83142857142857, 32.94357142857143, 35.05571428571429, 37.167857142857144, 39.28], &quot;y&quot;: [2, 15, 24, 29, 33, 23, 19, 13, 8, 4, 1, 0, 0, 0], &quot;type&quot;: &quot;bar&quot;, &quot;xaxis&quot;: &quot;x&quot;, &quot;yaxis&quot;: &quot;y&quot;}, {&quot;marker&quot;: {&quot;color&quot;: &quot;#ed0400&quot;}, &quot;name&quot;: &quot;current&quot;, &quot;visible&quot;: false, &quot;x&quot;: [9.71, 11.822142857142858, 13.934285714285714, 16.04642857142857, 18.158571428571427, 20.270714285714284, 22.382857142857144, 24.495, 26.607142857142858, 28.719285714285714, 30.83142857142857, 32.94357142857143, 35.05571428571429, 37.167857142857144, 39.28], &quot;y&quot;: [1.1695906432748537, 8.771929824561402, 14.035087719298245, 16.95906432748538, 19.298245614035086, 13.450292397660817, 11.11111111111111, 7.602339181286549, 4.678362573099415, 2.3391812865497075, 0.5847953216374269, 0.0, 0.0, 0.0], &quot;type&quot;: &quot;bar&quot;, &quot;xaxis&quot;: &quot;x&quot;, &quot;yaxis&quot;: &quot;y&quot;}, {&quot;marker&quot;: {&quot;color&quot;: &quot;#4d4d4d&quot;}, &quot;name&quot;: &quot;reference&quot;, &quot;visible&quot;: true, &quot;x&quot;: [9.71, 11.822142857142858, 13.934285714285714, 16.04642857142857, 18.158571428571427, 20.270714285714284, 22.382857142857144, 24.495, 26.607142857142858, 28.719285714285714, 30.83142857142857, 32.94357142857143, 35.05571428571429, 37.167857142857144, 39.28], &quot;y&quot;: [7, 28, 61, 74, 88, 68, 30, 18, 14, 6, 1, 2, 0, 1], &quot;type&quot;: &quot;bar&quot;, &quot;xaxis&quot;: &quot;x&quot;, &quot;yaxis&quot;: &quot;y&quot;}, {&quot;marker&quot;: {&quot;color&quot;: &quot;#4d4d4d&quot;}, &quot;name&quot;: &quot;reference&quot;, &quot;visible&quot;: false, &quot;x&quot;: [9.71, 11.822142857142858, 13.934285714285714, 16.04642857142857, 18.158571428571427, 20.270714285714284, 22.382857142857144, 24.495, 26.607142857142858, 28.719285714285714, 30.83142857142857, 32.94357142857143, 35.05571428571429, 37.167857142857144, 39.28], &quot;y&quot;: [1.7587939698492463, 7.035175879396985, 15.326633165829145, 18.592964824120603, 22.110552763819097, 17.08542713567839, 7.537688442211055, 4.522613065326634, 3.5175879396984926, 1.507537688442211, 0.25125628140703515, 0.5025125628140703, 0.0, 0.25125628140703515], &quot;type&quot;: &quot;bar&quot;, &quot;xaxis&quot;: &quot;x&quot;, &quot;yaxis&quot;: &quot;y&quot;}], &quot;layout&quot;: {&quot;template&quot;: {&quot;data&quot;: {&quot;histogram2dcontour&quot;: [{&quot;type&quot;: &quot;histogram2dcontour&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;choropleth&quot;: [{&quot;type&quot;: &quot;choropleth&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}], &quot;histogram2d&quot;: [{&quot;type&quot;: &quot;histogram2d&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;heatmap&quot;: [{&quot;type&quot;: &quot;heatmap&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;heatmapgl&quot;: [{&quot;type&quot;: &quot;heatmapgl&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;contourcarpet&quot;: [{&quot;type&quot;: &quot;contourcarpet&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}], &quot;contour&quot;: [{&quot;type&quot;: &quot;contour&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;surface&quot;: [{&quot;type&quot;: &quot;surface&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;mesh3d&quot;: [{&quot;type&quot;: &quot;mesh3d&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}], &quot;scatter&quot;: [{&quot;fillpattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}, &quot;type&quot;: &quot;scatter&quot;}], &quot;parcoords&quot;: [{&quot;type&quot;: &quot;parcoords&quot;, &quot;line&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatterpolargl&quot;: [{&quot;type&quot;: &quot;scatterpolargl&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;bar&quot;: [{&quot;error_x&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}, &quot;error_y&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}, &quot;marker&quot;: {&quot;line&quot;: {&quot;color&quot;: &quot;#E5ECF6&quot;, &quot;width&quot;: 0.5}, &quot;pattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}}, &quot;type&quot;: &quot;bar&quot;}], &quot;scattergeo&quot;: [{&quot;type&quot;: &quot;scattergeo&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatterpolar&quot;: [{&quot;type&quot;: &quot;scatterpolar&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;histogram&quot;: [{&quot;marker&quot;: {&quot;pattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}}, &quot;type&quot;: &quot;histogram&quot;}], &quot;scattergl&quot;: [{&quot;type&quot;: &quot;scattergl&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatter3d&quot;: [{&quot;type&quot;: &quot;scatter3d&quot;, &quot;line&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scattermapbox&quot;: [{&quot;type&quot;: &quot;scattermapbox&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatterternary&quot;: [{&quot;type&quot;: &quot;scatterternary&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scattercarpet&quot;: [{&quot;type&quot;: &quot;scattercarpet&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;carpet&quot;: [{&quot;aaxis&quot;: {&quot;endlinecolor&quot;: &quot;#2a3f5f&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;minorgridcolor&quot;: &quot;white&quot;, &quot;startlinecolor&quot;: &quot;#2a3f5f&quot;}, &quot;baxis&quot;: {&quot;endlinecolor&quot;: &quot;#2a3f5f&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;minorgridcolor&quot;: &quot;white&quot;, &quot;startlinecolor&quot;: &quot;#2a3f5f&quot;}, &quot;type&quot;: &quot;carpet&quot;}], &quot;table&quot;: [{&quot;cells&quot;: {&quot;fill&quot;: {&quot;color&quot;: &quot;#EBF0F8&quot;}, &quot;line&quot;: {&quot;color&quot;: &quot;white&quot;}}, &quot;header&quot;: {&quot;fill&quot;: {&quot;color&quot;: &quot;#C8D4E3&quot;}, &quot;line&quot;: {&quot;color&quot;: &quot;white&quot;}}, &quot;type&quot;: &quot;table&quot;}], &quot;barpolar&quot;: [{&quot;marker&quot;: {&quot;line&quot;: {&quot;color&quot;: &quot;#E5ECF6&quot;, &quot;width&quot;: 0.5}, &quot;pattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}}, &quot;type&quot;: &quot;barpolar&quot;}], &quot;pie&quot;: [{&quot;automargin&quot;: true, &quot;type&quot;: &quot;pie&quot;}]}, &quot;layout&quot;: {&quot;autotypenumbers&quot;: &quot;strict&quot;, &quot;colorway&quot;: [&quot;#636efa&quot;, &quot;#EF553B&quot;, &quot;#00cc96&quot;, &quot;#ab63fa&quot;, &quot;#FFA15A&quot;, &quot;#19d3f3&quot;, &quot;#FF6692&quot;, &quot;#B6E880&quot;, &quot;#FF97FF&quot;, &quot;#FECB52&quot;], &quot;font&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}, &quot;hovermode&quot;: &quot;closest&quot;, &quot;hoverlabel&quot;: {&quot;align&quot;: &quot;left&quot;}, &quot;paper_bgcolor&quot;: &quot;white&quot;, &quot;plot_bgcolor&quot;: &quot;#E5ECF6&quot;, &quot;polar&quot;: {&quot;bgcolor&quot;: &quot;#E5ECF6&quot;, &quot;angularaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}, &quot;radialaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}}, &quot;ternary&quot;: {&quot;bgcolor&quot;: &quot;#E5ECF6&quot;, &quot;aaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}, &quot;baxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}, &quot;caxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}}, &quot;coloraxis&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}, &quot;colorscale&quot;: {&quot;sequential&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]], &quot;sequentialminus&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]], &quot;diverging&quot;: [[0, &quot;#8e0152&quot;], [0.1, &quot;#c51b7d&quot;], [0.2, &quot;#de77ae&quot;], [0.3, &quot;#f1b6da&quot;], [0.4, &quot;#fde0ef&quot;], [0.5, &quot;#f7f7f7&quot;], [0.6, &quot;#e6f5d0&quot;], [0.7, &quot;#b8e186&quot;], [0.8, &quot;#7fbc41&quot;], [0.9, &quot;#4d9221&quot;], [1, &quot;#276419&quot;]]}, &quot;xaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;, &quot;title&quot;: {&quot;standoff&quot;: 15}, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;automargin&quot;: true, &quot;zerolinewidth&quot;: 2}, &quot;yaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;, &quot;title&quot;: {&quot;standoff&quot;: 15}, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;automargin&quot;: true, &quot;zerolinewidth&quot;: 2}, &quot;scene&quot;: {&quot;xaxis&quot;: {&quot;backgroundcolor&quot;: &quot;#E5ECF6&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;showbackground&quot;: true, &quot;ticks&quot;: &quot;&quot;, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;gridwidth&quot;: 2}, &quot;yaxis&quot;: {&quot;backgroundcolor&quot;: &quot;#E5ECF6&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;showbackground&quot;: true, &quot;ticks&quot;: &quot;&quot;, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;gridwidth&quot;: 2}, &quot;zaxis&quot;: {&quot;backgroundcolor&quot;: &quot;#E5ECF6&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;showbackground&quot;: true, &quot;ticks&quot;: &quot;&quot;, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;gridwidth&quot;: 2}}, &quot;shapedefaults&quot;: {&quot;line&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}}, &quot;annotationdefaults&quot;: {&quot;arrowcolor&quot;: &quot;#2a3f5f&quot;, &quot;arrowhead&quot;: 0, &quot;arrowwidth&quot;: 1}, &quot;geo&quot;: {&quot;bgcolor&quot;: &quot;white&quot;, &quot;landcolor&quot;: &quot;#E5ECF6&quot;, &quot;subunitcolor&quot;: &quot;white&quot;, &quot;showland&quot;: true, &quot;showlakes&quot;: true, &quot;lakecolor&quot;: &quot;white&quot;}, &quot;title&quot;: {&quot;x&quot;: 0.05}, &quot;mapbox&quot;: {&quot;style&quot;: &quot;light&quot;}}}, &quot;xaxis&quot;: {&quot;anchor&quot;: &quot;y&quot;, &quot;domain&quot;: [0.0, 1.0], &quot;title&quot;: {&quot;text&quot;: &quot;&quot;}}, &quot;yaxis&quot;: {&quot;anchor&quot;: &quot;x&quot;, &quot;domain&quot;: [0.0, 1.0], &quot;title&quot;: {&quot;text&quot;: &quot;Count&quot;}}, &quot;updatemenus&quot;: [{&quot;buttons&quot;: [{&quot;args&quot;: [{&quot;visible&quot;: [true, false, true, false]}, {&quot;yaxis&quot;: {&quot;title&quot;: &quot;Count&quot;}}], &quot;label&quot;: &quot;abs&quot;, &quot;method&quot;: &quot;update&quot;}, {&quot;args&quot;: [{&quot;visible&quot;: [false, true, false, true]}, {&quot;yaxis&quot;: {&quot;title&quot;: &quot;Percent&quot;}}], &quot;label&quot;: &quot;perc&quot;, &quot;method&quot;: &quot;update&quot;}], &quot;direction&quot;: &quot;right&quot;, &quot;type&quot;: &quot;buttons&quot;, &quot;x&quot;: 1.05, &quot;y&quot;: 1.2, &quot;yanchor&quot;: &quot;top&quot;}]}}, &quot;insights&quot;: [], &quot;additionalGraphs&quot;: [], &quot;alerts&quot;: [], &quot;tabs&quot;: [], &quot;widgets&quot;: [], &quot;pageSize&quot;: 5}, &quot;ea0da195-c8b0-4e72-a717-5c88eb27961d&quot;: {&quot;type&quot;: &quot;big_graph&quot;, &quot;title&quot;: &quot;&quot;, &quot;size&quot;: 2, &quot;id&quot;: &quot;ea0da195-c8b0-4e72-a717-5c88eb27961d&quot;, &quot;details&quot;: &quot;&quot;, &quot;alertsPosition&quot;: null, &quot;alertStats&quot;: null, &quot;params&quot;: {&quot;data&quot;: [{&quot;fill&quot;: &quot;toself&quot;, &quot;fillcolor&quot;: &quot;LightGreen&quot;, &quot;line&quot;: {&quot;color&quot;: &quot;LightGreen&quot;, &quot;dash&quot;: &quot;solid&quot;, &quot;width&quot;: 0}, &quot;marker&quot;: {&quot;size&quot;: 0}, &quot;name&quot;: &quot;reference (+/- 1std)&quot;, &quot;opacity&quot;: 0.5, &quot;x&quot;: [0, 170, 170, 0], &quot;y&quot;: [0.22598164042340893, 0.22598164042340893, 0.35061785706402826, 0.35061785706402826], &quot;type&quot;: &quot;scatter&quot;}, {&quot;marker&quot;: {&quot;color&quot;: &quot;#ed0400&quot;, &quot;size&quot;: 6}, &quot;mode&quot;: &quot;markers&quot;, &quot;name&quot;: &quot;Current&quot;, &quot;x&quot;: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170], &quot;y&quot;: [0.3014, 0.2551, 0.2837, 0.2556, 0.2329, 0.4087, 0.2741, 0.2756, 0.3527, 0.2679, 0.2444, 0.281, 0.2646, 0.2736, 0.311, 0.2311, 0.2334, 0.2262, 0.2932, 0.3077, 0.2589, 0.3049, 0.3828, 0.2349, 0.3244, 0.271, 0.2736, 0.2226, 0.2744, 0.3313, 0.3169, 0.2514, 0.3196, 0.2806, 0.3055, 0.3306, 0.2948, 0.3101, 0.3063, 0.2522, 0.2826, 0.2654, 0.2787, 0.2535, 0.222, 0.2829, 0.3681, 0.2475, 0.3206, 0.1999, 0.3216, 0.3444, 0.4128, 0.216, 0.2727, 0.2235, 0.2608, 0.2355, 0.2807, 0.2733, 0.2779, 0.3613, 0.206, 0.2345, 0.2554, 0.2826, 0.3274, 0.544, 0.32, 0.3596, 0.308, 0.3792, 0.2523, 0.3054, 0.3058, 0.3227, 0.2226, 0.3068, 0.23, 0.3343, 0.348, 0.2815, 0.302, 0.3126, 0.2504, 0.3258, 0.4366, 0.2301, 0.2191, 0.2382, 0.3379, 0.3518, 0.2177, 0.1566, 0.3292, 0.2533, 0.2572, 0.4432, 0.2859, 0.25, 0.3437, 0.3105, 0.3751, 0.306, 0.3059, 0.2478, 0.2268, 0.2908, 0.2691, 0.2455, 0.265, 0.2664, 0.189, 0.2868, 0.4228, 0.4098, 0.3282, 0.3409, 0.3557, 0.4218, 0.2272, 0.2676, 0.3113, 0.2549, 0.2972, 0.2268, 0.3585, 0.3174, 0.2741, 0.3672, 0.4601, 0.4089, 0.2636, 0.3487, 0.232, 0.4667, 0.2666, 0.2883, 0.3151, 0.4753, 0.2998, 0.2768, 0.2937, 0.2309, 0.3585, 0.3207, 0.2972, 0.2909, 0.3175, 0.1859, 0.2675, 0.2298, 0.3105, 0.2678, 0.2849, 0.4055, 0.292, 0.2871, 0.2525, 0.2383, 0.1909, 0.2982, 0.2933, 0.2121, 0.3233, 0.302, 0.2383, 0.2722, 0.2614, 0.3651, 0.2639], &quot;type&quot;: &quot;scattergl&quot;}, {&quot;marker&quot;: {&quot;color&quot;: &quot;green&quot;}, &quot;mode&quot;: &quot;lines&quot;, &quot;name&quot;: &quot;reference (mean)&quot;, &quot;x&quot;: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170], &quot;y&quot;: [0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186, 0.2882997487437186], &quot;type&quot;: &quot;scatter&quot;}], &quot;layout&quot;: {&quot;template&quot;: {&quot;data&quot;: {&quot;histogram2dcontour&quot;: [{&quot;type&quot;: &quot;histogram2dcontour&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;choropleth&quot;: [{&quot;type&quot;: &quot;choropleth&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}], &quot;histogram2d&quot;: [{&quot;type&quot;: &quot;histogram2d&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;heatmap&quot;: [{&quot;type&quot;: &quot;heatmap&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;heatmapgl&quot;: [{&quot;type&quot;: &quot;heatmapgl&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;contourcarpet&quot;: [{&quot;type&quot;: &quot;contourcarpet&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}], &quot;contour&quot;: [{&quot;type&quot;: &quot;contour&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;surface&quot;: [{&quot;type&quot;: &quot;surface&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;mesh3d&quot;: [{&quot;type&quot;: &quot;mesh3d&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}], &quot;scatter&quot;: [{&quot;fillpattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}, &quot;type&quot;: &quot;scatter&quot;}], &quot;parcoords&quot;: [{&quot;type&quot;: &quot;parcoords&quot;, &quot;line&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatterpolargl&quot;: [{&quot;type&quot;: &quot;scatterpolargl&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;bar&quot;: [{&quot;error_x&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}, &quot;error_y&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}, &quot;marker&quot;: {&quot;line&quot;: {&quot;color&quot;: &quot;#E5ECF6&quot;, &quot;width&quot;: 0.5}, &quot;pattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}}, &quot;type&quot;: &quot;bar&quot;}], &quot;scattergeo&quot;: [{&quot;type&quot;: &quot;scattergeo&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatterpolar&quot;: [{&quot;type&quot;: &quot;scatterpolar&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;histogram&quot;: [{&quot;marker&quot;: {&quot;pattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}}, &quot;type&quot;: &quot;histogram&quot;}], &quot;scattergl&quot;: [{&quot;type&quot;: &quot;scattergl&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatter3d&quot;: [{&quot;type&quot;: &quot;scatter3d&quot;, &quot;line&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scattermapbox&quot;: [{&quot;type&quot;: &quot;scattermapbox&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatterternary&quot;: [{&quot;type&quot;: &quot;scatterternary&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scattercarpet&quot;: [{&quot;type&quot;: &quot;scattercarpet&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;carpet&quot;: [{&quot;aaxis&quot;: {&quot;endlinecolor&quot;: &quot;#2a3f5f&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;minorgridcolor&quot;: &quot;white&quot;, &quot;startlinecolor&quot;: &quot;#2a3f5f&quot;}, &quot;baxis&quot;: {&quot;endlinecolor&quot;: &quot;#2a3f5f&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;minorgridcolor&quot;: &quot;white&quot;, &quot;startlinecolor&quot;: &quot;#2a3f5f&quot;}, &quot;type&quot;: &quot;carpet&quot;}], &quot;table&quot;: [{&quot;cells&quot;: {&quot;fill&quot;: {&quot;color&quot;: &quot;#EBF0F8&quot;}, &quot;line&quot;: {&quot;color&quot;: &quot;white&quot;}}, &quot;header&quot;: {&quot;fill&quot;: {&quot;color&quot;: &quot;#C8D4E3&quot;}, &quot;line&quot;: {&quot;color&quot;: &quot;white&quot;}}, &quot;type&quot;: &quot;table&quot;}], &quot;barpolar&quot;: [{&quot;marker&quot;: {&quot;line&quot;: {&quot;color&quot;: &quot;#E5ECF6&quot;, &quot;width&quot;: 0.5}, &quot;pattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}}, &quot;type&quot;: &quot;barpolar&quot;}], &quot;pie&quot;: [{&quot;automargin&quot;: true, &quot;type&quot;: &quot;pie&quot;}]}, &quot;layout&quot;: {&quot;autotypenumbers&quot;: &quot;strict&quot;, &quot;colorway&quot;: [&quot;#636efa&quot;, &quot;#EF553B&quot;, &quot;#00cc96&quot;, &quot;#ab63fa&quot;, &quot;#FFA15A&quot;, &quot;#19d3f3&quot;, &quot;#FF6692&quot;, &quot;#B6E880&quot;, &quot;#FF97FF&quot;, &quot;#FECB52&quot;], &quot;font&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}, &quot;hovermode&quot;: &quot;closest&quot;, &quot;hoverlabel&quot;: {&quot;align&quot;: &quot;left&quot;}, &quot;paper_bgcolor&quot;: &quot;white&quot;, &quot;plot_bgcolor&quot;: &quot;#E5ECF6&quot;, &quot;polar&quot;: {&quot;bgcolor&quot;: &quot;#E5ECF6&quot;, &quot;angularaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}, &quot;radialaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}}, &quot;ternary&quot;: {&quot;bgcolor&quot;: &quot;#E5ECF6&quot;, &quot;aaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}, &quot;baxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}, &quot;caxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}}, &quot;coloraxis&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}, &quot;colorscale&quot;: {&quot;sequential&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]], &quot;sequentialminus&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]], &quot;diverging&quot;: [[0, &quot;#8e0152&quot;], [0.1, &quot;#c51b7d&quot;], [0.2, &quot;#de77ae&quot;], [0.3, &quot;#f1b6da&quot;], [0.4, &quot;#fde0ef&quot;], [0.5, &quot;#f7f7f7&quot;], [0.6, &quot;#e6f5d0&quot;], [0.7, &quot;#b8e186&quot;], [0.8, &quot;#7fbc41&quot;], [0.9, &quot;#4d9221&quot;], [1, &quot;#276419&quot;]]}, &quot;xaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;, &quot;title&quot;: {&quot;standoff&quot;: 15}, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;automargin&quot;: true, &quot;zerolinewidth&quot;: 2}, &quot;yaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;, &quot;title&quot;: {&quot;standoff&quot;: 15}, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;automargin&quot;: true, &quot;zerolinewidth&quot;: 2}, &quot;scene&quot;: {&quot;xaxis&quot;: {&quot;backgroundcolor&quot;: &quot;#E5ECF6&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;showbackground&quot;: true, &quot;ticks&quot;: &quot;&quot;, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;gridwidth&quot;: 2}, &quot;yaxis&quot;: {&quot;backgroundcolor&quot;: &quot;#E5ECF6&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;showbackground&quot;: true, &quot;ticks&quot;: &quot;&quot;, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;gridwidth&quot;: 2}, &quot;zaxis&quot;: {&quot;backgroundcolor&quot;: &quot;#E5ECF6&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;showbackground&quot;: true, &quot;ticks&quot;: &quot;&quot;, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;gridwidth&quot;: 2}}, &quot;shapedefaults&quot;: {&quot;line&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}}, &quot;annotationdefaults&quot;: {&quot;arrowcolor&quot;: &quot;#2a3f5f&quot;, &quot;arrowhead&quot;: 0, &quot;arrowwidth&quot;: 1}, &quot;geo&quot;: {&quot;bgcolor&quot;: &quot;white&quot;, &quot;landcolor&quot;: &quot;#E5ECF6&quot;, &quot;subunitcolor&quot;: &quot;white&quot;, &quot;showland&quot;: true, &quot;showlakes&quot;: true, &quot;lakecolor&quot;: &quot;white&quot;}, &quot;title&quot;: {&quot;x&quot;: 0.05}, &quot;mapbox&quot;: {&quot;style&quot;: &quot;light&quot;}}}, &quot;legend&quot;: {&quot;orientation&quot;: &quot;h&quot;, &quot;yanchor&quot;: &quot;bottom&quot;, &quot;y&quot;: 1.02, &quot;xanchor&quot;: &quot;right&quot;, &quot;x&quot;: 1}, &quot;xaxis&quot;: {&quot;title&quot;: {&quot;text&quot;: &quot;Index&quot;}}, &quot;yaxis&quot;: {&quot;title&quot;: {&quot;text&quot;: &quot;worst symmetry&quot;}}, &quot;showlegend&quot;: true}}, &quot;insights&quot;: [], &quot;additionalGraphs&quot;: [], &quot;alerts&quot;: [], &quot;tabs&quot;: [], &quot;widgets&quot;: [], &quot;pageSize&quot;: 5}, &quot;2bf16f20-e8d8-4cf5-b7f8-d8c3a4bb7f68&quot;: {&quot;type&quot;: &quot;big_graph&quot;, &quot;title&quot;: &quot;&quot;, &quot;size&quot;: 2, &quot;id&quot;: &quot;2bf16f20-e8d8-4cf5-b7f8-d8c3a4bb7f68&quot;, &quot;details&quot;: &quot;&quot;, &quot;alertsPosition&quot;: null, &quot;alertStats&quot;: null, &quot;params&quot;: {&quot;data&quot;: [{&quot;marker&quot;: {&quot;color&quot;: &quot;#ed0400&quot;}, &quot;name&quot;: &quot;current&quot;, &quot;visible&quot;: true, &quot;x&quot;: [0.1565, 0.19032, 0.22414, 0.25795999999999997, 0.29178, 0.3256, 0.35941999999999996, 0.39324, 0.42706, 0.46087999999999996, 0.4946999999999999, 0.52852, 0.56234, 0.5961599999999999, 0.62998, 0.6638], &quot;y&quot;: [3, 11, 35, 43, 40, 18, 8, 7, 3, 2, 0, 1, 0, 0, 0], &quot;type&quot;: &quot;bar&quot;, &quot;xaxis&quot;: &quot;x&quot;, &quot;yaxis&quot;: &quot;y&quot;}, {&quot;marker&quot;: {&quot;color&quot;: &quot;#ed0400&quot;}, &quot;name&quot;: &quot;current&quot;, &quot;visible&quot;: false, &quot;x&quot;: [0.1565, 0.19032, 0.22414, 0.25795999999999997, 0.29178, 0.3256, 0.35941999999999996, 0.39324, 0.42706, 0.46087999999999996, 0.4946999999999999, 0.52852, 0.56234, 0.5961599999999999, 0.62998, 0.6638], &quot;y&quot;: [1.7543859649122806, 6.432748538011696, 20.46783625730994, 25.146198830409354, 23.391812865497073, 10.526315789473683, 4.678362573099415, 4.093567251461988, 1.7543859649122806, 1.1695906432748537, 0.0, 0.5847953216374269, 0.0, 0.0, 0.0], &quot;type&quot;: &quot;bar&quot;, &quot;xaxis&quot;: &quot;x&quot;, &quot;yaxis&quot;: &quot;y&quot;}, {&quot;marker&quot;: {&quot;color&quot;: &quot;#4d4d4d&quot;}, &quot;name&quot;: &quot;reference&quot;, &quot;visible&quot;: true, &quot;x&quot;: [0.1565, 0.19032, 0.22414, 0.25795999999999997, 0.29178, 0.3256, 0.35941999999999996, 0.39324, 0.42706, 0.46087999999999996, 0.4946999999999999, 0.52852, 0.56234, 0.5961599999999999, 0.62998, 0.6638], &quot;y&quot;: [10, 28, 89, 107, 89, 36, 17, 10, 1, 7, 1, 1, 1, 0, 1], &quot;type&quot;: &quot;bar&quot;, &quot;xaxis&quot;: &quot;x&quot;, &quot;yaxis&quot;: &quot;y&quot;}, {&quot;marker&quot;: {&quot;color&quot;: &quot;#4d4d4d&quot;}, &quot;name&quot;: &quot;reference&quot;, &quot;visible&quot;: false, &quot;x&quot;: [0.1565, 0.19032, 0.22414, 0.25795999999999997, 0.29178, 0.3256, 0.35941999999999996, 0.39324, 0.42706, 0.46087999999999996, 0.4946999999999999, 0.52852, 0.56234, 0.5961599999999999, 0.62998, 0.6638], &quot;y&quot;: [2.512562814070352, 7.035175879396985, 22.36180904522613, 26.884422110552762, 22.36180904522613, 9.045226130653267, 4.271356783919598, 2.512562814070352, 0.25125628140703515, 1.7587939698492463, 0.25125628140703515, 0.25125628140703515, 0.25125628140703515, 0.0, 0.25125628140703515], &quot;type&quot;: &quot;bar&quot;, &quot;xaxis&quot;: &quot;x&quot;, &quot;yaxis&quot;: &quot;y&quot;}], &quot;layout&quot;: {&quot;template&quot;: {&quot;data&quot;: {&quot;histogram2dcontour&quot;: [{&quot;type&quot;: &quot;histogram2dcontour&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;choropleth&quot;: [{&quot;type&quot;: &quot;choropleth&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}], &quot;histogram2d&quot;: [{&quot;type&quot;: &quot;histogram2d&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;heatmap&quot;: [{&quot;type&quot;: &quot;heatmap&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;heatmapgl&quot;: [{&quot;type&quot;: &quot;heatmapgl&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;contourcarpet&quot;: [{&quot;type&quot;: &quot;contourcarpet&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}], &quot;contour&quot;: [{&quot;type&quot;: &quot;contour&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;surface&quot;: [{&quot;type&quot;: &quot;surface&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;mesh3d&quot;: [{&quot;type&quot;: &quot;mesh3d&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}], &quot;scatter&quot;: [{&quot;fillpattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}, &quot;type&quot;: &quot;scatter&quot;}], &quot;parcoords&quot;: [{&quot;type&quot;: &quot;parcoords&quot;, &quot;line&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatterpolargl&quot;: [{&quot;type&quot;: &quot;scatterpolargl&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;bar&quot;: [{&quot;error_x&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}, &quot;error_y&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}, &quot;marker&quot;: {&quot;line&quot;: {&quot;color&quot;: &quot;#E5ECF6&quot;, &quot;width&quot;: 0.5}, &quot;pattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}}, &quot;type&quot;: &quot;bar&quot;}], &quot;scattergeo&quot;: [{&quot;type&quot;: &quot;scattergeo&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatterpolar&quot;: [{&quot;type&quot;: &quot;scatterpolar&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;histogram&quot;: [{&quot;marker&quot;: {&quot;pattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}}, &quot;type&quot;: &quot;histogram&quot;}], &quot;scattergl&quot;: [{&quot;type&quot;: &quot;scattergl&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatter3d&quot;: [{&quot;type&quot;: &quot;scatter3d&quot;, &quot;line&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scattermapbox&quot;: [{&quot;type&quot;: &quot;scattermapbox&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatterternary&quot;: [{&quot;type&quot;: &quot;scatterternary&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scattercarpet&quot;: [{&quot;type&quot;: &quot;scattercarpet&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;carpet&quot;: [{&quot;aaxis&quot;: {&quot;endlinecolor&quot;: &quot;#2a3f5f&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;minorgridcolor&quot;: &quot;white&quot;, &quot;startlinecolor&quot;: &quot;#2a3f5f&quot;}, &quot;baxis&quot;: {&quot;endlinecolor&quot;: &quot;#2a3f5f&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;minorgridcolor&quot;: &quot;white&quot;, &quot;startlinecolor&quot;: &quot;#2a3f5f&quot;}, &quot;type&quot;: &quot;carpet&quot;}], &quot;table&quot;: [{&quot;cells&quot;: {&quot;fill&quot;: {&quot;color&quot;: &quot;#EBF0F8&quot;}, &quot;line&quot;: {&quot;color&quot;: &quot;white&quot;}}, &quot;header&quot;: {&quot;fill&quot;: {&quot;color&quot;: &quot;#C8D4E3&quot;}, &quot;line&quot;: {&quot;color&quot;: &quot;white&quot;}}, &quot;type&quot;: &quot;table&quot;}], &quot;barpolar&quot;: [{&quot;marker&quot;: {&quot;line&quot;: {&quot;color&quot;: &quot;#E5ECF6&quot;, &quot;width&quot;: 0.5}, &quot;pattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}}, &quot;type&quot;: &quot;barpolar&quot;}], &quot;pie&quot;: [{&quot;automargin&quot;: true, &quot;type&quot;: &quot;pie&quot;}]}, &quot;layout&quot;: {&quot;autotypenumbers&quot;: &quot;strict&quot;, &quot;colorway&quot;: [&quot;#636efa&quot;, &quot;#EF553B&quot;, &quot;#00cc96&quot;, &quot;#ab63fa&quot;, &quot;#FFA15A&quot;, &quot;#19d3f3&quot;, &quot;#FF6692&quot;, &quot;#B6E880&quot;, &quot;#FF97FF&quot;, &quot;#FECB52&quot;], &quot;font&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}, &quot;hovermode&quot;: &quot;closest&quot;, &quot;hoverlabel&quot;: {&quot;align&quot;: &quot;left&quot;}, &quot;paper_bgcolor&quot;: &quot;white&quot;, &quot;plot_bgcolor&quot;: &quot;#E5ECF6&quot;, &quot;polar&quot;: {&quot;bgcolor&quot;: &quot;#E5ECF6&quot;, &quot;angularaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}, &quot;radialaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}}, &quot;ternary&quot;: {&quot;bgcolor&quot;: &quot;#E5ECF6&quot;, &quot;aaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}, &quot;baxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}, &quot;caxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;}}, &quot;coloraxis&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}, &quot;colorscale&quot;: {&quot;sequential&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]], &quot;sequentialminus&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]], &quot;diverging&quot;: [[0, &quot;#8e0152&quot;], [0.1, &quot;#c51b7d&quot;], [0.2, &quot;#de77ae&quot;], [0.3, &quot;#f1b6da&quot;], [0.4, &quot;#fde0ef&quot;], [0.5, &quot;#f7f7f7&quot;], [0.6, &quot;#e6f5d0&quot;], [0.7, &quot;#b8e186&quot;], [0.8, &quot;#7fbc41&quot;], [0.9, &quot;#4d9221&quot;], [1, &quot;#276419&quot;]]}, &quot;xaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;, &quot;title&quot;: {&quot;standoff&quot;: 15}, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;automargin&quot;: true, &quot;zerolinewidth&quot;: 2}, &quot;yaxis&quot;: {&quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;ticks&quot;: &quot;&quot;, &quot;title&quot;: {&quot;standoff&quot;: 15}, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;automargin&quot;: true, &quot;zerolinewidth&quot;: 2}, &quot;scene&quot;: {&quot;xaxis&quot;: {&quot;backgroundcolor&quot;: &quot;#E5ECF6&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;showbackground&quot;: true, &quot;ticks&quot;: &quot;&quot;, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;gridwidth&quot;: 2}, &quot;yaxis&quot;: {&quot;backgroundcolor&quot;: &quot;#E5ECF6&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;showbackground&quot;: true, &quot;ticks&quot;: &quot;&quot;, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;gridwidth&quot;: 2}, &quot;zaxis&quot;: {&quot;backgroundcolor&quot;: &quot;#E5ECF6&quot;, &quot;gridcolor&quot;: &quot;white&quot;, &quot;linecolor&quot;: &quot;white&quot;, &quot;showbackground&quot;: true, &quot;ticks&quot;: &quot;&quot;, &quot;zerolinecolor&quot;: &quot;white&quot;, &quot;gridwidth&quot;: 2}}, &quot;shapedefaults&quot;: {&quot;line&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}}, &quot;annotationdefaults&quot;: {&quot;arrowcolor&quot;: &quot;#2a3f5f&quot;, &quot;arrowhead&quot;: 0, &quot;arrowwidth&quot;: 1}, &quot;geo&quot;: {&quot;bgcolor&quot;: &quot;white&quot;, &quot;landcolor&quot;: &quot;#E5ECF6&quot;, &quot;subunitcolor&quot;: &quot;white&quot;, &quot;showland&quot;: true, &quot;showlakes&quot;: true, &quot;lakecolor&quot;: &quot;white&quot;}, &quot;title&quot;: {&quot;x&quot;: 0.05}, &quot;mapbox&quot;: {&quot;style&quot;: &quot;light&quot;}}}, &quot;xaxis&quot;: {&quot;anchor&quot;: &quot;y&quot;, &quot;domain&quot;: [0.0, 1.0], &quot;title&quot;: {&quot;text&quot;: &quot;&quot;}}, &quot;yaxis&quot;: {&quot;anchor&quot;: &quot;x&quot;, &quot;domain&quot;: [0.0, 1.0], &quot;title&quot;: {&quot;text&quot;: &quot;Count&quot;}}, &quot;updatemenus&quot;: [{&quot;buttons&quot;: [{&quot;args&quot;: [{&quot;visible&quot;: [true, false, true, false]}, {&quot;yaxis&quot;: {&quot;title&quot;: &quot;Count&quot;}}], &quot;label&quot;: &quot;abs&quot;, &quot;method&quot;: &quot;update&quot;}, {&quot;args&quot;: [{&quot;visible&quot;: [false, true, false, true]}, {&quot;yaxis&quot;: {&quot;title&quot;: &quot;Percent&quot;}}], &quot;label&quot;: &quot;perc&quot;, &quot;method&quot;: &quot;update&quot;}], &quot;direction&quot;: &quot;right&quot;, &quot;type&quot;: &quot;buttons&quot;, &quot;x&quot;: 1.05, &quot;y&quot;: 1.2, &quot;yanchor&quot;: &quot;top&quot;}]}}, &quot;insights&quot;: [], &quot;additionalGraphs&quot;: [], &quot;alerts&quot;: [], &quot;tabs&quot;: [], &quot;widgets&quot;: [], &quot;pageSize&quot;: 5}, &quot;5193a6c8-daeb-49d2-bc6e-b8444e8be8c6&quot;: {&quot;type&quot;: &quot;big_graph&quot;, &quot;title&quot;: &quot;&quot;, &quot;size&quot;: 2, &quot;id&quot;: &quot;5193a6c8-daeb-49d2-bc6e-b8444e8be8c6&quot;, &quot;details&quot;: &quot;&quot;, &quot;alertsPosition&quot;: null, &quot;alertStats&quot;: null, &quot;params&quot;: {&quot;data&quot;: [{&quot;fill&quot;: &quot;toself&quot;, &quot;fillcolor&quot;: &quot;LightGreen&quot;, &quot;line&quot;: {&quot;color&quot;: &quot;LightGreen&quot;, &quot;dash&quot;: &quot;solid&quot;, &quot;width&quot;: 0}, &quot;marker&quot;: {&quot;size&quot;: 0}, &quot;name&quot;: &quot;reference (+/- 1std)&quot;, &quot;opacity&quot;: 0.5, &quot;x&quot;: [0, 170, 170, 0], &quot;y&quot;: [0.003939904943508096, 0.003939904943508096, 0.010167863900713009, 0.010167863900713009], &quot;type&quot;: &quot;scatter&quot;}, {&quot;marker&quot;: {&quot;color&quot;: &quot;#ed0400&quot;, &quot;size&quot;: 6}, &quot;mode&quot;: &quot;markers&quot;, &quot;name&quot;: &quot;Current&quot;, &quot;x&quot;: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170], &quot;y&quot;: [0.006953, 0.004444, 0.00624, 0.01, 0.01215, 0.006522, 0.003978, 0.005627, 0.006794, 0.003308, 0.005768, 0.006123, 0.003634, 0.01056, 0.003681, 0.007545, 0.006708, 0.01291, 0.01019, 0.004578, 0.004717, 0.008146, 0.005215, 0.005724, 0.006122, 0.0134, 0.004271, 0.01205, 0.005608, 0.00582, 0.003495, 0.005528, 0.01307, 0.003828, 0.007899, 0.008328, 0.004029, 0.008034, 0.004314, 0.004868, 0.007595, 0.01052, 0.005884, 0.005517, 0.01418, 0.009113, 0.01546, 0.01159, 0.005251, 0.006418, 0.004493, 0.006248, 0.005251, 0.01004, 0.01017, 0.005969, 0.01049, 0.008166, 0.005367, 0.006472, 0.005293, 0.00615, 0.0103, 0.005356, 0.007881, 0.005169, 0.008699, 0.01038, 0.007831, 0.005727, 0.0138, 0.005771, 0.005371, 0.006627, 0.01266, 0.00445, 0.007389, 0.006351, 0.006547, 0.006635, 0.004877, 0.005617, 0.009369, 0.005283, 0.005444, 0.01015, 0.007149, 0.006766, 0.005042, 0.00591, 0.005969, 0.004413, 0.004123, 0.007594, 0.01289, 0.01385, 0.005769, 0.008824, 0.009019, 0.008109, 0.004626, 0.00604, 0.00794, 0.007231, 0.008263, 0.006587, 0.01134, 0.005753, 0.005706, 0.003535, 0.01082, 0.006662, 0.006307, 0.004551, 0.009549, 0.004253, 0.008738, 0.007189, 0.007514, 0.005607, 0.007762, 0.005133, 0.005518, 0.005089, 0.007112, 0.005467, 0.006985, 0.007501, 0.004394, 0.005015, 0.006399, 0.004625, 0.003169, 0.006064, 0.004291, 0.006789, 0.005442, 0.01604, 0.005508, 0.004044, 0.005158, 0.006494, 0.005682, 0.004731, 0.005414, 0.003629, 0.004714, 0.008124, 0.00329, 0.006432, 0.004675, 0.007702, 0.008968, 0.005884, 0.003653, 0.006515, 0.01061, 0.007189, 0.005756, 0.005883, 0.001713, 0.005954, 0.01439, 0.009853, 0.006831, 0.007364, 0.007962, 0.004775, 0.01286, 0.00968, 0.005501], &quot;type&quot;: &quot;scattergl&quot;}, {&quot;marker&quot;: {&quot;color&quot;: &quot;green&quot;}, &quot;mode&quot;: &quot;lines&quot;, &quot;name&quot;: &quot;reference (mean)&quot;, &quot;x&quot;: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170], &quot;y&quot;: [0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552, 0.007053884422110552], &quot;type&quot;: &quot;scatter&quot;}], &quot;layout&quot;: {&quot;template&quot;: {&quot;data&quot;: {&quot;histogram2dcontour&quot;: [{&quot;type&quot;: &quot;histogram2dcontour&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;choropleth&quot;: [{&quot;type&quot;: &quot;choropleth&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}], &quot;histogram2d&quot;: [{&quot;type&quot;: &quot;histogram2d&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;heatmap&quot;: [{&quot;type&quot;: &quot;heatmap&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;heatmapgl&quot;: [{&quot;type&quot;: &quot;heatmapgl&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;contourcarpet&quot;: [{&quot;type&quot;: &quot;contourcarpet&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}], &quot;contour&quot;: [{&quot;type&quot;: &quot;contour&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;surface&quot;: [{&quot;type&quot;: &quot;surface&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}, &quot;colorscale&quot;: [[0.0, &quot;#0d0887&quot;], [0.1111111111111111, &quot;#46039f&quot;], [0.2222222222222222, &quot;#7201a8&quot;], [0.3333333333333333, &quot;#9c179e&quot;], [0.4444444444444444, &quot;#bd3786&quot;], [0.5555555555555556, &quot;#d8576b&quot;], [0.6666666666666666, &quot;#ed7953&quot;], [0.7777777777777778, &quot;#fb9f3a&quot;], [0.8888888888888888, &quot;#fdca26&quot;], [1.0, &quot;#f0f921&quot;]]}], &quot;mesh3d&quot;: [{&quot;type&quot;: &quot;mesh3d&quot;, &quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}], &quot;scatter&quot;: [{&quot;fillpattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}, &quot;type&quot;: &quot;scatter&quot;}], &quot;parcoords&quot;: [{&quot;type&quot;: &quot;parcoords&quot;, &quot;line&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatterpolargl&quot;: [{&quot;type&quot;: &quot;scatterpolargl&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;bar&quot;: [{&quot;error_x&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}, &quot;error_y&quot;: {&quot;color&quot;: &quot;#2a3f5f&quot;}, &quot;marker&quot;: {&quot;line&quot;: {&quot;color&quot;: &quot;#E5ECF6&quot;, &quot;width&quot;: 0.5}, &quot;pattern&quot;: {&quot;fillmode&quot;: &quot;overlay&quot;, &quot;size&quot;: 10, &quot;solidity&quot;: 0.2}}, &quot;type&quot;: &quot;bar&quot;}], &quot;scattergeo&quot;: [{&quot;type&quot;: &quot;scattergeo&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;scatterpolar&quot;: [{&quot;type&quot;: &quot;scatterpolar&quot;, &quot;marker&quot;: {&quot;colorbar&quot;: {&quot;outlinewidth&quot;: 0, &quot;ticks&quot;: &quot;&quot;}}}], &quot;histogram&quot;: [{&quot;marker&quot;: {&quot;p
View raw

(Sorry about that, but we can’t show files that are this big right now.)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment