Модель маятника с неопределенностью по параметрам¶
В этой демонстрации мы изучим процесс запуска модели математического маятника, значения параметров которого заданы с разбросом.
Заодно мы проверим, какие особенности есть у библиотеки DifferentialEquations
(для решения ОДУ) и Plots
(вывод графиков) в плане реализации ключевой для Julia технологии мультиметодов (multiple dispatch). Той технологии, которая позволяет пакетам в Julia подбирать правильные методы для работы с самыми неожиданными типами данных.
Для этой демонстрации нам потребуются библиотеки Measurements
и DifferentialEquations
. Если одна из них не установлена в вашей системе, наберите ]add Measurements
(и ]add DifferentialEquations
) в отдельной новой ячейке или в командной строке и выполните команду.
Первым делом зададим параметры окружения и самого маятника.
Символ допуска ±
можно ввести через команду LaTeX в командной строке: \pm
. После нажатия табуляции вы получите символ, который можно использовать в вычислениях и который интерпретируется в рамках некоторых библиотек, в частности Measurements
.
Роль библиотеки Measurements
состоит в том, чтобы правильно обрабатывать разбросы (допуски). Например, чтобы вычитание измерения из него же самого не приводило к удваиванию разброса ошибки.
В этом плане сложение и вычитание работают неодинаково.
Постановка задачи о решении дифференциального уравнения¶
В этом примере мы реализуем упрощенную модель математического маятника:
$$\ddot \theta = -\frac{g}{L} \theta$$
где $g$ – постоянная гравитации, $L$ – длина маятника, $\theta$ – угол отклонения маятника в радианах. Применяется аппроксимация малых углов $\theta \approx 0$, поэтому считается что $sin(\theta) \approx \theta$.
Зададим изначальную скорость и угол отклонения, а также временные границы симуляции.
Ноль в нижнем регистре можно ввести как команду LaTeX в командной строке: \_0
и нажать клавишу табуляции. После преобразования вы получаете новый символ, который можно скопировать в буфер обмена и использовать в названиях переменных.
Зададим уравнения качающегося маятника.
Out[0]:
pendulum (generic function with 1 method)
Каждый вектор состоит из двух значений. Вектор состояния u
состоит из значения отклонения маятника θ и его скорости dθ. В свою очередь, вектор производных включает в себя скорость движения маятника dθ и силу, которая воздействует на груз.
Формирование вычислительного задания и запуск¶
Out[0]:
ODEProblem with uType Vector{Measurement{Float64}} and tType Float64. In-place: false
timespan: (0.0, 6.3)
u0: 2-element Vector{Measurement{Float64}}:
0.0 ± 0.0
0.524 ± 0.01
Мы видим, что аргумент u
этой функции имеет тип Measurement
, аргумент t
имеет тип Float64
, и они отлично работают в связке. Теперь запустим симуляцию.
Как мы видим, функция plot
автоматически проставляет доверительные границы, по сути, дополняя графики аргументом yerr
.
Первым практическим применением этого подхода может быть сравнение ошибки численного и аналитического решений этой задачи.
Мы почти не видим разницы ни в значениях функции, ни в разбросе вокруг каждой точки обоих вариантов решения.
На время публикации, текст справки по этой библиотеке еще не был включен в документацию Engee, поэтому приводим ссылку на страницу разработчиков: https://github.com/JuliaPhysics/Measurements.jl (которую на первое время можно перевести встроенными средствами браузера).
Особенности работы DifferentialEquations с пакетом Measurements¶
Мы реализовали функцию pendulum(u, p, t)
, которая использует return
. Пакет DifferentialEquations
может также реализовывать функции in-place
, метод вызова которых будет выглядеть как pendulum(du, u, p, t)
, но из-за того, что мы не контролируем напрямую тип переменой du
, распространение типа данных Measurement
прерывается и этот вариант описания маятника не будет работать. Поэтому мы пользуемся return
.
Особенности работы Plots с пакетом Measurements¶
Как видно, вывод первого из двух наших графиков тоже разделен на две команды. Функция plot
, хотя и принимает на вход данные типа Measurement
, не имеет конкретного рецепта для работы с несколькими векторами таких данных. Мы не можем успешно вызвать plot( sol.t, sol.u )
, происходит ошибка преобразования типов.
Мы успешно нашли численное решение дифференциального уравнения и вывели график с допусками для задачи моделирования математического маятника, входные значения которой заданы в виде чисел с допусками по точности.
{"id": "0de1fd76-f342-4aea-937a-351e4d0ceee2", "data": [{"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "положение", "zmin": null, "yaxis": "y", "legendgroup": "положение", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 0.030530513897447837, 0.048500276599802154, 0.06978442019519193, 0.09034364312749713, 0.11013642668889902, 0.12814641592898018, 0.14356701013570583, 0.15561228305976477, 0.1636162472078144, 0.1670625024527918, 0.16561603264312472, 0.15910809311846702, 0.1474633059965363, 0.13085661193281756, 0.10961445912820525, 0.08426163715631109, 0.055494642853205205, 0.024171521624004967, -0.008711466816321137, -0.04204753026391549, -0.07476344800299595, -0.10414607672679636, -0.1289552236990596, -0.14810076467465325, -0.16083433148922457, -0.1667419808668761, -0.1657403409535654, -0.15802521558013896, -0.14386600873258182, -0.12386621614030759, -0.0987574738260656, -0.06946821142548715, -0.037065789333090744, -0.0027378026892996565, 0.03224270283435149, 0.06661264088992844, 0.09810923057779561, 0.12476224270667204, 0.145512856874914, 0.15954421952767883, 0.166433240186884, 0.16610999263095796, 0.15881895894010414, 0.14486250579389698, 0.1248944341091391, 0.09968820289650142, 0.07021622447822631, 0.03758462715311664, 0.003015266341829144, -0.03219025398698062, -0.06674557176062929, -0.09837618431804511, -0.12508486984437603, -0.14581670305711775, -0.15976172197209706, -0.16650920877056857, -0.1660046780569031, -0.15850521187988786, -0.14432834247418475, -0.12414220200208496, -0.0987344053355218, -0.06908965057984132, -0.03632485734083704, -0.001670637245374057, 0.03356482621368372, 0.06809712987982885, 0.09957219368546243, 0.12607342163082502, 0.14654592005892844, 0.16019838197134606, 0.16663624678242864, 0.16582101797959253, 0.1580169873659985, 0.14355472222012414, 0.12311139073122895, 0.09748489751908074, 0.06766769195330256, 0.034783489661111555, 6.799812346073436e-05, -0.03516718368493524, -0.06964355775112019, -0.10091634084053068, -0.12716627954661563, -0.14733823594215797, -0.16066162668335165, -0.1667589382563498, -0.16560804251891836, -0.15747936905650314, -0.1427171049078019, -0.1220065758782541, -0.09615571286878145, -0.06616420239347702, -0.033162105987350914, 0.0016102250598619347, 0.03683821559215771, 0.0712502188059734, 0.10230697267875825, 0.12829106164191956, 0.1291251203651694], "type": "scatter", "x": [0, 0.058638083467766666, 0.09397997457502347, 0.137488493317132, 0.18228687604323304, 0.2296386404617398, 0.27887323263856334, 0.3297850002373622, 0.38208728767946776, 0.43554603415563975, 0.4899484909364877, 0.545114727551552, 0.60108898669586, 0.6581167323781499, 0.7159737517106762, 0.774717411395004, 0.8343693452443401, 0.8949964011764014, 0.9567067403268528, 1.0196785487950286, 1.0842099820871522, 1.1510683752493156, 1.2177636660211812, 1.2843229218691874, 1.3505544016232476, 1.4163532867202446, 1.481638941935117, 1.546367830335007, 1.6106555683175712, 1.6751637196636122, 1.7396365694479747, 1.8042872462308637, 1.8692424284783502, 1.9346829721870893, 2.0008376041410703, 2.0680340038565435, 2.1369200964019073, 2.206314329840523, 2.27505631836312, 2.3432499413440935, 2.4107624626852706, 2.4775521730785863, 2.543594319945308, 2.608939763256509, 2.6744224359576787, 2.7397307443423258, 2.805111863752707, 2.8707033364123107, 2.936699718739442, 3.003340928884351, 3.0709652431739967, 3.140230278146626, 3.2099777992062553, 3.2790169068369335, 3.3474659701315663, 3.415196693208567, 3.4821722368658112, 3.5483724986427108, 3.6138754190076634, 3.679488557492886, 3.744917230340615, 3.810408466328497, 3.8761034828991994, 3.9422000579255343, 4.008942560228817, 4.076676106578002, 4.146084493861167, 4.215845506689697, 4.284910546560635, 4.353370131352936, 4.421104505227377, 4.488077294921535, 4.554270657536629, 4.6198035626277365, 4.685427328821156, 4.7508752526603395, 4.816389136871901, 4.882112901938379, 4.948246108329352, 5.0150367486015535, 5.082836509401833, 5.152359142004682, 5.222086727004381, 5.291140645153007, 5.359576994759068, 5.427285371537353, 5.4942292651269975, 5.560392798992759, 5.625939089254649, 5.6915573073139605, 5.757011210634515, 5.822536466839084, 5.88827966861974, 5.954442048966963, 6.021275286637785, 6.089137974633685, 6.158776094758822, 6.22846478195012, 6.297503783071747, 6.3], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 100, "currentCount": 100}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 0], "type": "scatter", "x": [0, 0], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.029947413856821373, 0.0311136139380743], "type": "scatter", "x": [0.058638083467766666, 0.058638083467766666], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.04757388212596813, 0.04942667107363618], "type": "scatter", "x": [0.09397997457502347, 0.09397997457502347], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.06845091854527212, 0.07111792184511175], "type": "scatter", "x": [0.137488493317132, 0.137488493317132], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.08861528243331367, 0.09207200382168058], "type": "scatter", "x": [0.18228687604323304, 0.18228687604323304], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.10802376489868215, 0.11224908847911588], "type": "scatter", "x": [0.2296386404617398, 0.2296386404617398], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.12567491255024837, 0.130617919307712], "type": "scatter", "x": [0.27887323263856334, 0.27887323263856334], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.14077012082875195, 0.1463638994426597], "type": "scatter", "x": [0.3297850002373622, 0.3297850002373622], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.15252761171551438, 0.15869695440401516], "type": "scatter", "x": [0.38208728767946776, 0.38208728767946776], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.16027961952816533, 0.16695287488746346], "type": "scatter", "x": [0.43554603415563975, 0.43554603415563975], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.16350218041544268, 0.17062282449014093], "type": "scatter", "x": [0.4899484909364877, 0.4899484909364877], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.1618482153940838, 0.16938384989216562], "type": "scatter", "x": [0.545114727551552, 0.545114727551552], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.15513466689344363, 0.1630815193434904], "type": "scatter", "x": [0.60108898669586, 0.60108898669586], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.14327364063341502, 0.15165297135965755], "type": "scatter", "x": [0.6581167323781499, 0.6581167323781499], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.12643608554485428, 0.13527713832078084], "type": "scatter", "x": [0.7159737517106762, 0.7159737517106762], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.10495361535951249, 0.11427530289689801], "type": "scatter", "x": [0.774717411395004, 0.774717411395004], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.0793676736129996, 0.08915560069962258], "type": "scatter", "x": [0.8343693452443401, 0.8343693452443401], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.05040129301757654, 0.06058799268883387], "type": "scatter", "x": [0.8949964011764014, 0.8949964011764014], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.018945962246549077, 0.029397081001460858], "type": "scatter", "x": [0.9567067403268528, 0.9567067403268528], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.0139655653476647, -0.0034573682849775734], "type": "scatter", "x": [1.0196785487950286, 1.0196785487950286], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.0471911225817756, -0.036903937946055385], "type": "scatter", "x": [1.0842099820871522, 1.0842099820871522], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.07962683659868999, -0.0699000594073019], "type": "scatter", "x": [1.1510683752493156, 1.1510683752493156], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.10856979576258845, -0.09972235769100428], "type": "scatter", "x": [1.2177636660211812, 1.2177636660211812], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.1328317841467822, -0.12507866325133699], "type": "scatter", "x": [1.2843229218691874, 1.2843229218691874], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.15145419623058418, -0.14474733311872232], "type": "scatter", "x": [1.3505544016232476, 1.3505544016232476], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.16393392666949255, -0.1577347363089566], "type": "scatter", "x": [1.4163532867202446, 1.4163532867202446], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.170115294910543, -0.16336866682320922], "type": "scatter", "x": [1.481638941935117, 1.481638941935117], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.16991280435684303, -0.1615678775502878], "type": "scatter", "x": [1.546367830335007, 1.546367830335007], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.1633091951073227, -0.15274123605295523], "type": "scatter", "x": [1.6106555683175712, 1.6106555683175712], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.15038668361055893, -0.1373453338546047], "type": "scatter", "x": [1.6751637196636122, 1.6751637196636122], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.1316020748123356, -0.11613035746827957], "type": "scatter", "x": [1.7396365694479747, 1.7396365694479747], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.1075826520949315, -0.08993229555719971], "type": "scatter", "x": [1.8042872462308637, 1.8042872462308637], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.07916877984377164, -0.05976764300720266], "type": "scatter", "x": [1.8692424284783502, 1.8692424284783502], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.04735197884368579, -0.026779599822495694], "type": "scatter", "x": [1.9346829721870893, 1.9346829721870893], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.013253899686804448, 0.007778294308205135], "type": "scatter", "x": [2.0008376041410703, 2.0008376041410703], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.021908502220205836, 0.04257690344849714], "type": "scatter", "x": [2.0680340038565435, 2.0680340038565435], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.05692020197665846, 0.07630507980319842], "type": "scatter", "x": [2.1369200964019073, 2.1369200964019073], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.08951902480757469, 0.10669943634801653], "type": "scatter", "x": [2.206314329840523, 2.206314329840523], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.11766078249253704, 0.131863702920807], "type": "scatter", "x": [2.27505631836312, 2.27505631836312], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.14014647626360824, 0.15087923748621976], "type": "scatter", "x": [2.3432499413440935, 2.3432499413440935], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.15579945254137148, 0.16328898651398618], "type": "scatter", "x": [2.4107624626852706, 2.4107624626852706], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.16322339024507185, 0.16964309012869613], "type": "scatter", "x": [2.4775521730785863, 2.4775521730785863], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.1616293027490826, 0.17059068251283332], "type": "scatter", "x": [2.543594319945308, 2.543594319945308], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.15222055716395233, 0.16541736071625596], "type": "scatter", "x": [2.608939763256509, 2.608939763256509], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.13597249146787013, 0.15375252011992382], "type": "scatter", "x": [2.6744224359576787, 2.6744224359576787], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.11383576425447617, 0.13595310396380203], "type": "scatter", "x": [2.7397307443423258, 2.7397307443423258], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.08674357809053229, 0.11263282770247054], "type": "scatter", "x": [2.805111863752707, 2.805111863752707], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.05579216643627069, 0.08464028252018194], "type": "scatter", "x": [2.8707033364123107, 2.8707033364123107], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.022189232154340655, 0.052980022151892625], "type": "scatter", "x": [2.936699718739442, 2.936699718739442], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.012758337819543254, 0.018788870503201542], "type": "scatter", "x": [3.003340928884351, 3.003340928884351], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.04767923984472521, -0.016701268129236023], "type": "scatter", "x": [3.0709652431739967, 3.0709652431739967], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.08122784769290764, -0.05226329582835093], "type": "scatter", "x": [3.140230278146626, 3.140230278146626], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.11113693978588389, -0.08561542885020633], "type": "scatter", "x": [3.2099777992062553, 3.2099777992062553], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.13551479145433043, -0.11465494823442163], "type": "scatter", "x": [3.2790169068369335, 3.2790169068369335], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.1534645981829166, -0.1381688079313189], "type": "scatter", "x": [3.3474659701315663, 3.3474659701315663], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.16453613816435037, -0.15498730577984376], "type": "scatter", "x": [3.415196693208567, 3.415196693208567], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.16968959036570366, -0.16332882717543348], "type": "scatter", "x": [3.4821722368658112, 3.4821722368658112], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.1709975086231261, -0.16101184749068012], "type": "scatter", "x": [3.5483724986427108, 3.5483724986427108], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.16669385456511862, -0.1503165691946571], "type": "scatter", "x": [3.6138754190076634, 3.6138754190076634], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.1558424983185252, -0.1328141866298443], "type": "scatter", "x": [3.679488557492886, 3.679488557492886], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.1387286434288032, -0.10955576057536674], "type": "scatter", "x": [3.744917230340615, 3.744917230340615], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.11594726361960195, -0.08152154705144166], "type": "scatter", "x": [3.810408466328497, 3.810408466328497], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.0883316071103513, -0.04984769404933133], "type": "scatter", "x": [3.8761034828991994, 3.8761034828991994], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.05687457413193157, -0.015775140549742515], "type": "scatter", "x": [3.9422000579255343, 3.9422000579255343], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.022704360404826797, 0.019363085914078683], "type": "scatter", "x": [4.008942560228817, 4.008942560228817], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.012953041506913461, 0.054176610920453984], "type": "scatter", "x": [4.076676106578002, 4.076676106578002], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.04888307226399438, 0.08731118749566333], "type": "scatter", "x": [4.146084493861167, 4.146084493861167], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.08270734572058648, 0.11643704165033837], "type": "scatter", "x": [4.215845506689697, 4.215845506689697], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.11236995177209043, 0.1397768914895596], "type": "scatter", "x": [4.284910546560635, 4.284910546560635], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.1366276316561429, 0.156464208461714], "type": "scatter", "x": [4.353370131352936, 4.353370131352936], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.15431872344260564, 0.16607804050008648], "type": "scatter", "x": [4.421104505227377, 4.421104505227377], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.16344653422006028, 0.169825959344797], "type": "scatter", "x": [4.488077294921535, 4.488077294921535], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.1601618957997264, 0.17148014015945867], "type": "scatter", "x": [4.554270657536629, 4.554270657536629], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.1480609534125419, 0.1679730213194551], "type": "scatter", "x": [4.6198035626277365, 4.6198035626277365], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.12926394740915925, 0.15784549703108902], "type": "scatter", "x": [4.685427328821156, 4.685427328821156], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.10487610458486246, 0.14134667687759545], "type": "scatter", "x": [4.7508752526603395, 4.7508752526603395], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.07591486038392693, 0.11905493465423454], "type": "scatter", "x": [4.816389136871901, 4.816389136871901], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.04355024848109822, 0.09178513542550691], "type": "scatter", "x": [4.882112901938379, 4.882112901938379], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.009051820985412212, 0.0605151583368109], "type": "scatter", "x": [4.948246108329352, 4.948246108329352], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.026225434672157197, 0.026361430919078666], "type": "scatter", "x": [5.0150367486015535, 5.0150367486015535], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.060875733925757236, -0.009458633444113237], "type": "scatter", "x": [5.082836509401833, 5.082836509401833], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.09354026830521835, -0.04574684719702203], "type": "scatter", "x": [5.152359142004682, 5.152359142004682], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.12182186033362308, -0.08001082134743828], "type": "scatter", "x": [5.222086727004381, 5.222086727004381], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.1440749437514109, -0.11025761534182038], "type": "scatter", "x": [5.291140645153007, 5.291140645153007], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.15946930850938681, -0.13520716337492913], "type": "scatter", "x": [5.359576994759068, 5.359576994759068], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.16762853414837148, -0.15369471921833183], "type": "scatter", "x": [5.427285371537353, 5.427285371537353], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.16996345436563873, -0.16355442214706087], "type": "scatter", "x": [5.4942292651269975, 5.4942292651269975], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.17207153125782765, -0.15914455378000908], "type": "scatter", "x": [5.560392798992759, 5.560392798992759], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.16934136573498482, -0.14561737237802147], "type": "scatter", "x": [5.625939089254649, 5.625939089254649], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.15990244128048517, -0.12553176853511863], "type": "scatter", "x": [5.6915573073139605, 5.6915573073139605], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.1439860303439473, -0.10002712141256091], "type": "scatter", "x": [5.757011210634515, 5.757011210634515], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.12215458524152198, -0.07015684049604093], "type": "scatter", "x": [5.822536466839084, 5.822536466839084], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.09520436497824036, -0.037124039808713684], "type": "scatter", "x": [5.88827966861974, 5.88827966861974], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.06409810182944828, -0.0022261101452535417], "type": "scatter", "x": [5.954442048966963, 5.954442048966963], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.02994044631595706, 0.03316089643568093], "type": "scatter", "x": [6.021275286637785, 6.021275286637785], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.006059744444132046, 0.06761668674018338], "type": "scatter", "x": [6.089137974633685, 6.089137974633685], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.042721622229783755, 0.09977881538216304], "type": "scatter", "x": [6.158776094758822, 6.158776094758822], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.077429099487583, 0.1271848458699335], "type": "scatter", "x": [6.22846478195012, 6.22846478195012], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.10825687372539933, 0.1483252495584398], "type": "scatter", "x": [6.297503783071747, 6.297503783071747], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.10928623367723708, 0.14896400705310173], "type": "scatter", "x": [6.3, 6.3], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "скорость", "zmin": null, "yaxis": "y", "legendgroup": "скорость", "zmax": null, "line": {"color": "rgba(227, 111, 71, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.5235987755982988, 0.5147928278239311, 0.5010786777426147, 0.4757964882607658, 0.44055273598646294, 0.39390361485342995, 0.33624503381445026, 0.2682480088505245, 0.19132363611545097, 0.10742096616162748, 0.01896719148022323, -0.07127705508642182, -0.16066033601663793, -0.2466435435248159, -0.3258444400718302, -0.3953293402909998, -0.45222167109798395, -0.49390712694259, -0.5180965678667573, -0.5228873585042236, -0.506765860005028, -0.4683182161574978, -0.4095759107918092, -0.3331977781350829, -0.24286770788797957, -0.14280649795594685, -0.03754095908315423, 0.06838364326591927, 0.17082341912076612, 0.2666718572511827, 0.351628206927453, 0.42246697036624503, 0.4762501788681826, 0.5105663088226453, 0.5235285228873929, 0.5137676981849661, 0.4802356497458399, 0.4239460567075021, 0.3485067195507384, 0.25775721093652904, 0.15635978713502596, 0.04917726430920914, -0.058931450635827845, -0.16344256140635466, -0.2613261386051647, -0.3480419062635387, -0.4203170449601938, -0.4751728141177248, -0.5101940571384183, -0.5235135439319382, -0.5137999374058578, -0.4800545270441069, -0.42333872422428204, -0.3473703354814781, -0.2560671401399614, -0.15416567638390163, -0.046585972593416375, 0.06177386944233851, 0.16640350136444132, 0.264209627569454, 0.3506720463952282, 0.4225198045394014, 0.47679004184065765, 0.5110883974286249, 0.5235725517140356, 0.5129363246259504, 0.4781887429097271, 0.4205866756613981, 0.34384657810576985, 0.25195020305272775, 0.14965439825576127, 0.0418932929872126, -0.06643672473592512, -0.17089785868776824, -0.26831233477580463, -0.3542190730187367, -0.42535650027085037, -0.4787863867152142, -0.512139181843077, -0.5235986314254374, -0.5118820579212886, -0.4759988023836662, -0.41743199258719876, -0.3398756800295345, -0.24737548498175138, -0.14470068466735495, -0.036793310696820986, 0.07145813359158967, 0.17569858396163415, 0.27266057154283757, 0.3579493997477796, 0.428314213969897, 0.48084331867886293, 0.5131931840259341, 0.5235743613348132, 0.5107277598830017, 0.47366038434583146, 0.41409787642079093, 0.3357033037083841, 0.33255149832760844], "type": "scatter", "x": [0, 0.058638083467766666, 0.09397997457502347, 0.137488493317132, 0.18228687604323304, 0.2296386404617398, 0.27887323263856334, 0.3297850002373622, 0.38208728767946776, 0.43554603415563975, 0.4899484909364877, 0.545114727551552, 0.60108898669586, 0.6581167323781499, 0.7159737517106762, 0.774717411395004, 0.8343693452443401, 0.8949964011764014, 0.9567067403268528, 1.0196785487950286, 1.0842099820871522, 1.1510683752493156, 1.2177636660211812, 1.2843229218691874, 1.3505544016232476, 1.4163532867202446, 1.481638941935117, 1.546367830335007, 1.6106555683175712, 1.6751637196636122, 1.7396365694479747, 1.8042872462308637, 1.8692424284783502, 1.9346829721870893, 2.0008376041410703, 2.0680340038565435, 2.1369200964019073, 2.206314329840523, 2.27505631836312, 2.3432499413440935, 2.4107624626852706, 2.4775521730785863, 2.543594319945308, 2.608939763256509, 2.6744224359576787, 2.7397307443423258, 2.805111863752707, 2.8707033364123107, 2.936699718739442, 3.003340928884351, 3.0709652431739967, 3.140230278146626, 3.2099777992062553, 3.2790169068369335, 3.3474659701315663, 3.415196693208567, 3.4821722368658112, 3.5483724986427108, 3.6138754190076634, 3.679488557492886, 3.744917230340615, 3.810408466328497, 3.8761034828991994, 3.9422000579255343, 4.008942560228817, 4.076676106578002, 4.146084493861167, 4.215845506689697, 4.284910546560635, 4.353370131352936, 4.421104505227377, 4.488077294921535, 4.554270657536629, 4.6198035626277365, 4.685427328821156, 4.7508752526603395, 4.816389136871901, 4.882112901938379, 4.948246108329352, 5.0150367486015535, 5.082836509401833, 5.152359142004682, 5.222086727004381, 5.291140645153007, 5.359576994759068, 5.427285371537353, 5.4942292651269975, 5.560392798992759, 5.625939089254649, 5.6915573073139605, 5.757011210634515, 5.822536466839084, 5.88827966861974, 5.954442048966963, 6.021275286637785, 6.089137974633685, 6.158776094758822, 6.22846478195012, 6.297503783071747, 6.3], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 100, "currentCount": 100}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.5135987755982988, 0.5335987755982988], "type": "scatter", "x": [0, 0], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.5049594365251775, 0.5246262191226847], "type": "scatter", "x": [0.058638083467766666, 0.058638083467766666], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.4914983122796071, 0.5106590432056224], "type": "scatter", "x": [0.09397997457502347, 0.09397997457502347], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.4666607032220484, 0.48493227329948324], "type": "scatter", "x": [0.137488493317132, 0.137488493317132], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.43198470555377333, 0.44912076641915255], "type": "scatter", "x": [0.18228687604323304, 0.18228687604323304], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.3859810223836639, 0.401826207323196], "type": "scatter", "x": [0.2296386404617398, 0.2296386404617398], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.32892643455172876, 0.34356363307717175], "type": "scatter", "x": [0.27887323263856334, 0.27887323263856334], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.26132877934527904, 0.27516723835577], "type": "scatter", "x": [0.3297850002373622, 0.3297850002373622], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.18443440605775024, 0.1982128661731517], "type": "scatter", "x": [0.38208728767946776, 0.38208728767946776], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.10012659472652088, 0.11471533759673408], "type": "scatter", "x": [0.43554603415563975, 0.43554603415563975], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.010918928715433967, 0.027015454245012494], "type": "scatter", "x": [0.4899484909364877, 0.4899484909364877], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.08024886931784066, -0.06230524085500298], "type": "scatter", "x": [0.545114727551552, 0.545114727551552], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.17054302100171712, -0.15077765103155874], "type": "scatter", "x": [0.60108898669586, 0.60108898669586], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.2572766524754297, -0.2360104345742021], "type": "scatter", "x": [0.6581167323781499, 0.6581167323781499], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.33695395826717633, -0.3147349218764841], "type": "scatter", "x": [0.7159737517106762, 0.7159737517106762], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.40658040524842454, -0.3840782753335751], "type": "scatter", "x": [0.774717411395004, 0.774717411395004], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.4632799620929597, -0.4411633801030082], "type": "scatter", "x": [0.8343693452443401, 0.8343693452443401], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.5045270125935201, -0.4832872412916599], "type": "scatter", "x": [0.8949964011764014, 0.8949964011764014], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.5282488643090725, -0.5079442714244421], "type": "scatter", "x": [0.9567067403268528, 0.9567067403268528], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.5329118173940616, -0.5128628996143857], "type": "scatter", "x": [1.0196785487950286, 1.0196785487950286], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.5174301155120734, -0.4961016044979826], "type": "scatter", "x": [1.0842099820871522, 1.0842099820871522], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.48062497106014523, -0.45601146125485037], "type": "scatter", "x": [1.1510683752493156, 1.1510683752493156], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.42428588641721127, -0.39486593516640717], "type": "scatter", "x": [1.2177636660211812, 1.2177636660211812], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.35066652940338644, -0.31572902686677934], "type": "scatter", "x": [1.2843229218691874, 1.2843229218691874], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.26305506855314575, -0.22268034722281335], "type": "scatter", "x": [1.3505544016232476, 1.3505544016232476], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.16534812223727566, -0.12026487367461805], "type": "scatter", "x": [1.4163532867202446, 1.4163532867202446], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.06181875295683878, -0.013263165209469685], "type": "scatter", "x": [1.481638941935117, 1.481638941935117], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.0431745594770641, 0.09359272705477444], "type": "scatter", "x": [1.546367830335007, 1.546367830335007], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.14561021618796724, 0.196036622053565], "type": "scatter", "x": [1.6106555683175712, 1.6106555683175712], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.24245747917135588, 0.2908862353310095], "type": "scatter", "x": [1.6751637196636122, 1.6751637196636122], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.32942214450711754, 0.37383426934778846], "type": "scatter", "x": [1.7396365694479747, 1.7396365694479747], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.403193937129269, 0.4417400036032211], "type": "scatter", "x": [1.8042872462308637, 1.8042872462308637], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.46058414330960173, 0.4919162144267635], "type": "scatter", "x": [1.8692424284783502, 1.8692424284783502], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.49853713822415835, 0.5225954794211323], "type": "scatter", "x": [1.9346829721870893, 1.9346829721870893], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.5135153967577364, 0.5335416490170495], "type": "scatter", "x": [2.0008376041410703, 2.0008376041410703], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.501970296943738, 0.5255650994261943], "type": "scatter", "x": [2.0680340038565435, 2.0680340038565435], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.4635136282814299, 0.49695767121024986], "type": "scatter", "x": [2.1369200964019073, 2.1369200964019073], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.4011943090494198, 0.44669780436558437], "type": "scatter", "x": [2.206314329840523, 2.206314329840523], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.319842277236373, 0.37717116186510385], "type": "scatter", "x": [2.27505631836312, 2.27505631836312], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.22390449224176676, 0.2916099296312913], "type": "scatter", "x": [2.3432499413440935, 2.3432499413440935], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.11846143194885748, 0.19425814232119443], "type": "scatter", "x": [2.4107624626852706, 2.4107624626852706], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.008662620263718092, 0.0896919083547002], "type": "scatter", "x": [2.4775521730785863, 2.4775521730785863], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.10044937768300653, -0.017413523588649157], "type": "scatter", "x": [2.543594319945308, 2.543594319945308], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.2042625009498821, -0.12262262186282721], "type": "scatter", "x": [2.608939763256509, 2.608939763256509], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.29970760897915794, -0.2229446682311714], "type": "scatter", "x": [2.6744224359576787, 2.6744224359576787], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.3823040347805668, -0.3137797777465106], "type": "scatter", "x": [2.7397307443423258, 2.7397307443423258], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.44893397648795097, -0.3917001134324366], "type": "scatter", "x": [2.805111863752707, 2.805111863752707], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.4969532025338691, -0.45339242570158045], "type": "scatter", "x": [2.8707033364123107, 2.8707033364123107], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.5247711050185028, -0.49561700925833374], "type": "scatter", "x": [2.936699718739442, 2.936699718739442], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.5335514078803386, -0.5134756799835377], "type": "scatter", "x": [3.003340928884351, 3.003340928884351], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.5276050714885856, -0.4999948033231301], "type": "scatter", "x": [3.0709652431739967, 3.0709652431739967], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.50259181013866, -0.45751724394955384], "type": "scatter", "x": [3.140230278146626, 3.140230278146626], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.45539388988602986, -0.3912835585625342], "type": "scatter", "x": [3.2099777992062553, 3.2099777992062553], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.3882013943756478, -0.3065392765873084], "type": "scatter", "x": [3.2790169068369335, 3.2790169068369335], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.30426229773542746, -0.20787198254449538], "type": "scatter", "x": [3.3474659701315663, 3.3474659701315663], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.20784107475575309, -0.10049027801205018], "type": "scatter", "x": [3.415196693208567, 3.415196693208567], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.10354648930848473, 0.01037454412165198], "type": "scatter", "x": [3.4821722368658112, 3.4821722368658112], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.003901373046237125, 0.11964636583843989], "type": "scatter", "x": [3.5483724986427108, 3.5483724986427108], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.11004741857131344, 0.2227595841575692], "type": "scatter", "x": [3.6138754190076634, 3.6138754190076634], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.21180206231121845, 0.3166171928276895], "type": "scatter", "x": [3.679488557492886, 3.679488557492886], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.30451743148937893, 0.39682666130107747], "type": "scatter", "x": [3.744917230340615, 3.744917230340615], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.3846940917212634, 0.4603455173575394], "type": "scatter", "x": [3.810408466328497, 3.810408466328497], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.44895336982615264, 0.5046267138551627], "type": "scatter", "x": [3.8761034828991994, 3.8761034828991994], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.49396722002073035, 0.5282095748365194], "type": "scatter", "x": [3.9422000579255343, 3.9422000579255343], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.5135514350392186, 0.5335936683888526], "type": "scatter", "x": [4.008942560228817, 4.008942560228817], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.49630436142830664, 0.5295682878235941], "type": "scatter", "x": [4.076676106578002, 4.076676106578002], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.4489905361304438, 0.5073869496890104], "type": "scatter", "x": [4.146084493861167, 4.146084493861167], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.3785775840932142, 0.46259576722958207], "type": "scatter", "x": [4.215845506689697, 4.215845506689697], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.29037804106401965, 0.39731511514752005], "type": "scatter", "x": [4.284910546560635, 4.284910546560635], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.18909976023732897, 0.3148006458681265], "type": "scatter", "x": [4.353370131352936, 4.353370131352936], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.08002581638951299, 0.21928298012200953], "type": "scatter", "x": [4.421104505227377, 4.421104505227377], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.031572976977432846, 0.11535956295185805], "type": "scatter", "x": [4.488077294921535, 4.488077294921535], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.14062826043648835, 0.007754810964638134], "type": "scatter", "x": [4.554270657536629, 4.554270657536629], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.24267879752237137, -0.09911691985316512], "type": "scatter", "x": [4.6198035626277365, 4.6198035626277365], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.33457997080424684, -0.20204469874736242], "type": "scatter", "x": [4.685427328821156, 4.685427328821156], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.4120678864836735, -0.29637025955379986], "type": "scatter", "x": [4.7508752526603395, 4.7508752526603395], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.4721867109337841, -0.3785262896079166], "type": "scatter", "x": [4.816389136871901, 4.816389136871901], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.5125006432928646, -0.4450721301375637], "type": "scatter", "x": [4.882112901938379, 4.882112901938379], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.5316713189593435, -0.4926070447268106], "type": "scatter", "x": [4.948246108329352, 4.948246108329352], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.5335986847549156, -0.5135985780959592], "type": "scatter", "x": [5.0150367486015535, 5.0150367486015535], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.5319783202281919, -0.49178579561438535], "type": "scatter", "x": [5.082836509401833, 5.082836509401833], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.5123990880885652, -0.4395985166787673], "type": "scatter", "x": [5.152359142004682, 5.152359142004682], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.4698075244091065, -0.365056460765291], "type": "scatter", "x": [5.222086727004381, 5.222086727004381], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.40628640702888474, -0.27346495303018425], "type": "scatter", "x": [5.291140645153007, 5.291140645153007], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.32508648974911625, -0.16966448021438651], "type": "scatter", "x": [5.359576994759068, 5.359576994759068], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.23039523591367606, -0.05900613342103385], "type": "scatter", "x": [5.427285371537353, 5.427285371537353], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.1267931158641385, 0.053206494470496524], "type": "scatter", "x": [5.4942292651269975, 5.4942292651269975], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.019004400598798085, 0.16192066778197745], "type": "scatter", "x": [5.560392798992759, 5.560392798992759], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.08860749630078789, 0.2627896716224804], "type": "scatter", "x": [5.625939089254649, 5.625939089254649], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.19270245661293411, 0.352618686472741], "type": "scatter", "x": [5.6915573073139605, 5.6915573073139605], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.2886173152414141, 0.42728148425414514], "type": "scatter", "x": [5.757011210634515, 5.757011210634515], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.3727146025560393, 0.4839138253837547], "type": "scatter", "x": [5.822536466839084, 5.822536466839084], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.44148814253819324, 0.5201984948195326], "type": "scatter", "x": [5.88827966861974, 5.88827966861974], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.4914612869184411, 0.534925081133427], "type": "scatter", "x": [5.954442048966963, 5.954442048966963], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.5135295764264352, 0.5336191462431912], "type": "scatter", "x": [6.021275286637785, 6.021275286637785], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.4866315578748075, 0.5348239618911959], "type": "scatter", "x": [6.089137974633685, 6.089137974633685], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.42961777736671086, 0.5177029913249521], "type": "scatter", "x": [6.158776094758822, 6.158776094758822], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.3510082276818947, 0.47718752515968715], "type": "scatter", "x": [6.22846478195012, 6.22846478195012], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.25608553064799716, 0.415321076768771], "type": "scatter", "x": [6.297503783071747, 6.297503783071747], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.2523926844823088, 0.4127103121729081], "type": "scatter", "x": [6.3, 6.3], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}], "config": {"showlegend": true, "xaxis": {"showticklabels": true, "gridwidth": 0.5, "range": [-0.18900000000000006, 6.489], "domain": [0.0658209390492855, 0.9934383202099738], "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": 400, "margin": {"l": 0, "b": 20, "r": 0, "t": 20}, "plot_bgcolor": "rgba(255, 255, 255, 1.000)", "yaxis": {"showticklabels": true, "gridwidth": 0.5, "range": [-0.5656543977315658, 0.5669807941100773], "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"}, "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": 983.765625}}
{"id": "e6634c2f-1373-4eeb-a883-98412d9d67d9", "data": [{"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "Численным методом", "zmin": null, "yaxis": "y", "legendgroup": "Численным методом", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.5235987755982988, 0.5147928278239311, 0.5010786777426147, 0.4757964882607658, 0.44055273598646294, 0.39390361485342995, 0.33624503381445026, 0.2682480088505245, 0.19132363611545097, 0.10742096616162748, 0.01896719148022323, -0.07127705508642182, -0.16066033601663793, -0.2466435435248159, -0.3258444400718302, -0.3953293402909998, -0.45222167109798395, -0.49390712694259, -0.5180965678667573, -0.5228873585042236, -0.506765860005028, -0.4683182161574978, -0.4095759107918092, -0.3331977781350829, -0.24286770788797957, -0.14280649795594685, -0.03754095908315423, 0.06838364326591927, 0.17082341912076612, 0.2666718572511827, 0.351628206927453, 0.42246697036624503, 0.4762501788681826, 0.5105663088226453, 0.5235285228873929, 0.5137676981849661, 0.4802356497458399, 0.4239460567075021, 0.3485067195507384, 0.25775721093652904, 0.15635978713502596, 0.04917726430920914, -0.058931450635827845, -0.16344256140635466, -0.2613261386051647, -0.3480419062635387, -0.4203170449601938, -0.4751728141177248, -0.5101940571384183, -0.5235135439319382, -0.5137999374058578, -0.4800545270441069, -0.42333872422428204, -0.3473703354814781, -0.2560671401399614, -0.15416567638390163, -0.046585972593416375, 0.06177386944233851, 0.16640350136444132, 0.264209627569454, 0.3506720463952282, 0.4225198045394014, 0.47679004184065765, 0.5110883974286249, 0.5235725517140356, 0.5129363246259504, 0.4781887429097271, 0.4205866756613981, 0.34384657810576985, 0.25195020305272775, 0.14965439825576127, 0.0418932929872126, -0.06643672473592512, -0.17089785868776824, -0.26831233477580463, -0.3542190730187367, -0.42535650027085037, -0.4787863867152142, -0.512139181843077, -0.5235986314254374, -0.5118820579212886, -0.4759988023836662, -0.41743199258719876, -0.3398756800295345, -0.24737548498175138, -0.14470068466735495, -0.036793310696820986, 0.07145813359158967, 0.17569858396163415, 0.27266057154283757, 0.3579493997477796, 0.428314213969897, 0.48084331867886293, 0.5131931840259341, 0.5235743613348132, 0.5107277598830017, 0.47366038434583146, 0.41409787642079093, 0.3357033037083841, 0.33255149832760844], "type": "scatter", "x": [0, 0.058638083467766666, 0.09397997457502347, 0.137488493317132, 0.18228687604323304, 0.2296386404617398, 0.27887323263856334, 0.3297850002373622, 0.38208728767946776, 0.43554603415563975, 0.4899484909364877, 0.545114727551552, 0.60108898669586, 0.6581167323781499, 0.7159737517106762, 0.774717411395004, 0.8343693452443401, 0.8949964011764014, 0.9567067403268528, 1.0196785487950286, 1.0842099820871522, 1.1510683752493156, 1.2177636660211812, 1.2843229218691874, 1.3505544016232476, 1.4163532867202446, 1.481638941935117, 1.546367830335007, 1.6106555683175712, 1.6751637196636122, 1.7396365694479747, 1.8042872462308637, 1.8692424284783502, 1.9346829721870893, 2.0008376041410703, 2.0680340038565435, 2.1369200964019073, 2.206314329840523, 2.27505631836312, 2.3432499413440935, 2.4107624626852706, 2.4775521730785863, 2.543594319945308, 2.608939763256509, 2.6744224359576787, 2.7397307443423258, 2.805111863752707, 2.8707033364123107, 2.936699718739442, 3.003340928884351, 3.0709652431739967, 3.140230278146626, 3.2099777992062553, 3.2790169068369335, 3.3474659701315663, 3.415196693208567, 3.4821722368658112, 3.5483724986427108, 3.6138754190076634, 3.679488557492886, 3.744917230340615, 3.810408466328497, 3.8761034828991994, 3.9422000579255343, 4.008942560228817, 4.076676106578002, 4.146084493861167, 4.215845506689697, 4.284910546560635, 4.353370131352936, 4.421104505227377, 4.488077294921535, 4.554270657536629, 4.6198035626277365, 4.685427328821156, 4.7508752526603395, 4.816389136871901, 4.882112901938379, 4.948246108329352, 5.0150367486015535, 5.082836509401833, 5.152359142004682, 5.222086727004381, 5.291140645153007, 5.359576994759068, 5.427285371537353, 5.4942292651269975, 5.560392798992759, 5.625939089254649, 5.6915573073139605, 5.757011210634515, 5.822536466839084, 5.88827966861974, 5.954442048966963, 6.021275286637785, 6.089137974633685, 6.158776094758822, 6.22846478195012, 6.297503783071747, 6.3], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 100, "currentCount": 100}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.5135987755982988, 0.5335987755982988], "type": "scatter", "x": [0, 0], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.5049594365251775, 0.5246262191226847], "type": "scatter", "x": [0.058638083467766666, 0.058638083467766666], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.4914983122796071, 0.5106590432056224], "type": "scatter", "x": [0.09397997457502347, 0.09397997457502347], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.4666607032220484, 0.48493227329948324], "type": "scatter", "x": [0.137488493317132, 0.137488493317132], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.43198470555377333, 0.44912076641915255], "type": "scatter", "x": [0.18228687604323304, 0.18228687604323304], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.3859810223836639, 0.401826207323196], "type": "scatter", "x": [0.2296386404617398, 0.2296386404617398], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.32892643455172876, 0.34356363307717175], "type": "scatter", "x": [0.27887323263856334, 0.27887323263856334], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.26132877934527904, 0.27516723835577], "type": "scatter", "x": [0.3297850002373622, 0.3297850002373622], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.18443440605775024, 0.1982128661731517], "type": "scatter", "x": [0.38208728767946776, 0.38208728767946776], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.10012659472652088, 0.11471533759673408], "type": "scatter", "x": [0.43554603415563975, 0.43554603415563975], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.010918928715433967, 0.027015454245012494], "type": "scatter", "x": [0.4899484909364877, 0.4899484909364877], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.08024886931784066, -0.06230524085500298], "type": "scatter", "x": [0.545114727551552, 0.545114727551552], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.17054302100171712, -0.15077765103155874], "type": "scatter", "x": [0.60108898669586, 0.60108898669586], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.2572766524754297, -0.2360104345742021], "type": "scatter", "x": [0.6581167323781499, 0.6581167323781499], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.33695395826717633, -0.3147349218764841], "type": "scatter", "x": [0.7159737517106762, 0.7159737517106762], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.40658040524842454, -0.3840782753335751], "type": "scatter", "x": [0.774717411395004, 0.774717411395004], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.4632799620929597, -0.4411633801030082], "type": "scatter", "x": [0.8343693452443401, 0.8343693452443401], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.5045270125935201, -0.4832872412916599], "type": "scatter", "x": [0.8949964011764014, 0.8949964011764014], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.5282488643090725, -0.5079442714244421], "type": "scatter", "x": [0.9567067403268528, 0.9567067403268528], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.5329118173940616, -0.5128628996143857], "type": "scatter", "x": [1.0196785487950286, 1.0196785487950286], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.5174301155120734, -0.4961016044979826], "type": "scatter", "x": [1.0842099820871522, 1.0842099820871522], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.48062497106014523, -0.45601146125485037], "type": "scatter", "x": [1.1510683752493156, 1.1510683752493156], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.42428588641721127, -0.39486593516640717], "type": "scatter", "x": [1.2177636660211812, 1.2177636660211812], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.35066652940338644, -0.31572902686677934], "type": "scatter", "x": [1.2843229218691874, 1.2843229218691874], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.26305506855314575, -0.22268034722281335], "type": "scatter", "x": [1.3505544016232476, 1.3505544016232476], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.16534812223727566, -0.12026487367461805], "type": "scatter", "x": [1.4163532867202446, 1.4163532867202446], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.06181875295683878, -0.013263165209469685], "type": "scatter", "x": [1.481638941935117, 1.481638941935117], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.0431745594770641, 0.09359272705477444], "type": "scatter", "x": [1.546367830335007, 1.546367830335007], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.14561021618796724, 0.196036622053565], "type": "scatter", "x": [1.6106555683175712, 1.6106555683175712], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.24245747917135588, 0.2908862353310095], "type": "scatter", "x": [1.6751637196636122, 1.6751637196636122], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.32942214450711754, 0.37383426934778846], "type": "scatter", "x": [1.7396365694479747, 1.7396365694479747], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.403193937129269, 0.4417400036032211], "type": "scatter", "x": [1.8042872462308637, 1.8042872462308637], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.46058414330960173, 0.4919162144267635], "type": "scatter", "x": [1.8692424284783502, 1.8692424284783502], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.49853713822415835, 0.5225954794211323], "type": "scatter", "x": [1.9346829721870893, 1.9346829721870893], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.5135153967577364, 0.5335416490170495], "type": "scatter", "x": [2.0008376041410703, 2.0008376041410703], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.501970296943738, 0.5255650994261943], "type": "scatter", "x": [2.0680340038565435, 2.0680340038565435], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.4635136282814299, 0.49695767121024986], "type": "scatter", "x": [2.1369200964019073, 2.1369200964019073], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.4011943090494198, 0.44669780436558437], "type": "scatter", "x": [2.206314329840523, 2.206314329840523], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.319842277236373, 0.37717116186510385], "type": "scatter", "x": [2.27505631836312, 2.27505631836312], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.22390449224176676, 0.2916099296312913], "type": "scatter", "x": [2.3432499413440935, 2.3432499413440935], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.11846143194885748, 0.19425814232119443], "type": "scatter", "x": [2.4107624626852706, 2.4107624626852706], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.008662620263718092, 0.0896919083547002], "type": "scatter", "x": [2.4775521730785863, 2.4775521730785863], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.10044937768300653, -0.017413523588649157], "type": "scatter", "x": [2.543594319945308, 2.543594319945308], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.2042625009498821, -0.12262262186282721], "type": "scatter", "x": [2.608939763256509, 2.608939763256509], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.29970760897915794, -0.2229446682311714], "type": "scatter", "x": [2.6744224359576787, 2.6744224359576787], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.3823040347805668, -0.3137797777465106], "type": "scatter", "x": [2.7397307443423258, 2.7397307443423258], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.44893397648795097, -0.3917001134324366], "type": "scatter", "x": [2.805111863752707, 2.805111863752707], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.4969532025338691, -0.45339242570158045], "type": "scatter", "x": [2.8707033364123107, 2.8707033364123107], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.5247711050185028, -0.49561700925833374], "type": "scatter", "x": [2.936699718739442, 2.936699718739442], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.5335514078803386, -0.5134756799835377], "type": "scatter", "x": [3.003340928884351, 3.003340928884351], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.5276050714885856, -0.4999948033231301], "type": "scatter", "x": [3.0709652431739967, 3.0709652431739967], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.50259181013866, -0.45751724394955384], "type": "scatter", "x": [3.140230278146626, 3.140230278146626], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.45539388988602986, -0.3912835585625342], "type": "scatter", "x": [3.2099777992062553, 3.2099777992062553], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.3882013943756478, -0.3065392765873084], "type": "scatter", "x": [3.2790169068369335, 3.2790169068369335], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.30426229773542746, -0.20787198254449538], "type": "scatter", "x": [3.3474659701315663, 3.3474659701315663], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.20784107475575309, -0.10049027801205018], "type": "scatter", "x": [3.415196693208567, 3.415196693208567], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.10354648930848473, 0.01037454412165198], "type": "scatter", "x": [3.4821722368658112, 3.4821722368658112], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.003901373046237125, 0.11964636583843989], "type": "scatter", "x": [3.5483724986427108, 3.5483724986427108], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.11004741857131344, 0.2227595841575692], "type": "scatter", "x": [3.6138754190076634, 3.6138754190076634], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.21180206231121845, 0.3166171928276895], "type": "scatter", "x": [3.679488557492886, 3.679488557492886], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.30451743148937893, 0.39682666130107747], "type": "scatter", "x": [3.744917230340615, 3.744917230340615], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.3846940917212634, 0.4603455173575394], "type": "scatter", "x": [3.810408466328497, 3.810408466328497], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.44895336982615264, 0.5046267138551627], "type": "scatter", "x": [3.8761034828991994, 3.8761034828991994], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.49396722002073035, 0.5282095748365194], "type": "scatter", "x": [3.9422000579255343, 3.9422000579255343], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.5135514350392186, 0.5335936683888526], "type": "scatter", "x": [4.008942560228817, 4.008942560228817], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.49630436142830664, 0.5295682878235941], "type": "scatter", "x": [4.076676106578002, 4.076676106578002], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.4489905361304438, 0.5073869496890104], "type": "scatter", "x": [4.146084493861167, 4.146084493861167], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.3785775840932142, 0.46259576722958207], "type": "scatter", "x": [4.215845506689697, 4.215845506689697], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.29037804106401965, 0.39731511514752005], "type": "scatter", "x": [4.284910546560635, 4.284910546560635], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.18909976023732897, 0.3148006458681265], "type": "scatter", "x": [4.353370131352936, 4.353370131352936], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.08002581638951299, 0.21928298012200953], "type": "scatter", "x": [4.421104505227377, 4.421104505227377], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.031572976977432846, 0.11535956295185805], "type": "scatter", "x": [4.488077294921535, 4.488077294921535], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.14062826043648835, 0.007754810964638134], "type": "scatter", "x": [4.554270657536629, 4.554270657536629], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.24267879752237137, -0.09911691985316512], "type": "scatter", "x": [4.6198035626277365, 4.6198035626277365], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.33457997080424684, -0.20204469874736242], "type": "scatter", "x": [4.685427328821156, 4.685427328821156], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.4120678864836735, -0.29637025955379986], "type": "scatter", "x": [4.7508752526603395, 4.7508752526603395], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.4721867109337841, -0.3785262896079166], "type": "scatter", "x": [4.816389136871901, 4.816389136871901], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.5125006432928646, -0.4450721301375637], "type": "scatter", "x": [4.882112901938379, 4.882112901938379], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.5316713189593435, -0.4926070447268106], "type": "scatter", "x": [4.948246108329352, 4.948246108329352], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.5335986847549156, -0.5135985780959592], "type": "scatter", "x": [5.0150367486015535, 5.0150367486015535], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.5319783202281919, -0.49178579561438535], "type": "scatter", "x": [5.082836509401833, 5.082836509401833], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.5123990880885652, -0.4395985166787673], "type": "scatter", "x": [5.152359142004682, 5.152359142004682], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.4698075244091065, -0.365056460765291], "type": "scatter", "x": [5.222086727004381, 5.222086727004381], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.40628640702888474, -0.27346495303018425], "type": "scatter", "x": [5.291140645153007, 5.291140645153007], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.32508648974911625, -0.16966448021438651], "type": "scatter", "x": [5.359576994759068, 5.359576994759068], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.23039523591367606, -0.05900613342103385], "type": "scatter", "x": [5.427285371537353, 5.427285371537353], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.1267931158641385, 0.053206494470496524], "type": "scatter", "x": [5.4942292651269975, 5.4942292651269975], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.019004400598798085, 0.16192066778197745], "type": "scatter", "x": [5.560392798992759, 5.560392798992759], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.08860749630078789, 0.2627896716224804], "type": "scatter", "x": [5.625939089254649, 5.625939089254649], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.19270245661293411, 0.352618686472741], "type": "scatter", "x": [5.6915573073139605, 5.6915573073139605], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.2886173152414141, 0.42728148425414514], "type": "scatter", "x": [5.757011210634515, 5.757011210634515], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.3727146025560393, 0.4839138253837547], "type": "scatter", "x": [5.822536466839084, 5.822536466839084], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.44148814253819324, 0.5201984948195326], "type": "scatter", "x": [5.88827966861974, 5.88827966861974], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.4914612869184411, 0.534925081133427], "type": "scatter", "x": [5.954442048966963, 5.954442048966963], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.5135295764264352, 0.5336191462431912], "type": "scatter", "x": [6.021275286637785, 6.021275286637785], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.4866315578748075, 0.5348239618911959], "type": "scatter", "x": [6.089137974633685, 6.089137974633685], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.42961777736671086, 0.5177029913249521], "type": "scatter", "x": [6.158776094758822, 6.158776094758822], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.3510082276818947, 0.47718752515968715], "type": "scatter", "x": [6.22846478195012, 6.22846478195012], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.25608553064799716, 0.415321076768771], "type": "scatter", "x": [6.297503783071747, 6.297503783071747], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.2523926844823088, 0.4127103121729081], "type": "scatter", "x": [6.3, 6.3], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "Аналитическим", "zmin": null, "yaxis": "y", "legendgroup": "Аналитическим", "zmax": null, "line": {"color": "rgba(227, 111, 71, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.5235987755982988, 0.5147928287112926, 0.5010786787505792, 0.4757964895134677, 0.4405527375083945, 0.3939036167107207, 0.33624503604996436, 0.26824801148377625, 0.19132363912122, 0.10742096945693344, 0.01896719491475379, -0.07127705173183896, -0.16066033301587992, -0.24664354120047222, -0.325844438811369, -0.3953293405223403, -0.45222167327588464, -0.49390713153009164, -0.5180965753163883, -0.5228873692431624, -0.5067658744340927, -0.4683182347481678, -0.4095759332227456, -0.33319780370665947, -0.2428677354988012, -0.14280652619652384, -0.03754098634492795, 0.06838361866574391, 0.1708233988138937, 0.2666718427467783, 0.3516281995993742, 0.42246697136634437, 0.4762501890730433, 0.5105663287915747, 0.5235285528328084, 0.51376773796538, 0.4802356989431025, 0.4239461139677576, 0.3485067824882854, 0.2577572766836461, 0.15635985245658468, 0.049177325846696464, -0.0589313961471651, -0.16344251694397002, -0.2613261068010387, -0.34804188929090857, -0.42031704445821066, -0.4751728311113536, -0.5101940919936374, -0.5235135963273693, -0.5138000063347932, -0.48005461091274654, -0.42333882007895185, -0.34737043906281534, -0.25606724666072966, -0.15416578073232914, -0.04658606967302263, 0.06177378442015498, 0.1664034326396802, 0.26420957882687074, 0.35067202051612983, 0.4225198035577908, 0.47679006683800235, 0.5110884484886183, 0.5235726278972656, 0.5129364239820687, 0.4781888626036296, 0.4205868110042636, 0.34384672294255714, 0.2519503506634721, 0.14965454166381587, 0.04189342538556825, -0.0664366096216937, -0.1708977663258601, -0.26831226986010676, -0.354219039096543, -0.4253564997273307, -0.4787864206455666, -0.5121392500071369, -0.5235987322261022, -0.5118821884271347, -0.4759989584859296, -0.4174321678018135, -0.33987586629876304, -0.24737567365187146, -0.14470086690791592, -0.036793478010252, 0.07145798893898603, 0.1756984686454428, 0.2726604912313113, 0.3579493586225252, 0.42831421473257447, 0.48084336240345, 0.5131932701134438, 0.5235744874962501, 0.5107279221728452, 0.47366057735227024, 0.41409809181372914, 0.3357035315200662, 0.33255172627732954], "type": "scatter", "x": [0, 0.058638083467766666, 0.09397997457502347, 0.137488493317132, 0.18228687604323304, 0.2296386404617398, 0.27887323263856334, 0.3297850002373622, 0.38208728767946776, 0.43554603415563975, 0.4899484909364877, 0.545114727551552, 0.60108898669586, 0.6581167323781499, 0.7159737517106762, 0.774717411395004, 0.8343693452443401, 0.8949964011764014, 0.9567067403268528, 1.0196785487950286, 1.0842099820871522, 1.1510683752493156, 1.2177636660211812, 1.2843229218691874, 1.3505544016232476, 1.4163532867202446, 1.481638941935117, 1.546367830335007, 1.6106555683175712, 1.6751637196636122, 1.7396365694479747, 1.8042872462308637, 1.8692424284783502, 1.9346829721870893, 2.0008376041410703, 2.0680340038565435, 2.1369200964019073, 2.206314329840523, 2.27505631836312, 2.3432499413440935, 2.4107624626852706, 2.4775521730785863, 2.543594319945308, 2.608939763256509, 2.6744224359576787, 2.7397307443423258, 2.805111863752707, 2.8707033364123107, 2.936699718739442, 3.003340928884351, 3.0709652431739967, 3.140230278146626, 3.2099777992062553, 3.2790169068369335, 3.3474659701315663, 3.415196693208567, 3.4821722368658112, 3.5483724986427108, 3.6138754190076634, 3.679488557492886, 3.744917230340615, 3.810408466328497, 3.8761034828991994, 3.9422000579255343, 4.008942560228817, 4.076676106578002, 4.146084493861167, 4.215845506689697, 4.284910546560635, 4.353370131352936, 4.421104505227377, 4.488077294921535, 4.554270657536629, 4.6198035626277365, 4.685427328821156, 4.7508752526603395, 4.816389136871901, 4.882112901938379, 4.948246108329352, 5.0150367486015535, 5.082836509401833, 5.152359142004682, 5.222086727004381, 5.291140645153007, 5.359576994759068, 5.427285371537353, 5.4942292651269975, 5.560392798992759, 5.625939089254649, 5.6915573073139605, 5.757011210634515, 5.822536466839084, 5.88827966861974, 5.954442048966963, 6.021275286637785, 6.089137974633685, 6.158776094758822, 6.22846478195012, 6.297503783071747, 6.3], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 100, "currentCount": 100}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.5135987755982988, 0.5335987755982988], "type": "scatter", "x": [0, 0], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.5049594373965538, 0.5246262200260314], "type": "scatter", "x": [0.058638083467766666, 0.058638083467766666], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.49149831327126114, 0.5106590442298973], "type": "scatter", "x": [0.09397997457502347, 0.09397997457502347], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.46666070445911423, 0.4849322745678212], "type": "scatter", "x": [0.137488493317132, 0.137488493317132], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.43198470706548586, 0.4491207679513032], "type": "scatter", "x": [0.18228687604323304, 0.18228687604323304], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.3859810242445035, 0.40182620917693795], "type": "scatter", "x": [0.2296386404617398, 0.2296386404617398], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.3289264368179931, 0.3435636352819356], "type": "scatter", "x": [0.27887323263856334, 0.27887323263856334], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.2613287820524518, 0.2751672409151007], "type": "scatter", "x": [0.3297850002373622, 0.3297850002373622], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.18443440918948178, 0.1982128690529582], "type": "scatter", "x": [0.38208728767946776, 0.38208728767946776], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.10012659819117303, 0.11471534072269385], "type": "scatter", "x": [0.43554603415563975, 0.43554603415563975], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.010918932338208093, 0.027015457491299487], "type": "scatter", "x": [0.4899484909364877, 0.4899484909364877], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.08024886578665165, -0.06230523767702627], "type": "scatter", "x": [0.545114727551552, 0.545114727551552], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.17054301786594375, -0.1507776481658161], "type": "scatter", "x": [0.60108898669586, 0.60108898669586], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.2572766500853988, -0.2360104323155456], "type": "scatter", "x": [0.6581167323781499, 0.6581167323781499], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.336953957034999, -0.314734920587739], "type": "scatter", "x": [0.7159737517106762, 0.7159737517106762], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.40658040561854175, -0.38407827542613887], "type": "scatter", "x": [0.774717411395004, 0.774717411395004], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.4632799645195764, -0.44116338203219285], "type": "scatter", "x": [0.8343693452443401, 0.8343693452443401], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.5045270175053714, -0.4832872455548118], "type": "scatter", "x": [0.8949964011764014, 0.8949964011764014], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.5282488720649555, -0.5079442785678211], "type": "scatter", "x": [0.9567067403268528, 0.9567067403268528], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.5329118282523956, -0.5128629102339292], "type": "scatter", "x": [1.0196785487950286, 1.0196785487950286], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.5174301296841695, -0.49610161918401596], "type": "scatter", "x": [1.0842099820871522, 1.0842099820871522], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.4806249889194115, -0.4560114805769241], "type": "scatter", "x": [1.1510683752493156, 1.1510683752493156], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.4242859077187643, -0.3948659587267269], "type": "scatter", "x": [1.2177636660211812, 1.2177636660211812], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.3506665536035488, -0.3157290538097701], "type": "scatter", "x": [1.2843229218691874, 1.2843229218691874], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.26305509473098065, -0.22268037626662174], "type": "scatter", "x": [1.3505544016232476, 1.3505544016232476], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.165348149165491, -0.12026490322755667], "type": "scatter", "x": [1.4163532867202446, 1.4163532867202446], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.06181877919946377, -0.01326319349039214], "type": "scatter", "x": [1.481638941935117, 1.481638941935117], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.043174535450284685, 0.09359270188120314], "type": "scatter", "x": [1.546367830335007, 1.546367830335007], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.14561019588550453, 0.19603660174228285], "type": "scatter", "x": [1.6106555683175712, 1.6106555683175712], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.2424574640103434, 0.2908862214832132], "type": "scatter", "x": [1.6751637196636122, 1.6751637196636122], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.3294221358184941, 0.3738342633802543], "type": "scatter", "x": [1.7396365694479747, 1.7396365694479747], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.40319393609414333, 0.4417400066385454], "type": "scatter", "x": [1.8042872462308637, 1.8042872462308637], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.4605841509814479, 0.4919162271646387], "type": "scatter", "x": [1.8692424284783502, 1.8692424284783502], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.49853715574737895, 0.5225955018357705], "type": "scatter", "x": [1.9346829721870893, 1.9346829721870893], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.5135154259053929, 0.5335416797602239], "type": "scatter", "x": [2.0008376041410703, 2.0008376041410703], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.5019703386666301, 0.5255651372641299], "type": "scatter", "x": [2.0680340038565435, 2.0680340038565435], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.46351368103319324, 0.4969577168530117], "type": "scatter", "x": [2.1369200964019073, 2.1369200964019073], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.40119437042767403, 0.4466978575078412], "type": "scatter", "x": [2.206314329840523, 2.206314329840523], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.319842344215335, 0.3771712207612359], "type": "scatter", "x": [2.27505631836312, 2.27505631836312], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.22390456148850973, 0.2916099918787825], "type": "scatter", "x": [2.3432499413440935, 2.3432499413440935], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.11846149984608445, 0.1942582050670849], "type": "scatter", "x": [2.4107624626852706, 2.4107624626852706], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.00866268314338614, 0.08969196855000679], "type": "scatter", "x": [2.4775521730785863, 2.4775521730785863], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.10044932331512885, -0.01741346897920134], "type": "scatter", "x": [2.543594319945308, 2.543594319945308], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.2042624582119883, -0.12262257567595175], "type": "scatter", "x": [2.608939763256509, 2.608939763256509], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.29970758057152225, -0.22294463303055512], "type": "scatter", "x": [2.6744224359576787, 2.6744224359576787], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.3823040228312733, -0.31377975575054384], "type": "scatter", "x": [2.7397307443423258, 2.7397307443423258], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.448933982461524, -0.39170010645489733], "type": "scatter", "x": [2.805111863752707, 2.805111863752707], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.49695322703642864, -0.4533924351862786], "type": "scatter", "x": [2.8707033364123107, 2.8707033364123107], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.5247711471520998, -0.49561703683517494], "type": "scatter", "x": [2.936699718739442, 2.936699718739442], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.5335514621498015, -0.513475730504937], "type": "scatter", "x": [3.003340928884351, 3.003340928884351], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.5276051341957559, -0.49999487847383045], "type": "scatter", "x": [3.0709652431739967, 3.0709652431739967], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.5025918855651598, -0.4575173362603333], "type": "scatter", "x": [3.140230278146626, 3.140230278146626], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.4553939773562229, -0.3912836628016808], "type": "scatter", "x": [3.2099777992062553, 3.2099777992062553], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.38820149067067444, -0.30653938745495624], "type": "scatter", "x": [3.2790169068369335, 3.2790169068369335], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.30426239878038586, -0.2078720945410735], "type": "scatter", "x": [3.3474659701315663, 3.3474659701315663], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.20784117598217003, -0.10049038548248826], "type": "scatter", "x": [3.415196693208567, 3.415196693208567], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.1035465860102043, 0.010374446664159036], "type": "scatter", "x": [3.4821722368658112, 3.4821722368658112], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.003901285427378956, 0.119646283412931], "type": "scatter", "x": [3.5483724986427108, 3.5483724986427108], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.11004734420736839, 0.22275952107199198], "type": "scatter", "x": [3.6138754190076634, 3.6138754190076634], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.21180200494318524, 0.31661715271055624], "type": "scatter", "x": [3.679488557492886, 3.679488557492886], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.30451739424403884, 0.3968266467882208], "type": "scatter", "x": [3.744917230340615, 3.744917230340615], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.3846940770682472, 0.46034553004733436], "type": "scatter", "x": [3.810408466328497, 3.810408466328497], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.4489533796126545, 0.5046267540633502], "type": "scatter", "x": [3.8761034828991994, 3.8761034828991994], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.4939672563626776, 0.5282096406145591], "type": "scatter", "x": [3.9422000579255343, 3.9422000579255343], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.5135515086014064, 0.5335937471931247], "type": "scatter", "x": [4.008942560228817, 4.008942560228817], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.4963044738524256, 0.5295683741117119], "type": "scatter", "x": [4.076676106578002, 4.076676106578002], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.4489906706808878, 0.5073870545263713], "type": "scatter", "x": [4.146084493861167, 4.146084493861167], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.3785777329335203, 0.46259588907500687], "type": "scatter", "x": [4.215845506689697, 4.215845506689697], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.2903781966616917, 0.3973152492234226], "type": "scatter", "x": [4.284910546560635, 4.284910546560635], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.18909991493068284, 0.31480078639626136], "type": "scatter", "x": [4.353370131352936, 4.353370131352936], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.0800259625293942, 0.21928312079823753], "type": "scatter", "x": [4.421104505227377, 4.421104505227377], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.031572846616242455, 0.11535969738737895], "type": "scatter", "x": [4.488077294921535, 4.488077294921535], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.14062815228761882, 0.007754933044231416], "type": "scatter", "x": [4.554270657536629, 4.554270657536629], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.24267871696468102, -0.09911681568703917], "type": "scatter", "x": [4.6198035626277365, 4.6198035626277365], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.3345799222535535, -0.20204461746666003], "type": "scatter", "x": [4.685427328821156, 4.685427328821156], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.41206787293466324, -0.2963702052584228], "type": "scatter", "x": [4.7508752526603395, 4.7508752526603395], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.472186733963588, -0.3785262654910734], "type": "scatter", "x": [4.816389136871901, 4.816389136871901], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.5125007027766175, -0.44507213851451566], "type": "scatter", "x": [4.882112901938379, 4.882112901938379], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.5316714117629393, -0.4926070882513344], "type": "scatter", "x": [4.948246108329352, 4.948246108329352], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.5335987875740144, -0.51359867687819], "type": "scatter", "x": [5.0150367486015535, 5.0150367486015535], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.5319784286569282, -0.4917859481973412], "type": "scatter", "x": [5.082836509401833, 5.082836509401833], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.5123992216343243, -0.43959869533753493], "type": "scatter", "x": [5.152359142004682, 5.152359142004682], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.46980768032243214, -0.3650566552811949], "type": "scatter", "x": [5.222086727004381, 5.222086727004381], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.4062865789591151, -0.273465153638411], "type": "scatter", "x": [5.291140645153007, 5.291140645153007], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.3250866702062895, -0.16966467709745342], "type": "scatter", "x": [5.359576994759068, 5.359576994759068], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.23039541683891324, -0.059006316976918605], "type": "scatter", "x": [5.427285371537353, 5.427285371537353], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.12679328915289662, 0.05320633313239262], "type": "scatter", "x": [5.4942292651269975, 5.4942292651269975], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.019004558532821084, 0.16192053641079313], "type": "scatter", "x": [5.560392798992759, 5.560392798992759], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.08860736072786697, 0.26278957656301866], "type": "scatter", "x": [5.625939089254649, 5.625939089254649], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.19270234966735098, 0.3526186327952716], "type": "scatter", "x": [5.6915573073139605, 5.6915573073139605], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.28861724207142403, 0.42728147517362636], "type": "scatter", "x": [5.757011210634515, 5.757011210634515], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.3727145671557757, 0.4839138623093732], "type": "scatter", "x": [5.822536466839084, 5.822536466839084], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.4414881477678393, 0.5201985770390607], "type": "scatter", "x": [5.88827966861974, 5.88827966861974], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.49146133605646614, 0.5349252041704216], "type": "scatter", "x": [5.954442048966963, 5.954442048966963], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.5135297039766434, 0.5336192710158568], "type": "scatter", "x": [6.021275286637785, 6.021275286637785], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.4866317531197273, 0.5348240912259632], "type": "scatter", "x": [6.089137974633685, 6.089137974633685], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.42961800179415105, 0.5177031529103894], "type": "scatter", "x": [6.158776094758822, 6.158776094758822], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.35100846877202196, 0.4771877148554363], "type": "scatter", "x": [6.22846478195012, 6.22846478195012], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.256085776385058, 0.41532128665507445], "type": "scatter", "x": [6.297503783071747, 6.297503783071747], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines+markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "marker": {"symbol": "line-ew", "color": "rgba(0, 0, 0, 1)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 8}, "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.25239293003634017, 0.4127105225183189], "type": "scatter", "x": [6.3, 6.3], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}], "config": {"showlegend": true, "xaxis": {"showticklabels": true, "gridwidth": 0.5, "range": [-0.18900000000000006, 6.489], "domain": [0.0658209390492855, 0.9934383202099738], "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": [{"yanchor": "top", "xanchor": "center", "rotation": 0, "y": 1, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "paper", "showarrow": false, "text": "Сравнение решений задачи моделирования маятника", "xref": "paper", "x": 0.5296296296296296}], "height": 400, "margin": {"l": 0, "b": 20, "r": 0, "t": 20}, "plot_bgcolor": "rgba(255, 255, 255, 1.000)", "yaxis": {"showticklabels": true, "gridwidth": 0.5, "range": [-0.5656545073263475, 0.5669809239227546], "domain": [0.03762029746281716, 0.9415463692038496], "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"}, "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": 983.765625}}