Кластеризация (или кластерный анализ) — это задача разбиения множества объектов на группы, называемые кластерами. Внутри каждой группы должны оказаться «похожие» объекты, а объекты разных групп должны быть как можно более отличны. Главное отличие кластеризации от классификации состоит в том, что перечень групп не задан и определяется в процессе работы алгоритма.
В этом примере будет показано, как выполнить кластеризацию с использованием метода K-средних (K-means) и метода нечёткой кластеризации (C-means).
Подключение необходимых библиотек:
Загрузка набора данных для кластерного анализа:
Определение признаков объектов наблюдений из набора данных в отдельную переменную:
Визуализация исходных данных на трёхмерном графике:
Преобразование в двухмерный график для дальнейшего сравнения результатов работы кластеризации с исходными данными:
Подготовка данных в формат, приемлимый для обработки методами кластеризации:
Out[0]:
4×150 Matrix{Float64}:
5.1 4.9 4.7 4.6 5.0 5.4 4.6 5.0 … 6.8 6.7 6.7 6.3 6.5 6.2 5.9
3.5 3.0 3.2 3.1 3.6 3.9 3.4 3.4 3.2 3.3 3.0 2.5 3.0 3.4 3.0
1.4 1.4 1.3 1.5 1.4 1.7 1.4 1.5 5.9 5.7 5.2 5.0 5.2 5.4 5.1
0.2 0.2 0.2 0.2 0.2 0.4 0.3 0.2 2.3 2.5 2.3 1.9 2.0 2.3 1.8
Один из наиболее популярных методов кластеризации — это метод K-средних (K-means). Основная идея метода — итеративное повторение двух шагов:
- Распределение объектов выборки по кластерам;
- Пересчёт центров кластеров.
Применение метода кластеризации к исходным данным:
Визуализация решения с помощью точечного графика:
Параметр assignments в переменной, содержащей результаты (result_kmeans), содержит столбец с номерами кластеров, присвоенных каждому наблюдению. Цвет точки на графике соответствует номеру конкретного кластера.
Сравнение результатов работы алгоритма K-средних с исходными данными:
Графики показывают удовлетворительный результат работы алгоритма, наблюдения разбиты по кластерам, которые достаточно близки с исходным данным.
Метод нечёткой оптимизации¶
Метод нечеткой кластеризации можно рассматривать как усовершенствованный метод k-средних, при котором для каждого элемента из рассматриваемого множества рассчитывается степень его принадлежности каждому из кластеров.
Применение метода кластеризации к исходным данным:
Iters center-change
----------------------------
1 7.771477e+00
2 4.739898e-01
3 1.200676e+00
4 6.755399e-01
5 3.645266e-01
6 2.000300e-01
7 8.829159e-02
8 4.021639e-02
9 2.069955e-02
10 1.182799e-02
11 7.198234e-03
12 4.523367e-03
13 2.885398e-03
14 1.852891e-03
15 1.193257e-03
16 7.693420e-04
Fuzzy C-means converged with 16 iterations (δ = 0.0007693420314963082)
Out[0]:
FuzzyCMeansResult: 3 clusters for 150 points in 4 dimensions (converged in 16 iterations)
Расчёт центров трёх кластеров по четырём признакам объектов наблюдений:
Out[0]:
4×3 Matrix{Float64}:
5.00396 5.88825 6.77419
3.41412 2.76082 3.05214
1.48276 4.36295 5.64575
0.253522 1.3968 2.05315
Расчёт весов (степеней принадлежности к конкретному кластеру) объектов наблюдений:
Out[0]:
150×3 Matrix{Float64}:
0.996624 0.00230446 0.00107189
0.975835 0.016663 0.00750243
0.979814 0.0137683 0.00641748
0.967404 0.0224829 0.0101134
0.99447 0.0037622 0.00176788
0.934536 0.0448343 0.0206299
0.97948 0.0140129 0.00650756
0.999547 0.000311776 0.000141288
0.930335 0.0477519 0.0219135
0.982709 0.0119456 0.00534496
0.968026 0.0217691 0.0102053
0.99213 0.00543676 0.0024328
0.97062 0.020198 0.00918222
⋮
0.0217694 0.748803 0.229428
0.00347922 0.0288342 0.967687
0.00507985 0.0376451 0.957275
0.0153794 0.129099 0.855522
0.0293134 0.614578 0.356108
0.00527622 0.0338633 0.96086
0.00971574 0.0631961 0.927088
0.0112318 0.105921 0.882848
0.0257965 0.506297 0.467907
0.0120658 0.155488 0.832446
0.0215546 0.188514 0.789932
0.0269334 0.580575 0.392492
Число от 0 до 1 характеризует близость к центру кластера, где 1 - максимальная принадлежность (нахождение в центре), а 0 - максимальное удаление от центра.
Визуализация результатов работы метода нечёткой логики:
На первых трёх графиках представлены результаты работы метода нечёткой логики, где цветовая шкала показывает степень принадлежности к конкретному кластеру.
На последнем графике - исходные (достоверные) данные.
Наведя курсор мыши сначала на график с исходными данными, а затем на графики с полученными, с помощью метода, точками, можно сопоставить результаты и визуально оценить точность работы метода.
В данном примере были рассмотрены два самых часто применяемых метода кластеризации. Функции, с помощью которых реализовывались эти методы, были вызваны из библиотеки Clustering.jl, которая также предоставляет множество других, более продвинутых методов.
Результаты, полученные в ходе их применения, хороши, но не идеальны, для улучшения качества работы алгоритмов требуется больше данных.
{"id": "bb6eed11-4b7a-46d2-bb0d-58079931c6c9", "data": [{"showlegend": true, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "zaxis": "z", "legendgroup": "y1", "z": [1.4, 1.4, 1.3, 1.5, 1.4, 1.7, 1.4, 1.5, 1.4, 1.5, 1.5, 1.6, 1.4, 1.1, 1.2, 1.5, 1.3, 1.4, 1.7, 1.5, 1.7, 1.5, 1, 1.7, 1.9, 1.6, 1.6, 1.5, 1.4, 1.6, 1.6, 1.5, 1.5, 1.4, 1.5, 1.2, 1.3, 1.4, 1.3, 1.5, 1.3, 1.3, 1.3, 1.6, 1.9, 1.4, 1.6, 1.4, 1.5, 1.4], "marker": {"symbol": "circle", "color": "rgba(255, 0, 0, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "y": [3.5, 3, 3.2, 3.1, 3.6, 3.9, 3.4, 3.4, 2.9, 3.1, 3.7, 3.4, 3, 3, 4, 4.4, 3.9, 3.5, 3.8, 3.8, 3.4, 3.7, 3.6, 3.3, 3.4, 3, 3.4, 3.5, 3.4, 3.2, 3.1, 3.4, 4.1, 4.2, 3.1, 3.2, 3.5, 3.6, 3, 3.4, 3.5, 2.3, 3.2, 3.5, 3.8, 3, 3.8, 3.2, 3.7, 3.3], "type": "scatter3d", "scene": "scene", "x": [5.1, 4.9, 4.7, 4.6, 5, 5.4, 4.6, 5, 4.4, 4.9, 5.4, 4.8, 4.8, 4.3, 5.8, 5.7, 5.4, 5.1, 5.7, 5.1, 5.4, 5.1, 4.6, 5.1, 4.8, 5, 5, 5.2, 5.2, 4.7, 4.8, 5.4, 5.2, 5.5, 4.9, 5, 5.5, 4.9, 4.4, 5.1, 5, 4.5, 4.4, 5, 5.1, 4.8, 5.1, 4.6, 5.3, 5]}, {"showlegend": true, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y2", "zmin": null, "yaxis": "y", "zaxis": "z", "legendgroup": "y2", "z": [4.7, 4.5, 4.9, 4, 4.6, 4.5, 4.7, 3.3, 4.6, 3.9, 3.5, 4.2, 4, 4.7, 3.6, 4.4, 4.5, 4.1, 4.5, 3.9, 4.8, 4, 4.9, 4.7, 4.3, 4.4, 4.8, 5, 4.5, 3.5, 3.8, 3.7, 3.9, 5.1, 4.5, 4.5, 4.7, 4.4, 4.1, 4, 4.4, 4.6, 4, 3.3, 4.2, 4.2, 4.2, 4.3, 3, 4.1], "marker": {"symbol": "circle", "color": "rgba(0, 0, 255, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "y": [3.2, 3.2, 3.1, 2.3, 2.8, 2.8, 3.3, 2.4, 2.9, 2.7, 2, 3, 2.2, 2.9, 2.9, 3.1, 3, 2.7, 2.2, 2.5, 3.2, 2.8, 2.5, 2.8, 2.9, 3, 2.8, 3, 2.9, 2.6, 2.4, 2.4, 2.7, 2.7, 3, 3.4, 3.1, 2.3, 3, 2.5, 2.6, 3, 2.6, 2.3, 2.7, 3, 2.9, 2.9, 2.5, 2.8], "type": "scatter3d", "scene": "scene", "x": [7, 6.4, 6.9, 5.5, 6.5, 5.7, 6.3, 4.9, 6.6, 5.2, 5, 5.9, 6, 6.1, 5.6, 6.7, 5.6, 5.8, 6.2, 5.6, 5.9, 6.1, 6.3, 6.1, 6.4, 6.6, 6.8, 6.7, 6, 5.7, 5.5, 5.5, 5.8, 6, 5.4, 6, 6.7, 6.3, 5.6, 5.5, 5.5, 6.1, 5.8, 5, 5.6, 5.7, 5.7, 6.2, 5.1, 5.7]}, {"showlegend": true, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y3", "zmin": null, "yaxis": "y", "zaxis": "z", "legendgroup": "y3", "z": [6, 5.1, 5.9, 5.6, 5.8, 6.6, 4.5, 6.3, 5.8, 6.1, 5.1, 5.3, 5.5, 5, 5.1, 5.3, 5.5, 6.7, 6.9, 5, 5.7, 4.9, 6.7, 4.9, 5.7, 6, 4.8, 4.9, 5.6, 5.8, 6.1, 6.4, 5.6, 5.1, 5.6, 6.1, 5.6, 5.5, 4.8, 5.4, 5.6, 5.1, 5.1, 5.9, 5.7, 5.2, 5, 5.2, 5.4, 5.1], "marker": {"symbol": "circle", "color": "rgba(0, 128, 0, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "y": [3.3, 2.7, 3, 2.9, 3, 3, 2.5, 2.9, 2.5, 3.6, 3.2, 2.7, 3, 2.5, 2.8, 3.2, 3, 3.8, 2.6, 2.2, 3.2, 2.8, 2.8, 2.7, 3.3, 3.2, 2.8, 3, 2.8, 3, 2.8, 3.8, 2.8, 2.8, 2.6, 3, 3.4, 3.1, 3, 3.1, 3.1, 3.1, 2.7, 3.2, 3.3, 3, 2.5, 3, 3.4, 3], "type": "scatter3d", "scene": "scene", "x": [6.3, 5.8, 7.1, 6.3, 6.5, 7.6, 4.9, 7.3, 6.7, 7.2, 6.5, 6.4, 6.8, 5.7, 5.8, 6.4, 6.5, 7.7, 7.7, 6, 6.9, 5.6, 7.7, 6.3, 6.7, 7.2, 6.2, 6.1, 6.4, 7.2, 7.4, 7.9, 6.4, 6.3, 6.1, 7.7, 6.3, 6.4, 6, 6.9, 6.7, 6.9, 5.8, 6.8, 6.7, 6.7, 6.3, 6.5, 6.2, 5.9]}], "config": {"showlegend": true, "paper_bgcolor": "rgba(255, 255, 255, 1.000)", "annotations": [], "height": 500, "margin": {"l": 0, "b": 20, "r": 0, "t": 20}, "plot_bgcolor": "rgba(255, 255, 255, 1.000)", "scene": {"camera": {"up": {"x": 0, "y": 0, "z": 1}, "center": {"x": 0, "y": 0, "z": 0}, "eye": {"x": 1.3791904857816042, "y": -2.203997866678291, "z": -0.015066771619790158}, "projection": {"type": "perspective"}}, "xaxis": {"tickangle": 0, "showline": true, "gridcolor": "rgba(0, 0, 0, 0.1)", "showticklabels": true, "gridwidth": 0.5, "visible": true, "ticks": "inside", "range": [4.191999999999999, 8.008], "tickmode": "array", "tickvals": [5, 6, 7, 8], "tickcolor": "rgb(0, 0, 0)", "ticktext": ["5", "6", "7", "8"], "linecolor": "rgba(0, 0, 0, 1)", "showgrid": true, "zeroline": false, "type": "linear", "tickfont": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "title": {"text": "", "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}}, "zerolinecolor": "rgba(0, 0, 0, 1)", "mirror": false}, "domain": {"y": [0.03762029746281716, 0.9901574803149606], "x": [0.05100612423447069, 0.9934383202099737]}, "yaxis": {"tickangle": 0, "showline": true, "gridcolor": "rgba(0, 0, 0, 0.1)", "showticklabels": true, "gridwidth": 0.5, "visible": true, "ticks": "inside", "range": [1.928, 4.472], "tickmode": "array", "tickvals": [2, 2.5, 3, 3.5, 4], "tickcolor": "rgb(0, 0, 0)", "ticktext": ["2.0", "2.5", "3.0", "3.5", "4.0"], "linecolor": "rgba(0, 0, 0, 1)", "showgrid": true, "zeroline": false, "type": "linear", "tickfont": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "title": {"text": "", "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}}, "zerolinecolor": "rgba(0, 0, 0, 1)", "mirror": false}, "zaxis": {"tickangle": 0, "showline": true, "gridcolor": "rgba(0, 0, 0, 0.1)", "showticklabels": true, "gridwidth": 0.5, "visible": true, "ticks": "inside", "range": [0.823, 7.077], "tickmode": "array", "tickvals": [1, 2, 3, 4, 5, 6, 7], "tickcolor": "rgb(0, 0, 0)", "ticktext": ["1", "2", "3", "4", "5", "6", "7"], "linecolor": "rgba(0, 0, 0, 1)", "showgrid": true, "zeroline": false, "type": "linear", "tickfont": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "title": {"text": "", "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}}, "zerolinecolor": "rgba(0, 0, 0, 1)", "mirror": false}, "aspectratio": {"x": 0.9709135960857954, "y": 0.6472757307238636, "z": 1.5912195046961646}, "aspectmode": "auto"}, "legend": {"yanchor": "auto", "xanchor": "auto", "bordercolor": "rgba(0, 0, 0, 1)", "bgcolor": "rgba(255, 255, 255, 1.000)", "borderwidth": 1, "tracegroupgap": 0, "y": 1, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "title": {"font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}, "text": ""}, "traceorder": "normal", "x": 1}, "width": 991.53125}}
{"id": "c807e7e8-53c0-4885-9e79-15429cde906c", "data": [{"showlegend": true, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(187, 55, 85, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.5, 3.5, 3.5], "type": "scatter", "x": [5.1, 5.1, 5.1], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(187, 55, 85, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3, 3, 3], "type": "scatter", "x": [4.9, 4.9, 4.9], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(187, 55, 85, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.2, 3.2, 3.2], "type": "scatter", "x": [4.7, 4.7, 4.7], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(187, 55, 85, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.1, 3.1, 3.1], "type": "scatter", "x": [4.6, 4.6, 4.6], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(187, 55, 85, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.6, 3.6, 3.6], "type": "scatter", "x": [5, 5, 5], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(187, 55, 85, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.9, 3.9, 3.9], "type": "scatter", "x": [5.4, 5.4, 5.4], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(187, 55, 85, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.4, 3.4, 3.4], "type": "scatter", "x": [4.6, 4.6, 4.6], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(187, 55, 85, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.4, 3.4, 3.4], "type": "scatter", "x": [5, 5, 5], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(187, 55, 85, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [2.9, 2.9, 2.9], "type": "scatter", "x": [4.4, 4.4, 4.4], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(187, 55, 85, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.1, 3.1, 3.1], "type": "scatter", "x": [4.9, 4.9, 4.9], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(187, 55, 85, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.7, 3.7, 3.7], "type": "scatter", "x": [5.4, 5.4, 5.4], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(187, 55, 85, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.4, 3.4, 3.4], "type": "scatter", "x": [4.8, 4.8, 4.8], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(187, 55, 85, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3, 3, 3], "type": "scatter", "x": [4.8, 4.8, 4.8], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(187, 55, 85, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3, 3, 3], "type": "scatter", "x": [4.3, 4.3, 4.3], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(187, 55, 85, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [4, 4, 4], "type": "scatter", "x": [5.8, 5.8, 5.8], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(187, 55, 85, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [4.4, 4.4, 4.4], "type": "scatter", "x": [5.7, 5.7, 5.7], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(187, 55, 85, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.9, 3.9, 3.9], "type": "scatter", "x": [5.4, 5.4, 5.4], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(187, 55, 85, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.5, 3.5, 3.5], "type": "scatter", "x": [5.1, 5.1, 5.1], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(187, 55, 85, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.8, 3.8, 3.8], "type": "scatter", "x": [5.7, 5.7, 5.7], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(187, 55, 85, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.8, 3.8, 3.8], "type": "scatter", "x": [5.1, 5.1, 5.1], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(187, 55, 85, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.4, 3.4, 3.4], "type": "scatter", "x": [5.4, 5.4, 5.4], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(187, 55, 85, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.7, 3.7, 3.7], "type": "scatter", "x": [5.1, 5.1, 5.1], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(187, 55, 85, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.6, 3.6, 3.6], "type": "scatter", "x": [4.6, 4.6, 4.6], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(187, 55, 85, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.3, 3.3, 3.3], "type": "scatter", "x": [5.1, 5.1, 5.1], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(187, 55, 85, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.4, 3.4, 3.4], "type": "scatter", "x": [4.8, 4.8, 4.8], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(187, 55, 85, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3, 3, 3], "type": "scatter", "x": [5, 5, 5], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(187, 55, 85, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.4, 3.4, 3.4], "type": "scatter", "x": [5, 5, 5], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(187, 55, 85, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.5, 3.5, 3.5], "type": "scatter", "x": [5.2, 5.2, 5.2], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(187, 55, 85, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.4, 3.4, 3.4], "type": "scatter", "x": [5.2, 5.2, 5.2], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(187, 55, 85, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.2, 3.2, 3.2], "type": "scatter", "x": [4.7, 4.7, 4.7], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(187, 55, 85, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.1, 3.1, 3.1], "type": "scatter", "x": [4.8, 4.8, 4.8], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(187, 55, 85, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.4, 3.4, 3.4], "type": "scatter", "x": [5.4, 5.4, 5.4], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(187, 55, 85, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [4.1, 4.1, 4.1], "type": "scatter", "x": [5.2, 5.2, 5.2], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(187, 55, 85, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [4.2, 4.2, 4.2], "type": "scatter", "x": [5.5, 5.5, 5.5], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(187, 55, 85, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.1, 3.1, 3.1], "type": "scatter", "x": [4.9, 4.9, 4.9], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(187, 55, 85, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.2, 3.2, 3.2], "type": "scatter", "x": [5, 5, 5], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(187, 55, 85, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.5, 3.5, 3.5], "type": "scatter", "x": [5.5, 5.5, 5.5], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(187, 55, 85, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.6, 3.6, 3.6], "type": "scatter", "x": [4.9, 4.9, 4.9], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(187, 55, 85, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3, 3, 3], "type": "scatter", "x": [4.4, 4.4, 4.4], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(187, 55, 85, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.4, 3.4, 3.4], "type": "scatter", "x": [5.1, 5.1, 5.1], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(187, 55, 85, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.5, 3.5, 3.5], "type": "scatter", "x": [5, 5, 5], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(187, 55, 85, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [2.3, 2.3, 2.3], "type": "scatter", "x": [4.5, 4.5, 4.5], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(187, 55, 85, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.2, 3.2, 3.2], "type": "scatter", "x": [4.4, 4.4, 4.4], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(187, 55, 85, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.5, 3.5, 3.5], "type": "scatter", "x": [5, 5, 5], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(187, 55, 85, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.8, 3.8, 3.8], "type": "scatter", "x": [5.1, 5.1, 5.1], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(187, 55, 85, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3, 3, 3], "type": "scatter", "x": [4.8, 4.8, 4.8], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(187, 55, 85, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.8, 3.8, 3.8], "type": "scatter", "x": [5.1, 5.1, 5.1], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(187, 55, 85, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.2, 3.2, 3.2], "type": "scatter", "x": [4.6, 4.6, 4.6], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(187, 55, 85, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.7, 3.7, 3.7], "type": "scatter", "x": [5.3, 5.3, 5.3], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(187, 55, 85, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.3, 3.3, 3.3], "type": "scatter", "x": [5, 5, 5], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.2, 3.2, 3.2], "type": "scatter", "x": [7, 7, 7], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.2, 3.2, 3.2], "type": "scatter", "x": [6.4, 6.4, 6.4], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(252, 255, 164, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.1, 3.1, 3.1], "type": "scatter", "x": [6.9, 6.9, 6.9], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [2.3, 2.3, 2.3], "type": "scatter", "x": [5.5, 5.5, 5.5], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [2.8, 2.8, 2.8], "type": "scatter", "x": [6.5, 6.5, 6.5], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [2.8, 2.8, 2.8], "type": "scatter", "x": [5.7, 5.7, 5.7], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.3, 3.3, 3.3], "type": "scatter", "x": [6.3, 6.3, 6.3], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [2.4, 2.4, 2.4], "type": "scatter", "x": [4.9, 4.9, 4.9], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [2.9, 2.9, 2.9], "type": "scatter", "x": [6.6, 6.6, 6.6], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [2.7, 2.7, 2.7], "type": "scatter", "x": [5.2, 5.2, 5.2], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [2, 2, 2], "type": "scatter", "x": [5, 5, 5], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3, 3, 3], "type": "scatter", "x": [5.9, 5.9, 5.9], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [2.2, 2.2, 2.2], "type": "scatter", "x": [6, 6, 6], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [2.9, 2.9, 2.9], "type": "scatter", "x": [6.1, 6.1, 6.1], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [2.9, 2.9, 2.9], "type": "scatter", "x": [5.6, 5.6, 5.6], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.1, 3.1, 3.1], "type": "scatter", "x": [6.7, 6.7, 6.7], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3, 3, 3], "type": "scatter", "x": [5.6, 5.6, 5.6], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [2.7, 2.7, 2.7], "type": "scatter", "x": [5.8, 5.8, 5.8], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [2.2, 2.2, 2.2], "type": "scatter", "x": [6.2, 6.2, 6.2], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [2.5, 2.5, 2.5], "type": "scatter", "x": [5.6, 5.6, 5.6], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.2, 3.2, 3.2], "type": "scatter", "x": [5.9, 5.9, 5.9], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [2.8, 2.8, 2.8], "type": "scatter", "x": [6.1, 6.1, 6.1], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [2.5, 2.5, 2.5], "type": "scatter", "x": [6.3, 6.3, 6.3], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [2.8, 2.8, 2.8], "type": "scatter", "x": [6.1, 6.1, 6.1], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [2.9, 2.9, 2.9], "type": "scatter", "x": [6.4, 6.4, 6.4], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3, 3, 3], "type": "scatter", "x": [6.6, 6.6, 6.6], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [2.8, 2.8, 2.8], "type": "scatter", "x": [6.8, 6.8, 6.8], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(252, 255, 164, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3, 3, 3], "type": "scatter", "x": [6.7, 6.7, 6.7], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [2.9, 2.9, 2.9], "type": "scatter", "x": [6, 6, 6], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [2.6, 2.6, 2.6], "type": "scatter", "x": [5.7, 5.7, 5.7], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [2.4, 2.4, 2.4], "type": "scatter", "x": [5.5, 5.5, 5.5], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [2.4, 2.4, 2.4], "type": "scatter", "x": [5.5, 5.5, 5.5], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [2.7, 2.7, 2.7], "type": "scatter", "x": [5.8, 5.8, 5.8], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [2.7, 2.7, 2.7], "type": "scatter", "x": [6, 6, 6], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3, 3, 3], "type": "scatter", "x": [5.4, 5.4, 5.4], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.4, 3.4, 3.4], "type": "scatter", "x": [6, 6, 6], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.1, 3.1, 3.1], "type": "scatter", "x": [6.7, 6.7, 6.7], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [2.3, 2.3, 2.3], "type": "scatter", "x": [6.3, 6.3, 6.3], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3, 3, 3], "type": "scatter", "x": [5.6, 5.6, 5.6], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [2.5, 2.5, 2.5], "type": "scatter", "x": [5.5, 5.5, 5.5], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [2.6, 2.6, 2.6], "type": "scatter", "x": [5.5, 5.5, 5.5], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3, 3, 3], "type": "scatter", "x": [6.1, 6.1, 6.1], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [2.6, 2.6, 2.6], "type": "scatter", "x": [5.8, 5.8, 5.8], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [2.3, 2.3, 2.3], "type": "scatter", "x": [5, 5, 5], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [2.7, 2.7, 2.7], "type": "scatter", "x": [5.6, 5.6, 5.6], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3, 3, 3], "type": "scatter", "x": [5.7, 5.7, 5.7], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [2.9, 2.9, 2.9], "type": "scatter", "x": [5.7, 5.7, 5.7], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [2.9, 2.9, 2.9], "type": "scatter", "x": [6.2, 6.2, 6.2], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [2.5, 2.5, 2.5], "type": "scatter", "x": [5.1, 5.1, 5.1], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [2.8, 2.8, 2.8], "type": "scatter", "x": [5.7, 5.7, 5.7], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(252, 255, 164, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.3, 3.3, 3.3], "type": "scatter", "x": [6.3, 6.3, 6.3], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [2.7, 2.7, 2.7], "type": "scatter", "x": [5.8, 5.8, 5.8], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(252, 255, 164, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3, 3, 3], "type": "scatter", "x": [7.1, 7.1, 7.1], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(252, 255, 164, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [2.9, 2.9, 2.9], "type": "scatter", "x": [6.3, 6.3, 6.3], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(252, 255, 164, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3, 3, 3], "type": "scatter", "x": [6.5, 6.5, 6.5], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(252, 255, 164, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3, 3, 3], "type": "scatter", "x": [7.6, 7.6, 7.6], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [2.5, 2.5, 2.5], "type": "scatter", "x": [4.9, 4.9, 4.9], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(252, 255, 164, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [2.9, 2.9, 2.9], "type": "scatter", "x": [7.3, 7.3, 7.3], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(252, 255, 164, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [2.5, 2.5, 2.5], "type": "scatter", "x": [6.7, 6.7, 6.7], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(252, 255, 164, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.6, 3.6, 3.6], "type": "scatter", "x": [7.2, 7.2, 7.2], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(252, 255, 164, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.2, 3.2, 3.2], "type": "scatter", "x": [6.5, 6.5, 6.5], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(252, 255, 164, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [2.7, 2.7, 2.7], "type": "scatter", "x": [6.4, 6.4, 6.4], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(252, 255, 164, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3, 3, 3], "type": "scatter", "x": [6.8, 6.8, 6.8], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [2.5, 2.5, 2.5], "type": "scatter", "x": [5.7, 5.7, 5.7], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [2.8, 2.8, 2.8], "type": "scatter", "x": [5.8, 5.8, 5.8], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(252, 255, 164, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.2, 3.2, 3.2], "type": "scatter", "x": [6.4, 6.4, 6.4], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(252, 255, 164, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3, 3, 3], "type": "scatter", "x": [6.5, 6.5, 6.5], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(252, 255, 164, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.8, 3.8, 3.8], "type": "scatter", "x": [7.7, 7.7, 7.7], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(252, 255, 164, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [2.6, 2.6, 2.6], "type": "scatter", "x": [7.7, 7.7, 7.7], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [2.2, 2.2, 2.2], "type": "scatter", "x": [6, 6, 6], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(252, 255, 164, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.2, 3.2, 3.2], "type": "scatter", "x": [6.9, 6.9, 6.9], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [2.8, 2.8, 2.8], "type": "scatter", "x": [5.6, 5.6, 5.6], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(252, 255, 164, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [2.8, 2.8, 2.8], "type": "scatter", "x": [7.7, 7.7, 7.7], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [2.7, 2.7, 2.7], "type": "scatter", "x": [6.3, 6.3, 6.3], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(252, 255, 164, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.3, 3.3, 3.3], "type": "scatter", "x": [6.7, 6.7, 6.7], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(252, 255, 164, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.2, 3.2, 3.2], "type": "scatter", "x": [7.2, 7.2, 7.2], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [2.8, 2.8, 2.8], "type": "scatter", "x": [6.2, 6.2, 6.2], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3, 3, 3], "type": "scatter", "x": [6.1, 6.1, 6.1], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(252, 255, 164, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [2.8, 2.8, 2.8], "type": "scatter", "x": [6.4, 6.4, 6.4], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(252, 255, 164, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3, 3, 3], "type": "scatter", "x": [7.2, 7.2, 7.2], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(252, 255, 164, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [2.8, 2.8, 2.8], "type": "scatter", "x": [7.4, 7.4, 7.4], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(252, 255, 164, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.8, 3.8, 3.8], "type": "scatter", "x": [7.9, 7.9, 7.9], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(252, 255, 164, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [2.8, 2.8, 2.8], "type": "scatter", "x": [6.4, 6.4, 6.4], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [2.8, 2.8, 2.8], "type": "scatter", "x": [6.3, 6.3, 6.3], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(252, 255, 164, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [2.6, 2.6, 2.6], "type": "scatter", "x": [6.1, 6.1, 6.1], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(252, 255, 164, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3, 3, 3], "type": "scatter", "x": [7.7, 7.7, 7.7], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(252, 255, 164, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.4, 3.4, 3.4], "type": "scatter", "x": [6.3, 6.3, 6.3], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(252, 255, 164, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.1, 3.1, 3.1], "type": "scatter", "x": [6.4, 6.4, 6.4], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3, 3, 3], "type": "scatter", "x": [6, 6, 6], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(252, 255, 164, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.1, 3.1, 3.1], "type": "scatter", "x": [6.9, 6.9, 6.9], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(252, 255, 164, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.1, 3.1, 3.1], "type": "scatter", "x": [6.7, 6.7, 6.7], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(252, 255, 164, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.1, 3.1, 3.1], "type": "scatter", "x": [6.9, 6.9, 6.9], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [2.7, 2.7, 2.7], "type": "scatter", "x": [5.8, 5.8, 5.8], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(252, 255, 164, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.2, 3.2, 3.2], "type": "scatter", "x": [6.8, 6.8, 6.8], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(252, 255, 164, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.3, 3.3, 3.3], "type": "scatter", "x": [6.7, 6.7, 6.7], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(252, 255, 164, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3, 3, 3], "type": "scatter", "x": [6.7, 6.7, 6.7], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [2.5, 2.5, 2.5], "type": "scatter", "x": [6.3, 6.3, 6.3], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(252, 255, 164, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3, 3, 3], "type": "scatter", "x": [6.5, 6.5, 6.5], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(252, 255, 164, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.4, 3.4, 3.4], "type": "scatter", "x": [6.2, 6.2, 6.2], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3, 3, 3], "type": "scatter", "x": [5.9, 5.9, 5.9], "zaxis": null, "z": null}, {"xaxis": "x", "colorbar": {"title": {"text": ""}}, "yaxis": "y", "x": [5.1, 5.1, 5.1], "showlegend": false, "mode": "markers", "name": "y1", "zmin": 1, "marker": {"color": [0.5], "cmin": 1, "opacity": 1e-10, "size": 1e-10, "colorscale": [[0, "rgba(0, 0, 4, 1.000)"], [0.00392156862745098, "rgba(1, 0, 5, 1.000)"], [0.00784313725490196, "rgba(1, 1, 6, 1.000)"], [0.011764705882352941, "rgba(1, 1, 8, 1.000)"], [0.01568627450980392, "rgba(2, 1, 10, 1.000)"], [0.0196078431372549, "rgba(2, 2, 12, 1.000)"], [0.023529411764705882, "rgba(2, 2, 14, 1.000)"], [0.027450980392156862, "rgba(3, 2, 16, 1.000)"], [0.03137254901960784, "rgba(4, 3, 18, 1.000)"], [0.03529411764705882, "rgba(4, 3, 20, 1.000)"], [0.0392156862745098, "rgba(5, 4, 23, 1.000)"], [0.043137254901960784, "rgba(6, 4, 25, 1.000)"], [0.047058823529411764, "rgba(7, 5, 27, 1.000)"], [0.050980392156862744, "rgba(8, 5, 29, 1.000)"], [0.054901960784313725, "rgba(9, 6, 31, 1.000)"], [0.058823529411764705, "rgba(10, 7, 34, 1.000)"], [0.06274509803921569, "rgba(11, 7, 36, 1.000)"], [0.06666666666666667, "rgba(12, 8, 38, 1.000)"], [0.07058823529411765, "rgba(13, 8, 41, 1.000)"], [0.07450980392156863, "rgba(14, 9, 43, 1.000)"], [0.0784313725490196, "rgba(16, 9, 45, 1.000)"], [0.08235294117647059, "rgba(17, 10, 48, 1.000)"], [0.08627450980392157, "rgba(18, 10, 50, 1.000)"], [0.09019607843137255, "rgba(20, 11, 52, 1.000)"], [0.09411764705882353, "rgba(21, 11, 55, 1.000)"], [0.09803921568627451, "rgba(22, 11, 57, 1.000)"], [0.10196078431372549, "rgba(24, 12, 60, 1.000)"], [0.10588235294117647, "rgba(25, 12, 62, 1.000)"], [0.10980392156862745, "rgba(27, 12, 65, 1.000)"], [0.11372549019607843, "rgba(28, 12, 67, 1.000)"], [0.11764705882352941, "rgba(30, 12, 69, 1.000)"], [0.12156862745098039, "rgba(31, 12, 72, 1.000)"], [0.12549019607843137, "rgba(33, 12, 74, 1.000)"], [0.12941176470588237, "rgba(35, 12, 76, 1.000)"], [0.13333333333333333, "rgba(36, 12, 79, 1.000)"], [0.13725490196078433, "rgba(38, 12, 81, 1.000)"], [0.1411764705882353, "rgba(40, 11, 83, 1.000)"], [0.1450980392156863, "rgba(41, 11, 85, 1.000)"], [0.14901960784313725, "rgba(43, 11, 87, 1.000)"], [0.15294117647058825, "rgba(45, 11, 89, 1.000)"], [0.1568627450980392, "rgba(47, 10, 91, 1.000)"], [0.1607843137254902, "rgba(49, 10, 92, 1.000)"], [0.16470588235294117, "rgba(50, 10, 94, 1.000)"], [0.16862745098039217, "rgba(52, 10, 95, 1.000)"], [0.17254901960784313, "rgba(54, 9, 97, 1.000)"], [0.17647058823529413, "rgba(56, 9, 98, 1.000)"], [0.1803921568627451, "rgba(57, 9, 99, 1.000)"], [0.1843137254901961, "rgba(59, 9, 100, 1.000)"], [0.18823529411764706, "rgba(61, 9, 101, 1.000)"], [0.19215686274509805, "rgba(62, 9, 102, 1.000)"], [0.19607843137254902, "rgba(64, 10, 103, 1.000)"], [0.2, "rgba(66, 10, 104, 1.000)"], [0.20392156862745098, "rgba(68, 10, 104, 1.000)"], [0.20784313725490197, "rgba(69, 10, 105, 1.000)"], [0.21176470588235294, "rgba(71, 11, 106, 1.000)"], [0.21568627450980393, "rgba(73, 11, 106, 1.000)"], [0.2196078431372549, "rgba(74, 12, 107, 1.000)"], [0.2235294117647059, "rgba(76, 12, 107, 1.000)"], [0.22745098039215686, "rgba(77, 13, 108, 1.000)"], [0.23137254901960785, "rgba(79, 13, 108, 1.000)"], [0.23529411764705882, "rgba(81, 14, 108, 1.000)"], [0.23921568627450981, "rgba(82, 14, 109, 1.000)"], [0.24313725490196078, "rgba(84, 15, 109, 1.000)"], [0.24705882352941178, "rgba(85, 15, 109, 1.000)"], [0.25098039215686274, "rgba(87, 16, 110, 1.000)"], [0.2549019607843137, "rgba(89, 16, 110, 1.000)"], [0.25882352941176473, "rgba(90, 17, 110, 1.000)"], [0.2627450980392157, "rgba(92, 18, 110, 1.000)"], [0.26666666666666666, "rgba(93, 18, 110, 1.000)"], [0.27058823529411763, "rgba(95, 19, 110, 1.000)"], [0.27450980392156865, "rgba(97, 19, 110, 1.000)"], [0.2784313725490196, "rgba(98, 20, 110, 1.000)"], [0.2823529411764706, "rgba(100, 21, 110, 1.000)"], [0.28627450980392155, "rgba(101, 21, 110, 1.000)"], [0.2901960784313726, "rgba(103, 22, 110, 1.000)"], [0.29411764705882354, "rgba(105, 22, 110, 1.000)"], [0.2980392156862745, "rgba(106, 23, 110, 1.000)"], [0.30196078431372547, "rgba(108, 24, 110, 1.000)"], [0.3058823529411765, "rgba(109, 24, 110, 1.000)"], [0.30980392156862746, "rgba(111, 25, 110, 1.000)"], [0.3137254901960784, "rgba(113, 25, 110, 1.000)"], [0.3176470588235294, "rgba(114, 26, 110, 1.000)"], [0.3215686274509804, "rgba(116, 26, 110, 1.000)"], [0.3254901960784314, "rgba(117, 27, 110, 1.000)"], [0.32941176470588235, "rgba(119, 28, 109, 1.000)"], [0.3333333333333333, "rgba(120, 28, 109, 1.000)"], [0.33725490196078434, "rgba(122, 29, 109, 1.000)"], [0.3411764705882353, "rgba(124, 29, 109, 1.000)"], [0.34509803921568627, "rgba(125, 30, 109, 1.000)"], [0.34901960784313724, "rgba(127, 30, 108, 1.000)"], [0.35294117647058826, "rgba(128, 31, 108, 1.000)"], [0.3568627450980392, "rgba(130, 32, 108, 1.000)"], [0.3607843137254902, "rgba(132, 32, 107, 1.000)"], [0.36470588235294116, "rgba(133, 33, 107, 1.000)"], [0.3686274509803922, "rgba(135, 33, 107, 1.000)"], [0.37254901960784315, "rgba(136, 34, 106, 1.000)"], [0.3764705882352941, "rgba(138, 34, 106, 1.000)"], [0.3803921568627451, "rgba(140, 35, 105, 1.000)"], [0.3843137254901961, "rgba(141, 35, 105, 1.000)"], [0.38823529411764707, "rgba(143, 36, 105, 1.000)"], [0.39215686274509803, "rgba(144, 37, 104, 1.000)"], [0.396078431372549, "rgba(146, 37, 104, 1.000)"], [0.4, "rgba(147, 38, 103, 1.000)"], [0.403921568627451, "rgba(149, 38, 103, 1.000)"], [0.40784313725490196, "rgba(151, 39, 102, 1.000)"], [0.4117647058823529, "rgba(152, 39, 102, 1.000)"], [0.41568627450980394, "rgba(154, 40, 101, 1.000)"], [0.4196078431372549, "rgba(155, 41, 100, 1.000)"], [0.4235294117647059, "rgba(157, 41, 100, 1.000)"], [0.42745098039215684, "rgba(159, 42, 99, 1.000)"], [0.43137254901960786, "rgba(160, 42, 99, 1.000)"], [0.43529411764705883, "rgba(162, 43, 98, 1.000)"], [0.4392156862745098, "rgba(163, 44, 97, 1.000)"], [0.44313725490196076, "rgba(165, 44, 96, 1.000)"], [0.4470588235294118, "rgba(166, 45, 96, 1.000)"], [0.45098039215686275, "rgba(168, 46, 95, 1.000)"], [0.4549019607843137, "rgba(169, 46, 94, 1.000)"], [0.4588235294117647, "rgba(171, 47, 94, 1.000)"], [0.4627450980392157, "rgba(173, 48, 93, 1.000)"], [0.4666666666666667, "rgba(174, 48, 92, 1.000)"], [0.47058823529411764, "rgba(176, 49, 91, 1.000)"], [0.4745098039215686, "rgba(177, 50, 90, 1.000)"], [0.47843137254901963, "rgba(179, 50, 90, 1.000)"], [0.4823529411764706, "rgba(180, 51, 89, 1.000)"], [0.48627450980392156, "rgba(182, 52, 88, 1.000)"], [0.49019607843137253, "rgba(183, 53, 87, 1.000)"], [0.49411764705882355, "rgba(185, 53, 86, 1.000)"], [0.4980392156862745, "rgba(186, 54, 85, 1.000)"], [0.5019607843137255, "rgba(188, 55, 84, 1.000)"], [0.5058823529411764, "rgba(189, 56, 83, 1.000)"], [0.5098039215686274, "rgba(191, 57, 82, 1.000)"], [0.5137254901960784, "rgba(192, 58, 81, 1.000)"], [0.5176470588235295, "rgba(193, 58, 80, 1.000)"], [0.5215686274509804, "rgba(195, 59, 79, 1.000)"], [0.5254901960784314, "rgba(196, 60, 78, 1.000)"], [0.5294117647058824, "rgba(198, 61, 77, 1.000)"], [0.5333333333333333, "rgba(199, 62, 76, 1.000)"], [0.5372549019607843, "rgba(200, 63, 75, 1.000)"], [0.5411764705882353, "rgba(202, 64, 74, 1.000)"], [0.5450980392156862, "rgba(203, 65, 73, 1.000)"], [0.5490196078431373, "rgba(204, 66, 72, 1.000)"], [0.5529411764705883, "rgba(206, 67, 71, 1.000)"], [0.5568627450980392, "rgba(207, 68, 70, 1.000)"], [0.5607843137254902, "rgba(208, 69, 69, 1.000)"], [0.5647058823529412, "rgba(210, 70, 68, 1.000)"], [0.5686274509803921, "rgba(211, 71, 67, 1.000)"], [0.5725490196078431, "rgba(212, 72, 66, 1.000)"], [0.5764705882352941, "rgba(213, 74, 65, 1.000)"], [0.5803921568627451, "rgba(215, 75, 63, 1.000)"], [0.5843137254901961, "rgba(216, 76, 62, 1.000)"], [0.5882352941176471, "rgba(217, 77, 61, 1.000)"], [0.592156862745098, "rgba(218, 78, 60, 1.000)"], [0.596078431372549, "rgba(219, 80, 59, 1.000)"], [0.6, "rgba(221, 81, 58, 1.000)"], [0.6039215686274509, "rgba(222, 82, 56, 1.000)"], [0.6078431372549019, "rgba(223, 83, 55, 1.000)"], [0.611764705882353, "rgba(224, 85, 54, 1.000)"], [0.615686274509804, "rgba(225, 86, 53, 1.000)"], [0.6196078431372549, "rgba(226, 87, 52, 1.000)"], [0.6235294117647059, "rgba(227, 89, 51, 1.000)"], [0.6274509803921569, "rgba(228, 90, 49, 1.000)"], [0.6313725490196078, "rgba(229, 92, 48, 1.000)"], [0.6352941176470588, "rgba(230, 93, 47, 1.000)"], [0.6392156862745098, "rgba(231, 94, 46, 1.000)"], [0.6431372549019608, "rgba(232, 96, 45, 1.000)"], [0.6470588235294118, "rgba(233, 97, 43, 1.000)"], [0.6509803921568628, "rgba(234, 99, 42, 1.000)"], [0.6549019607843137, "rgba(235, 100, 41, 1.000)"], [0.6588235294117647, "rgba(235, 102, 40, 1.000)"], [0.6627450980392157, "rgba(236, 103, 38, 1.000)"], [0.6666666666666666, "rgba(237, 105, 37, 1.000)"], [0.6705882352941176, "rgba(238, 106, 36, 1.000)"], [0.6745098039215687, "rgba(239, 108, 35, 1.000)"], [0.6784313725490196, "rgba(239, 110, 33, 1.000)"], [0.6823529411764706, "rgba(240, 111, 32, 1.000)"], [0.6862745098039216, "rgba(241, 113, 31, 1.000)"], [0.6901960784313725, "rgba(241, 115, 29, 1.000)"], [0.6941176470588235, "rgba(242, 116, 28, 1.000)"], [0.6980392156862745, "rgba(243, 118, 27, 1.000)"], [0.7019607843137254, "rgba(243, 120, 25, 1.000)"], [0.7058823529411765, "rgba(244, 121, 24, 1.000)"], [0.7098039215686275, "rgba(245, 123, 23, 1.000)"], [0.7137254901960784, "rgba(245, 125, 21, 1.000)"], [0.7176470588235294, "rgba(246, 126, 20, 1.000)"], [0.7215686274509804, "rgba(246, 128, 19, 1.000)"], [0.7254901960784313, "rgba(247, 130, 18, 1.000)"], [0.7294117647058823, "rgba(247, 132, 16, 1.000)"], [0.7333333333333333, "rgba(248, 133, 15, 1.000)"], [0.7372549019607844, "rgba(248, 135, 14, 1.000)"], [0.7411764705882353, "rgba(248, 137, 12, 1.000)"], [0.7450980392156863, "rgba(249, 139, 11, 1.000)"], [0.7490196078431373, "rgba(249, 140, 10, 1.000)"], [0.7529411764705882, "rgba(249, 142, 9, 1.000)"], [0.7568627450980392, "rgba(250, 144, 8, 1.000)"], [0.7607843137254902, "rgba(250, 146, 7, 1.000)"], [0.7647058823529411, "rgba(250, 148, 7, 1.000)"], [0.7686274509803922, "rgba(251, 150, 6, 1.000)"], [0.7725490196078432, "rgba(251, 151, 6, 1.000)"], [0.7764705882352941, "rgba(251, 153, 6, 1.000)"], [0.7803921568627451, "rgba(251, 155, 6, 1.000)"], [0.7843137254901961, "rgba(251, 157, 7, 1.000)"], [0.788235294117647, "rgba(252, 159, 7, 1.000)"], [0.792156862745098, "rgba(252, 161, 8, 1.000)"], [0.796078431372549, "rgba(252, 163, 9, 1.000)"], [0.8, "rgba(252, 165, 10, 1.000)"], [0.803921568627451, "rgba(252, 166, 12, 1.000)"], [0.807843137254902, "rgba(252, 168, 13, 1.000)"], [0.8117647058823529, "rgba(252, 170, 15, 1.000)"], [0.8156862745098039, "rgba(252, 172, 17, 1.000)"], [0.8196078431372549, "rgba(252, 174, 18, 1.000)"], [0.8235294117647058, "rgba(252, 176, 20, 1.000)"], [0.8274509803921568, "rgba(252, 178, 22, 1.000)"], [0.8313725490196079, "rgba(252, 180, 24, 1.000)"], [0.8352941176470589, "rgba(251, 182, 26, 1.000)"], [0.8392156862745098, "rgba(251, 184, 29, 1.000)"], [0.8431372549019608, "rgba(251, 186, 31, 1.000)"], [0.8470588235294118, "rgba(251, 188, 33, 1.000)"], [0.8509803921568627, "rgba(251, 190, 35, 1.000)"], [0.8549019607843137, "rgba(250, 192, 38, 1.000)"], [0.8588235294117647, "rgba(250, 194, 40, 1.000)"], [0.8627450980392157, "rgba(250, 196, 42, 1.000)"], [0.8666666666666667, "rgba(250, 198, 45, 1.000)"], [0.8705882352941177, "rgba(249, 199, 47, 1.000)"], [0.8745098039215686, "rgba(249, 201, 50, 1.000)"], [0.8784313725490196, "rgba(249, 203, 53, 1.000)"], [0.8823529411764706, "rgba(248, 205, 55, 1.000)"], [0.8862745098039215, "rgba(248, 207, 58, 1.000)"], [0.8901960784313725, "rgba(247, 209, 61, 1.000)"], [0.8941176470588236, "rgba(247, 211, 64, 1.000)"], [0.8980392156862745, "rgba(246, 213, 67, 1.000)"], [0.9019607843137255, "rgba(246, 215, 70, 1.000)"], [0.9058823529411765, "rgba(245, 217, 73, 1.000)"], [0.9098039215686274, "rgba(245, 219, 76, 1.000)"], [0.9137254901960784, "rgba(244, 221, 79, 1.000)"], [0.9176470588235294, "rgba(244, 223, 83, 1.000)"], [0.9215686274509803, "rgba(244, 225, 86, 1.000)"], [0.9254901960784314, "rgba(243, 227, 90, 1.000)"], [0.9294117647058824, "rgba(243, 229, 93, 1.000)"], [0.9333333333333333, "rgba(242, 230, 97, 1.000)"], [0.9372549019607843, "rgba(242, 232, 101, 1.000)"], [0.9411764705882353, "rgba(242, 234, 105, 1.000)"], [0.9450980392156862, "rgba(241, 236, 109, 1.000)"], [0.9490196078431372, "rgba(241, 237, 113, 1.000)"], [0.9529411764705882, "rgba(241, 239, 117, 1.000)"], [0.9568627450980393, "rgba(241, 241, 121, 1.000)"], [0.9607843137254902, "rgba(242, 242, 125, 1.000)"], [0.9647058823529412, "rgba(242, 244, 130, 1.000)"], [0.9686274509803922, "rgba(243, 245, 134, 1.000)"], [0.9725490196078431, "rgba(243, 246, 138, 1.000)"], [0.9764705882352941, "rgba(244, 248, 142, 1.000)"], [0.9803921568627451, "rgba(245, 249, 146, 1.000)"], [0.984313725490196, "rgba(246, 250, 150, 1.000)"], [0.9882352941176471, "rgba(248, 251, 154, 1.000)"], [0.9921568627450981, "rgba(249, 252, 157, 1.000)"], [0.996078431372549, "rgba(250, 253, 161, 1.000)"], [1, "rgba(252, 255, 164, 1.000)"]], "cmax": 3, "showscale": false}, "zmax": 3, "y": [3.5, 3.5, 3.5], "type": "scatter", "hoverinfo": "none", "zaxis": null, "z": null}], "config": {"showlegend": false, "xaxis": {"showticklabels": true, "gridwidth": 0.5, "range": [4.191999999999999, 8.008], "domain": [0.05100612423447069, 0.9934383202099737], "mirror": false, "tickangle": 0, "showline": true, "zeroline": false, "tickfont": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "zerolinecolor": "rgba(0, 0, 0, 1)", "anchor": "y", "visible": true, "ticks": "inside", "tickmode": "array", "linecolor": "rgba(0, 0, 0, 1)", "showgrid": true, "title": {"text": "", "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}}, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickcolor": "rgb(0, 0, 0)", "type": "linear"}, "paper_bgcolor": "rgba(255, 255, 255, 1.000)", "annotations": [], "height": 500, "margin": {"l": 0, "b": 20, "r": 0, "t": 20}, "plot_bgcolor": "rgba(255, 255, 255, 1.000)", "yaxis": {"showticklabels": true, "gridwidth": 0.5, "range": [1.928, 4.472], "domain": [0.03762029746281716, 0.9901574803149606], "mirror": false, "tickangle": 0, "showline": true, "zeroline": false, "tickfont": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "zerolinecolor": "rgba(0, 0, 0, 1)", "anchor": "x", "visible": true, "ticks": "inside", "tickmode": "array", "linecolor": "rgba(0, 0, 0, 1)", "showgrid": true, "title": {"text": "", "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}}, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickcolor": "rgb(0, 0, 0)", "type": "linear"}, "width": 991.53125}}
{"id": "dae321ac-d01c-4429-8123-f78c26e1ec46", "data": [{"showlegend": true, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "setosa", "zmin": null, "yaxis": "y", "legendgroup": "setosa", "marker": {"symbol": "circle", "color": "rgba(255, 0, 0, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": null, "y": [3.5, 3.5, 3, 3.2, 3.1, 3.6, 3.9, 3.4, 3.4, 2.9, 3.1, 3.7, 3.4, 3, 3, 4, 4.4, 3.9, 3.5, 3.8, 3.8, 3.4, 3.7, 3.6, 3.3, 3.4, 3, 3.4, 3.5, 3.4, 3.2, 3.1, 3.4, 4.1, 4.2, 3.1, 3.2, 3.5, 3.6, 3, 3.4, 3.5, 2.3, 3.2, 3.5, 3.8, 3, 3.8, 3.2, 3.7, 3.3, 3.3], "type": "scatter", "x": [5.1, 5.1, 4.9, 4.7, 4.6, 5, 5.4, 4.6, 5, 4.4, 4.9, 5.4, 4.8, 4.8, 4.3, 5.8, 5.7, 5.4, 5.1, 5.7, 5.1, 5.4, 5.1, 4.6, 5.1, 4.8, 5, 5, 5.2, 5.2, 4.7, 4.8, 5.4, 5.2, 5.5, 4.9, 5, 5.5, 4.9, 4.4, 5.1, 5, 4.5, 4.4, 5, 5.1, 4.8, 5.1, 4.6, 5.3, 5, 5], "zaxis": null, "z": null}, {"showlegend": true, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "versicolor", "zmin": null, "yaxis": "y", "legendgroup": "versicolor", "marker": {"symbol": "circle", "color": "rgba(0, 0, 255, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": null, "y": [3.2, 3.2, 3.2, 3.1, 2.3, 2.8, 2.8, 3.3, 2.4, 2.9, 2.7, 2, 3, 2.2, 2.9, 2.9, 3.1, 3, 2.7, 2.2, 2.5, 3.2, 2.8, 2.5, 2.8, 2.9, 3, 2.8, 3, 2.9, 2.6, 2.4, 2.4, 2.7, 2.7, 3, 3.4, 3.1, 2.3, 3, 2.5, 2.6, 3, 2.6, 2.3, 2.7, 3, 2.9, 2.9, 2.5, 2.8, 2.8], "type": "scatter", "x": [7, 7, 6.4, 6.9, 5.5, 6.5, 5.7, 6.3, 4.9, 6.6, 5.2, 5, 5.9, 6, 6.1, 5.6, 6.7, 5.6, 5.8, 6.2, 5.6, 5.9, 6.1, 6.3, 6.1, 6.4, 6.6, 6.8, 6.7, 6, 5.7, 5.5, 5.5, 5.8, 6, 5.4, 6, 6.7, 6.3, 5.6, 5.5, 5.5, 6.1, 5.8, 5, 5.6, 5.7, 5.7, 6.2, 5.1, 5.7, 5.7], "zaxis": null, "z": null}, {"showlegend": true, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "virginica", "zmin": null, "yaxis": "y", "legendgroup": "virginica", "marker": {"symbol": "circle", "color": "rgba(0, 128, 0, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": null, "y": [3.3, 3.3, 2.7, 3, 2.9, 3, 3, 2.5, 2.9, 2.5, 3.6, 3.2, 2.7, 3, 2.5, 2.8, 3.2, 3, 3.8, 2.6, 2.2, 3.2, 2.8, 2.8, 2.7, 3.3, 3.2, 2.8, 3, 2.8, 3, 2.8, 3.8, 2.8, 2.8, 2.6, 3, 3.4, 3.1, 3, 3.1, 3.1, 3.1, 2.7, 3.2, 3.3, 3, 2.5, 3, 3.4, 3, 3], "type": "scatter", "x": [6.3, 6.3, 5.8, 7.1, 6.3, 6.5, 7.6, 4.9, 7.3, 6.7, 7.2, 6.5, 6.4, 6.8, 5.7, 5.8, 6.4, 6.5, 7.7, 7.7, 6, 6.9, 5.6, 7.7, 6.3, 6.7, 7.2, 6.2, 6.1, 6.4, 7.2, 7.4, 7.9, 6.4, 6.3, 6.1, 7.7, 6.3, 6.4, 6, 6.9, 6.7, 6.9, 5.8, 6.8, 6.7, 6.7, 6.3, 6.5, 6.2, 5.9, 5.9], "zaxis": null, "z": null}, {"showlegend": true, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(187, 55, 85, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.5, 3.5, 3.5], "type": "scatter", "x": [5.1, 5.1, 5.1], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(187, 55, 85, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3, 3, 3], "type": "scatter", "x": [4.9, 4.9, 4.9], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(187, 55, 85, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.2, 3.2, 3.2], "type": "scatter", "x": [4.7, 4.7, 4.7], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(187, 55, 85, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.1, 3.1, 3.1], "type": "scatter", "x": [4.6, 4.6, 4.6], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(187, 55, 85, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.6, 3.6, 3.6], "type": "scatter", "x": [5, 5, 5], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(187, 55, 85, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.9, 3.9, 3.9], "type": "scatter", "x": [5.4, 5.4, 5.4], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(187, 55, 85, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.4, 3.4, 3.4], "type": "scatter", "x": [4.6, 4.6, 4.6], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(187, 55, 85, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.4, 3.4, 3.4], "type": "scatter", "x": [5, 5, 5], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(187, 55, 85, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [2.9, 2.9, 2.9], "type": "scatter", "x": [4.4, 4.4, 4.4], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(187, 55, 85, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.1, 3.1, 3.1], "type": "scatter", "x": [4.9, 4.9, 4.9], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(187, 55, 85, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.7, 3.7, 3.7], "type": "scatter", "x": [5.4, 5.4, 5.4], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(187, 55, 85, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.4, 3.4, 3.4], "type": "scatter", "x": [4.8, 4.8, 4.8], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(187, 55, 85, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3, 3, 3], "type": "scatter", "x": [4.8, 4.8, 4.8], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(187, 55, 85, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3, 3, 3], "type": "scatter", "x": [4.3, 4.3, 4.3], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(187, 55, 85, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [4, 4, 4], "type": "scatter", "x": [5.8, 5.8, 5.8], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(187, 55, 85, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [4.4, 4.4, 4.4], "type": "scatter", "x": [5.7, 5.7, 5.7], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(187, 55, 85, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.9, 3.9, 3.9], "type": "scatter", "x": [5.4, 5.4, 5.4], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(187, 55, 85, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.5, 3.5, 3.5], "type": "scatter", "x": [5.1, 5.1, 5.1], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(187, 55, 85, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.8, 3.8, 3.8], "type": "scatter", "x": [5.7, 5.7, 5.7], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(187, 55, 85, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.8, 3.8, 3.8], "type": "scatter", "x": [5.1, 5.1, 5.1], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(187, 55, 85, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.4, 3.4, 3.4], "type": "scatter", "x": [5.4, 5.4, 5.4], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(187, 55, 85, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.7, 3.7, 3.7], "type": "scatter", "x": [5.1, 5.1, 5.1], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(187, 55, 85, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.6, 3.6, 3.6], "type": "scatter", "x": [4.6, 4.6, 4.6], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(187, 55, 85, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.3, 3.3, 3.3], "type": "scatter", "x": [5.1, 5.1, 5.1], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(187, 55, 85, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.4, 3.4, 3.4], "type": "scatter", "x": [4.8, 4.8, 4.8], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(187, 55, 85, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3, 3, 3], "type": "scatter", "x": [5, 5, 5], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(187, 55, 85, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.4, 3.4, 3.4], "type": "scatter", "x": [5, 5, 5], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(187, 55, 85, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.5, 3.5, 3.5], "type": "scatter", "x": [5.2, 5.2, 5.2], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(187, 55, 85, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.4, 3.4, 3.4], "type": "scatter", "x": [5.2, 5.2, 5.2], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(187, 55, 85, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.2, 3.2, 3.2], "type": "scatter", "x": [4.7, 4.7, 4.7], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(187, 55, 85, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.1, 3.1, 3.1], "type": "scatter", "x": [4.8, 4.8, 4.8], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(187, 55, 85, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.4, 3.4, 3.4], "type": "scatter", "x": [5.4, 5.4, 5.4], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(187, 55, 85, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [4.1, 4.1, 4.1], "type": "scatter", "x": [5.2, 5.2, 5.2], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(187, 55, 85, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [4.2, 4.2, 4.2], "type": "scatter", "x": [5.5, 5.5, 5.5], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(187, 55, 85, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.1, 3.1, 3.1], "type": "scatter", "x": [4.9, 4.9, 4.9], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(187, 55, 85, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.2, 3.2, 3.2], "type": "scatter", "x": [5, 5, 5], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(187, 55, 85, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.5, 3.5, 3.5], "type": "scatter", "x": [5.5, 5.5, 5.5], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(187, 55, 85, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.6, 3.6, 3.6], "type": "scatter", "x": [4.9, 4.9, 4.9], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(187, 55, 85, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3, 3, 3], "type": "scatter", "x": [4.4, 4.4, 4.4], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(187, 55, 85, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.4, 3.4, 3.4], "type": "scatter", "x": [5.1, 5.1, 5.1], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(187, 55, 85, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.5, 3.5, 3.5], "type": "scatter", "x": [5, 5, 5], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(187, 55, 85, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [2.3, 2.3, 2.3], "type": "scatter", "x": [4.5, 4.5, 4.5], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(187, 55, 85, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.2, 3.2, 3.2], "type": "scatter", "x": [4.4, 4.4, 4.4], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(187, 55, 85, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.5, 3.5, 3.5], "type": "scatter", "x": [5, 5, 5], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(187, 55, 85, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.8, 3.8, 3.8], "type": "scatter", "x": [5.1, 5.1, 5.1], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(187, 55, 85, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3, 3, 3], "type": "scatter", "x": [4.8, 4.8, 4.8], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(187, 55, 85, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.8, 3.8, 3.8], "type": "scatter", "x": [5.1, 5.1, 5.1], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(187, 55, 85, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.2, 3.2, 3.2], "type": "scatter", "x": [4.6, 4.6, 4.6], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(187, 55, 85, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.7, 3.7, 3.7], "type": "scatter", "x": [5.3, 5.3, 5.3], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(187, 55, 85, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.3, 3.3, 3.3], "type": "scatter", "x": [5, 5, 5], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.2, 3.2, 3.2], "type": "scatter", "x": [7, 7, 7], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.2, 3.2, 3.2], "type": "scatter", "x": [6.4, 6.4, 6.4], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(252, 255, 164, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.1, 3.1, 3.1], "type": "scatter", "x": [6.9, 6.9, 6.9], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [2.3, 2.3, 2.3], "type": "scatter", "x": [5.5, 5.5, 5.5], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [2.8, 2.8, 2.8], "type": "scatter", "x": [6.5, 6.5, 6.5], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [2.8, 2.8, 2.8], "type": "scatter", "x": [5.7, 5.7, 5.7], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.3, 3.3, 3.3], "type": "scatter", "x": [6.3, 6.3, 6.3], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [2.4, 2.4, 2.4], "type": "scatter", "x": [4.9, 4.9, 4.9], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [2.9, 2.9, 2.9], "type": "scatter", "x": [6.6, 6.6, 6.6], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [2.7, 2.7, 2.7], "type": "scatter", "x": [5.2, 5.2, 5.2], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [2, 2, 2], "type": "scatter", "x": [5, 5, 5], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3, 3, 3], "type": "scatter", "x": [5.9, 5.9, 5.9], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [2.2, 2.2, 2.2], "type": "scatter", "x": [6, 6, 6], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [2.9, 2.9, 2.9], "type": "scatter", "x": [6.1, 6.1, 6.1], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [2.9, 2.9, 2.9], "type": "scatter", "x": [5.6, 5.6, 5.6], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.1, 3.1, 3.1], "type": "scatter", "x": [6.7, 6.7, 6.7], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3, 3, 3], "type": "scatter", "x": [5.6, 5.6, 5.6], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [2.7, 2.7, 2.7], "type": "scatter", "x": [5.8, 5.8, 5.8], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [2.2, 2.2, 2.2], "type": "scatter", "x": [6.2, 6.2, 6.2], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [2.5, 2.5, 2.5], "type": "scatter", "x": [5.6, 5.6, 5.6], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.2, 3.2, 3.2], "type": "scatter", "x": [5.9, 5.9, 5.9], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [2.8, 2.8, 2.8], "type": "scatter", "x": [6.1, 6.1, 6.1], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [2.5, 2.5, 2.5], "type": "scatter", "x": [6.3, 6.3, 6.3], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [2.8, 2.8, 2.8], "type": "scatter", "x": [6.1, 6.1, 6.1], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [2.9, 2.9, 2.9], "type": "scatter", "x": [6.4, 6.4, 6.4], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3, 3, 3], "type": "scatter", "x": [6.6, 6.6, 6.6], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [2.8, 2.8, 2.8], "type": "scatter", "x": [6.8, 6.8, 6.8], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(252, 255, 164, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3, 3, 3], "type": "scatter", "x": [6.7, 6.7, 6.7], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [2.9, 2.9, 2.9], "type": "scatter", "x": [6, 6, 6], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [2.6, 2.6, 2.6], "type": "scatter", "x": [5.7, 5.7, 5.7], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [2.4, 2.4, 2.4], "type": "scatter", "x": [5.5, 5.5, 5.5], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [2.4, 2.4, 2.4], "type": "scatter", "x": [5.5, 5.5, 5.5], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [2.7, 2.7, 2.7], "type": "scatter", "x": [5.8, 5.8, 5.8], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [2.7, 2.7, 2.7], "type": "scatter", "x": [6, 6, 6], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3, 3, 3], "type": "scatter", "x": [5.4, 5.4, 5.4], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.4, 3.4, 3.4], "type": "scatter", "x": [6, 6, 6], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.1, 3.1, 3.1], "type": "scatter", "x": [6.7, 6.7, 6.7], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [2.3, 2.3, 2.3], "type": "scatter", "x": [6.3, 6.3, 6.3], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3, 3, 3], "type": "scatter", "x": [5.6, 5.6, 5.6], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [2.5, 2.5, 2.5], "type": "scatter", "x": [5.5, 5.5, 5.5], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [2.6, 2.6, 2.6], "type": "scatter", "x": [5.5, 5.5, 5.5], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3, 3, 3], "type": "scatter", "x": [6.1, 6.1, 6.1], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [2.6, 2.6, 2.6], "type": "scatter", "x": [5.8, 5.8, 5.8], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [2.3, 2.3, 2.3], "type": "scatter", "x": [5, 5, 5], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [2.7, 2.7, 2.7], "type": "scatter", "x": [5.6, 5.6, 5.6], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3, 3, 3], "type": "scatter", "x": [5.7, 5.7, 5.7], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [2.9, 2.9, 2.9], "type": "scatter", "x": [5.7, 5.7, 5.7], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [2.9, 2.9, 2.9], "type": "scatter", "x": [6.2, 6.2, 6.2], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [2.5, 2.5, 2.5], "type": "scatter", "x": [5.1, 5.1, 5.1], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [2.8, 2.8, 2.8], "type": "scatter", "x": [5.7, 5.7, 5.7], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(252, 255, 164, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.3, 3.3, 3.3], "type": "scatter", "x": [6.3, 6.3, 6.3], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [2.7, 2.7, 2.7], "type": "scatter", "x": [5.8, 5.8, 5.8], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(252, 255, 164, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3, 3, 3], "type": "scatter", "x": [7.1, 7.1, 7.1], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(252, 255, 164, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [2.9, 2.9, 2.9], "type": "scatter", "x": [6.3, 6.3, 6.3], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(252, 255, 164, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3, 3, 3], "type": "scatter", "x": [6.5, 6.5, 6.5], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(252, 255, 164, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3, 3, 3], "type": "scatter", "x": [7.6, 7.6, 7.6], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [2.5, 2.5, 2.5], "type": "scatter", "x": [4.9, 4.9, 4.9], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(252, 255, 164, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [2.9, 2.9, 2.9], "type": "scatter", "x": [7.3, 7.3, 7.3], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(252, 255, 164, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [2.5, 2.5, 2.5], "type": "scatter", "x": [6.7, 6.7, 6.7], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(252, 255, 164, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.6, 3.6, 3.6], "type": "scatter", "x": [7.2, 7.2, 7.2], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(252, 255, 164, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.2, 3.2, 3.2], "type": "scatter", "x": [6.5, 6.5, 6.5], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(252, 255, 164, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [2.7, 2.7, 2.7], "type": "scatter", "x": [6.4, 6.4, 6.4], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(252, 255, 164, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3, 3, 3], "type": "scatter", "x": [6.8, 6.8, 6.8], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [2.5, 2.5, 2.5], "type": "scatter", "x": [5.7, 5.7, 5.7], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [2.8, 2.8, 2.8], "type": "scatter", "x": [5.8, 5.8, 5.8], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(252, 255, 164, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.2, 3.2, 3.2], "type": "scatter", "x": [6.4, 6.4, 6.4], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(252, 255, 164, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3, 3, 3], "type": "scatter", "x": [6.5, 6.5, 6.5], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(252, 255, 164, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.8, 3.8, 3.8], "type": "scatter", "x": [7.7, 7.7, 7.7], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(252, 255, 164, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [2.6, 2.6, 2.6], "type": "scatter", "x": [7.7, 7.7, 7.7], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [2.2, 2.2, 2.2], "type": "scatter", "x": [6, 6, 6], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(252, 255, 164, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.2, 3.2, 3.2], "type": "scatter", "x": [6.9, 6.9, 6.9], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [2.8, 2.8, 2.8], "type": "scatter", "x": [5.6, 5.6, 5.6], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(252, 255, 164, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [2.8, 2.8, 2.8], "type": "scatter", "x": [7.7, 7.7, 7.7], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [2.7, 2.7, 2.7], "type": "scatter", "x": [6.3, 6.3, 6.3], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(252, 255, 164, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.3, 3.3, 3.3], "type": "scatter", "x": [6.7, 6.7, 6.7], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(252, 255, 164, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.2, 3.2, 3.2], "type": "scatter", "x": [7.2, 7.2, 7.2], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [2.8, 2.8, 2.8], "type": "scatter", "x": [6.2, 6.2, 6.2], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3, 3, 3], "type": "scatter", "x": [6.1, 6.1, 6.1], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(252, 255, 164, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [2.8, 2.8, 2.8], "type": "scatter", "x": [6.4, 6.4, 6.4], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(252, 255, 164, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3, 3, 3], "type": "scatter", "x": [7.2, 7.2, 7.2], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(252, 255, 164, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [2.8, 2.8, 2.8], "type": "scatter", "x": [7.4, 7.4, 7.4], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(252, 255, 164, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.8, 3.8, 3.8], "type": "scatter", "x": [7.9, 7.9, 7.9], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(252, 255, 164, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [2.8, 2.8, 2.8], "type": "scatter", "x": [6.4, 6.4, 6.4], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [2.8, 2.8, 2.8], "type": "scatter", "x": [6.3, 6.3, 6.3], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(252, 255, 164, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [2.6, 2.6, 2.6], "type": "scatter", "x": [6.1, 6.1, 6.1], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(252, 255, 164, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3, 3, 3], "type": "scatter", "x": [7.7, 7.7, 7.7], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(252, 255, 164, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.4, 3.4, 3.4], "type": "scatter", "x": [6.3, 6.3, 6.3], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(252, 255, 164, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.1, 3.1, 3.1], "type": "scatter", "x": [6.4, 6.4, 6.4], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3, 3, 3], "type": "scatter", "x": [6, 6, 6], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(252, 255, 164, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.1, 3.1, 3.1], "type": "scatter", "x": [6.9, 6.9, 6.9], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(252, 255, 164, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.1, 3.1, 3.1], "type": "scatter", "x": [6.7, 6.7, 6.7], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(252, 255, 164, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.1, 3.1, 3.1], "type": "scatter", "x": [6.9, 6.9, 6.9], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [2.7, 2.7, 2.7], "type": "scatter", "x": [5.8, 5.8, 5.8], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(252, 255, 164, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.2, 3.2, 3.2], "type": "scatter", "x": [6.8, 6.8, 6.8], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(252, 255, 164, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.3, 3.3, 3.3], "type": "scatter", "x": [6.7, 6.7, 6.7], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(252, 255, 164, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3, 3, 3], "type": "scatter", "x": [6.7, 6.7, 6.7], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [2.5, 2.5, 2.5], "type": "scatter", "x": [6.3, 6.3, 6.3], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(252, 255, 164, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3, 3, 3], "type": "scatter", "x": [6.5, 6.5, 6.5], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(252, 255, 164, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3.4, 3.4, 3.4], "type": "scatter", "x": [6.2, 6.2, 6.2], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 1, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 3, "y": [3, 3, 3], "type": "scatter", "x": [5.9, 5.9, 5.9], "zaxis": null, "z": null}, {"xaxis": "x2", "colorbar": {"title": {"text": ""}}, "yaxis": "y2", "x": [5.1, 5.1, 5.1], "showlegend": false, "mode": "markers", "name": "y1", "zmin": 1, "marker": {"color": [0.5], "cmin": 1, "opacity": 1e-10, "size": 1e-10, "colorscale": [[0, "rgba(0, 0, 4, 1.000)"], [0.00392156862745098, "rgba(1, 0, 5, 1.000)"], [0.00784313725490196, "rgba(1, 1, 6, 1.000)"], [0.011764705882352941, "rgba(1, 1, 8, 1.000)"], [0.01568627450980392, "rgba(2, 1, 10, 1.000)"], [0.0196078431372549, "rgba(2, 2, 12, 1.000)"], [0.023529411764705882, "rgba(2, 2, 14, 1.000)"], [0.027450980392156862, "rgba(3, 2, 16, 1.000)"], [0.03137254901960784, "rgba(4, 3, 18, 1.000)"], [0.03529411764705882, "rgba(4, 3, 20, 1.000)"], [0.0392156862745098, "rgba(5, 4, 23, 1.000)"], [0.043137254901960784, "rgba(6, 4, 25, 1.000)"], [0.047058823529411764, "rgba(7, 5, 27, 1.000)"], [0.050980392156862744, "rgba(8, 5, 29, 1.000)"], [0.054901960784313725, "rgba(9, 6, 31, 1.000)"], [0.058823529411764705, "rgba(10, 7, 34, 1.000)"], [0.06274509803921569, "rgba(11, 7, 36, 1.000)"], [0.06666666666666667, "rgba(12, 8, 38, 1.000)"], [0.07058823529411765, "rgba(13, 8, 41, 1.000)"], [0.07450980392156863, "rgba(14, 9, 43, 1.000)"], [0.0784313725490196, "rgba(16, 9, 45, 1.000)"], [0.08235294117647059, "rgba(17, 10, 48, 1.000)"], [0.08627450980392157, "rgba(18, 10, 50, 1.000)"], [0.09019607843137255, "rgba(20, 11, 52, 1.000)"], [0.09411764705882353, "rgba(21, 11, 55, 1.000)"], [0.09803921568627451, "rgba(22, 11, 57, 1.000)"], [0.10196078431372549, "rgba(24, 12, 60, 1.000)"], [0.10588235294117647, "rgba(25, 12, 62, 1.000)"], [0.10980392156862745, "rgba(27, 12, 65, 1.000)"], [0.11372549019607843, "rgba(28, 12, 67, 1.000)"], [0.11764705882352941, "rgba(30, 12, 69, 1.000)"], [0.12156862745098039, "rgba(31, 12, 72, 1.000)"], [0.12549019607843137, "rgba(33, 12, 74, 1.000)"], [0.12941176470588237, "rgba(35, 12, 76, 1.000)"], [0.13333333333333333, "rgba(36, 12, 79, 1.000)"], [0.13725490196078433, "rgba(38, 12, 81, 1.000)"], [0.1411764705882353, "rgba(40, 11, 83, 1.000)"], [0.1450980392156863, "rgba(41, 11, 85, 1.000)"], [0.14901960784313725, "rgba(43, 11, 87, 1.000)"], [0.15294117647058825, "rgba(45, 11, 89, 1.000)"], [0.1568627450980392, "rgba(47, 10, 91, 1.000)"], [0.1607843137254902, "rgba(49, 10, 92, 1.000)"], [0.16470588235294117, "rgba(50, 10, 94, 1.000)"], [0.16862745098039217, "rgba(52, 10, 95, 1.000)"], [0.17254901960784313, "rgba(54, 9, 97, 1.000)"], [0.17647058823529413, "rgba(56, 9, 98, 1.000)"], [0.1803921568627451, "rgba(57, 9, 99, 1.000)"], [0.1843137254901961, "rgba(59, 9, 100, 1.000)"], [0.18823529411764706, "rgba(61, 9, 101, 1.000)"], [0.19215686274509805, "rgba(62, 9, 102, 1.000)"], [0.19607843137254902, "rgba(64, 10, 103, 1.000)"], [0.2, "rgba(66, 10, 104, 1.000)"], [0.20392156862745098, "rgba(68, 10, 104, 1.000)"], [0.20784313725490197, "rgba(69, 10, 105, 1.000)"], [0.21176470588235294, "rgba(71, 11, 106, 1.000)"], [0.21568627450980393, "rgba(73, 11, 106, 1.000)"], [0.2196078431372549, "rgba(74, 12, 107, 1.000)"], [0.2235294117647059, "rgba(76, 12, 107, 1.000)"], [0.22745098039215686, "rgba(77, 13, 108, 1.000)"], [0.23137254901960785, "rgba(79, 13, 108, 1.000)"], [0.23529411764705882, "rgba(81, 14, 108, 1.000)"], [0.23921568627450981, "rgba(82, 14, 109, 1.000)"], [0.24313725490196078, "rgba(84, 15, 109, 1.000)"], [0.24705882352941178, "rgba(85, 15, 109, 1.000)"], [0.25098039215686274, "rgba(87, 16, 110, 1.000)"], [0.2549019607843137, "rgba(89, 16, 110, 1.000)"], [0.25882352941176473, "rgba(90, 17, 110, 1.000)"], [0.2627450980392157, "rgba(92, 18, 110, 1.000)"], [0.26666666666666666, "rgba(93, 18, 110, 1.000)"], [0.27058823529411763, "rgba(95, 19, 110, 1.000)"], [0.27450980392156865, "rgba(97, 19, 110, 1.000)"], [0.2784313725490196, "rgba(98, 20, 110, 1.000)"], [0.2823529411764706, "rgba(100, 21, 110, 1.000)"], [0.28627450980392155, "rgba(101, 21, 110, 1.000)"], [0.2901960784313726, "rgba(103, 22, 110, 1.000)"], [0.29411764705882354, "rgba(105, 22, 110, 1.000)"], [0.2980392156862745, "rgba(106, 23, 110, 1.000)"], [0.30196078431372547, "rgba(108, 24, 110, 1.000)"], [0.3058823529411765, "rgba(109, 24, 110, 1.000)"], [0.30980392156862746, "rgba(111, 25, 110, 1.000)"], [0.3137254901960784, "rgba(113, 25, 110, 1.000)"], [0.3176470588235294, "rgba(114, 26, 110, 1.000)"], [0.3215686274509804, "rgba(116, 26, 110, 1.000)"], [0.3254901960784314, "rgba(117, 27, 110, 1.000)"], [0.32941176470588235, "rgba(119, 28, 109, 1.000)"], [0.3333333333333333, "rgba(120, 28, 109, 1.000)"], [0.33725490196078434, "rgba(122, 29, 109, 1.000)"], [0.3411764705882353, "rgba(124, 29, 109, 1.000)"], [0.34509803921568627, "rgba(125, 30, 109, 1.000)"], [0.34901960784313724, "rgba(127, 30, 108, 1.000)"], [0.35294117647058826, "rgba(128, 31, 108, 1.000)"], [0.3568627450980392, "rgba(130, 32, 108, 1.000)"], [0.3607843137254902, "rgba(132, 32, 107, 1.000)"], [0.36470588235294116, "rgba(133, 33, 107, 1.000)"], [0.3686274509803922, "rgba(135, 33, 107, 1.000)"], [0.37254901960784315, "rgba(136, 34, 106, 1.000)"], [0.3764705882352941, "rgba(138, 34, 106, 1.000)"], [0.3803921568627451, "rgba(140, 35, 105, 1.000)"], [0.3843137254901961, "rgba(141, 35, 105, 1.000)"], [0.38823529411764707, "rgba(143, 36, 105, 1.000)"], [0.39215686274509803, "rgba(144, 37, 104, 1.000)"], [0.396078431372549, "rgba(146, 37, 104, 1.000)"], [0.4, "rgba(147, 38, 103, 1.000)"], [0.403921568627451, "rgba(149, 38, 103, 1.000)"], [0.40784313725490196, "rgba(151, 39, 102, 1.000)"], [0.4117647058823529, "rgba(152, 39, 102, 1.000)"], [0.41568627450980394, "rgba(154, 40, 101, 1.000)"], [0.4196078431372549, "rgba(155, 41, 100, 1.000)"], [0.4235294117647059, "rgba(157, 41, 100, 1.000)"], [0.42745098039215684, "rgba(159, 42, 99, 1.000)"], [0.43137254901960786, "rgba(160, 42, 99, 1.000)"], [0.43529411764705883, "rgba(162, 43, 98, 1.000)"], [0.4392156862745098, "rgba(163, 44, 97, 1.000)"], [0.44313725490196076, "rgba(165, 44, 96, 1.000)"], [0.4470588235294118, "rgba(166, 45, 96, 1.000)"], [0.45098039215686275, "rgba(168, 46, 95, 1.000)"], [0.4549019607843137, "rgba(169, 46, 94, 1.000)"], [0.4588235294117647, "rgba(171, 47, 94, 1.000)"], [0.4627450980392157, "rgba(173, 48, 93, 1.000)"], [0.4666666666666667, "rgba(174, 48, 92, 1.000)"], [0.47058823529411764, "rgba(176, 49, 91, 1.000)"], [0.4745098039215686, "rgba(177, 50, 90, 1.000)"], [0.47843137254901963, "rgba(179, 50, 90, 1.000)"], [0.4823529411764706, "rgba(180, 51, 89, 1.000)"], [0.48627450980392156, "rgba(182, 52, 88, 1.000)"], [0.49019607843137253, "rgba(183, 53, 87, 1.000)"], [0.49411764705882355, "rgba(185, 53, 86, 1.000)"], [0.4980392156862745, "rgba(186, 54, 85, 1.000)"], [0.5019607843137255, "rgba(188, 55, 84, 1.000)"], [0.5058823529411764, "rgba(189, 56, 83, 1.000)"], [0.5098039215686274, "rgba(191, 57, 82, 1.000)"], [0.5137254901960784, "rgba(192, 58, 81, 1.000)"], [0.5176470588235295, "rgba(193, 58, 80, 1.000)"], [0.5215686274509804, "rgba(195, 59, 79, 1.000)"], [0.5254901960784314, "rgba(196, 60, 78, 1.000)"], [0.5294117647058824, "rgba(198, 61, 77, 1.000)"], [0.5333333333333333, "rgba(199, 62, 76, 1.000)"], [0.5372549019607843, "rgba(200, 63, 75, 1.000)"], [0.5411764705882353, "rgba(202, 64, 74, 1.000)"], [0.5450980392156862, "rgba(203, 65, 73, 1.000)"], [0.5490196078431373, "rgba(204, 66, 72, 1.000)"], [0.5529411764705883, "rgba(206, 67, 71, 1.000)"], [0.5568627450980392, "rgba(207, 68, 70, 1.000)"], [0.5607843137254902, "rgba(208, 69, 69, 1.000)"], [0.5647058823529412, "rgba(210, 70, 68, 1.000)"], [0.5686274509803921, "rgba(211, 71, 67, 1.000)"], [0.5725490196078431, "rgba(212, 72, 66, 1.000)"], [0.5764705882352941, "rgba(213, 74, 65, 1.000)"], [0.5803921568627451, "rgba(215, 75, 63, 1.000)"], [0.5843137254901961, "rgba(216, 76, 62, 1.000)"], [0.5882352941176471, "rgba(217, 77, 61, 1.000)"], [0.592156862745098, "rgba(218, 78, 60, 1.000)"], [0.596078431372549, "rgba(219, 80, 59, 1.000)"], [0.6, "rgba(221, 81, 58, 1.000)"], [0.6039215686274509, "rgba(222, 82, 56, 1.000)"], [0.6078431372549019, "rgba(223, 83, 55, 1.000)"], [0.611764705882353, "rgba(224, 85, 54, 1.000)"], [0.615686274509804, "rgba(225, 86, 53, 1.000)"], [0.6196078431372549, "rgba(226, 87, 52, 1.000)"], [0.6235294117647059, "rgba(227, 89, 51, 1.000)"], [0.6274509803921569, "rgba(228, 90, 49, 1.000)"], [0.6313725490196078, "rgba(229, 92, 48, 1.000)"], [0.6352941176470588, "rgba(230, 93, 47, 1.000)"], [0.6392156862745098, "rgba(231, 94, 46, 1.000)"], [0.6431372549019608, "rgba(232, 96, 45, 1.000)"], [0.6470588235294118, "rgba(233, 97, 43, 1.000)"], [0.6509803921568628, "rgba(234, 99, 42, 1.000)"], [0.6549019607843137, "rgba(235, 100, 41, 1.000)"], [0.6588235294117647, "rgba(235, 102, 40, 1.000)"], [0.6627450980392157, "rgba(236, 103, 38, 1.000)"], [0.6666666666666666, "rgba(237, 105, 37, 1.000)"], [0.6705882352941176, "rgba(238, 106, 36, 1.000)"], [0.6745098039215687, "rgba(239, 108, 35, 1.000)"], [0.6784313725490196, "rgba(239, 110, 33, 1.000)"], [0.6823529411764706, "rgba(240, 111, 32, 1.000)"], [0.6862745098039216, "rgba(241, 113, 31, 1.000)"], [0.6901960784313725, "rgba(241, 115, 29, 1.000)"], [0.6941176470588235, "rgba(242, 116, 28, 1.000)"], [0.6980392156862745, "rgba(243, 118, 27, 1.000)"], [0.7019607843137254, "rgba(243, 120, 25, 1.000)"], [0.7058823529411765, "rgba(244, 121, 24, 1.000)"], [0.7098039215686275, "rgba(245, 123, 23, 1.000)"], [0.7137254901960784, "rgba(245, 125, 21, 1.000)"], [0.7176470588235294, "rgba(246, 126, 20, 1.000)"], [0.7215686274509804, "rgba(246, 128, 19, 1.000)"], [0.7254901960784313, "rgba(247, 130, 18, 1.000)"], [0.7294117647058823, "rgba(247, 132, 16, 1.000)"], [0.7333333333333333, "rgba(248, 133, 15, 1.000)"], [0.7372549019607844, "rgba(248, 135, 14, 1.000)"], [0.7411764705882353, "rgba(248, 137, 12, 1.000)"], [0.7450980392156863, "rgba(249, 139, 11, 1.000)"], [0.7490196078431373, "rgba(249, 140, 10, 1.000)"], [0.7529411764705882, "rgba(249, 142, 9, 1.000)"], [0.7568627450980392, "rgba(250, 144, 8, 1.000)"], [0.7607843137254902, "rgba(250, 146, 7, 1.000)"], [0.7647058823529411, "rgba(250, 148, 7, 1.000)"], [0.7686274509803922, "rgba(251, 150, 6, 1.000)"], [0.7725490196078432, "rgba(251, 151, 6, 1.000)"], [0.7764705882352941, "rgba(251, 153, 6, 1.000)"], [0.7803921568627451, "rgba(251, 155, 6, 1.000)"], [0.7843137254901961, "rgba(251, 157, 7, 1.000)"], [0.788235294117647, "rgba(252, 159, 7, 1.000)"], [0.792156862745098, "rgba(252, 161, 8, 1.000)"], [0.796078431372549, "rgba(252, 163, 9, 1.000)"], [0.8, "rgba(252, 165, 10, 1.000)"], [0.803921568627451, "rgba(252, 166, 12, 1.000)"], [0.807843137254902, "rgba(252, 168, 13, 1.000)"], [0.8117647058823529, "rgba(252, 170, 15, 1.000)"], [0.8156862745098039, "rgba(252, 172, 17, 1.000)"], [0.8196078431372549, "rgba(252, 174, 18, 1.000)"], [0.8235294117647058, "rgba(252, 176, 20, 1.000)"], [0.8274509803921568, "rgba(252, 178, 22, 1.000)"], [0.8313725490196079, "rgba(252, 180, 24, 1.000)"], [0.8352941176470589, "rgba(251, 182, 26, 1.000)"], [0.8392156862745098, "rgba(251, 184, 29, 1.000)"], [0.8431372549019608, "rgba(251, 186, 31, 1.000)"], [0.8470588235294118, "rgba(251, 188, 33, 1.000)"], [0.8509803921568627, "rgba(251, 190, 35, 1.000)"], [0.8549019607843137, "rgba(250, 192, 38, 1.000)"], [0.8588235294117647, "rgba(250, 194, 40, 1.000)"], [0.8627450980392157, "rgba(250, 196, 42, 1.000)"], [0.8666666666666667, "rgba(250, 198, 45, 1.000)"], [0.8705882352941177, "rgba(249, 199, 47, 1.000)"], [0.8745098039215686, "rgba(249, 201, 50, 1.000)"], [0.8784313725490196, "rgba(249, 203, 53, 1.000)"], [0.8823529411764706, "rgba(248, 205, 55, 1.000)"], [0.8862745098039215, "rgba(248, 207, 58, 1.000)"], [0.8901960784313725, "rgba(247, 209, 61, 1.000)"], [0.8941176470588236, "rgba(247, 211, 64, 1.000)"], [0.8980392156862745, "rgba(246, 213, 67, 1.000)"], [0.9019607843137255, "rgba(246, 215, 70, 1.000)"], [0.9058823529411765, "rgba(245, 217, 73, 1.000)"], [0.9098039215686274, "rgba(245, 219, 76, 1.000)"], [0.9137254901960784, "rgba(244, 221, 79, 1.000)"], [0.9176470588235294, "rgba(244, 223, 83, 1.000)"], [0.9215686274509803, "rgba(244, 225, 86, 1.000)"], [0.9254901960784314, "rgba(243, 227, 90, 1.000)"], [0.9294117647058824, "rgba(243, 229, 93, 1.000)"], [0.9333333333333333, "rgba(242, 230, 97, 1.000)"], [0.9372549019607843, "rgba(242, 232, 101, 1.000)"], [0.9411764705882353, "rgba(242, 234, 105, 1.000)"], [0.9450980392156862, "rgba(241, 236, 109, 1.000)"], [0.9490196078431372, "rgba(241, 237, 113, 1.000)"], [0.9529411764705882, "rgba(241, 239, 117, 1.000)"], [0.9568627450980393, "rgba(241, 241, 121, 1.000)"], [0.9607843137254902, "rgba(242, 242, 125, 1.000)"], [0.9647058823529412, "rgba(242, 244, 130, 1.000)"], [0.9686274509803922, "rgba(243, 245, 134, 1.000)"], [0.9725490196078431, "rgba(243, 246, 138, 1.000)"], [0.9764705882352941, "rgba(244, 248, 142, 1.000)"], [0.9803921568627451, "rgba(245, 249, 146, 1.000)"], [0.984313725490196, "rgba(246, 250, 150, 1.000)"], [0.9882352941176471, "rgba(248, 251, 154, 1.000)"], [0.9921568627450981, "rgba(249, 252, 157, 1.000)"], [0.996078431372549, "rgba(250, 253, 161, 1.000)"], [1, "rgba(252, 255, 164, 1.000)"]], "cmax": 3, "showscale": false}, "zmax": 3, "y": [3.5, 3.5, 3.5], "type": "scatter", "hoverinfo": "none", "zaxis": null, "z": null}], "config": {"showlegend": false, "paper_bgcolor": "rgba(255, 255, 255, 1.000)", "legend": {"yanchor": "auto", "xanchor": "auto", "bordercolor": "rgba(0, 0, 0, 1)", "bgcolor": "rgba(255, 255, 255, 1.000)", "borderwidth": 1, "tracegroupgap": 0, "y": 1, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "title": {"font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}, "text": ""}, "traceorder": "normal", "x": 1}, "height": 500, "yaxis2": {"showticklabels": true, "gridwidth": 0.5, "range": [1.928, 4.472], "domain": [0.0709700787401575, 0.9704724409448818], "mirror": false, "tickangle": 0, "showline": true, "zeroline": false, "tickfont": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "zerolinecolor": "rgba(0, 0, 0, 1)", "anchor": "x2", "visible": true, "ticks": "inside", "tickmode": "array", "linecolor": "rgba(0, 0, 0, 1)", "showgrid": true, "title": {"text": "", "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}}, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickcolor": "rgb(0, 0, 0)", "type": "linear"}, "xaxis2": {"showticklabels": true, "gridwidth": 0.5, "range": [4.191999999999999, 8.008], "domain": [0.5647568891631346, 0.9934383202099737], "mirror": false, "tickangle": 0, "showline": true, "zeroline": false, "tickfont": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "zerolinecolor": "rgba(0, 0, 0, 1)", "anchor": "y2", "visible": true, "ticks": "inside", "tickmode": "array", "linecolor": "rgba(0, 0, 0, 1)", "showgrid": true, "title": {"text": "", "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}}, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickcolor": "rgb(0, 0, 0)", "type": "linear"}, "annotations": [], "plot_bgcolor": "rgba(255, 255, 255, 1.000)", "margin": {"l": 0, "b": 20, "r": 0, "t": 20}, "width": 991.53125, "xaxis": {"showticklabels": true, "gridwidth": 0.5, "range": [4.191999999999999, 8.008], "domain": [0.06538429451174597, 0.49406572555858513], "mirror": false, "tickangle": 0, "showline": true, "zeroline": false, "tickfont": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "zerolinecolor": "rgba(0, 0, 0, 1)", "anchor": "y", "visible": true, "ticks": "inside", "tickmode": "array", "linecolor": "rgba(0, 0, 0, 1)", "showgrid": true, "title": {"text": "", "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}}, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickcolor": "rgb(0, 0, 0)", "type": "linear"}, "yaxis": {"showticklabels": true, "gridwidth": 0.5, "range": [1.928, 4.472], "domain": [0.0709700787401575, 0.9704724409448818], "mirror": false, "tickangle": 0, "showline": true, "zeroline": false, "tickfont": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "zerolinecolor": "rgba(0, 0, 0, 1)", "anchor": "x", "visible": true, "ticks": "inside", "tickmode": "array", "linecolor": "rgba(0, 0, 0, 1)", "showgrid": true, "title": {"text": "", "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}}, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickcolor": "rgb(0, 0, 0)", "type": "linear"}}}
{"id": "f0db878d-d890-4030-9311-d3551f0dcac7", "data": [{"showlegend": true, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(251, 254, 162, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [3.5, 3.5, 3.5], "type": "scatter", "x": [5.1, 5.1, 5.1], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(244, 248, 142, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [3, 3, 3], "type": "scatter", "x": [4.9, 4.9, 4.9], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(245, 249, 146, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [3.2, 3.2, 3.2], "type": "scatter", "x": [4.7, 4.7, 4.7], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(243, 245, 133, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [3.1, 3.1, 3.1], "type": "scatter", "x": [4.6, 4.6, 4.6], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(250, 253, 160, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [3.6, 3.6, 3.6], "type": "scatter", "x": [5, 5, 5], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(242, 231, 98, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [3.9, 3.9, 3.9], "type": "scatter", "x": [5.4, 5.4, 5.4], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(245, 249, 145, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [3.4, 3.4, 3.4], "type": "scatter", "x": [4.6, 4.6, 4.6], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(252, 255, 164, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [3.4, 3.4, 3.4], "type": "scatter", "x": [5, 5, 5], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(243, 229, 94, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [2.9, 2.9, 2.9], "type": "scatter", "x": [4.4, 4.4, 4.4], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(246, 250, 149, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [3.1, 3.1, 3.1], "type": "scatter", "x": [4.9, 4.9, 4.9], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(243, 245, 133, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [3.7, 3.7, 3.7], "type": "scatter", "x": [5.4, 5.4, 5.4], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(249, 253, 158, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [3.4, 3.4, 3.4], "type": "scatter", "x": [4.8, 4.8, 4.8], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(243, 246, 136, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [3, 3, 3], "type": "scatter", "x": [4.8, 4.8, 4.8], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(243, 226, 88, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [3, 3, 3], "type": "scatter", "x": [4.3, 4.3, 4.3], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(247, 209, 61, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [4, 4, 4], "type": "scatter", "x": [5.8, 5.8, 5.8], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(251, 185, 30, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [4.4, 4.4, 4.4], "type": "scatter", "x": [5.7, 5.7, 5.7], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(241, 237, 111, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [3.9, 3.9, 3.9], "type": "scatter", "x": [5.4, 5.4, 5.4], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(251, 254, 162, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [3.5, 3.5, 3.5], "type": "scatter", "x": [5.1, 5.1, 5.1], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(246, 216, 72, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [3.8, 3.8, 3.8], "type": "scatter", "x": [5.7, 5.7, 5.7], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(245, 249, 145, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [3.8, 3.8, 3.8], "type": "scatter", "x": [5.1, 5.1, 5.1], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(243, 245, 134, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [3.4, 3.4, 3.4], "type": "scatter", "x": [5.4, 5.4, 5.4], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(247, 250, 151, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [3.7, 3.7, 3.7], "type": "scatter", "x": [5.1, 5.1, 5.1], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(242, 241, 123, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [3.6, 3.6, 3.6], "type": "scatter", "x": [4.6, 4.6, 4.6], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(245, 249, 145, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [3.3, 3.3, 3.3], "type": "scatter", "x": [5.1, 5.1, 5.1], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(243, 244, 132, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [3.4, 3.4, 3.4], "type": "scatter", "x": [4.8, 4.8, 4.8], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(244, 247, 139, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [3, 3, 3], "type": "scatter", "x": [5, 5, 5], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(250, 253, 160, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [3.4, 3.4, 3.4], "type": "scatter", "x": [5, 5, 5], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(250, 253, 159, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [3.5, 3.5, 3.5], "type": "scatter", "x": [5.2, 5.2, 5.2], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(250, 253, 159, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [3.4, 3.4, 3.4], "type": "scatter", "x": [5.2, 5.2, 5.2], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(245, 249, 145, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [3.2, 3.2, 3.2], "type": "scatter", "x": [4.7, 4.7, 4.7], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(245, 248, 145, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [3.1, 3.1, 3.1], "type": "scatter", "x": [4.8, 4.8, 4.8], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(244, 247, 140, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [3.4, 3.4, 3.4], "type": "scatter", "x": [5.4, 5.4, 5.4], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(242, 233, 102, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [4.1, 4.1, 4.1], "type": "scatter", "x": [5.2, 5.2, 5.2], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(246, 216, 72, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [4.2, 4.2, 4.2], "type": "scatter", "x": [5.5, 5.5, 5.5], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(247, 250, 151, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [3.1, 3.1, 3.1], "type": "scatter", "x": [4.9, 4.9, 4.9], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(247, 250, 151, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [3.2, 3.2, 3.2], "type": "scatter", "x": [5, 5, 5], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(242, 243, 129, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [3.5, 3.5, 3.5], "type": "scatter", "x": [5.5, 5.5, 5.5], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(249, 252, 156, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [3.6, 3.6, 3.6], "type": "scatter", "x": [4.9, 4.9, 4.9], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(242, 233, 104, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [3, 3, 3], "type": "scatter", "x": [4.4, 4.4, 4.4], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(252, 254, 163, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [3.4, 3.4, 3.4], "type": "scatter", "x": [5.1, 5.1, 5.1], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(250, 253, 160, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [3.5, 3.5, 3.5], "type": "scatter", "x": [5, 5, 5], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(251, 190, 35, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [2.3, 2.3, 2.3], "type": "scatter", "x": [4.5, 4.5, 4.5], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(241, 239, 117, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [3.2, 3.2, 3.2], "type": "scatter", "x": [4.4, 4.4, 4.4], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(245, 249, 145, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [3.5, 3.5, 3.5], "type": "scatter", "x": [5, 5, 5], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(241, 236, 109, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [3.8, 3.8, 3.8], "type": "scatter", "x": [5.1, 5.1, 5.1], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(243, 246, 138, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [3, 3, 3], "type": "scatter", "x": [4.8, 4.8, 4.8], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(244, 248, 143, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [3.8, 3.8, 3.8], "type": "scatter", "x": [5.1, 5.1, 5.1], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(244, 247, 140, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [3.2, 3.2, 3.2], "type": "scatter", "x": [4.6, 4.6, 4.6], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(245, 248, 143, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [3.7, 3.7, 3.7], "type": "scatter", "x": [5.3, 5.3, 5.3], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(251, 254, 162, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [3.3, 3.3, 3.3], "type": "scatter", "x": [5, 5, 5], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(6, 4, 25, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [3.2, 3.2, 3.2], "type": "scatter", "x": [7, 7, 7], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(3, 2, 17, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [3.2, 3.2, 3.2], "type": "scatter", "x": [6.4, 6.4, 6.4], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(3, 3, 18, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [3.1, 3.1, 3.1], "type": "scatter", "x": [6.9, 6.9, 6.9], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(7, 5, 28, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [2.3, 2.3, 2.3], "type": "scatter", "x": [5.5, 5.5, 5.5], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(2, 2, 14, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [2.8, 2.8, 2.8], "type": "scatter", "x": [6.5, 6.5, 6.5], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(1, 0, 5, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [2.8, 2.8, 2.8], "type": "scatter", "x": [5.7, 5.7, 5.7], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(3, 3, 17, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [3.3, 3.3, 3.3], "type": "scatter", "x": [6.3, 6.3, 6.3], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(101, 21, 110, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [2.4, 2.4, 2.4], "type": "scatter", "x": [4.9, 4.9, 4.9], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(3, 3, 18, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [2.9, 2.9, 2.9], "type": "scatter", "x": [6.6, 6.6, 6.6], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(14, 9, 42, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [2.7, 2.7, 2.7], "type": "scatter", "x": [5.2, 5.2, 5.2], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(73, 11, 106, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [2, 2, 2], "type": "scatter", "x": [5, 5, 5], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(1, 1, 6, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [3, 3, 3], "type": "scatter", "x": [5.9, 5.9, 5.9], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(8, 6, 31, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [2.2, 2.2, 2.2], "type": "scatter", "x": [6, 6, 6], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(1, 1, 8, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [2.9, 2.9, 2.9], "type": "scatter", "x": [6.1, 6.1, 6.1], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(20, 11, 53, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [2.9, 2.9, 2.9], "type": "scatter", "x": [5.6, 5.6, 5.6], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(5, 4, 23, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [3.1, 3.1, 3.1], "type": "scatter", "x": [6.7, 6.7, 6.7], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(1, 1, 9, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [3, 3, 3], "type": "scatter", "x": [5.6, 5.6, 5.6], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(3, 2, 15, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [2.7, 2.7, 2.7], "type": "scatter", "x": [5.8, 5.8, 5.8], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(3, 2, 15, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [2.2, 2.2, 2.2], "type": "scatter", "x": [6.2, 6.2, 6.2], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(7, 5, 29, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [2.5, 2.5, 2.5], "type": "scatter", "x": [5.6, 5.6, 5.6], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(3, 2, 16, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [3.2, 3.2, 3.2], "type": "scatter", "x": [5.9, 5.9, 5.9], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(2, 1, 11, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [2.8, 2.8, 2.8], "type": "scatter", "x": [6.1, 6.1, 6.1], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(2, 2, 14, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [2.5, 2.5, 2.5], "type": "scatter", "x": [6.3, 6.3, 6.3], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(1, 1, 8, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [2.8, 2.8, 2.8], "type": "scatter", "x": [6.1, 6.1, 6.1], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(2, 2, 13, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [2.9, 2.9, 2.9], "type": "scatter", "x": [6.4, 6.4, 6.4], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(4, 3, 19, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [3, 3, 3], "type": "scatter", "x": [6.6, 6.6, 6.6], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(4, 3, 19, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [2.8, 2.8, 2.8], "type": "scatter", "x": [6.8, 6.8, 6.8], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(2, 2, 12, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [3, 3, 3], "type": "scatter", "x": [6.7, 6.7, 6.7], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(1, 0, 5, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [2.9, 2.9, 2.9], "type": "scatter", "x": [6, 6, 6], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(34, 12, 75, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [2.6, 2.6, 2.6], "type": "scatter", "x": [5.7, 5.7, 5.7], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(15, 9, 44, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [2.4, 2.4, 2.4], "type": "scatter", "x": [5.5, 5.5, 5.5], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(24, 12, 60, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [2.4, 2.4, 2.4], "type": "scatter", "x": [5.5, 5.5, 5.5], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(3, 3, 17, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [2.7, 2.7, 2.7], "type": "scatter", "x": [5.8, 5.8, 5.8], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(2, 2, 14, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [2.7, 2.7, 2.7], "type": "scatter", "x": [6, 6, 6], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(3, 2, 15, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [3, 3, 3], "type": "scatter", "x": [5.4, 5.4, 5.4], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(4, 3, 18, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [3.4, 3.4, 3.4], "type": "scatter", "x": [6, 6, 6], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(4, 3, 19, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [3.1, 3.1, 3.1], "type": "scatter", "x": [6.7, 6.7, 6.7], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(3, 2, 15, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [2.3, 2.3, 2.3], "type": "scatter", "x": [6.3, 6.3, 6.3], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(2, 2, 14, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [3, 3, 3], "type": "scatter", "x": [5.6, 5.6, 5.6], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(5, 4, 21, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [2.5, 2.5, 2.5], "type": "scatter", "x": [5.5, 5.5, 5.5], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(2, 1, 11, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [2.6, 2.6, 2.6], "type": "scatter", "x": [5.5, 5.5, 5.5], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(1, 1, 7, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [3, 3, 3], "type": "scatter", "x": [6.1, 6.1, 6.1], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(2, 2, 13, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [2.6, 2.6, 2.6], "type": "scatter", "x": [5.8, 5.8, 5.8], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(94, 18, 110, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [2.3, 2.3, 2.3], "type": "scatter", "x": [5, 5, 5], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(1, 1, 8, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [2.7, 2.7, 2.7], "type": "scatter", "x": [5.6, 5.6, 5.6], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(2, 1, 10, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [3, 3, 3], "type": "scatter", "x": [5.7, 5.7, 5.7], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(1, 1, 6, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [2.9, 2.9, 2.9], "type": "scatter", "x": [5.7, 5.7, 5.7], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(1, 1, 7, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [2.9, 2.9, 2.9], "type": "scatter", "x": [6.2, 6.2, 6.2], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(129, 31, 108, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [2.5, 2.5, 2.5], "type": "scatter", "x": [5.1, 5.1, 5.1], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(1, 1, 8, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [2.8, 2.8, 2.8], "type": "scatter", "x": [5.7, 5.7, 5.7], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(2, 1, 11, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [3.3, 3.3, 3.3], "type": "scatter", "x": [6.3, 6.3, 6.3], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(3, 2, 17, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [2.7, 2.7, 2.7], "type": "scatter", "x": [5.8, 5.8, 5.8], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(1, 0, 5, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [3, 3, 3], "type": "scatter", "x": [7.1, 7.1, 7.1], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(1, 1, 8, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [2.9, 2.9, 2.9], "type": "scatter", "x": [6.3, 6.3, 6.3], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(1, 0, 5, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [3, 3, 3], "type": "scatter", "x": [6.5, 6.5, 6.5], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(4, 3, 20, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [3, 3, 3], "type": "scatter", "x": [7.6, 7.6, 7.6], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(14, 8, 41, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [2.5, 2.5, 2.5], "type": "scatter", "x": [4.9, 4.9, 4.9], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(2, 2, 13, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [2.9, 2.9, 2.9], "type": "scatter", "x": [7.3, 7.3, 7.3], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(1, 1, 8, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [2.5, 2.5, 2.5], "type": "scatter", "x": [6.7, 6.7, 6.7], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(2, 2, 14, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [3.6, 3.6, 3.6], "type": "scatter", "x": [7.2, 7.2, 7.2], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(2, 1, 10, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [3.2, 3.2, 3.2], "type": "scatter", "x": [6.5, 6.5, 6.5], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(1, 1, 9, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [2.7, 2.7, 2.7], "type": "scatter", "x": [6.4, 6.4, 6.4], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [3, 3, 3], "type": "scatter", "x": [6.8, 6.8, 6.8], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(4, 3, 19, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [2.5, 2.5, 2.5], "type": "scatter", "x": [5.7, 5.7, 5.7], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(5, 4, 22, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [2.8, 2.8, 2.8], "type": "scatter", "x": [5.8, 5.8, 5.8], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(1, 1, 8, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [3.2, 3.2, 3.2], "type": "scatter", "x": [6.4, 6.4, 6.4], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(1, 0, 5, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [3, 3, 3], "type": "scatter", "x": [6.5, 6.5, 6.5], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(7, 5, 28, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [3.8, 3.8, 3.8], "type": "scatter", "x": [7.7, 7.7, 7.7], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(7, 5, 28, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [2.6, 2.6, 2.6], "type": "scatter", "x": [7.7, 7.7, 7.7], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(4, 3, 18, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [2.2, 2.2, 2.2], "type": "scatter", "x": [6, 6, 6], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(1, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [3.2, 3.2, 3.2], "type": "scatter", "x": [6.9, 6.9, 6.9], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(4, 3, 19, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [2.8, 2.8, 2.8], "type": "scatter", "x": [5.6, 5.6, 5.6], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(5, 4, 24, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [2.8, 2.8, 2.8], "type": "scatter", "x": [7.7, 7.7, 7.7], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(2, 2, 13, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [2.7, 2.7, 2.7], "type": "scatter", "x": [6.3, 6.3, 6.3], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [3.3, 3.3, 3.3], "type": "scatter", "x": [6.7, 6.7, 6.7], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(1, 1, 8, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [3.2, 3.2, 3.2], "type": "scatter", "x": [7.2, 7.2, 7.2], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(2, 2, 12, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [2.8, 2.8, 2.8], "type": "scatter", "x": [6.2, 6.2, 6.2], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(2, 2, 13, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [3, 3, 3], "type": "scatter", "x": [6.1, 6.1, 6.1], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(1, 1, 6, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [2.8, 2.8, 2.8], "type": "scatter", "x": [6.4, 6.4, 6.4], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(1, 1, 9, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [3, 3, 3], "type": "scatter", "x": [7.2, 7.2, 7.2], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(2, 1, 11, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [2.8, 2.8, 2.8], "type": "scatter", "x": [7.4, 7.4, 7.4], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(7, 5, 29, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [3.8, 3.8, 3.8], "type": "scatter", "x": [7.9, 7.9, 7.9], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(1, 1, 6, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [2.8, 2.8, 2.8], "type": "scatter", "x": [6.4, 6.4, 6.4], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(2, 2, 13, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [2.8, 2.8, 2.8], "type": "scatter", "x": [6.3, 6.3, 6.3], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(3, 3, 18, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [2.6, 2.6, 2.6], "type": "scatter", "x": [6.1, 6.1, 6.1], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(3, 2, 16, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [3, 3, 3], "type": "scatter", "x": [7.7, 7.7, 7.7], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(2, 1, 10, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [3.4, 3.4, 3.4], "type": "scatter", "x": [6.3, 6.3, 6.3], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(1, 1, 7, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [3.1, 3.1, 3.1], "type": "scatter", "x": [6.4, 6.4, 6.4], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(2, 2, 13, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [3, 3, 3], "type": "scatter", "x": [6, 6, 6], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [3.1, 3.1, 3.1], "type": "scatter", "x": [6.9, 6.9, 6.9], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(1, 0, 5, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [3.1, 3.1, 3.1], "type": "scatter", "x": [6.7, 6.7, 6.7], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(1, 1, 9, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [3.1, 3.1, 3.1], "type": "scatter", "x": [6.9, 6.9, 6.9], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(3, 2, 17, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [2.7, 2.7, 2.7], "type": "scatter", "x": [5.8, 5.8, 5.8], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(1, 0, 5, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [3.2, 3.2, 3.2], "type": "scatter", "x": [6.8, 6.8, 6.8], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(1, 1, 6, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [3.3, 3.3, 3.3], "type": "scatter", "x": [6.7, 6.7, 6.7], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(1, 1, 7, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [3, 3, 3], "type": "scatter", "x": [6.7, 6.7, 6.7], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(3, 2, 15, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [2.5, 2.5, 2.5], "type": "scatter", "x": [6.3, 6.3, 6.3], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(1, 1, 8, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [3, 3, 3], "type": "scatter", "x": [6.5, 6.5, 6.5], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(2, 2, 12, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [3.4, 3.4, 3.4], "type": "scatter", "x": [6.2, 6.2, 6.2], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0011561224835269569, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(3, 2, 15, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9995469361393573, "y": [3, 3, 3], "type": "scatter", "x": [5.9, 5.9, 5.9], "zaxis": null, "z": null}, {"xaxis": "x", "colorbar": {"title": {"text": ""}}, "yaxis": "y", "x": [5.1, 5.1, 5.1], "showlegend": false, "mode": "markers", "name": "y1", "zmin": 0.0011561224835269569, "marker": {"color": [0.5], "cmin": 0.0011561224835269569, "opacity": 1e-10, "size": 1e-10, "colorscale": [[0, "rgba(0, 0, 4, 1.000)"], [0.00392156862745098, "rgba(1, 0, 5, 1.000)"], [0.00784313725490196, "rgba(1, 1, 6, 1.000)"], [0.011764705882352941, "rgba(1, 1, 8, 1.000)"], [0.01568627450980392, "rgba(2, 1, 10, 1.000)"], [0.0196078431372549, "rgba(2, 2, 12, 1.000)"], [0.023529411764705882, "rgba(2, 2, 14, 1.000)"], [0.027450980392156862, "rgba(3, 2, 16, 1.000)"], [0.03137254901960784, "rgba(4, 3, 18, 1.000)"], [0.03529411764705882, "rgba(4, 3, 20, 1.000)"], [0.0392156862745098, "rgba(5, 4, 23, 1.000)"], [0.043137254901960784, "rgba(6, 4, 25, 1.000)"], [0.047058823529411764, "rgba(7, 5, 27, 1.000)"], [0.050980392156862744, "rgba(8, 5, 29, 1.000)"], [0.054901960784313725, "rgba(9, 6, 31, 1.000)"], [0.058823529411764705, "rgba(10, 7, 34, 1.000)"], [0.06274509803921569, "rgba(11, 7, 36, 1.000)"], [0.06666666666666667, "rgba(12, 8, 38, 1.000)"], [0.07058823529411765, "rgba(13, 8, 41, 1.000)"], [0.07450980392156863, "rgba(14, 9, 43, 1.000)"], [0.0784313725490196, "rgba(16, 9, 45, 1.000)"], [0.08235294117647059, "rgba(17, 10, 48, 1.000)"], [0.08627450980392157, "rgba(18, 10, 50, 1.000)"], [0.09019607843137255, "rgba(20, 11, 52, 1.000)"], [0.09411764705882353, "rgba(21, 11, 55, 1.000)"], [0.09803921568627451, "rgba(22, 11, 57, 1.000)"], [0.10196078431372549, "rgba(24, 12, 60, 1.000)"], [0.10588235294117647, "rgba(25, 12, 62, 1.000)"], [0.10980392156862745, "rgba(27, 12, 65, 1.000)"], [0.11372549019607843, "rgba(28, 12, 67, 1.000)"], [0.11764705882352941, "rgba(30, 12, 69, 1.000)"], [0.12156862745098039, "rgba(31, 12, 72, 1.000)"], [0.12549019607843137, "rgba(33, 12, 74, 1.000)"], [0.12941176470588237, "rgba(35, 12, 76, 1.000)"], [0.13333333333333333, "rgba(36, 12, 79, 1.000)"], [0.13725490196078433, "rgba(38, 12, 81, 1.000)"], [0.1411764705882353, "rgba(40, 11, 83, 1.000)"], [0.1450980392156863, "rgba(41, 11, 85, 1.000)"], [0.14901960784313725, "rgba(43, 11, 87, 1.000)"], [0.15294117647058825, "rgba(45, 11, 89, 1.000)"], [0.1568627450980392, "rgba(47, 10, 91, 1.000)"], [0.1607843137254902, "rgba(49, 10, 92, 1.000)"], [0.16470588235294117, "rgba(50, 10, 94, 1.000)"], [0.16862745098039217, "rgba(52, 10, 95, 1.000)"], [0.17254901960784313, "rgba(54, 9, 97, 1.000)"], [0.17647058823529413, "rgba(56, 9, 98, 1.000)"], [0.1803921568627451, "rgba(57, 9, 99, 1.000)"], [0.1843137254901961, "rgba(59, 9, 100, 1.000)"], [0.18823529411764706, "rgba(61, 9, 101, 1.000)"], [0.19215686274509805, "rgba(62, 9, 102, 1.000)"], [0.19607843137254902, "rgba(64, 10, 103, 1.000)"], [0.2, "rgba(66, 10, 104, 1.000)"], [0.20392156862745098, "rgba(68, 10, 104, 1.000)"], [0.20784313725490197, "rgba(69, 10, 105, 1.000)"], [0.21176470588235294, "rgba(71, 11, 106, 1.000)"], [0.21568627450980393, "rgba(73, 11, 106, 1.000)"], [0.2196078431372549, "rgba(74, 12, 107, 1.000)"], [0.2235294117647059, "rgba(76, 12, 107, 1.000)"], [0.22745098039215686, "rgba(77, 13, 108, 1.000)"], [0.23137254901960785, "rgba(79, 13, 108, 1.000)"], [0.23529411764705882, "rgba(81, 14, 108, 1.000)"], [0.23921568627450981, "rgba(82, 14, 109, 1.000)"], [0.24313725490196078, "rgba(84, 15, 109, 1.000)"], [0.24705882352941178, "rgba(85, 15, 109, 1.000)"], [0.25098039215686274, "rgba(87, 16, 110, 1.000)"], [0.2549019607843137, "rgba(89, 16, 110, 1.000)"], [0.25882352941176473, "rgba(90, 17, 110, 1.000)"], [0.2627450980392157, "rgba(92, 18, 110, 1.000)"], [0.26666666666666666, "rgba(93, 18, 110, 1.000)"], [0.27058823529411763, "rgba(95, 19, 110, 1.000)"], [0.27450980392156865, "rgba(97, 19, 110, 1.000)"], [0.2784313725490196, "rgba(98, 20, 110, 1.000)"], [0.2823529411764706, "rgba(100, 21, 110, 1.000)"], [0.28627450980392155, "rgba(101, 21, 110, 1.000)"], [0.2901960784313726, "rgba(103, 22, 110, 1.000)"], [0.29411764705882354, "rgba(105, 22, 110, 1.000)"], [0.2980392156862745, "rgba(106, 23, 110, 1.000)"], [0.30196078431372547, "rgba(108, 24, 110, 1.000)"], [0.3058823529411765, "rgba(109, 24, 110, 1.000)"], [0.30980392156862746, "rgba(111, 25, 110, 1.000)"], [0.3137254901960784, "rgba(113, 25, 110, 1.000)"], [0.3176470588235294, "rgba(114, 26, 110, 1.000)"], [0.3215686274509804, "rgba(116, 26, 110, 1.000)"], [0.3254901960784314, "rgba(117, 27, 110, 1.000)"], [0.32941176470588235, "rgba(119, 28, 109, 1.000)"], [0.3333333333333333, "rgba(120, 28, 109, 1.000)"], [0.33725490196078434, "rgba(122, 29, 109, 1.000)"], [0.3411764705882353, "rgba(124, 29, 109, 1.000)"], [0.34509803921568627, "rgba(125, 30, 109, 1.000)"], [0.34901960784313724, "rgba(127, 30, 108, 1.000)"], [0.35294117647058826, "rgba(128, 31, 108, 1.000)"], [0.3568627450980392, "rgba(130, 32, 108, 1.000)"], [0.3607843137254902, "rgba(132, 32, 107, 1.000)"], [0.36470588235294116, "rgba(133, 33, 107, 1.000)"], [0.3686274509803922, "rgba(135, 33, 107, 1.000)"], [0.37254901960784315, "rgba(136, 34, 106, 1.000)"], [0.3764705882352941, "rgba(138, 34, 106, 1.000)"], [0.3803921568627451, "rgba(140, 35, 105, 1.000)"], [0.3843137254901961, "rgba(141, 35, 105, 1.000)"], [0.38823529411764707, "rgba(143, 36, 105, 1.000)"], [0.39215686274509803, "rgba(144, 37, 104, 1.000)"], [0.396078431372549, "rgba(146, 37, 104, 1.000)"], [0.4, "rgba(147, 38, 103, 1.000)"], [0.403921568627451, "rgba(149, 38, 103, 1.000)"], [0.40784313725490196, "rgba(151, 39, 102, 1.000)"], [0.4117647058823529, "rgba(152, 39, 102, 1.000)"], [0.41568627450980394, "rgba(154, 40, 101, 1.000)"], [0.4196078431372549, "rgba(155, 41, 100, 1.000)"], [0.4235294117647059, "rgba(157, 41, 100, 1.000)"], [0.42745098039215684, "rgba(159, 42, 99, 1.000)"], [0.43137254901960786, "rgba(160, 42, 99, 1.000)"], [0.43529411764705883, "rgba(162, 43, 98, 1.000)"], [0.4392156862745098, "rgba(163, 44, 97, 1.000)"], [0.44313725490196076, "rgba(165, 44, 96, 1.000)"], [0.4470588235294118, "rgba(166, 45, 96, 1.000)"], [0.45098039215686275, "rgba(168, 46, 95, 1.000)"], [0.4549019607843137, "rgba(169, 46, 94, 1.000)"], [0.4588235294117647, "rgba(171, 47, 94, 1.000)"], [0.4627450980392157, "rgba(173, 48, 93, 1.000)"], [0.4666666666666667, "rgba(174, 48, 92, 1.000)"], [0.47058823529411764, "rgba(176, 49, 91, 1.000)"], [0.4745098039215686, "rgba(177, 50, 90, 1.000)"], [0.47843137254901963, "rgba(179, 50, 90, 1.000)"], [0.4823529411764706, "rgba(180, 51, 89, 1.000)"], [0.48627450980392156, "rgba(182, 52, 88, 1.000)"], [0.49019607843137253, "rgba(183, 53, 87, 1.000)"], [0.49411764705882355, "rgba(185, 53, 86, 1.000)"], [0.4980392156862745, "rgba(186, 54, 85, 1.000)"], [0.5019607843137255, "rgba(188, 55, 84, 1.000)"], [0.5058823529411764, "rgba(189, 56, 83, 1.000)"], [0.5098039215686274, "rgba(191, 57, 82, 1.000)"], [0.5137254901960784, "rgba(192, 58, 81, 1.000)"], [0.5176470588235295, "rgba(193, 58, 80, 1.000)"], [0.5215686274509804, "rgba(195, 59, 79, 1.000)"], [0.5254901960784314, "rgba(196, 60, 78, 1.000)"], [0.5294117647058824, "rgba(198, 61, 77, 1.000)"], [0.5333333333333333, "rgba(199, 62, 76, 1.000)"], [0.5372549019607843, "rgba(200, 63, 75, 1.000)"], [0.5411764705882353, "rgba(202, 64, 74, 1.000)"], [0.5450980392156862, "rgba(203, 65, 73, 1.000)"], [0.5490196078431373, "rgba(204, 66, 72, 1.000)"], [0.5529411764705883, "rgba(206, 67, 71, 1.000)"], [0.5568627450980392, "rgba(207, 68, 70, 1.000)"], [0.5607843137254902, "rgba(208, 69, 69, 1.000)"], [0.5647058823529412, "rgba(210, 70, 68, 1.000)"], [0.5686274509803921, "rgba(211, 71, 67, 1.000)"], [0.5725490196078431, "rgba(212, 72, 66, 1.000)"], [0.5764705882352941, "rgba(213, 74, 65, 1.000)"], [0.5803921568627451, "rgba(215, 75, 63, 1.000)"], [0.5843137254901961, "rgba(216, 76, 62, 1.000)"], [0.5882352941176471, "rgba(217, 77, 61, 1.000)"], [0.592156862745098, "rgba(218, 78, 60, 1.000)"], [0.596078431372549, "rgba(219, 80, 59, 1.000)"], [0.6, "rgba(221, 81, 58, 1.000)"], [0.6039215686274509, "rgba(222, 82, 56, 1.000)"], [0.6078431372549019, "rgba(223, 83, 55, 1.000)"], [0.611764705882353, "rgba(224, 85, 54, 1.000)"], [0.615686274509804, "rgba(225, 86, 53, 1.000)"], [0.6196078431372549, "rgba(226, 87, 52, 1.000)"], [0.6235294117647059, "rgba(227, 89, 51, 1.000)"], [0.6274509803921569, "rgba(228, 90, 49, 1.000)"], [0.6313725490196078, "rgba(229, 92, 48, 1.000)"], [0.6352941176470588, "rgba(230, 93, 47, 1.000)"], [0.6392156862745098, "rgba(231, 94, 46, 1.000)"], [0.6431372549019608, "rgba(232, 96, 45, 1.000)"], [0.6470588235294118, "rgba(233, 97, 43, 1.000)"], [0.6509803921568628, "rgba(234, 99, 42, 1.000)"], [0.6549019607843137, "rgba(235, 100, 41, 1.000)"], [0.6588235294117647, "rgba(235, 102, 40, 1.000)"], [0.6627450980392157, "rgba(236, 103, 38, 1.000)"], [0.6666666666666666, "rgba(237, 105, 37, 1.000)"], [0.6705882352941176, "rgba(238, 106, 36, 1.000)"], [0.6745098039215687, "rgba(239, 108, 35, 1.000)"], [0.6784313725490196, "rgba(239, 110, 33, 1.000)"], [0.6823529411764706, "rgba(240, 111, 32, 1.000)"], [0.6862745098039216, "rgba(241, 113, 31, 1.000)"], [0.6901960784313725, "rgba(241, 115, 29, 1.000)"], [0.6941176470588235, "rgba(242, 116, 28, 1.000)"], [0.6980392156862745, "rgba(243, 118, 27, 1.000)"], [0.7019607843137254, "rgba(243, 120, 25, 1.000)"], [0.7058823529411765, "rgba(244, 121, 24, 1.000)"], [0.7098039215686275, "rgba(245, 123, 23, 1.000)"], [0.7137254901960784, "rgba(245, 125, 21, 1.000)"], [0.7176470588235294, "rgba(246, 126, 20, 1.000)"], [0.7215686274509804, "rgba(246, 128, 19, 1.000)"], [0.7254901960784313, "rgba(247, 130, 18, 1.000)"], [0.7294117647058823, "rgba(247, 132, 16, 1.000)"], [0.7333333333333333, "rgba(248, 133, 15, 1.000)"], [0.7372549019607844, "rgba(248, 135, 14, 1.000)"], [0.7411764705882353, "rgba(248, 137, 12, 1.000)"], [0.7450980392156863, "rgba(249, 139, 11, 1.000)"], [0.7490196078431373, "rgba(249, 140, 10, 1.000)"], [0.7529411764705882, "rgba(249, 142, 9, 1.000)"], [0.7568627450980392, "rgba(250, 144, 8, 1.000)"], [0.7607843137254902, "rgba(250, 146, 7, 1.000)"], [0.7647058823529411, "rgba(250, 148, 7, 1.000)"], [0.7686274509803922, "rgba(251, 150, 6, 1.000)"], [0.7725490196078432, "rgba(251, 151, 6, 1.000)"], [0.7764705882352941, "rgba(251, 153, 6, 1.000)"], [0.7803921568627451, "rgba(251, 155, 6, 1.000)"], [0.7843137254901961, "rgba(251, 157, 7, 1.000)"], [0.788235294117647, "rgba(252, 159, 7, 1.000)"], [0.792156862745098, "rgba(252, 161, 8, 1.000)"], [0.796078431372549, "rgba(252, 163, 9, 1.000)"], [0.8, "rgba(252, 165, 10, 1.000)"], [0.803921568627451, "rgba(252, 166, 12, 1.000)"], [0.807843137254902, "rgba(252, 168, 13, 1.000)"], [0.8117647058823529, "rgba(252, 170, 15, 1.000)"], [0.8156862745098039, "rgba(252, 172, 17, 1.000)"], [0.8196078431372549, "rgba(252, 174, 18, 1.000)"], [0.8235294117647058, "rgba(252, 176, 20, 1.000)"], [0.8274509803921568, "rgba(252, 178, 22, 1.000)"], [0.8313725490196079, "rgba(252, 180, 24, 1.000)"], [0.8352941176470589, "rgba(251, 182, 26, 1.000)"], [0.8392156862745098, "rgba(251, 184, 29, 1.000)"], [0.8431372549019608, "rgba(251, 186, 31, 1.000)"], [0.8470588235294118, "rgba(251, 188, 33, 1.000)"], [0.8509803921568627, "rgba(251, 190, 35, 1.000)"], [0.8549019607843137, "rgba(250, 192, 38, 1.000)"], [0.8588235294117647, "rgba(250, 194, 40, 1.000)"], [0.8627450980392157, "rgba(250, 196, 42, 1.000)"], [0.8666666666666667, "rgba(250, 198, 45, 1.000)"], [0.8705882352941177, "rgba(249, 199, 47, 1.000)"], [0.8745098039215686, "rgba(249, 201, 50, 1.000)"], [0.8784313725490196, "rgba(249, 203, 53, 1.000)"], [0.8823529411764706, "rgba(248, 205, 55, 1.000)"], [0.8862745098039215, "rgba(248, 207, 58, 1.000)"], [0.8901960784313725, "rgba(247, 209, 61, 1.000)"], [0.8941176470588236, "rgba(247, 211, 64, 1.000)"], [0.8980392156862745, "rgba(246, 213, 67, 1.000)"], [0.9019607843137255, "rgba(246, 215, 70, 1.000)"], [0.9058823529411765, "rgba(245, 217, 73, 1.000)"], [0.9098039215686274, "rgba(245, 219, 76, 1.000)"], [0.9137254901960784, "rgba(244, 221, 79, 1.000)"], [0.9176470588235294, "rgba(244, 223, 83, 1.000)"], [0.9215686274509803, "rgba(244, 225, 86, 1.000)"], [0.9254901960784314, "rgba(243, 227, 90, 1.000)"], [0.9294117647058824, "rgba(243, 229, 93, 1.000)"], [0.9333333333333333, "rgba(242, 230, 97, 1.000)"], [0.9372549019607843, "rgba(242, 232, 101, 1.000)"], [0.9411764705882353, "rgba(242, 234, 105, 1.000)"], [0.9450980392156862, "rgba(241, 236, 109, 1.000)"], [0.9490196078431372, "rgba(241, 237, 113, 1.000)"], [0.9529411764705882, "rgba(241, 239, 117, 1.000)"], [0.9568627450980393, "rgba(241, 241, 121, 1.000)"], [0.9607843137254902, "rgba(242, 242, 125, 1.000)"], [0.9647058823529412, "rgba(242, 244, 130, 1.000)"], [0.9686274509803922, "rgba(243, 245, 134, 1.000)"], [0.9725490196078431, "rgba(243, 246, 138, 1.000)"], [0.9764705882352941, "rgba(244, 248, 142, 1.000)"], [0.9803921568627451, "rgba(245, 249, 146, 1.000)"], [0.984313725490196, "rgba(246, 250, 150, 1.000)"], [0.9882352941176471, "rgba(248, 251, 154, 1.000)"], [0.9921568627450981, "rgba(249, 252, 157, 1.000)"], [0.996078431372549, "rgba(250, 253, 161, 1.000)"], [1, "rgba(252, 255, 164, 1.000)"]], "cmax": 0.9995469361393573, "showscale": true}, "zmax": 0.9995469361393573, "y": [3.5, 3.5, 3.5], "type": "scatter", "hoverinfo": "none", "zaxis": null, "z": null}, {"showlegend": true, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [3.5, 3.5, 3.5], "type": "scatter", "x": [5.1, 5.1, 5.1], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(1, 1, 6, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [3, 3, 3], "type": "scatter", "x": [4.9, 4.9, 4.9], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(1, 0, 6, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [3.2, 3.2, 3.2], "type": "scatter", "x": [4.7, 4.7, 4.7], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(1, 1, 7, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [3.1, 3.1, 3.1], "type": "scatter", "x": [4.6, 4.6, 4.6], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [3.6, 3.6, 3.6], "type": "scatter", "x": [5, 5, 5], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(2, 2, 13, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [3.9, 3.9, 3.9], "type": "scatter", "x": [5.4, 5.4, 5.4], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(1, 0, 6, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [3.4, 3.4, 3.4], "type": "scatter", "x": [4.6, 4.6, 4.6], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [3.4, 3.4, 3.4], "type": "scatter", "x": [5, 5, 5], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(2, 2, 13, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [2.9, 2.9, 2.9], "type": "scatter", "x": [4.4, 4.4, 4.4], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(1, 0, 5, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [3.1, 3.1, 3.1], "type": "scatter", "x": [4.9, 4.9, 4.9], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(1, 1, 7, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [3.7, 3.7, 3.7], "type": "scatter", "x": [5.4, 5.4, 5.4], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [3.4, 3.4, 3.4], "type": "scatter", "x": [4.8, 4.8, 4.8], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(1, 1, 7, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [3, 3, 3], "type": "scatter", "x": [4.8, 4.8, 4.8], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(3, 2, 15, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [3, 3, 3], "type": "scatter", "x": [4.3, 4.3, 4.3], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(5, 4, 22, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [4, 4, 4], "type": "scatter", "x": [5.8, 5.8, 5.8], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(8, 6, 31, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [4.4, 4.4, 4.4], "type": "scatter", "x": [5.7, 5.7, 5.7], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(2, 1, 11, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [3.9, 3.9, 3.9], "type": "scatter", "x": [5.4, 5.4, 5.4], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [3.5, 3.5, 3.5], "type": "scatter", "x": [5.1, 5.1, 5.1], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(3, 3, 18, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [3.8, 3.8, 3.8], "type": "scatter", "x": [5.7, 5.7, 5.7], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(1, 0, 6, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [3.8, 3.8, 3.8], "type": "scatter", "x": [5.1, 5.1, 5.1], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(1, 1, 7, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [3.4, 3.4, 3.4], "type": "scatter", "x": [5.4, 5.4, 5.4], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(1, 0, 5, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [3.7, 3.7, 3.7], "type": "scatter", "x": [5.1, 5.1, 5.1], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(1, 1, 9, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [3.6, 3.6, 3.6], "type": "scatter", "x": [4.6, 4.6, 4.6], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(1, 0, 6, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [3.3, 3.3, 3.3], "type": "scatter", "x": [5.1, 5.1, 5.1], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(1, 1, 7, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [3.4, 3.4, 3.4], "type": "scatter", "x": [4.8, 4.8, 4.8], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(1, 1, 6, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [3, 3, 3], "type": "scatter", "x": [5, 5, 5], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [3.4, 3.4, 3.4], "type": "scatter", "x": [5, 5, 5], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [3.5, 3.5, 3.5], "type": "scatter", "x": [5.2, 5.2, 5.2], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [3.4, 3.4, 3.4], "type": "scatter", "x": [5.2, 5.2, 5.2], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(1, 0, 6, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [3.2, 3.2, 3.2], "type": "scatter", "x": [4.7, 4.7, 4.7], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(1, 0, 6, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [3.1, 3.1, 3.1], "type": "scatter", "x": [4.8, 4.8, 4.8], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(1, 1, 6, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [3.4, 3.4, 3.4], "type": "scatter", "x": [5.4, 5.4, 5.4], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(2, 2, 12, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [4.1, 4.1, 4.1], "type": "scatter", "x": [5.2, 5.2, 5.2], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(4, 3, 19, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [4.2, 4.2, 4.2], "type": "scatter", "x": [5.5, 5.5, 5.5], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(1, 0, 5, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [3.1, 3.1, 3.1], "type": "scatter", "x": [4.9, 4.9, 4.9], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(1, 0, 5, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [3.2, 3.2, 3.2], "type": "scatter", "x": [5, 5, 5], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(1, 1, 8, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [3.5, 3.5, 3.5], "type": "scatter", "x": [5.5, 5.5, 5.5], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(1, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [3.6, 3.6, 3.6], "type": "scatter", "x": [4.9, 4.9, 4.9], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(2, 2, 12, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [3, 3, 3], "type": "scatter", "x": [4.4, 4.4, 4.4], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [3.4, 3.4, 3.4], "type": "scatter", "x": [5.1, 5.1, 5.1], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [3.5, 3.5, 3.5], "type": "scatter", "x": [5, 5, 5], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(7, 5, 27, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [2.3, 2.3, 2.3], "type": "scatter", "x": [4.5, 4.5, 4.5], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(1, 1, 10, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [3.2, 3.2, 3.2], "type": "scatter", "x": [4.4, 4.4, 4.4], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(1, 0, 6, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [3.5, 3.5, 3.5], "type": "scatter", "x": [5, 5, 5], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(2, 1, 10, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [3.8, 3.8, 3.8], "type": "scatter", "x": [5.1, 5.1, 5.1], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(1, 1, 7, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [3, 3, 3], "type": "scatter", "x": [4.8, 4.8, 4.8], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(1, 1, 6, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [3.8, 3.8, 3.8], "type": "scatter", "x": [5.1, 5.1, 5.1], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(1, 1, 6, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [3.2, 3.2, 3.2], "type": "scatter", "x": [4.6, 4.6, 4.6], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(1, 1, 6, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [3.7, 3.7, 3.7], "type": "scatter", "x": [5.3, 5.3, 5.3], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [3.3, 3.3, 3.3], "type": "scatter", "x": [5, 5, 5], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(190, 56, 83, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [3.2, 3.2, 3.2], "type": "scatter", "x": [7, 7, 7], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(70, 11, 105, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [3.2, 3.2, 3.2], "type": "scatter", "x": [6.4, 6.4, 6.4], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(223, 83, 55, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [3.1, 3.1, 3.1], "type": "scatter", "x": [6.9, 6.9, 6.9], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(17, 10, 47, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [2.3, 2.3, 2.3], "type": "scatter", "x": [5.5, 5.5, 5.5], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(74, 12, 107, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [2.8, 2.8, 2.8], "type": "scatter", "x": [6.5, 6.5, 6.5], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(2, 2, 12, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [2.8, 2.8, 2.8], "type": "scatter", "x": [5.7, 5.7, 5.7], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(108, 24, 110, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [3.3, 3.3, 3.3], "type": "scatter", "x": [6.3, 6.3, 6.3], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(36, 12, 79, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [2.4, 2.4, 2.4], "type": "scatter", "x": [4.9, 4.9, 4.9], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(87, 16, 110, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [2.9, 2.9, 2.9], "type": "scatter", "x": [6.6, 6.6, 6.6], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(21, 11, 56, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [2.7, 2.7, 2.7], "type": "scatter", "x": [5.2, 5.2, 5.2], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(42, 11, 86, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [2, 2, 2], "type": "scatter", "x": [5, 5, 5], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(3, 3, 17, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [3, 3, 3], "type": "scatter", "x": [5.9, 5.9, 5.9], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(24, 12, 60, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [2.2, 2.2, 2.2], "type": "scatter", "x": [6, 6, 6], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(19, 11, 52, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [2.9, 2.9, 2.9], "type": "scatter", "x": [6.1, 6.1, 6.1], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(21, 11, 54, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [2.9, 2.9, 2.9], "type": "scatter", "x": [5.6, 5.6, 5.6], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(96, 19, 110, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [3.1, 3.1, 3.1], "type": "scatter", "x": [6.7, 6.7, 6.7], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(8, 6, 31, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [3, 3, 3], "type": "scatter", "x": [5.6, 5.6, 5.6], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(7, 5, 28, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [2.7, 2.7, 2.7], "type": "scatter", "x": [5.8, 5.8, 5.8], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(39, 11, 82, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [2.2, 2.2, 2.2], "type": "scatter", "x": [6.2, 6.2, 6.2], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(13, 8, 41, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [2.5, 2.5, 2.5], "type": "scatter", "x": [5.6, 5.6, 5.6], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(88, 16, 110, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [3.2, 3.2, 3.2], "type": "scatter", "x": [5.9, 5.9, 5.9], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(6, 5, 27, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [2.8, 2.8, 2.8], "type": "scatter", "x": [6.1, 6.1, 6.1], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(97, 19, 110, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [2.5, 2.5, 2.5], "type": "scatter", "x": [6.3, 6.3, 6.3], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(18, 10, 49, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [2.8, 2.8, 2.8], "type": "scatter", "x": [6.1, 6.1, 6.1], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(24, 12, 60, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [2.9, 2.9, 2.9], "type": "scatter", "x": [6.4, 6.4, 6.4], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(72, 11, 106, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [3, 3, 3], "type": "scatter", "x": [6.6, 6.6, 6.6], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(167, 45, 95, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [2.8, 2.8, 2.8], "type": "scatter", "x": [6.8, 6.8, 6.8], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(240, 111, 32, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [3, 3, 3], "type": "scatter", "x": [6.7, 6.7, 6.7], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(3, 2, 16, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [2.9, 2.9, 2.9], "type": "scatter", "x": [6, 6, 6], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(25, 12, 62, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [2.6, 2.6, 2.6], "type": "scatter", "x": [5.7, 5.7, 5.7], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(20, 11, 53, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [2.4, 2.4, 2.4], "type": "scatter", "x": [5.5, 5.5, 5.5], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(24, 12, 60, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [2.4, 2.4, 2.4], "type": "scatter", "x": [5.5, 5.5, 5.5], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(7, 5, 29, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [2.7, 2.7, 2.7], "type": "scatter", "x": [5.8, 5.8, 5.8], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(117, 27, 110, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [2.7, 2.7, 2.7], "type": "scatter", "x": [6, 6, 6], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(17, 10, 48, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [3, 3, 3], "type": "scatter", "x": [5.4, 5.4, 5.4], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(54, 9, 97, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [3.4, 3.4, 3.4], "type": "scatter", "x": [6, 6, 6], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(154, 40, 101, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [3.1, 3.1, 3.1], "type": "scatter", "x": [6.7, 6.7, 6.7], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(29, 12, 69, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [2.3, 2.3, 2.3], "type": "scatter", "x": [6.3, 6.3, 6.3], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(7, 5, 27, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [3, 3, 3], "type": "scatter", "x": [5.6, 5.6, 5.6], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(11, 7, 36, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [2.5, 2.5, 2.5], "type": "scatter", "x": [5.5, 5.5, 5.5], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(7, 5, 28, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [2.6, 2.6, 2.6], "type": "scatter", "x": [5.5, 5.5, 5.5], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(14, 9, 43, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [3, 3, 3], "type": "scatter", "x": [6.1, 6.1, 6.1], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(5, 4, 24, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [2.6, 2.6, 2.6], "type": "scatter", "x": [5.8, 5.8, 5.8], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(37, 12, 79, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [2.3, 2.3, 2.3], "type": "scatter", "x": [5, 5, 5], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(3, 3, 17, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [2.7, 2.7, 2.7], "type": "scatter", "x": [5.6, 5.6, 5.6], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(5, 4, 22, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [3, 3, 3], "type": "scatter", "x": [5.7, 5.7, 5.7], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(2, 2, 14, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [2.9, 2.9, 2.9], "type": "scatter", "x": [5.7, 5.7, 5.7], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(6, 5, 26, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [2.9, 2.9, 2.9], "type": "scatter", "x": [6.2, 6.2, 6.2], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(33, 12, 74, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [2.5, 2.5, 2.5], "type": "scatter", "x": [5.1, 5.1, 5.1], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(3, 2, 16, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [2.8, 2.8, 2.8], "type": "scatter", "x": [5.7, 5.7, 5.7], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(249, 199, 47, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [3.3, 3.3, 3.3], "type": "scatter", "x": [6.3, 6.3, 6.3], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(131, 32, 107, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [2.7, 2.7, 2.7], "type": "scatter", "x": [5.8, 5.8, 5.8], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(242, 244, 131, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [3, 3, 3], "type": "scatter", "x": [7.1, 7.1, 7.1], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(250, 192, 38, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [2.9, 2.9, 2.9], "type": "scatter", "x": [6.3, 6.3, 6.3], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(243, 245, 133, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [3, 3, 3], "type": "scatter", "x": [6.5, 6.5, 6.5], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(252, 175, 19, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [3, 3, 3], "type": "scatter", "x": [7.6, 7.6, 7.6], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(52, 10, 95, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [2.5, 2.5, 2.5], "type": "scatter", "x": [4.9, 4.9, 4.9], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(249, 200, 49, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [2.9, 2.9, 2.9], "type": "scatter", "x": [7.3, 7.3, 7.3], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(249, 204, 53, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [2.5, 2.5, 2.5], "type": "scatter", "x": [6.7, 6.7, 6.7], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(249, 199, 47, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [3.6, 3.6, 3.6], "type": "scatter", "x": [7.2, 7.2, 7.2], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(251, 156, 6, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [3.2, 3.2, 3.2], "type": "scatter", "x": [6.5, 6.5, 6.5], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(251, 151, 6, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [2.7, 2.7, 2.7], "type": "scatter", "x": [6.4, 6.4, 6.4], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(252, 255, 164, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [3, 3, 3], "type": "scatter", "x": [6.8, 6.8, 6.8], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(111, 25, 110, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [2.5, 2.5, 2.5], "type": "scatter", "x": [5.7, 5.7, 5.7], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(189, 56, 83, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [2.8, 2.8, 2.8], "type": "scatter", "x": [5.8, 5.8, 5.8], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(250, 194, 41, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [3.2, 3.2, 3.2], "type": "scatter", "x": [6.4, 6.4, 6.4], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(243, 226, 88, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [3, 3, 3], "type": "scatter", "x": [6.5, 6.5, 6.5], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(251, 151, 6, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [3.8, 3.8, 3.8], "type": "scatter", "x": [7.7, 7.7, 7.7], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(250, 148, 7, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [2.6, 2.6, 2.6], "type": "scatter", "x": [7.7, 7.7, 7.7], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(91, 17, 110, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [2.2, 2.2, 2.2], "type": "scatter", "x": [6, 6, 6], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(245, 249, 147, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [3.2, 3.2, 3.2], "type": "scatter", "x": [6.9, 6.9, 6.9], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(92, 18, 110, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [2.8, 2.8, 2.8], "type": "scatter", "x": [5.6, 5.6, 5.6], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(252, 161, 8, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [2.8, 2.8, 2.8], "type": "scatter", "x": [7.7, 7.7, 7.7], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(142, 36, 105, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [2.7, 2.7, 2.7], "type": "scatter", "x": [6.3, 6.3, 6.3], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(247, 251, 152, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [3.3, 3.3, 3.3], "type": "scatter", "x": [6.7, 6.7, 6.7], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(243, 225, 86, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [3.2, 3.2, 3.2], "type": "scatter", "x": [7.2, 7.2, 7.2], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(97, 20, 110, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [2.8, 2.8, 2.8], "type": "scatter", "x": [6.2, 6.2, 6.2], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(121, 28, 109, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [3, 3, 3], "type": "scatter", "x": [6.1, 6.1, 6.1], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(244, 224, 84, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [2.8, 2.8, 2.8], "type": "scatter", "x": [6.4, 6.4, 6.4], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(246, 215, 69, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [3, 3, 3], "type": "scatter", "x": [7.2, 7.2, 7.2], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(248, 205, 55, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [2.8, 2.8, 2.8], "type": "scatter", "x": [7.4, 7.4, 7.4], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(251, 149, 6, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [3.8, 3.8, 3.8], "type": "scatter", "x": [7.9, 7.9, 7.9], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(244, 222, 82, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [2.8, 2.8, 2.8], "type": "scatter", "x": [6.4, 6.4, 6.4], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(165, 44, 97, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [2.8, 2.8, 2.8], "type": "scatter", "x": [6.3, 6.3, 6.3], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(216, 76, 63, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [2.6, 2.6, 2.6], "type": "scatter", "x": [6.1, 6.1, 6.1], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(251, 189, 34, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [3, 3, 3], "type": "scatter", "x": [7.7, 7.7, 7.7], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(250, 196, 43, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [3.4, 3.4, 3.4], "type": "scatter", "x": [6.3, 6.3, 6.3], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(247, 210, 61, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [3.1, 3.1, 3.1], "type": "scatter", "x": [6.4, 6.4, 6.4], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(79, 13, 108, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [3, 3, 3], "type": "scatter", "x": [6, 6, 6], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(245, 248, 144, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [3.1, 3.1, 3.1], "type": "scatter", "x": [6.9, 6.9, 6.9], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(243, 245, 133, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [3.1, 3.1, 3.1], "type": "scatter", "x": [6.7, 6.7, 6.7], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(250, 197, 44, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [3.1, 3.1, 3.1], "type": "scatter", "x": [6.9, 6.9, 6.9], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(131, 32, 107, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [2.7, 2.7, 2.7], "type": "scatter", "x": [5.8, 5.8, 5.8], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(243, 246, 137, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [3.2, 3.2, 3.2], "type": "scatter", "x": [6.8, 6.8, 6.8], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(242, 232, 101, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [3.3, 3.3, 3.3], "type": "scatter", "x": [6.7, 6.7, 6.7], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(247, 211, 63, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [3, 3, 3], "type": "scatter", "x": [6.7, 6.7, 6.7], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(177, 49, 91, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [2.5, 2.5, 2.5], "type": "scatter", "x": [6.3, 6.3, 6.3], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(251, 185, 30, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [3, 3, 3], "type": "scatter", "x": [6.5, 6.5, 6.5], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(252, 164, 10, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [3.4, 3.4, 3.4], "type": "scatter", "x": [6.2, 6.2, 6.2], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x2", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.00014128825060911985, "yaxis": "y2", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(146, 37, 104, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.9889303476084785, "y": [3, 3, 3], "type": "scatter", "x": [5.9, 5.9, 5.9], "zaxis": null, "z": null}, {"xaxis": "x2", "colorbar": {"title": {"text": ""}}, "yaxis": "y2", "x": [5.1, 5.1, 5.1], "showlegend": false, "mode": "markers", "name": "y1", "zmin": 0.00014128825060911985, "marker": {"color": [0.5], "cmin": 0.00014128825060911985, "opacity": 1e-10, "size": 1e-10, "colorscale": [[0, "rgba(0, 0, 4, 1.000)"], [0.00392156862745098, "rgba(1, 0, 5, 1.000)"], [0.00784313725490196, "rgba(1, 1, 6, 1.000)"], [0.011764705882352941, "rgba(1, 1, 8, 1.000)"], [0.01568627450980392, "rgba(2, 1, 10, 1.000)"], [0.0196078431372549, "rgba(2, 2, 12, 1.000)"], [0.023529411764705882, "rgba(2, 2, 14, 1.000)"], [0.027450980392156862, "rgba(3, 2, 16, 1.000)"], [0.03137254901960784, "rgba(4, 3, 18, 1.000)"], [0.03529411764705882, "rgba(4, 3, 20, 1.000)"], [0.0392156862745098, "rgba(5, 4, 23, 1.000)"], [0.043137254901960784, "rgba(6, 4, 25, 1.000)"], [0.047058823529411764, "rgba(7, 5, 27, 1.000)"], [0.050980392156862744, "rgba(8, 5, 29, 1.000)"], [0.054901960784313725, "rgba(9, 6, 31, 1.000)"], [0.058823529411764705, "rgba(10, 7, 34, 1.000)"], [0.06274509803921569, "rgba(11, 7, 36, 1.000)"], [0.06666666666666667, "rgba(12, 8, 38, 1.000)"], [0.07058823529411765, "rgba(13, 8, 41, 1.000)"], [0.07450980392156863, "rgba(14, 9, 43, 1.000)"], [0.0784313725490196, "rgba(16, 9, 45, 1.000)"], [0.08235294117647059, "rgba(17, 10, 48, 1.000)"], [0.08627450980392157, "rgba(18, 10, 50, 1.000)"], [0.09019607843137255, "rgba(20, 11, 52, 1.000)"], [0.09411764705882353, "rgba(21, 11, 55, 1.000)"], [0.09803921568627451, "rgba(22, 11, 57, 1.000)"], [0.10196078431372549, "rgba(24, 12, 60, 1.000)"], [0.10588235294117647, "rgba(25, 12, 62, 1.000)"], [0.10980392156862745, "rgba(27, 12, 65, 1.000)"], [0.11372549019607843, "rgba(28, 12, 67, 1.000)"], [0.11764705882352941, "rgba(30, 12, 69, 1.000)"], [0.12156862745098039, "rgba(31, 12, 72, 1.000)"], [0.12549019607843137, "rgba(33, 12, 74, 1.000)"], [0.12941176470588237, "rgba(35, 12, 76, 1.000)"], [0.13333333333333333, "rgba(36, 12, 79, 1.000)"], [0.13725490196078433, "rgba(38, 12, 81, 1.000)"], [0.1411764705882353, "rgba(40, 11, 83, 1.000)"], [0.1450980392156863, "rgba(41, 11, 85, 1.000)"], [0.14901960784313725, "rgba(43, 11, 87, 1.000)"], [0.15294117647058825, "rgba(45, 11, 89, 1.000)"], [0.1568627450980392, "rgba(47, 10, 91, 1.000)"], [0.1607843137254902, "rgba(49, 10, 92, 1.000)"], [0.16470588235294117, "rgba(50, 10, 94, 1.000)"], [0.16862745098039217, "rgba(52, 10, 95, 1.000)"], [0.17254901960784313, "rgba(54, 9, 97, 1.000)"], [0.17647058823529413, "rgba(56, 9, 98, 1.000)"], [0.1803921568627451, "rgba(57, 9, 99, 1.000)"], [0.1843137254901961, "rgba(59, 9, 100, 1.000)"], [0.18823529411764706, "rgba(61, 9, 101, 1.000)"], [0.19215686274509805, "rgba(62, 9, 102, 1.000)"], [0.19607843137254902, "rgba(64, 10, 103, 1.000)"], [0.2, "rgba(66, 10, 104, 1.000)"], [0.20392156862745098, "rgba(68, 10, 104, 1.000)"], [0.20784313725490197, "rgba(69, 10, 105, 1.000)"], [0.21176470588235294, "rgba(71, 11, 106, 1.000)"], [0.21568627450980393, "rgba(73, 11, 106, 1.000)"], [0.2196078431372549, "rgba(74, 12, 107, 1.000)"], [0.2235294117647059, "rgba(76, 12, 107, 1.000)"], [0.22745098039215686, "rgba(77, 13, 108, 1.000)"], [0.23137254901960785, "rgba(79, 13, 108, 1.000)"], [0.23529411764705882, "rgba(81, 14, 108, 1.000)"], [0.23921568627450981, "rgba(82, 14, 109, 1.000)"], [0.24313725490196078, "rgba(84, 15, 109, 1.000)"], [0.24705882352941178, "rgba(85, 15, 109, 1.000)"], [0.25098039215686274, "rgba(87, 16, 110, 1.000)"], [0.2549019607843137, "rgba(89, 16, 110, 1.000)"], [0.25882352941176473, "rgba(90, 17, 110, 1.000)"], [0.2627450980392157, "rgba(92, 18, 110, 1.000)"], [0.26666666666666666, "rgba(93, 18, 110, 1.000)"], [0.27058823529411763, "rgba(95, 19, 110, 1.000)"], [0.27450980392156865, "rgba(97, 19, 110, 1.000)"], [0.2784313725490196, "rgba(98, 20, 110, 1.000)"], [0.2823529411764706, "rgba(100, 21, 110, 1.000)"], [0.28627450980392155, "rgba(101, 21, 110, 1.000)"], [0.2901960784313726, "rgba(103, 22, 110, 1.000)"], [0.29411764705882354, "rgba(105, 22, 110, 1.000)"], [0.2980392156862745, "rgba(106, 23, 110, 1.000)"], [0.30196078431372547, "rgba(108, 24, 110, 1.000)"], [0.3058823529411765, "rgba(109, 24, 110, 1.000)"], [0.30980392156862746, "rgba(111, 25, 110, 1.000)"], [0.3137254901960784, "rgba(113, 25, 110, 1.000)"], [0.3176470588235294, "rgba(114, 26, 110, 1.000)"], [0.3215686274509804, "rgba(116, 26, 110, 1.000)"], [0.3254901960784314, "rgba(117, 27, 110, 1.000)"], [0.32941176470588235, "rgba(119, 28, 109, 1.000)"], [0.3333333333333333, "rgba(120, 28, 109, 1.000)"], [0.33725490196078434, "rgba(122, 29, 109, 1.000)"], [0.3411764705882353, "rgba(124, 29, 109, 1.000)"], [0.34509803921568627, "rgba(125, 30, 109, 1.000)"], [0.34901960784313724, "rgba(127, 30, 108, 1.000)"], [0.35294117647058826, "rgba(128, 31, 108, 1.000)"], [0.3568627450980392, "rgba(130, 32, 108, 1.000)"], [0.3607843137254902, "rgba(132, 32, 107, 1.000)"], [0.36470588235294116, "rgba(133, 33, 107, 1.000)"], [0.3686274509803922, "rgba(135, 33, 107, 1.000)"], [0.37254901960784315, "rgba(136, 34, 106, 1.000)"], [0.3764705882352941, "rgba(138, 34, 106, 1.000)"], [0.3803921568627451, "rgba(140, 35, 105, 1.000)"], [0.3843137254901961, "rgba(141, 35, 105, 1.000)"], [0.38823529411764707, "rgba(143, 36, 105, 1.000)"], [0.39215686274509803, "rgba(144, 37, 104, 1.000)"], [0.396078431372549, "rgba(146, 37, 104, 1.000)"], [0.4, "rgba(147, 38, 103, 1.000)"], [0.403921568627451, "rgba(149, 38, 103, 1.000)"], [0.40784313725490196, "rgba(151, 39, 102, 1.000)"], [0.4117647058823529, "rgba(152, 39, 102, 1.000)"], [0.41568627450980394, "rgba(154, 40, 101, 1.000)"], [0.4196078431372549, "rgba(155, 41, 100, 1.000)"], [0.4235294117647059, "rgba(157, 41, 100, 1.000)"], [0.42745098039215684, "rgba(159, 42, 99, 1.000)"], [0.43137254901960786, "rgba(160, 42, 99, 1.000)"], [0.43529411764705883, "rgba(162, 43, 98, 1.000)"], [0.4392156862745098, "rgba(163, 44, 97, 1.000)"], [0.44313725490196076, "rgba(165, 44, 96, 1.000)"], [0.4470588235294118, "rgba(166, 45, 96, 1.000)"], [0.45098039215686275, "rgba(168, 46, 95, 1.000)"], [0.4549019607843137, "rgba(169, 46, 94, 1.000)"], [0.4588235294117647, "rgba(171, 47, 94, 1.000)"], [0.4627450980392157, "rgba(173, 48, 93, 1.000)"], [0.4666666666666667, "rgba(174, 48, 92, 1.000)"], [0.47058823529411764, "rgba(176, 49, 91, 1.000)"], [0.4745098039215686, "rgba(177, 50, 90, 1.000)"], [0.47843137254901963, "rgba(179, 50, 90, 1.000)"], [0.4823529411764706, "rgba(180, 51, 89, 1.000)"], [0.48627450980392156, "rgba(182, 52, 88, 1.000)"], [0.49019607843137253, "rgba(183, 53, 87, 1.000)"], [0.49411764705882355, "rgba(185, 53, 86, 1.000)"], [0.4980392156862745, "rgba(186, 54, 85, 1.000)"], [0.5019607843137255, "rgba(188, 55, 84, 1.000)"], [0.5058823529411764, "rgba(189, 56, 83, 1.000)"], [0.5098039215686274, "rgba(191, 57, 82, 1.000)"], [0.5137254901960784, "rgba(192, 58, 81, 1.000)"], [0.5176470588235295, "rgba(193, 58, 80, 1.000)"], [0.5215686274509804, "rgba(195, 59, 79, 1.000)"], [0.5254901960784314, "rgba(196, 60, 78, 1.000)"], [0.5294117647058824, "rgba(198, 61, 77, 1.000)"], [0.5333333333333333, "rgba(199, 62, 76, 1.000)"], [0.5372549019607843, "rgba(200, 63, 75, 1.000)"], [0.5411764705882353, "rgba(202, 64, 74, 1.000)"], [0.5450980392156862, "rgba(203, 65, 73, 1.000)"], [0.5490196078431373, "rgba(204, 66, 72, 1.000)"], [0.5529411764705883, "rgba(206, 67, 71, 1.000)"], [0.5568627450980392, "rgba(207, 68, 70, 1.000)"], [0.5607843137254902, "rgba(208, 69, 69, 1.000)"], [0.5647058823529412, "rgba(210, 70, 68, 1.000)"], [0.5686274509803921, "rgba(211, 71, 67, 1.000)"], [0.5725490196078431, "rgba(212, 72, 66, 1.000)"], [0.5764705882352941, "rgba(213, 74, 65, 1.000)"], [0.5803921568627451, "rgba(215, 75, 63, 1.000)"], [0.5843137254901961, "rgba(216, 76, 62, 1.000)"], [0.5882352941176471, "rgba(217, 77, 61, 1.000)"], [0.592156862745098, "rgba(218, 78, 60, 1.000)"], [0.596078431372549, "rgba(219, 80, 59, 1.000)"], [0.6, "rgba(221, 81, 58, 1.000)"], [0.6039215686274509, "rgba(222, 82, 56, 1.000)"], [0.6078431372549019, "rgba(223, 83, 55, 1.000)"], [0.611764705882353, "rgba(224, 85, 54, 1.000)"], [0.615686274509804, "rgba(225, 86, 53, 1.000)"], [0.6196078431372549, "rgba(226, 87, 52, 1.000)"], [0.6235294117647059, "rgba(227, 89, 51, 1.000)"], [0.6274509803921569, "rgba(228, 90, 49, 1.000)"], [0.6313725490196078, "rgba(229, 92, 48, 1.000)"], [0.6352941176470588, "rgba(230, 93, 47, 1.000)"], [0.6392156862745098, "rgba(231, 94, 46, 1.000)"], [0.6431372549019608, "rgba(232, 96, 45, 1.000)"], [0.6470588235294118, "rgba(233, 97, 43, 1.000)"], [0.6509803921568628, "rgba(234, 99, 42, 1.000)"], [0.6549019607843137, "rgba(235, 100, 41, 1.000)"], [0.6588235294117647, "rgba(235, 102, 40, 1.000)"], [0.6627450980392157, "rgba(236, 103, 38, 1.000)"], [0.6666666666666666, "rgba(237, 105, 37, 1.000)"], [0.6705882352941176, "rgba(238, 106, 36, 1.000)"], [0.6745098039215687, "rgba(239, 108, 35, 1.000)"], [0.6784313725490196, "rgba(239, 110, 33, 1.000)"], [0.6823529411764706, "rgba(240, 111, 32, 1.000)"], [0.6862745098039216, "rgba(241, 113, 31, 1.000)"], [0.6901960784313725, "rgba(241, 115, 29, 1.000)"], [0.6941176470588235, "rgba(242, 116, 28, 1.000)"], [0.6980392156862745, "rgba(243, 118, 27, 1.000)"], [0.7019607843137254, "rgba(243, 120, 25, 1.000)"], [0.7058823529411765, "rgba(244, 121, 24, 1.000)"], [0.7098039215686275, "rgba(245, 123, 23, 1.000)"], [0.7137254901960784, "rgba(245, 125, 21, 1.000)"], [0.7176470588235294, "rgba(246, 126, 20, 1.000)"], [0.7215686274509804, "rgba(246, 128, 19, 1.000)"], [0.7254901960784313, "rgba(247, 130, 18, 1.000)"], [0.7294117647058823, "rgba(247, 132, 16, 1.000)"], [0.7333333333333333, "rgba(248, 133, 15, 1.000)"], [0.7372549019607844, "rgba(248, 135, 14, 1.000)"], [0.7411764705882353, "rgba(248, 137, 12, 1.000)"], [0.7450980392156863, "rgba(249, 139, 11, 1.000)"], [0.7490196078431373, "rgba(249, 140, 10, 1.000)"], [0.7529411764705882, "rgba(249, 142, 9, 1.000)"], [0.7568627450980392, "rgba(250, 144, 8, 1.000)"], [0.7607843137254902, "rgba(250, 146, 7, 1.000)"], [0.7647058823529411, "rgba(250, 148, 7, 1.000)"], [0.7686274509803922, "rgba(251, 150, 6, 1.000)"], [0.7725490196078432, "rgba(251, 151, 6, 1.000)"], [0.7764705882352941, "rgba(251, 153, 6, 1.000)"], [0.7803921568627451, "rgba(251, 155, 6, 1.000)"], [0.7843137254901961, "rgba(251, 157, 7, 1.000)"], [0.788235294117647, "rgba(252, 159, 7, 1.000)"], [0.792156862745098, "rgba(252, 161, 8, 1.000)"], [0.796078431372549, "rgba(252, 163, 9, 1.000)"], [0.8, "rgba(252, 165, 10, 1.000)"], [0.803921568627451, "rgba(252, 166, 12, 1.000)"], [0.807843137254902, "rgba(252, 168, 13, 1.000)"], [0.8117647058823529, "rgba(252, 170, 15, 1.000)"], [0.8156862745098039, "rgba(252, 172, 17, 1.000)"], [0.8196078431372549, "rgba(252, 174, 18, 1.000)"], [0.8235294117647058, "rgba(252, 176, 20, 1.000)"], [0.8274509803921568, "rgba(252, 178, 22, 1.000)"], [0.8313725490196079, "rgba(252, 180, 24, 1.000)"], [0.8352941176470589, "rgba(251, 182, 26, 1.000)"], [0.8392156862745098, "rgba(251, 184, 29, 1.000)"], [0.8431372549019608, "rgba(251, 186, 31, 1.000)"], [0.8470588235294118, "rgba(251, 188, 33, 1.000)"], [0.8509803921568627, "rgba(251, 190, 35, 1.000)"], [0.8549019607843137, "rgba(250, 192, 38, 1.000)"], [0.8588235294117647, "rgba(250, 194, 40, 1.000)"], [0.8627450980392157, "rgba(250, 196, 42, 1.000)"], [0.8666666666666667, "rgba(250, 198, 45, 1.000)"], [0.8705882352941177, "rgba(249, 199, 47, 1.000)"], [0.8745098039215686, "rgba(249, 201, 50, 1.000)"], [0.8784313725490196, "rgba(249, 203, 53, 1.000)"], [0.8823529411764706, "rgba(248, 205, 55, 1.000)"], [0.8862745098039215, "rgba(248, 207, 58, 1.000)"], [0.8901960784313725, "rgba(247, 209, 61, 1.000)"], [0.8941176470588236, "rgba(247, 211, 64, 1.000)"], [0.8980392156862745, "rgba(246, 213, 67, 1.000)"], [0.9019607843137255, "rgba(246, 215, 70, 1.000)"], [0.9058823529411765, "rgba(245, 217, 73, 1.000)"], [0.9098039215686274, "rgba(245, 219, 76, 1.000)"], [0.9137254901960784, "rgba(244, 221, 79, 1.000)"], [0.9176470588235294, "rgba(244, 223, 83, 1.000)"], [0.9215686274509803, "rgba(244, 225, 86, 1.000)"], [0.9254901960784314, "rgba(243, 227, 90, 1.000)"], [0.9294117647058824, "rgba(243, 229, 93, 1.000)"], [0.9333333333333333, "rgba(242, 230, 97, 1.000)"], [0.9372549019607843, "rgba(242, 232, 101, 1.000)"], [0.9411764705882353, "rgba(242, 234, 105, 1.000)"], [0.9450980392156862, "rgba(241, 236, 109, 1.000)"], [0.9490196078431372, "rgba(241, 237, 113, 1.000)"], [0.9529411764705882, "rgba(241, 239, 117, 1.000)"], [0.9568627450980393, "rgba(241, 241, 121, 1.000)"], [0.9607843137254902, "rgba(242, 242, 125, 1.000)"], [0.9647058823529412, "rgba(242, 244, 130, 1.000)"], [0.9686274509803922, "rgba(243, 245, 134, 1.000)"], [0.9725490196078431, "rgba(243, 246, 138, 1.000)"], [0.9764705882352941, "rgba(244, 248, 142, 1.000)"], [0.9803921568627451, "rgba(245, 249, 146, 1.000)"], [0.984313725490196, "rgba(246, 250, 150, 1.000)"], [0.9882352941176471, "rgba(248, 251, 154, 1.000)"], [0.9921568627450981, "rgba(249, 252, 157, 1.000)"], [0.996078431372549, "rgba(250, 253, 161, 1.000)"], [1, "rgba(252, 255, 164, 1.000)"]], "cmax": 0.9889303476084785, "showscale": false}, "zmax": 0.9889303476084785, "y": [3.5, 3.5, 3.5], "type": "scatter", "hoverinfo": "none", "zaxis": null, "z": null}, {"showlegend": true, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [3.5, 3.5, 3.5], "type": "scatter", "x": [5.1, 5.1, 5.1], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(2, 1, 10, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [3, 3, 3], "type": "scatter", "x": [4.9, 4.9, 4.9], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(1, 1, 9, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [3.2, 3.2, 3.2], "type": "scatter", "x": [4.7, 4.7, 4.7], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(2, 2, 14, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [3.1, 3.1, 3.1], "type": "scatter", "x": [4.6, 4.6, 4.6], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(1, 0, 5, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [3.6, 3.6, 3.6], "type": "scatter", "x": [5, 5, 5], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(6, 5, 26, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [3.9, 3.9, 3.9], "type": "scatter", "x": [5.4, 5.4, 5.4], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(1, 1, 9, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [3.4, 3.4, 3.4], "type": "scatter", "x": [4.6, 4.6, 4.6], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [3.4, 3.4, 3.4], "type": "scatter", "x": [5, 5, 5], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(7, 5, 28, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [2.9, 2.9, 2.9], "type": "scatter", "x": [4.4, 4.4, 4.4], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(1, 1, 8, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [3.1, 3.1, 3.1], "type": "scatter", "x": [4.9, 4.9, 4.9], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(2, 2, 13, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [3.7, 3.7, 3.7], "type": "scatter", "x": [5.4, 5.4, 5.4], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(1, 0, 5, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [3.4, 3.4, 3.4], "type": "scatter", "x": [4.8, 4.8, 4.8], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(2, 2, 12, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [3, 3, 3], "type": "scatter", "x": [4.8, 4.8, 4.8], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(8, 6, 30, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [3, 3, 3], "type": "scatter", "x": [4.3, 4.3, 4.3], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(14, 9, 43, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [4, 4, 4], "type": "scatter", "x": [5.8, 5.8, 5.8], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(26, 12, 63, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [4.4, 4.4, 4.4], "type": "scatter", "x": [5.7, 5.7, 5.7], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(4, 3, 21, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [3.9, 3.9, 3.9], "type": "scatter", "x": [5.4, 5.4, 5.4], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [3.5, 3.5, 3.5], "type": "scatter", "x": [5.1, 5.1, 5.1], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(12, 8, 39, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [3.8, 3.8, 3.8], "type": "scatter", "x": [5.7, 5.7, 5.7], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(1, 1, 9, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [3.8, 3.8, 3.8], "type": "scatter", "x": [5.1, 5.1, 5.1], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(2, 2, 13, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [3.4, 3.4, 3.4], "type": "scatter", "x": [5.4, 5.4, 5.4], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(1, 1, 7, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [3.7, 3.7, 3.7], "type": "scatter", "x": [5.1, 5.1, 5.1], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(3, 2, 16, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [3.6, 3.6, 3.6], "type": "scatter", "x": [4.6, 4.6, 4.6], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(1, 1, 9, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [3.3, 3.3, 3.3], "type": "scatter", "x": [5.1, 5.1, 5.1], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(2, 2, 14, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [3.4, 3.4, 3.4], "type": "scatter", "x": [4.8, 4.8, 4.8], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(2, 1, 11, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [3, 3, 3], "type": "scatter", "x": [5, 5, 5], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(1, 0, 5, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [3.4, 3.4, 3.4], "type": "scatter", "x": [5, 5, 5], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(1, 0, 5, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [3.5, 3.5, 3.5], "type": "scatter", "x": [5.2, 5.2, 5.2], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(1, 0, 5, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [3.4, 3.4, 3.4], "type": "scatter", "x": [5.2, 5.2, 5.2], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(1, 1, 9, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [3.2, 3.2, 3.2], "type": "scatter", "x": [4.7, 4.7, 4.7], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(1, 1, 9, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [3.1, 3.1, 3.1], "type": "scatter", "x": [4.8, 4.8, 4.8], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(2, 1, 11, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [3.4, 3.4, 3.4], "type": "scatter", "x": [5.4, 5.4, 5.4], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(5, 4, 24, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [4.1, 4.1, 4.1], "type": "scatter", "x": [5.2, 5.2, 5.2], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(11, 7, 37, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [4.2, 4.2, 4.2], "type": "scatter", "x": [5.5, 5.5, 5.5], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(1, 1, 7, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [3.1, 3.1, 3.1], "type": "scatter", "x": [4.9, 4.9, 4.9], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(1, 1, 7, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [3.2, 3.2, 3.2], "type": "scatter", "x": [5, 5, 5], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(3, 2, 15, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [3.5, 3.5, 3.5], "type": "scatter", "x": [5.5, 5.5, 5.5], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(1, 0, 6, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [3.6, 3.6, 3.6], "type": "scatter", "x": [4.9, 4.9, 4.9], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(5, 4, 24, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [3, 3, 3], "type": "scatter", "x": [4.4, 4.4, 4.4], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [3.4, 3.4, 3.4], "type": "scatter", "x": [5.1, 5.1, 5.1], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(1, 0, 5, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [3.5, 3.5, 3.5], "type": "scatter", "x": [5, 5, 5], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(25, 12, 62, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [2.3, 2.3, 2.3], "type": "scatter", "x": [4.5, 4.5, 4.5], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(4, 3, 19, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [3.2, 3.2, 3.2], "type": "scatter", "x": [4.4, 4.4, 4.4], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(1, 1, 9, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [3.5, 3.5, 3.5], "type": "scatter", "x": [5, 5, 5], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(5, 4, 22, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [3.8, 3.8, 3.8], "type": "scatter", "x": [5.1, 5.1, 5.1], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(2, 2, 12, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [3, 3, 3], "type": "scatter", "x": [4.8, 4.8, 4.8], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(2, 1, 10, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [3.8, 3.8, 3.8], "type": "scatter", "x": [5.1, 5.1, 5.1], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(2, 1, 11, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [3.2, 3.2, 3.2], "type": "scatter", "x": [4.6, 4.6, 4.6], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(2, 1, 10, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [3.7, 3.7, 3.7], "type": "scatter", "x": [5.3, 5.3, 5.3], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(0, 0, 4, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [3.3, 3.3, 3.3], "type": "scatter", "x": [5, 5, 5], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(174, 48, 92, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [3.2, 3.2, 3.2], "type": "scatter", "x": [7, 7, 7], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(251, 157, 6, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [3.2, 3.2, 3.2], "type": "scatter", "x": [6.4, 6.4, 6.4], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(138, 35, 106, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [3.1, 3.1, 3.1], "type": "scatter", "x": [6.9, 6.9, 6.9], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(247, 211, 64, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [2.3, 2.3, 2.3], "type": "scatter", "x": [5.5, 5.5, 5.5], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(251, 154, 6, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [2.8, 2.8, 2.8], "type": "scatter", "x": [6.5, 6.5, 6.5], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(252, 255, 164, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [2.8, 2.8, 2.8], "type": "scatter", "x": [5.7, 5.7, 5.7], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(241, 114, 29, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [3.3, 3.3, 3.3], "type": "scatter", "x": [6.3, 6.3, 6.3], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(220, 80, 58, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [2.4, 2.4, 2.4], "type": "scatter", "x": [4.9, 4.9, 4.9], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(248, 136, 13, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [2.9, 2.9, 2.9], "type": "scatter", "x": [6.6, 6.6, 6.6], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(251, 191, 37, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [2.7, 2.7, 2.7], "type": "scatter", "x": [5.2, 5.2, 5.2], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(234, 100, 41, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [2, 2, 2], "type": "scatter", "x": [5, 5, 5], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(248, 251, 153, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [3, 3, 3], "type": "scatter", "x": [5.9, 5.9, 5.9], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(250, 197, 45, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [2.2, 2.2, 2.2], "type": "scatter", "x": [6, 6, 6], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(243, 226, 87, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [2.9, 2.9, 2.9], "type": "scatter", "x": [6.1, 6.1, 6.1], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(251, 183, 28, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [2.9, 2.9, 2.9], "type": "scatter", "x": [5.6, 5.6, 5.6], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(244, 122, 24, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [3.1, 3.1, 3.1], "type": "scatter", "x": [6.7, 6.7, 6.7], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(242, 241, 122, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [3, 3, 3], "type": "scatter", "x": [5.6, 5.6, 5.6], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(241, 238, 115, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [2.7, 2.7, 2.7], "type": "scatter", "x": [5.8, 5.8, 5.8], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(250, 193, 39, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [2.2, 2.2, 2.2], "type": "scatter", "x": [6.2, 6.2, 6.2], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(246, 215, 69, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [2.5, 2.5, 2.5], "type": "scatter", "x": [5.6, 5.6, 5.6], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(248, 136, 13, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [3.2, 3.2, 3.2], "type": "scatter", "x": [5.9, 5.9, 5.9], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(242, 242, 124, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [2.8, 2.8, 2.8], "type": "scatter", "x": [6.1, 6.1, 6.1], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(246, 129, 18, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [2.5, 2.5, 2.5], "type": "scatter", "x": [6.3, 6.3, 6.3], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(243, 227, 91, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [2.8, 2.8, 2.8], "type": "scatter", "x": [6.1, 6.1, 6.1], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(246, 214, 68, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [2.9, 2.9, 2.9], "type": "scatter", "x": [6.4, 6.4, 6.4], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(251, 152, 6, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [3, 3, 3], "type": "scatter", "x": [6.6, 6.6, 6.6], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(200, 63, 76, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [2.8, 2.8, 2.8], "type": "scatter", "x": [6.8, 6.8, 6.8], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(112, 25, 110, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [3, 3, 3], "type": "scatter", "x": [6.7, 6.7, 6.7], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(250, 253, 160, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [2.9, 2.9, 2.9], "type": "scatter", "x": [6, 6, 6], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(252, 159, 7, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [2.6, 2.6, 2.6], "type": "scatter", "x": [5.7, 5.7, 5.7], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(250, 192, 38, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [2.4, 2.4, 2.4], "type": "scatter", "x": [5.5, 5.5, 5.5], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(252, 173, 17, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [2.4, 2.4, 2.4], "type": "scatter", "x": [5.5, 5.5, 5.5], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(242, 235, 107, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [2.7, 2.7, 2.7], "type": "scatter", "x": [5.8, 5.8, 5.8], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(238, 107, 35, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [2.7, 2.7, 2.7], "type": "scatter", "x": [6, 6, 6], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(244, 222, 80, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [3, 3, 3], "type": "scatter", "x": [5.4, 5.4, 5.4], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(252, 173, 18, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [3.4, 3.4, 3.4], "type": "scatter", "x": [6, 6, 6], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(211, 71, 67, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [3.1, 3.1, 3.1], "type": "scatter", "x": [6.7, 6.7, 6.7], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(248, 204, 54, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [2.3, 2.3, 2.3], "type": "scatter", "x": [6.3, 6.3, 6.3], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(241, 239, 118, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [3, 3, 3], "type": "scatter", "x": [5.6, 5.6, 5.6], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(243, 226, 88, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [2.5, 2.5, 2.5], "type": "scatter", "x": [5.5, 5.5, 5.5], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(241, 240, 121, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [2.6, 2.6, 2.6], "type": "scatter", "x": [5.5, 5.5, 5.5], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(242, 233, 103, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [3, 3, 3], "type": "scatter", "x": [6.1, 6.1, 6.1], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(242, 242, 126, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [2.6, 2.6, 2.6], "type": "scatter", "x": [5.8, 5.8, 5.8], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(225, 86, 53, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [2.3, 2.3, 2.3], "type": "scatter", "x": [5, 5, 5], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(247, 250, 150, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [2.7, 2.7, 2.7], "type": "scatter", "x": [5.6, 5.6, 5.6], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(243, 246, 136, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [3, 3, 3], "type": "scatter", "x": [5.7, 5.7, 5.7], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(250, 253, 159, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [2.9, 2.9, 2.9], "type": "scatter", "x": [5.7, 5.7, 5.7], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(243, 245, 134, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [2.9, 2.9, 2.9], "type": "scatter", "x": [6.2, 6.2, 6.2], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(199, 62, 76, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [2.5, 2.5, 2.5], "type": "scatter", "x": [5.1, 5.1, 5.1], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(247, 251, 152, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [2.8, 2.8, 2.8], "type": "scatter", "x": [5.7, 5.7, 5.7], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(32, 12, 73, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [3.3, 3.3, 3.3], "type": "scatter", "x": [6.3, 6.3, 6.3], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(229, 91, 48, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [2.7, 2.7, 2.7], "type": "scatter", "x": [5.8, 5.8, 5.8], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(5, 4, 23, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [3, 3, 3], "type": "scatter", "x": [7.1, 7.1, 7.1], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(41, 11, 85, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [2.9, 2.9, 2.9], "type": "scatter", "x": [6.3, 6.3, 6.3], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(5, 4, 22, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [3, 3, 3], "type": "scatter", "x": [6.5, 6.5, 6.5], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(47, 10, 90, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [3, 3, 3], "type": "scatter", "x": [7.6, 7.6, 7.6], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(251, 155, 6, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [2.5, 2.5, 2.5], "type": "scatter", "x": [4.9, 4.9, 4.9], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(30, 12, 70, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [2.9, 2.9, 2.9], "type": "scatter", "x": [7.3, 7.3, 7.3], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(31, 12, 71, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [2.5, 2.5, 2.5], "type": "scatter", "x": [6.7, 6.7, 6.7], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(30, 12, 69, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [3.6, 3.6, 3.6], "type": "scatter", "x": [7.2, 7.2, 7.2], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(72, 11, 106, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [3.2, 3.2, 3.2], "type": "scatter", "x": [6.5, 6.5, 6.5], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(78, 13, 108, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [2.7, 2.7, 2.7], "type": "scatter", "x": [6.4, 6.4, 6.4], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(1, 1, 7, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [3, 3, 3], "type": "scatter", "x": [6.8, 6.8, 6.8], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(239, 109, 34, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [2.5, 2.5, 2.5], "type": "scatter", "x": [5.7, 5.7, 5.7], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(176, 49, 91, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [2.8, 2.8, 2.8], "type": "scatter", "x": [5.8, 5.8, 5.8], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(39, 11, 82, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [3.2, 3.2, 3.2], "type": "scatter", "x": [6.4, 6.4, 6.4], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(16, 10, 47, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [3, 3, 3], "type": "scatter", "x": [6.5, 6.5, 6.5], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(62, 9, 102, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [3.8, 3.8, 3.8], "type": "scatter", "x": [7.7, 7.7, 7.7], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(65, 10, 103, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [2.6, 2.6, 2.6], "type": "scatter", "x": [7.7, 7.7, 7.7], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(247, 131, 16, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [2.2, 2.2, 2.2], "type": "scatter", "x": [6, 6, 6], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(3, 2, 15, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [3.2, 3.2, 3.2], "type": "scatter", "x": [6.9, 6.9, 6.9], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(247, 130, 18, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [2.8, 2.8, 2.8], "type": "scatter", "x": [5.6, 5.6, 5.6], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(57, 9, 99, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [2.8, 2.8, 2.8], "type": "scatter", "x": [7.7, 7.7, 7.7], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(223, 84, 55, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [2.7, 2.7, 2.7], "type": "scatter", "x": [6.3, 6.3, 6.3], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(2, 2, 13, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [3.3, 3.3, 3.3], "type": "scatter", "x": [6.7, 6.7, 6.7], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(15, 9, 44, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [3.2, 3.2, 3.2], "type": "scatter", "x": [7.2, 7.2, 7.2], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(247, 130, 18, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [2.8, 2.8, 2.8], "type": "scatter", "x": [6.2, 6.2, 6.2], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(236, 103, 38, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [3, 3, 3], "type": "scatter", "x": [6.1, 6.1, 6.1], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(18, 10, 49, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [2.8, 2.8, 2.8], "type": "scatter", "x": [6.4, 6.4, 6.4], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(22, 11, 57, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [3, 3, 3], "type": "scatter", "x": [7.2, 7.2, 7.2], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(27, 12, 65, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [2.8, 2.8, 2.8], "type": "scatter", "x": [7.4, 7.4, 7.4], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(63, 10, 102, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [3.8, 3.8, 3.8], "type": "scatter", "x": [7.9, 7.9, 7.9], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(18, 10, 50, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [2.8, 2.8, 2.8], "type": "scatter", "x": [6.4, 6.4, 6.4], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(206, 67, 71, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [2.8, 2.8, 2.8], "type": "scatter", "x": [6.3, 6.3, 6.3], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(148, 38, 103, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [2.6, 2.6, 2.6], "type": "scatter", "x": [6.1, 6.1, 6.1], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(37, 12, 80, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [3, 3, 3], "type": "scatter", "x": [7.7, 7.7, 7.7], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(36, 12, 78, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [3.4, 3.4, 3.4], "type": "scatter", "x": [6.3, 6.3, 6.3], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(28, 12, 66, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [3.1, 3.1, 3.1], "type": "scatter", "x": [6.4, 6.4, 6.4], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(251, 150, 6, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [3, 3, 3], "type": "scatter", "x": [6, 6, 6], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(3, 3, 17, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [3.1, 3.1, 3.1], "type": "scatter", "x": [6.9, 6.9, 6.9], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(5, 4, 22, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [3.1, 3.1, 3.1], "type": "scatter", "x": [6.7, 6.7, 6.7], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(36, 12, 78, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [3.1, 3.1, 3.1], "type": "scatter", "x": [6.9, 6.9, 6.9], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(229, 91, 48, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [2.7, 2.7, 2.7], "type": "scatter", "x": [5.8, 5.8, 5.8], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(4, 3, 20, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [3.2, 3.2, 3.2], "type": "scatter", "x": [6.8, 6.8, 6.8], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(11, 7, 37, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [3.3, 3.3, 3.3], "type": "scatter", "x": [6.7, 6.7, 6.7], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(26, 12, 64, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [3, 3, 3], "type": "scatter", "x": [6.7, 6.7, 6.7], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(194, 59, 80, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [2.5, 2.5, 2.5], "type": "scatter", "x": [6.3, 6.3, 6.3], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(48, 10, 92, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [3, 3, 3], "type": "scatter", "x": [6.5, 6.5, 6.5], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(63, 9, 102, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [3.4, 3.4, 3.4], "type": "scatter", "x": [6.2, 6.2, 6.2], "zaxis": null, "z": null}, {"showlegend": false, "mode": "markers", "xaxis": "x3", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": 0.0003117756100335336, "yaxis": "y3", "legendgroup": "y1", "marker": {"symbol": "circle", "color": "rgba(219, 80, 59, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": 0.97379189392058, "y": [3, 3, 3], "type": "scatter", "x": [5.9, 5.9, 5.9], "zaxis": null, "z": null}, {"xaxis": "x3", "colorbar": {"title": {"text": ""}}, "yaxis": "y3", "x": [5.1, 5.1, 5.1], "showlegend": false, "mode": "markers", "name": "y1", "zmin": 0.0003117756100335336, "marker": {"color": [0.5], "cmin": 0.0003117756100335336, "opacity": 1e-10, "size": 1e-10, "colorscale": [[0, "rgba(0, 0, 4, 1.000)"], [0.00392156862745098, "rgba(1, 0, 5, 1.000)"], [0.00784313725490196, "rgba(1, 1, 6, 1.000)"], [0.011764705882352941, "rgba(1, 1, 8, 1.000)"], [0.01568627450980392, "rgba(2, 1, 10, 1.000)"], [0.0196078431372549, "rgba(2, 2, 12, 1.000)"], [0.023529411764705882, "rgba(2, 2, 14, 1.000)"], [0.027450980392156862, "rgba(3, 2, 16, 1.000)"], [0.03137254901960784, "rgba(4, 3, 18, 1.000)"], [0.03529411764705882, "rgba(4, 3, 20, 1.000)"], [0.0392156862745098, "rgba(5, 4, 23, 1.000)"], [0.043137254901960784, "rgba(6, 4, 25, 1.000)"], [0.047058823529411764, "rgba(7, 5, 27, 1.000)"], [0.050980392156862744, "rgba(8, 5, 29, 1.000)"], [0.054901960784313725, "rgba(9, 6, 31, 1.000)"], [0.058823529411764705, "rgba(10, 7, 34, 1.000)"], [0.06274509803921569, "rgba(11, 7, 36, 1.000)"], [0.06666666666666667, "rgba(12, 8, 38, 1.000)"], [0.07058823529411765, "rgba(13, 8, 41, 1.000)"], [0.07450980392156863, "rgba(14, 9, 43, 1.000)"], [0.0784313725490196, "rgba(16, 9, 45, 1.000)"], [0.08235294117647059, "rgba(17, 10, 48, 1.000)"], [0.08627450980392157, "rgba(18, 10, 50, 1.000)"], [0.09019607843137255, "rgba(20, 11, 52, 1.000)"], [0.09411764705882353, "rgba(21, 11, 55, 1.000)"], [0.09803921568627451, "rgba(22, 11, 57, 1.000)"], [0.10196078431372549, "rgba(24, 12, 60, 1.000)"], [0.10588235294117647, "rgba(25, 12, 62, 1.000)"], [0.10980392156862745, "rgba(27, 12, 65, 1.000)"], [0.11372549019607843, "rgba(28, 12, 67, 1.000)"], [0.11764705882352941, "rgba(30, 12, 69, 1.000)"], [0.12156862745098039, "rgba(31, 12, 72, 1.000)"], [0.12549019607843137, "rgba(33, 12, 74, 1.000)"], [0.12941176470588237, "rgba(35, 12, 76, 1.000)"], [0.13333333333333333, "rgba(36, 12, 79, 1.000)"], [0.13725490196078433, "rgba(38, 12, 81, 1.000)"], [0.1411764705882353, "rgba(40, 11, 83, 1.000)"], [0.1450980392156863, "rgba(41, 11, 85, 1.000)"], [0.14901960784313725, "rgba(43, 11, 87, 1.000)"], [0.15294117647058825, "rgba(45, 11, 89, 1.000)"], [0.1568627450980392, "rgba(47, 10, 91, 1.000)"], [0.1607843137254902, "rgba(49, 10, 92, 1.000)"], [0.16470588235294117, "rgba(50, 10, 94, 1.000)"], [0.16862745098039217, "rgba(52, 10, 95, 1.000)"], [0.17254901960784313, "rgba(54, 9, 97, 1.000)"], [0.17647058823529413, "rgba(56, 9, 98, 1.000)"], [0.1803921568627451, "rgba(57, 9, 99, 1.000)"], [0.1843137254901961, "rgba(59, 9, 100, 1.000)"], [0.18823529411764706, "rgba(61, 9, 101, 1.000)"], [0.19215686274509805, "rgba(62, 9, 102, 1.000)"], [0.19607843137254902, "rgba(64, 10, 103, 1.000)"], [0.2, "rgba(66, 10, 104, 1.000)"], [0.20392156862745098, "rgba(68, 10, 104, 1.000)"], [0.20784313725490197, "rgba(69, 10, 105, 1.000)"], [0.21176470588235294, "rgba(71, 11, 106, 1.000)"], [0.21568627450980393, "rgba(73, 11, 106, 1.000)"], [0.2196078431372549, "rgba(74, 12, 107, 1.000)"], [0.2235294117647059, "rgba(76, 12, 107, 1.000)"], [0.22745098039215686, "rgba(77, 13, 108, 1.000)"], [0.23137254901960785, "rgba(79, 13, 108, 1.000)"], [0.23529411764705882, "rgba(81, 14, 108, 1.000)"], [0.23921568627450981, "rgba(82, 14, 109, 1.000)"], [0.24313725490196078, "rgba(84, 15, 109, 1.000)"], [0.24705882352941178, "rgba(85, 15, 109, 1.000)"], [0.25098039215686274, "rgba(87, 16, 110, 1.000)"], [0.2549019607843137, "rgba(89, 16, 110, 1.000)"], [0.25882352941176473, "rgba(90, 17, 110, 1.000)"], [0.2627450980392157, "rgba(92, 18, 110, 1.000)"], [0.26666666666666666, "rgba(93, 18, 110, 1.000)"], [0.27058823529411763, "rgba(95, 19, 110, 1.000)"], [0.27450980392156865, "rgba(97, 19, 110, 1.000)"], [0.2784313725490196, "rgba(98, 20, 110, 1.000)"], [0.2823529411764706, "rgba(100, 21, 110, 1.000)"], [0.28627450980392155, "rgba(101, 21, 110, 1.000)"], [0.2901960784313726, "rgba(103, 22, 110, 1.000)"], [0.29411764705882354, "rgba(105, 22, 110, 1.000)"], [0.2980392156862745, "rgba(106, 23, 110, 1.000)"], [0.30196078431372547, "rgba(108, 24, 110, 1.000)"], [0.3058823529411765, "rgba(109, 24, 110, 1.000)"], [0.30980392156862746, "rgba(111, 25, 110, 1.000)"], [0.3137254901960784, "rgba(113, 25, 110, 1.000)"], [0.3176470588235294, "rgba(114, 26, 110, 1.000)"], [0.3215686274509804, "rgba(116, 26, 110, 1.000)"], [0.3254901960784314, "rgba(117, 27, 110, 1.000)"], [0.32941176470588235, "rgba(119, 28, 109, 1.000)"], [0.3333333333333333, "rgba(120, 28, 109, 1.000)"], [0.33725490196078434, "rgba(122, 29, 109, 1.000)"], [0.3411764705882353, "rgba(124, 29, 109, 1.000)"], [0.34509803921568627, "rgba(125, 30, 109, 1.000)"], [0.34901960784313724, "rgba(127, 30, 108, 1.000)"], [0.35294117647058826, "rgba(128, 31, 108, 1.000)"], [0.3568627450980392, "rgba(130, 32, 108, 1.000)"], [0.3607843137254902, "rgba(132, 32, 107, 1.000)"], [0.36470588235294116, "rgba(133, 33, 107, 1.000)"], [0.3686274509803922, "rgba(135, 33, 107, 1.000)"], [0.37254901960784315, "rgba(136, 34, 106, 1.000)"], [0.3764705882352941, "rgba(138, 34, 106, 1.000)"], [0.3803921568627451, "rgba(140, 35, 105, 1.000)"], [0.3843137254901961, "rgba(141, 35, 105, 1.000)"], [0.38823529411764707, "rgba(143, 36, 105, 1.000)"], [0.39215686274509803, "rgba(144, 37, 104, 1.000)"], [0.396078431372549, "rgba(146, 37, 104, 1.000)"], [0.4, "rgba(147, 38, 103, 1.000)"], [0.403921568627451, "rgba(149, 38, 103, 1.000)"], [0.40784313725490196, "rgba(151, 39, 102, 1.000)"], [0.4117647058823529, "rgba(152, 39, 102, 1.000)"], [0.41568627450980394, "rgba(154, 40, 101, 1.000)"], [0.4196078431372549, "rgba(155, 41, 100, 1.000)"], [0.4235294117647059, "rgba(157, 41, 100, 1.000)"], [0.42745098039215684, "rgba(159, 42, 99, 1.000)"], [0.43137254901960786, "rgba(160, 42, 99, 1.000)"], [0.43529411764705883, "rgba(162, 43, 98, 1.000)"], [0.4392156862745098, "rgba(163, 44, 97, 1.000)"], [0.44313725490196076, "rgba(165, 44, 96, 1.000)"], [0.4470588235294118, "rgba(166, 45, 96, 1.000)"], [0.45098039215686275, "rgba(168, 46, 95, 1.000)"], [0.4549019607843137, "rgba(169, 46, 94, 1.000)"], [0.4588235294117647, "rgba(171, 47, 94, 1.000)"], [0.4627450980392157, "rgba(173, 48, 93, 1.000)"], [0.4666666666666667, "rgba(174, 48, 92, 1.000)"], [0.47058823529411764, "rgba(176, 49, 91, 1.000)"], [0.4745098039215686, "rgba(177, 50, 90, 1.000)"], [0.47843137254901963, "rgba(179, 50, 90, 1.000)"], [0.4823529411764706, "rgba(180, 51, 89, 1.000)"], [0.48627450980392156, "rgba(182, 52, 88, 1.000)"], [0.49019607843137253, "rgba(183, 53, 87, 1.000)"], [0.49411764705882355, "rgba(185, 53, 86, 1.000)"], [0.4980392156862745, "rgba(186, 54, 85, 1.000)"], [0.5019607843137255, "rgba(188, 55, 84, 1.000)"], [0.5058823529411764, "rgba(189, 56, 83, 1.000)"], [0.5098039215686274, "rgba(191, 57, 82, 1.000)"], [0.5137254901960784, "rgba(192, 58, 81, 1.000)"], [0.5176470588235295, "rgba(193, 58, 80, 1.000)"], [0.5215686274509804, "rgba(195, 59, 79, 1.000)"], [0.5254901960784314, "rgba(196, 60, 78, 1.000)"], [0.5294117647058824, "rgba(198, 61, 77, 1.000)"], [0.5333333333333333, "rgba(199, 62, 76, 1.000)"], [0.5372549019607843, "rgba(200, 63, 75, 1.000)"], [0.5411764705882353, "rgba(202, 64, 74, 1.000)"], [0.5450980392156862, "rgba(203, 65, 73, 1.000)"], [0.5490196078431373, "rgba(204, 66, 72, 1.000)"], [0.5529411764705883, "rgba(206, 67, 71, 1.000)"], [0.5568627450980392, "rgba(207, 68, 70, 1.000)"], [0.5607843137254902, "rgba(208, 69, 69, 1.000)"], [0.5647058823529412, "rgba(210, 70, 68, 1.000)"], [0.5686274509803921, "rgba(211, 71, 67, 1.000)"], [0.5725490196078431, "rgba(212, 72, 66, 1.000)"], [0.5764705882352941, "rgba(213, 74, 65, 1.000)"], [0.5803921568627451, "rgba(215, 75, 63, 1.000)"], [0.5843137254901961, "rgba(216, 76, 62, 1.000)"], [0.5882352941176471, "rgba(217, 77, 61, 1.000)"], [0.592156862745098, "rgba(218, 78, 60, 1.000)"], [0.596078431372549, "rgba(219, 80, 59, 1.000)"], [0.6, "rgba(221, 81, 58, 1.000)"], [0.6039215686274509, "rgba(222, 82, 56, 1.000)"], [0.6078431372549019, "rgba(223, 83, 55, 1.000)"], [0.611764705882353, "rgba(224, 85, 54, 1.000)"], [0.615686274509804, "rgba(225, 86, 53, 1.000)"], [0.6196078431372549, "rgba(226, 87, 52, 1.000)"], [0.6235294117647059, "rgba(227, 89, 51, 1.000)"], [0.6274509803921569, "rgba(228, 90, 49, 1.000)"], [0.6313725490196078, "rgba(229, 92, 48, 1.000)"], [0.6352941176470588, "rgba(230, 93, 47, 1.000)"], [0.6392156862745098, "rgba(231, 94, 46, 1.000)"], [0.6431372549019608, "rgba(232, 96, 45, 1.000)"], [0.6470588235294118, "rgba(233, 97, 43, 1.000)"], [0.6509803921568628, "rgba(234, 99, 42, 1.000)"], [0.6549019607843137, "rgba(235, 100, 41, 1.000)"], [0.6588235294117647, "rgba(235, 102, 40, 1.000)"], [0.6627450980392157, "rgba(236, 103, 38, 1.000)"], [0.6666666666666666, "rgba(237, 105, 37, 1.000)"], [0.6705882352941176, "rgba(238, 106, 36, 1.000)"], [0.6745098039215687, "rgba(239, 108, 35, 1.000)"], [0.6784313725490196, "rgba(239, 110, 33, 1.000)"], [0.6823529411764706, "rgba(240, 111, 32, 1.000)"], [0.6862745098039216, "rgba(241, 113, 31, 1.000)"], [0.6901960784313725, "rgba(241, 115, 29, 1.000)"], [0.6941176470588235, "rgba(242, 116, 28, 1.000)"], [0.6980392156862745, "rgba(243, 118, 27, 1.000)"], [0.7019607843137254, "rgba(243, 120, 25, 1.000)"], [0.7058823529411765, "rgba(244, 121, 24, 1.000)"], [0.7098039215686275, "rgba(245, 123, 23, 1.000)"], [0.7137254901960784, "rgba(245, 125, 21, 1.000)"], [0.7176470588235294, "rgba(246, 126, 20, 1.000)"], [0.7215686274509804, "rgba(246, 128, 19, 1.000)"], [0.7254901960784313, "rgba(247, 130, 18, 1.000)"], [0.7294117647058823, "rgba(247, 132, 16, 1.000)"], [0.7333333333333333, "rgba(248, 133, 15, 1.000)"], [0.7372549019607844, "rgba(248, 135, 14, 1.000)"], [0.7411764705882353, "rgba(248, 137, 12, 1.000)"], [0.7450980392156863, "rgba(249, 139, 11, 1.000)"], [0.7490196078431373, "rgba(249, 140, 10, 1.000)"], [0.7529411764705882, "rgba(249, 142, 9, 1.000)"], [0.7568627450980392, "rgba(250, 144, 8, 1.000)"], [0.7607843137254902, "rgba(250, 146, 7, 1.000)"], [0.7647058823529411, "rgba(250, 148, 7, 1.000)"], [0.7686274509803922, "rgba(251, 150, 6, 1.000)"], [0.7725490196078432, "rgba(251, 151, 6, 1.000)"], [0.7764705882352941, "rgba(251, 153, 6, 1.000)"], [0.7803921568627451, "rgba(251, 155, 6, 1.000)"], [0.7843137254901961, "rgba(251, 157, 7, 1.000)"], [0.788235294117647, "rgba(252, 159, 7, 1.000)"], [0.792156862745098, "rgba(252, 161, 8, 1.000)"], [0.796078431372549, "rgba(252, 163, 9, 1.000)"], [0.8, "rgba(252, 165, 10, 1.000)"], [0.803921568627451, "rgba(252, 166, 12, 1.000)"], [0.807843137254902, "rgba(252, 168, 13, 1.000)"], [0.8117647058823529, "rgba(252, 170, 15, 1.000)"], [0.8156862745098039, "rgba(252, 172, 17, 1.000)"], [0.8196078431372549, "rgba(252, 174, 18, 1.000)"], [0.8235294117647058, "rgba(252, 176, 20, 1.000)"], [0.8274509803921568, "rgba(252, 178, 22, 1.000)"], [0.8313725490196079, "rgba(252, 180, 24, 1.000)"], [0.8352941176470589, "rgba(251, 182, 26, 1.000)"], [0.8392156862745098, "rgba(251, 184, 29, 1.000)"], [0.8431372549019608, "rgba(251, 186, 31, 1.000)"], [0.8470588235294118, "rgba(251, 188, 33, 1.000)"], [0.8509803921568627, "rgba(251, 190, 35, 1.000)"], [0.8549019607843137, "rgba(250, 192, 38, 1.000)"], [0.8588235294117647, "rgba(250, 194, 40, 1.000)"], [0.8627450980392157, "rgba(250, 196, 42, 1.000)"], [0.8666666666666667, "rgba(250, 198, 45, 1.000)"], [0.8705882352941177, "rgba(249, 199, 47, 1.000)"], [0.8745098039215686, "rgba(249, 201, 50, 1.000)"], [0.8784313725490196, "rgba(249, 203, 53, 1.000)"], [0.8823529411764706, "rgba(248, 205, 55, 1.000)"], [0.8862745098039215, "rgba(248, 207, 58, 1.000)"], [0.8901960784313725, "rgba(247, 209, 61, 1.000)"], [0.8941176470588236, "rgba(247, 211, 64, 1.000)"], [0.8980392156862745, "rgba(246, 213, 67, 1.000)"], [0.9019607843137255, "rgba(246, 215, 70, 1.000)"], [0.9058823529411765, "rgba(245, 217, 73, 1.000)"], [0.9098039215686274, "rgba(245, 219, 76, 1.000)"], [0.9137254901960784, "rgba(244, 221, 79, 1.000)"], [0.9176470588235294, "rgba(244, 223, 83, 1.000)"], [0.9215686274509803, "rgba(244, 225, 86, 1.000)"], [0.9254901960784314, "rgba(243, 227, 90, 1.000)"], [0.9294117647058824, "rgba(243, 229, 93, 1.000)"], [0.9333333333333333, "rgba(242, 230, 97, 1.000)"], [0.9372549019607843, "rgba(242, 232, 101, 1.000)"], [0.9411764705882353, "rgba(242, 234, 105, 1.000)"], [0.9450980392156862, "rgba(241, 236, 109, 1.000)"], [0.9490196078431372, "rgba(241, 237, 113, 1.000)"], [0.9529411764705882, "rgba(241, 239, 117, 1.000)"], [0.9568627450980393, "rgba(241, 241, 121, 1.000)"], [0.9607843137254902, "rgba(242, 242, 125, 1.000)"], [0.9647058823529412, "rgba(242, 244, 130, 1.000)"], [0.9686274509803922, "rgba(243, 245, 134, 1.000)"], [0.9725490196078431, "rgba(243, 246, 138, 1.000)"], [0.9764705882352941, "rgba(244, 248, 142, 1.000)"], [0.9803921568627451, "rgba(245, 249, 146, 1.000)"], [0.984313725490196, "rgba(246, 250, 150, 1.000)"], [0.9882352941176471, "rgba(248, 251, 154, 1.000)"], [0.9921568627450981, "rgba(249, 252, 157, 1.000)"], [0.996078431372549, "rgba(250, 253, 161, 1.000)"], [1, "rgba(252, 255, 164, 1.000)"]], "cmax": 0.97379189392058, "showscale": false}, "zmax": 0.97379189392058, "y": [3.5, 3.5, 3.5], "type": "scatter", "hoverinfo": "none", "zaxis": null, "z": null}, {"showlegend": true, "mode": "markers", "xaxis": "x4", "colorbar": {"title": {"text": ""}}, "name": "setosa", "zmin": null, "yaxis": "y4", "legendgroup": "setosa", "marker": {"symbol": "circle", "color": "rgba(255, 0, 0, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": null, "y": [3.5, 3.5, 3, 3.2, 3.1, 3.6, 3.9, 3.4, 3.4, 2.9, 3.1, 3.7, 3.4, 3, 3, 4, 4.4, 3.9, 3.5, 3.8, 3.8, 3.4, 3.7, 3.6, 3.3, 3.4, 3, 3.4, 3.5, 3.4, 3.2, 3.1, 3.4, 4.1, 4.2, 3.1, 3.2, 3.5, 3.6, 3, 3.4, 3.5, 2.3, 3.2, 3.5, 3.8, 3, 3.8, 3.2, 3.7, 3.3, 3.3], "type": "scatter", "x": [5.1, 5.1, 4.9, 4.7, 4.6, 5, 5.4, 4.6, 5, 4.4, 4.9, 5.4, 4.8, 4.8, 4.3, 5.8, 5.7, 5.4, 5.1, 5.7, 5.1, 5.4, 5.1, 4.6, 5.1, 4.8, 5, 5, 5.2, 5.2, 4.7, 4.8, 5.4, 5.2, 5.5, 4.9, 5, 5.5, 4.9, 4.4, 5.1, 5, 4.5, 4.4, 5, 5.1, 4.8, 5.1, 4.6, 5.3, 5, 5], "zaxis": null, "z": null}, {"showlegend": true, "mode": "markers", "xaxis": "x4", "colorbar": {"title": {"text": ""}}, "name": "versicolor", "zmin": null, "yaxis": "y4", "legendgroup": "versicolor", "marker": {"symbol": "circle", "color": "rgba(0, 0, 255, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": null, "y": [3.2, 3.2, 3.2, 3.1, 2.3, 2.8, 2.8, 3.3, 2.4, 2.9, 2.7, 2, 3, 2.2, 2.9, 2.9, 3.1, 3, 2.7, 2.2, 2.5, 3.2, 2.8, 2.5, 2.8, 2.9, 3, 2.8, 3, 2.9, 2.6, 2.4, 2.4, 2.7, 2.7, 3, 3.4, 3.1, 2.3, 3, 2.5, 2.6, 3, 2.6, 2.3, 2.7, 3, 2.9, 2.9, 2.5, 2.8, 2.8], "type": "scatter", "x": [7, 7, 6.4, 6.9, 5.5, 6.5, 5.7, 6.3, 4.9, 6.6, 5.2, 5, 5.9, 6, 6.1, 5.6, 6.7, 5.6, 5.8, 6.2, 5.6, 5.9, 6.1, 6.3, 6.1, 6.4, 6.6, 6.8, 6.7, 6, 5.7, 5.5, 5.5, 5.8, 6, 5.4, 6, 6.7, 6.3, 5.6, 5.5, 5.5, 6.1, 5.8, 5, 5.6, 5.7, 5.7, 6.2, 5.1, 5.7, 5.7], "zaxis": null, "z": null}, {"showlegend": true, "mode": "markers", "xaxis": "x4", "colorbar": {"title": {"text": ""}}, "name": "virginica", "zmin": null, "yaxis": "y4", "legendgroup": "virginica", "marker": {"symbol": "circle", "color": "rgba(0, 128, 0, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 10}, "zmax": null, "y": [3.3, 3.3, 2.7, 3, 2.9, 3, 3, 2.5, 2.9, 2.5, 3.6, 3.2, 2.7, 3, 2.5, 2.8, 3.2, 3, 3.8, 2.6, 2.2, 3.2, 2.8, 2.8, 2.7, 3.3, 3.2, 2.8, 3, 2.8, 3, 2.8, 3.8, 2.8, 2.8, 2.6, 3, 3.4, 3.1, 3, 3.1, 3.1, 3.1, 2.7, 3.2, 3.3, 3, 2.5, 3, 3.4, 3, 3], "type": "scatter", "x": [6.3, 6.3, 5.8, 7.1, 6.3, 6.5, 7.6, 4.9, 7.3, 6.7, 7.2, 6.5, 6.4, 6.8, 5.7, 5.8, 6.4, 6.5, 7.7, 7.7, 6, 6.9, 5.6, 7.7, 6.3, 6.7, 7.2, 6.2, 6.1, 6.4, 7.2, 7.4, 7.9, 6.4, 6.3, 6.1, 7.7, 6.3, 6.4, 6, 6.9, 6.7, 6.9, 5.8, 6.8, 6.7, 6.7, 6.3, 6.5, 6.2, 5.9, 5.9], "zaxis": null, "z": null}], "config": {"showlegend": false, "paper_bgcolor": "rgba(255, 255, 255, 1.000)", "yaxis3": {"showticklabels": true, "gridwidth": 0.5, "range": [1.928, 4.472], "domain": [0.0709700787401575, 0.4969898512685914], "mirror": false, "tickangle": 0, "showline": true, "zeroline": false, "tickfont": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "zerolinecolor": "rgba(0, 0, 0, 1)", "anchor": "x3", "visible": true, "ticks": "inside", "tickmode": "array", "linecolor": "rgba(0, 0, 0, 1)", "showgrid": true, "title": {"text": "", "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}}, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickcolor": "rgb(0, 0, 0)", "type": "linear"}, "height": 500, "yaxis4": {"showticklabels": true, "gridwidth": 0.5, "range": [1.928, 4.472], "domain": [0.0709700787401575, 0.4969898512685914], "mirror": false, "tickangle": 0, "showline": true, "zeroline": false, "tickfont": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "zerolinecolor": "rgba(0, 0, 0, 1)", "anchor": "x4", "visible": true, "ticks": "inside", "tickmode": "array", "linecolor": "rgba(0, 0, 0, 1)", "showgrid": true, "title": {"text": "", "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}}, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickcolor": "rgb(0, 0, 0)", "type": "linear"}, "yaxis2": {"showticklabels": true, "gridwidth": 0.5, "range": [1.928, 4.472], "domain": [0.5641377077865267, 0.9901574803149606], "mirror": false, "tickangle": 0, "showline": true, "zeroline": false, "tickfont": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "zerolinecolor": "rgba(0, 0, 0, 1)", "anchor": "x2", "visible": true, "ticks": "inside", "tickmode": "array", "linecolor": "rgba(0, 0, 0, 1)", "showgrid": true, "title": {"text": "", "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}}, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickcolor": "rgb(0, 0, 0)", "type": "linear"}, "xaxis3": {"showticklabels": true, "gridwidth": 0.5, "range": [4.191999999999999, 8.008], "domain": [0.05100612423447069, 0.47968755528130985], "mirror": false, "tickangle": 0, "showline": true, "zeroline": false, "tickfont": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "zerolinecolor": "rgba(0, 0, 0, 1)", "anchor": "y3", "visible": true, "ticks": "inside", "tickmode": "array", "linecolor": "rgba(0, 0, 0, 1)", "showgrid": true, "title": {"text": "", "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}}, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickcolor": "rgb(0, 0, 0)", "type": "linear"}, "xaxis4": {"showticklabels": true, "gridwidth": 0.5, "range": [4.191999999999999, 8.008], "domain": [0.5516335295830821, 0.9803149606299213], "mirror": false, "tickangle": 0, "showline": true, "zeroline": false, "tickfont": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "zerolinecolor": "rgba(0, 0, 0, 1)", "anchor": "y4", "visible": true, "ticks": "inside", "tickmode": "array", "linecolor": "rgba(0, 0, 0, 1)", "showgrid": true, "title": {"text": "", "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}}, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickcolor": "rgb(0, 0, 0)", "type": "linear"}, "annotations": [], "xaxis2": {"showticklabels": true, "gridwidth": 0.5, "range": [4.191999999999999, 8.008], "domain": [0.5516335295830821, 0.9803149606299213], "mirror": false, "tickangle": 0, "showline": true, "zeroline": false, "tickfont": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "zerolinecolor": "rgba(0, 0, 0, 1)", "anchor": "y2", "visible": true, "ticks": "inside", "tickmode": "array", "linecolor": "rgba(0, 0, 0, 1)", "showgrid": true, "title": {"text": "", "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}}, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickcolor": "rgb(0, 0, 0)", "type": "linear"}, "plot_bgcolor": "rgba(255, 255, 255, 1.000)", "margin": {"l": 0, "b": 20, "r": 0, "t": 20}, "width": 991.53125, "xaxis": {"showticklabels": true, "gridwidth": 0.5, "range": [4.191999999999999, 8.008], "domain": [0.05100612423447069, 0.47968755528130985], "mirror": false, "tickangle": 0, "showline": true, "zeroline": false, "tickfont": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "zerolinecolor": "rgba(0, 0, 0, 1)", "anchor": "y", "visible": true, "ticks": "inside", "tickmode": "array", "linecolor": "rgba(0, 0, 0, 1)", "showgrid": true, "title": {"text": "", "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}}, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickcolor": "rgb(0, 0, 0)", "type": "linear"}, "yaxis": {"showticklabels": true, "gridwidth": 0.5, "range": [1.928, 4.472], "domain": [0.5641377077865267, 0.9901574803149606], "mirror": false, "tickangle": 0, "showline": true, "zeroline": false, "tickfont": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "zerolinecolor": "rgba(0, 0, 0, 1)", "anchor": "x", "visible": true, "ticks": "inside", "tickmode": "array", "linecolor": "rgba(0, 0, 0, 1)", "showgrid": true, "title": {"text": "", "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}}, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickcolor": "rgb(0, 0, 0)", "type": "linear"}}}