Нахождение кратчайших путей в графе, используя алгоритм Дийкстры
Создание графа на примере транспортной сети из матрицы смежности, считанной с Excel. Нахождение кратчайших путей в "прыжках" и расстояниях с помомощью алгоритма Дийкстры. Запись результат в Excel.
Описание задачи
Имеется автомобильная транспортная сеть (см. рисунок). имеется Excel-файл, в котором занесена информация о данной транспортной сети в виде матрицы смежности и таблицы с расстояниями между узлами сети.
Транспортная сеть – ненаправленный граф, т.е. по ребру можно перемещаться в прямом и обратном напрявлениях. Помимо того что графы могут быть направленными или ненаправленными, они могут быть также взвешенными или невзвешенными. Взвешенный граф — это такой граф, у которого с каждым из ребер связано некое сопоставимое значение, обычно числовое. В потенциальной транспортной сети вес ребер – это расстояния между узлами.
Задача заключается в поиске оптимальных путей между узлами (вершинами) в «прыжках» на невзвешенном графе и в расстояниях на взвешенном графе. За чем это надо?
Если бы вид транспорта на данной транспортной сети был бы настолько быстрый по скорости, то для оптимизации времени в пути между узлами, вероятно, потребуется считать количество ребер, так как расстояние между ними имеет гораздо меньшее значение, чем то, сколько прыжков потребуется (сколько узлов придется посетить), чтобы добраться от узла до другого. Каждая станция может означать задержку, поэтому, как и при полетах на самолете, чем меньше остановок, тем лучше.
Алгоритм Дийкстры (англ. Dijkstra’s algorithm) —
алгоритм на графах, изобретённый нидерландским учёным Эдсгером Дейкстрой в 1959 году. Находит кратчайшие пути от одной из вершин графа до всех остальных. Алгоритм работает только для графов без рёбер отрицательного веса. Алгоритм широко применяется в программировании и технологиях, например, его используют протоколы маршрутизации OSPF и IS-IS.
Поиск кратчайшего пути в "прыжках" на невзвешенном графе.
Считаем матрицу смежности с Excel, построим невзвешанный граф
Out[0]:
27×27 Matrix{Int64}:
0 1 0 0 0 0 0 0 0 0 0 0 0 … 0 0 0 0 0 0 0 0 0 0 0 0
1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0
0 0 1 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
0 0 0 0 1 0 0 0 0 0 0 0 0 … 0 0 0 0 0 0 0 0 0 1 0 0
0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 1 0 0 0 … 1 0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0
0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0
⋮ ⋮ ⋮ ⋱ ⋮ ⋮ ⋮
0 0 0 0 0 0 0 0 0 0 1 0 1 … 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0
0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1
0 0 0 0 0 0 0 0 0 0 0 0 0 … 0 1 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 1 0 0 0 0 0 0 0 0 … 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0
Out[0]:
{27, 31} undirected simple Int64 graph
Количество вершин = 27
Количество ребер = 31
Например, найдем кратчайший путь в "прыжках" от любой вершины до другой вершины с помощью алгоритма Дийкстра. Перечислим путь.
Out[0]:
12-element Vector{Int64}:
1
2
3
5
8
13
16
11
10
9
12
24
Out[0]:
5-element Vector{Int64}:
27
7
4
2
1
Out[0]:
27-element Vector{Vector{Int64}}:
[]
[1, 2]
[1, 2, 3]
[1, 2, 4]
[1, 2, 3, 5]
[1, 2, 3, 5, 6]
[1, 2, 4, 7]
[1, 2, 3, 5, 8]
[1, 2, 3, 5, 8, 13, 16, 11, 10, 9]
[1, 2, 3, 5, 8, 13, 16, 11, 10]
[1, 2, 3, 5, 8, 13, 16, 11]
[1, 2, 3, 5, 8, 13, 16, 11, 10, 9, 12]
[1, 2, 3, 5, 8, 13]
⋮
[1, 2, 3, 5, 8, 13, 16]
[1, 2, 4, 20, 17]
[1, 2, 4, 20, 17, 18]
[1, 2, 4, 20, 17, 19]
[1, 2, 4, 20]
[1, 2, 4, 20, 17, 21]
[1, 2, 3, 5, 6, 25, 14, 22]
[1, 2, 3, 5, 8, 13, 16, 15, 23]
[1, 2, 3, 5, 8, 13, 16, 11, 10, 9, 12, 24]
[1, 2, 3, 5, 6, 25]
[1, 2, 3, 5, 26]
[1, 2, 4, 20, 27]
Найдем количество "прыжков" от каждой вершины ко всем вершинам по кратчайшим путям
Out[0]:
27×27 Matrix{Float64}:
0.0 1.0 2.0 2.0 3.0 4.0 3.0 … 7.0 8.0 11.0 5.0 4.0 4.0
1.0 0.0 1.0 1.0 2.0 3.0 2.0 6.0 7.0 10.0 4.0 3.0 3.0
2.0 1.0 0.0 2.0 1.0 2.0 2.0 5.0 6.0 9.0 3.0 2.0 3.0
2.0 1.0 2.0 0.0 2.0 3.0 1.0 6.0 7.0 10.0 4.0 3.0 2.0
3.0 2.0 1.0 2.0 0.0 1.0 1.0 4.0 5.0 8.0 2.0 1.0 2.0
4.0 3.0 2.0 3.0 1.0 0.0 2.0 … 3.0 5.0 8.0 1.0 2.0 3.0
3.0 2.0 2.0 1.0 1.0 2.0 0.0 5.0 6.0 9.0 3.0 2.0 1.0
4.0 3.0 2.0 3.0 1.0 2.0 2.0 3.0 4.0 7.0 2.0 2.0 3.0
9.0 8.0 7.0 8.0 6.0 6.0 7.0 5.0 5.0 2.0 5.0 7.0 8.0
8.0 7.0 6.0 7.0 5.0 5.0 6.0 4.0 4.0 3.0 4.0 6.0 7.0
7.0 6.0 5.0 6.0 4.0 4.0 5.0 … 3.0 3.0 4.0 3.0 5.0 6.0
10.0 9.0 8.0 9.0 7.0 7.0 8.0 6.0 6.0 1.0 6.0 8.0 9.0
5.0 4.0 3.0 4.0 2.0 2.0 3.0 2.0 3.0 6.0 1.0 3.0 4.0
⋮ ⋮ ⋱ ⋮
6.0 5.0 4.0 5.0 3.0 3.0 4.0 … 2.0 2.0 5.0 2.0 4.0 5.0
4.0 3.0 4.0 2.0 4.0 5.0 3.0 8.0 9.0 12.0 6.0 5.0 2.0
5.0 4.0 5.0 3.0 5.0 6.0 4.0 9.0 10.0 13.0 7.0 6.0 3.0
5.0 4.0 5.0 3.0 5.0 6.0 4.0 9.0 10.0 13.0 7.0 6.0 3.0
3.0 2.0 3.0 1.0 3.0 4.0 2.0 7.0 8.0 11.0 5.0 4.0 1.0
5.0 4.0 5.0 3.0 5.0 6.0 4.0 … 9.0 10.0 13.0 7.0 6.0 3.0
7.0 6.0 5.0 6.0 4.0 3.0 5.0 0.0 4.0 7.0 2.0 5.0 6.0
8.0 7.0 6.0 7.0 5.0 5.0 6.0 4.0 0.0 7.0 4.0 6.0 7.0
11.0 10.0 9.0 10.0 8.0 8.0 9.0 7.0 7.0 0.0 7.0 9.0 10.0
5.0 4.0 3.0 4.0 2.0 1.0 3.0 2.0 4.0 7.0 0.0 3.0 4.0
4.0 3.0 2.0 3.0 1.0 2.0 2.0 … 5.0 6.0 9.0 3.0 0.0 3.0
4.0 3.0 3.0 2.0 2.0 3.0 1.0 6.0 7.0 10.0 4.0 3.0 0.0
Запишем результат в файл Excel
Поиск кратчайшего пути по расстояниям на взвешенном графе.
В этом примере воспользуемся функциями библиотеки SimpleWeightedGraphs.jl чтобы создать граф и найти на нем кратчайшие маршруты от всех вершин ко всем вершинам.
Взвешенный граф - граф, в котором у каждого ребра и/или каждой вершины есть “вес” - некоторое число, которое может обозначать длину пути, его стоимость и т. п.
SimpleWeightedGraphs.jl- этот пакет определяет два новых типа графиков: SimpleWeightedGraph и SimpleWeightedDiGraph. Ознакомьтесь с руководством , чтобы узнать, что вы можете с ними сделать.
Также обратитесь к пакету Graphs.jl для получения более сложных алгоритмов.
Out[0]:
31 rows × 3 columns
| УзелНачала | УзелКонец | Расстояние |
---|
| Any | Any | Any |
---|
1 | 1 | 2 | 268 |
---|
2 | 2 | 3 | 240 |
---|
3 | 2 | 4 | 333 |
---|
4 | 3 | 5 | 700 |
---|
5 | 4 | 7 | 69 |
---|
6 | 4 | 20 | 252 |
---|
7 | 5 | 6 | 136 |
---|
8 | 5 | 7 | 446 |
---|
9 | 5 | 8 | 328 |
---|
10 | 5 | 26 | 458 |
---|
11 | 6 | 25 | 549 |
---|
12 | 7 | 27 | 435 |
---|
13 | 8 | 13 | 229 |
---|
14 | 9 | 10 | 193 |
---|
15 | 9 | 12 | 162 |
---|
16 | 10 | 11 | 110 |
---|
17 | 11 | 16 | 543 |
---|
18 | 12 | 24 | 55 |
---|
19 | 13 | 14 | 243 |
---|
20 | 13 | 16 | 158 |
---|
21 | 13 | 25 | 437 |
---|
22 | 14 | 16 | 404 |
---|
23 | 14 | 22 | 55 |
---|
24 | 14 | 25 | 284 |
---|
25 | 15 | 16 | 348 |
---|
26 | 15 | 23 | 55 |
---|
27 | 17 | 18 | 316 |
---|
28 | 17 | 19 | 186 |
---|
29 | 17 | 20 | 85 |
---|
30 | 17 | 21 | 97 |
---|
⋮ | ⋮ | ⋮ | ⋮ |
---|
Строим взвешанный неориентированный граф
Out[0]:
27-element Vector{Float64}:
0.0
268.0
508.0
601.0
1116.0
1252.0
670.0
1444.0
2677.0
2484.0
2374.0
2839.0
1673.0
⋮
1831.0
938.0
1254.0
1124.0
853.0
1035.0
1971.0
2234.0
2894.0
1801.0
1574.0
1105.0
Найдем кратчайшие расстояния от каждой вершины ко всем вершинам с помощью алгоритма Дийкстра
Out[0]:
27×27 Matrix{Float64}:
0.0 268.0 508.0 601.0 1116.0 … 2894.0 1801.0 1574.0 1105.0
268.0 0.0 240.0 333.0 848.0 2626.0 1533.0 1306.0 837.0
508.0 240.0 0.0 573.0 700.0 2478.0 1385.0 1158.0 1077.0
601.0 333.0 573.0 0.0 515.0 2293.0 1200.0 973.0 504.0
1116.0 848.0 700.0 515.0 0.0 1778.0 685.0 458.0 881.0
1252.0 984.0 836.0 651.0 136.0 … 1914.0 549.0 594.0 1017.0
670.0 402.0 642.0 69.0 446.0 2224.0 1131.0 904.0 435.0
1444.0 1176.0 1028.0 843.0 328.0 1450.0 666.0 786.0 1209.0
2677.0 2409.0 2261.0 2076.0 1561.0 217.0 1441.0 2019.0 2442.0
2484.0 2216.0 2068.0 1883.0 1368.0 410.0 1248.0 1826.0 2249.0
2374.0 2106.0 1958.0 1773.0 1258.0 … 520.0 1138.0 1716.0 2139.0
2839.0 2571.0 2423.0 2238.0 1723.0 55.0 1603.0 2181.0 2604.0
1673.0 1405.0 1257.0 1072.0 557.0 1221.0 437.0 1015.0 1438.0
⋮ ⋱ ⋮
1831.0 1563.0 1415.0 1230.0 715.0 … 1063.0 595.0 1173.0 1596.0
938.0 670.0 910.0 337.0 852.0 2630.0 1537.0 1310.0 417.0
1254.0 986.0 1226.0 653.0 1168.0 2946.0 1853.0 1626.0 733.0
1124.0 856.0 1096.0 523.0 1038.0 2816.0 1723.0 1496.0 603.0
853.0 585.0 825.0 252.0 767.0 2545.0 1452.0 1225.0 332.0
1035.0 767.0 1007.0 434.0 949.0 … 2727.0 1634.0 1407.0 514.0
1971.0 1703.0 1555.0 1370.0 855.0 1519.0 339.0 1313.0 1736.0
2234.0 1966.0 1818.0 1633.0 1118.0 1466.0 998.0 1576.0 1999.0
2894.0 2626.0 2478.0 2293.0 1778.0 0.0 1658.0 2236.0 2659.0
1801.0 1533.0 1385.0 1200.0 685.0 1658.0 0.0 1143.0 1566.0
1574.0 1306.0 1158.0 973.0 458.0 … 2236.0 1143.0 0.0 1339.0
1105.0 837.0 1077.0 504.0 881.0 2659.0 1566.0 1339.0 0.0
Запишем результат в файл Excel
Сравним, есть ли разница между кратчайшими путями в "прыжках" и в"прыжках" по расстоянию
Out[0]:
4-element Vector{Int64}:
1
2
3
5
Out[0]:
5-element Vector{Int64}:
1
2
4
7
5
Заключение
Разница в количествах "прыжков" посещаемых вершин есть.Когда это может пригодиться?
Если бы вид транспорта на данной транспортной сети был бы настолько быстрый по скорости,
то для оптимизации времени в пути между узлами, вероятно, потребуется считать количество ребер,
так как расстояние между ними имеет гораздо меньшее значение, чем то, сколько прыжков потребуется (сколько узлов
придется посетить), чтобы добраться от одного узла до другого. Каждая станция может означать задержку,
поэтому, как и при полетах на самолете, чем меньше остановок, тем лучше
=#
{"id": "4353dd2c-b06b-4cf6-83a9-aaf44c3adda9", "data": [{"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.5008407265859773, 0.4966573689692443, 0.4924741668432677, 0.4882912756988044, 0.4841088510266109, 0.47992704831744387, 0.4757460230620599, 0.47156593075121556, 0.4673869268756676, 0.4632091669261725, 0.45903280639348687, 0.45485800076836735, 0.4506849055415706, 0.4465136762038531, 0.4423444682459717, 0.4381774371586828, 0.43401273843274313, 0.42985052755890923, 0.4256909600279376, 0.4215341913305852, 0.4173803769576082, 0.41322967239976366, 0.4090822331478078, 0.4049382146924976, 0.40079777252458937, 0.39666105565605836, 0.39252806408690444, 0.3883986488051526, 0.38427265432004626, 0.3801499251408288, 0.3760303057767435, 0.371913640737034, 0.3677997745309433, 0.3636885516677152, 0.3595798166565927, 0.3554734140068195, 0.35136918822763885, 0.3472669838282942, 0.3431666453180289, 0.3390680172060862, 0.33497094400170974, 0.33087527021414276, 0.32678084035262867, 0.32268749892641085, 0.31859509044473266, 0.31450345941683766, 0.31041245035196896, 0.3063219077593703, 0.30223167614828467, 0.29814160002795576], "type": "scatter", "x": [0.15398198356317097, 0.15697808327940788, 0.15996398434919598, 0.1629294881260862, 0.16586439596362978, 0.16875850921537774, 0.17160162923488126, 0.17438355737569136, 0.17709409499135922, 0.17972304343543594, 0.18226020406147256, 0.1846953782230202, 0.18701836727363, 0.18921897256685302, 0.19128699545624045, 0.1932122372953433, 0.1949844994377127, 0.19659358323689977, 0.19802929004645559, 0.1992814212199313, 0.20033977811087803, 0.20119416207284677, 0.2018343744593887, 0.20225021662405493, 0.20243148992039656, 0.20236842064556673, 0.2020610087995654, 0.20151902808523947, 0.20075267714903783, 0.19977215463740938, 0.198587659196803, 0.19720938947366756, 0.19564754411445204, 0.19391232176560527, 0.19201392107357618, 0.18996254068481364, 0.1877683792457665, 0.18544163540288378, 0.1829925078026143, 0.18043119509140693, 0.17776789591571063, 0.17501280892197424, 0.17217613275664667, 0.16926806606617686, 0.16629880749701365, 0.16327855569560598, 0.1602175093084027, 0.15712586698185277, 0.15401382736240501, 0.15089158909650838], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 50, "currentCount": 50}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y2", "zmin": null, "yaxis": "y", "legendgroup": "y2", "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.29814160002795576, 0.2940838501112107, 0.290031182537136, 0.28598867964840174, 0.2819614237876783, 0.27795449729763594, 0.2739729825209449, 0.2700219618002755, 0.26610651747829794, 0.2622317318976825, 0.2584026874010995, 0.2546244663312191, 0.25090215103071173, 0.24724082384224752, 0.2436455671084968, 0.24012146317212976, 0.23667359437581678, 0.23330704306222805, 0.23002689157403386, 0.22683822225390446, 0.22374611744451015, 0.22075565948852116, 0.21787193072860772, 0.21510001350744026, 0.21244499016768892, 0.20991173128774604, 0.20750023686761163, 0.20520563632889335, 0.20302284732892098, 0.20094678752502418, 0.19897237457453268, 0.19709452613477635, 0.19530815986308478, 0.1936081934167877, 0.19198954445321495, 0.1904471306296962, 0.18897586960356114, 0.18757067903213961, 0.18622647657276126, 0.18493817988275585, 0.18370070661945306, 0.18250897444018271, 0.18135790100227447, 0.18024240396305816, 0.17915740097986338, 0.17809780971001998, 0.1770585478108576, 0.1760345329397061, 0.1750206827538951, 0.17401191491075438], "type": "scatter", "x": [0.1508915890965084, 0.15208838179810982, 0.15327633106374172, 0.15444659345743456, 0.15559032554321886, 0.15669868388512512, 0.15776282504718375, 0.1587739055934253, 0.15972308208788022, 0.160601511094579, 0.16140034917755214, 0.1621107529008301, 0.16272387882844336, 0.1632308835244224, 0.1636229235527977, 0.16389115547759978, 0.16402673586285907, 0.1640208212726061, 0.1638645682708713, 0.16354913342168523, 0.16306567328907828, 0.16240534443708102, 0.16155930342972388, 0.16051870683103733, 0.1592747112050519, 0.15781884159229678, 0.15615109799277196, 0.15427995536594824, 0.15221425714779513, 0.14996284677428218, 0.14753456768137882, 0.14493826330505463, 0.14218277708127922, 0.1392769524460219, 0.13622963283525236, 0.13304966168494, 0.12974588243105445, 0.12632713850956517, 0.12280227335644169, 0.11918013040765346, 0.11546955309917006, 0.11167938486696102, 0.10781846914699585, 0.10389564937524408, 0.09991976898767513, 0.09589967142025868, 0.09184420010896407, 0.08776219848976101, 0.08366250999861884, 0.07955397807150716], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 50, "currentCount": 50}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y3", "zmin": null, "yaxis": "y", "legendgroup": "y3", "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.29814160002795576, 0.29404978981943064, 0.2899618448330079, 0.28588163029078983, 0.28181301141487874, 0.27775985342737697, 0.2737260215503869, 0.2697153810060108, 0.2657317970163511, 0.26177913480351, 0.2578612595895899, 0.2539820365966931, 0.250145331046922, 0.2463550081623789, 0.2426149331651662, 0.23892897127738605, 0.23530098772114094, 0.23173484771853317, 0.228234416491665, 0.22480355926263887, 0.22144614125355708, 0.21816602768652194, 0.21496708378363577, 0.21185317476700094, 0.20882816585871977, 0.2058957612299737, 0.20305596088076264, 0.20030506063990533, 0.19763919528529927, 0.1950544995948422, 0.19254710834643182, 0.19011315631796574, 0.1877487782873417, 0.1854501090324573, 0.18321328333121023, 0.18103443596149812, 0.1789097017012187, 0.17683521532826965, 0.17480711162054854, 0.1728215253559531, 0.170874591312381, 0.1689624442677299, 0.16708121899989745, 0.16522705028678136, 0.16339607290627925, 0.16158442163628883, 0.15978823125470767, 0.1580036365394336, 0.15622677226836415, 0.15445377321939704], "type": "scatter", "x": [0.1508915890965084, 0.14926104396727635, 0.14763993793889482, 0.14603771011221411, 0.14446379958808467, 0.142927645467357, 0.14143868685088146, 0.14000636283950849, 0.13864011253408856, 0.13734937503547207, 0.13614358944450947, 0.13503219486205115, 0.13402463038894763, 0.13313033512604922, 0.13235874817420643, 0.1317193086342697, 0.13122145560708942, 0.13087462819351603, 0.13068826549439996, 0.1306718066105917, 0.13083469064294162, 0.1311863566923001, 0.13173624385951768, 0.13249379124544475, 0.13346843795093172, 0.13466922978096024, 0.13609616673553038, 0.13774020300966044, 0.13959189950249995, 0.14164181711319854, 0.14388051674090574, 0.14629855928477112, 0.1488865056439443, 0.15163491671757479, 0.1545343534048121, 0.157575376604806, 0.16074854721670587, 0.16404442613966136, 0.167453574272822, 0.1709665525153374, 0.17457392176635714, 0.1782662429250307, 0.1820340768905077, 0.18586798456193776, 0.18975852683847044, 0.1936962646192552, 0.19767175880344176, 0.20167557029017957, 0.20569825997861824, 0.20973038876790737], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 50, "currentCount": 50}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y4", "zmin": null, "yaxis": "y", "legendgroup": "y4", "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.1740119149107544, 0.16947051874879693, 0.16492971563421222, 0.16039009861437306, 0.15585226073665226, 0.15131679504842258, 0.14678429459705677, 0.1422553524299277, 0.13773056159440808, 0.13321051513787066, 0.12869580610768827, 0.12418702755123372, 0.1196847725158797, 0.11518963404899905, 0.11070220519796459, 0.10622307901014905, 0.10175284853292518, 0.0972921068136658, 0.09284144689974368, 0.0884014618385316, 0.08397274467740234, 0.07955588846372871, 0.07515148624488345, 0.07076013106823933, 0.06638241598116922, 0.06201890932073862, 0.05766961108694747, 0.053333952942730384, 0.04901134184071438, 0.04470118473352678, 0.040402888573794773, 0.03611586031414559, 0.03183950690720651, 0.027573235305604602, 0.02331645246196725, 0.01906856532892152, 0.014828980859094806, 0.010597106005114185, 0.006372347719606937, 0.0021541129552002606, -0.002058191335478605, -0.006265158199802459, -0.010467380685144063, -0.014665451838876164, -0.018859964708371674, -0.02305151234100319, -0.02724068778414368, -0.03142808408516573, -0.03561429429144228, -0.03979991145034603], "type": "scatter", "x": [0.07955397807150719, 0.0823541900284127, 0.08514421940894586, 0.08791388363673434, 0.09065300013540578, 0.09335138632858787, 0.09599885963990823, 0.09858523749299451, 0.10110033731147441, 0.10353397651897556, 0.10587597253912562, 0.10811614279555223, 0.11024430471188307, 0.11225027571174577, 0.114123873218768, 0.11585491465657743, 0.11743321744880171, 0.11884859901906847, 0.1200908767910054, 0.12114986818824015, 0.12201539063440038, 0.12267726155311372, 0.12312529836800785, 0.12334931850271041, 0.12333913938084906, 0.123085002700067, 0.12258690846036421, 0.12185461496409751, 0.12089830478763924, 0.11972816050736176, 0.1183543646996374, 0.1167870999408385, 0.11503654880733745, 0.11311289387550652, 0.1110263177217181, 0.10878700292234453, 0.10640513205375816, 0.10389088769233132, 0.10125445241443636, 0.09850600879644561, 0.0956557394147314, 0.09271382684566612, 0.08969045366562207, 0.08659580245097169, 0.08344005577808714, 0.08023339622334096, 0.07698600636310533, 0.07370806877375274, 0.07040976603165543, 0.06710128071318577], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 50, "currentCount": 50}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y5", "zmin": null, "yaxis": "y", "legendgroup": "y5", "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.15445377321939702, 0.15002808120095654, 0.1456054742061732, 0.14118903725870421, 0.1367818553822067, 0.13238701360033775, 0.12800759693675465, 0.12364669041511446, 0.11930737905907438, 0.11499274789229157, 0.11070588193842315, 0.10644986622112629, 0.10222778576405817, 0.09804272559087591, 0.09389777072523676, 0.08979600619079778, 0.08574051701121614, 0.08173438821014904, 0.07778070481125357, 0.07388255183818696, 0.07004301431460631, 0.06626517726416882, 0.06255212571053163, 0.05890694467735188, 0.05533271918828678, 0.05183240572434107, 0.048406004285514684, 0.04505055839080299, 0.041762983016548724, 0.038540193139094736, 0.0353791037347839, 0.03227662977995905, 0.029229686250963064, 0.026235188124138685, 0.023290050375828875, 0.020391187982376366, 0.017535515920124114, 0.014719949165414876, 0.011941402694591522, 0.009196791483996896, 0.006483030509973845, 0.0037970347488652063, 0.001135719177013824, -0.0015040012292374333, -0.0041252114935458025, -0.006730996639568327, -0.009324441690962281, -0.011908631671384706, -0.01448665160449285, -0.017061586513943832], "type": "scatter", "x": [0.20973038876790737, 0.21153589103844625, 0.2133316712106623, 0.21510800718623255, 0.21685517686683414, 0.21856345815414427, 0.22022312894983997, 0.22182446715559834, 0.22335775067309663, 0.22481325740401184, 0.2261812652500211, 0.22745205211280162, 0.2286158958940304, 0.22966307449538462, 0.23058386581854143, 0.2313685477651779, 0.23200739823697114, 0.2324906951355983, 0.23280871636273648, 0.23295173982006284, 0.23291004340925447, 0.23267390503198848, 0.23223360258994202, 0.23157941398479218, 0.2307016171182161, 0.229590894979321, 0.2282472475681069, 0.22667999189546653, 0.22489885005972282, 0.22291354415919862, 0.22073379629221676, 0.21836932855710023, 0.2158298630521719, 0.2131251218757545, 0.21026482712617106, 0.2072587009017444, 0.2041164653007974, 0.200847842421653, 0.197462554362634, 0.1939703232220633, 0.19038087109826385, 0.1867039200895584, 0.18294919229426995, 0.1791264098107214, 0.17524529473723546, 0.17131556917213525, 0.16734695521374335, 0.16334917496038293, 0.15933195051037669, 0.1553050039620476], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 50, "currentCount": 50}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y6", "zmin": null, "yaxis": "y", "legendgroup": "y6", "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.15445377321939704, 0.15068689196793603, 0.14692795185375063, 0.14318489401411646, 0.13946565958630908, 0.13577818970760408, 0.1321304255152771, 0.12853030814660368, 0.12498577873885952, 0.12150477842932013, 0.11809524835526115, 0.11476512965395817, 0.11152236346268679, 0.1083748909187226, 0.10533065315934127, 0.10239759132181829, 0.09958364654342934, 0.09689675996145002, 0.09434487271315585, 0.0919359259358225, 0.08967786076672558, 0.08757861834314065, 0.08564613980234333, 0.0838883662816092, 0.0823132389182139, 0.08092836796871321, 0.07973375343310708, 0.07872178505483977, 0.07788452169663568, 0.07721402222121918, 0.07670234549131467, 0.07634155036964659, 0.07612369571893932, 0.07604084040191725, 0.07608504328130478, 0.07624836321982632, 0.07652285908020624, 0.076900589725169, 0.07737361401743896, 0.0779339908197405, 0.07857377899479806, 0.079285037405336, 0.08005982491407877, 0.08089020038375075, 0.0817682226770763, 0.08268595065677987, 0.08363544318558586, 0.08460875912621861, 0.08559795734140258, 0.08659509669386216], "type": "scatter", "x": [0.20973038876790734, 0.20952834520595348, 0.20933270280838867, 0.20914986273960182, 0.20898622616398196, 0.20884819424591816, 0.20874216814979937, 0.20867454904001456, 0.20865173808095283, 0.20868013643700314, 0.2087661452725544, 0.20891616575199573, 0.2091365990397161, 0.20943384630010448, 0.20981430869754994, 0.21028438739644145, 0.21085048356116798, 0.2115189983561186, 0.21229633294568223, 0.21318888849424794, 0.21420306616620471, 0.21534526712594157, 0.21662189253784747, 0.21803934356631144, 0.2196040213757225, 0.22132206041528676, 0.22319346068500423, 0.22521208773566873, 0.22737154040289137, 0.22966541752228306, 0.23208731792945478, 0.23463084046001761, 0.23728958394958244, 0.24005714723376043, 0.2429271291481623, 0.24589312852839942, 0.24894874421008245, 0.25208757502882256, 0.25530321982023074, 0.25858927741991794, 0.26193934666349517, 0.26534702638657337, 0.2688059154247637, 0.272309612613677, 0.2758517167889243, 0.2794258267861166, 0.283025541440865, 0.28664445958878026, 0.2902761800654736, 0.293914301706556], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 50, "currentCount": 50}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y7", "zmin": null, "yaxis": "y", "legendgroup": "y7", "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.039799911450346025, -0.04396331467458065, -0.04812415798729449, -0.0522798814769667, -0.05642792523207651, -0.06056572934110312, -0.06469073389252569, -0.06880037897482345, -0.07289210467647561, -0.07696335108596133, -0.08101155829175985, -0.08503416638235034, -0.08902861544621198, -0.09299234557182397, -0.09692279684766554, -0.10081740936221588, -0.10467362320395414, -0.10848887846135959, -0.11226061522291138, -0.11598627357708872, -0.11966329361237081, -0.12328911541723685, -0.12686117908016603, -0.13037692468963752, -0.13383379233413056, -0.13722932876510432, -0.14056353398255897, -0.14383886123503503, -0.14705787043405347, -0.15022312149113504, -0.15333717431780058, -0.15640258882557087, -0.15942192492596666, -0.16239774253050884, -0.16533260155071816, -0.16822906189811548, -0.1710896834842215, -0.1739170262205571, -0.17671365001864311, -0.17948211479000023, -0.18222498044614938, -0.18494480689861126, -0.1876441540589067, -0.19032558183855652, -0.19299165014908157, -0.19564491890200256, -0.19828794800884036, -0.20092329738111575, -0.20355352693034953, -0.20618119656806252], "type": "scatter", "x": [0.06710128071318579, 0.06918250454200264, 0.07125385500159868, 0.0733054587227531, 0.07532744233624504, 0.0773099324728537, 0.07924305576335826, 0.08111693883853789, 0.0829217083291718, 0.08464749086603916, 0.08628441307991913, 0.0878226016015909, 0.08925218306183365, 0.09056328409142654, 0.0917460313211488, 0.09279055138177958, 0.09368697090409805, 0.0944254165188834, 0.0949960148569148, 0.09538889254897147, 0.09559417622583258, 0.09560199251827725, 0.09540246805708472, 0.09498572947303414, 0.09434190339690471, 0.09346152784985981, 0.09234460283189944, 0.09100059032186018, 0.08943936368896292, 0.08767079630242841, 0.08570476153147752, 0.08355113274533105, 0.08121978331320984, 0.07872058660433466, 0.07606341598792637, 0.07325814483320578, 0.07031464650939373, 0.067242794385711, 0.06405246183137844, 0.06075352221561686, 0.05735584890764708, 0.05386931527668992, 0.0503037946919662, 0.04666916052269678, 0.04297528613810236, 0.039232044907403923, 0.03544931019982212, 0.031636955384577954, 0.02780485383089208, 0.023962878907985416], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 50, "currentCount": 50}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y8", "zmin": null, "yaxis": "y", "legendgroup": "y8", "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.039799911450346025, -0.04229852656402311, -0.04478726476403547, -0.04725624913671826, -0.049695602768406795, -0.0520954487454363, -0.05444591015414198, -0.05673711008085909, -0.0589591716119229, -0.06110221783366862, -0.0631563718324315, -0.06511175669454677, -0.06695849550634968, -0.06868671135417545, -0.07028652732435935, -0.07174806650323659, -0.07306145197714244, -0.0742168068324121, -0.07520425415538083, -0.0760139170323839, -0.0766359185497565, -0.0770603817938339, -0.07727742985095133, -0.07727718580744401, -0.07704977274964724, -0.07658572530196556, -0.07588504346439899, -0.07495719261254295, -0.07381204966006215, -0.0724594915206214, -0.07090939510788544, -0.06917163733551902, -0.06725609511718694, -0.0651726453665539, -0.06293116499728472, -0.060541530923044096, -0.05801362005749687, -0.055357309314307726, -0.05258247560714147, -0.04969899584966284, -0.046716746955536605, -0.04364560583842753, -0.040495449412000374, -0.03727615458991992, -0.03399759828585084, -0.030669657413458028, -0.027302208886406096, -0.02390512961835997, -0.020488296522984267, -0.01706158651394382], "type": "scatter", "x": [0.06710128071318577, 0.06966511112358537, 0.07222639533226011, 0.074782587137485, 0.07733114033753524, 0.07986950873068593, 0.08239514611521218, 0.08490550628938902, 0.08739804305149165, 0.08987021019979517, 0.09231946153257463, 0.0947432508481052, 0.09713903194466196, 0.09950425862052, 0.10183638467395446, 0.10413286390324043, 0.10639115010665304, 0.10860869708246737, 0.11078295862895855, 0.11291138854440166, 0.11499144062707188, 0.11702056867524424, 0.11899622648719387, 0.12091586786119587, 0.12277694659552539, 0.12457702258019603, 0.12631609581520786, 0.1279966064105471, 0.12962110056793877, 0.13119212448910772, 0.13271222437577881, 0.134183946429677, 0.13560983685252712, 0.13699244184605408, 0.13833430761198276, 0.13963798035203812, 0.14090600626794492, 0.14214093156142818, 0.14334530243421273, 0.1445216650880235, 0.14567256572458528, 0.14680055054562308, 0.14790816575286175, 0.14899795754802617, 0.15007247213284125, 0.15113425570903188, 0.15218585447832292, 0.15322981464243932, 0.1542686824031059, 0.1553050039620476], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 50, "currentCount": 50}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y9", "zmin": null, "yaxis": "y", "legendgroup": "y9", "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.03979991145034603, -0.042092075032646975, -0.04437454085800707, -0.04663761116948538, -0.04887158821014103, -0.05106677422303318, -0.053213471451220906, -0.05530198213776333, -0.05732260852571958, -0.05926565285814878, -0.06112141737811004, -0.06288020432866248, -0.06453231595286521, -0.06606805449377735, -0.06747772219445802, -0.06875162129796634, -0.06988005404736143, -0.0708533226857024, -0.07166172945604836, -0.07229557660145847, -0.07274516636499179, -0.07300080098970747, -0.07305278271866461, -0.07289141379492237, -0.07250699646153984, -0.07189023703478199, -0.07104113551464881, -0.06996898558487538, -0.06868348500240251, -0.06719433152417113, -0.06551122290712211, -0.06364385690819631, -0.06160193128433466, -0.05939514379247797, -0.057033192189567185, -0.054525774232543144, -0.051882587678346796, -0.04911333028391895, -0.04622769980620052, -0.043235394002132374, -0.04014611062865542, -0.03696954744271052, -0.03371540220123855, -0.030393372661180452, -0.027013156579476984, -0.02358445171306919, -0.020116955818897775, -0.016620366653903804, -0.013104381975028011, -0.009578699539211356], "type": "scatter", "x": [0.06710128071318579, 0.06426084465414038, 0.06142356930341442, 0.05859261536932735, 0.05577114356019856, 0.05296231458434752, 0.05016928915009364, 0.047395227965756376, 0.04464329173965516, 0.0419166411801094, 0.03921843699543857, 0.03655183989396207, 0.03392001058399935, 0.03132610977386985, 0.028773298171893013, 0.02626473648638825, 0.023803585425675004, 0.021393005698072714, 0.019036158011900804, 0.016736203075478708, 0.014496301597125881, 0.01231961428516174, 0.010209301847905724, 0.008168524993677269, 0.00620044443079582, 0.004308089171400828, 0.0024914592154922513, 0.0007475255509307114, -0.0009268725306032897, -0.0025348957374291643, -0.0040797047778663486, -0.005564460360234277, -0.006992323192852368, -0.0083664539840401, -0.009690013442116854, -0.010966162275402114, -0.012198061192215262, -0.01338887090087578, -0.014541752109703081, -0.015659865527016602, -0.016746371861135777, -0.017804431820380037, -0.018837206113068824, -0.01984785544752156, -0.02083954053205771, -0.021815422074996663, -0.0227786607846579, -0.023732417369360815, -0.02467985253742487, -0.02562412699716949], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 50, "currentCount": 50}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y10", "zmin": null, "yaxis": "y", "legendgroup": "y10", "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.03979991145034603, -0.044565204465704035, -0.04932858776003684, -0.05408815161231914, -0.058841986301525755, -0.06358818210663146, -0.068324829306611, -0.07305001818043912, -0.07776183900709066, -0.08245838206554033, -0.0871377376347629, -0.09179799599373317, -0.0964372474214259, -0.10105358219681582, -0.10564509059887772, -0.1102098629065864, -0.11474598939891657, -0.11925156035484305, -0.12372466605334058, -0.12816339677338395, -0.13256584279394792, -0.13693009439400727, -0.1412542418525367, -0.14553637544851106, -0.14977458546090505, -0.15396704174040288, -0.15811374428700462, -0.1622165232500259, -0.16627728835049213, -0.1702979493094285, -0.17428041584786022, -0.17822659768681254, -0.18213840454731064, -0.1860177461503799, -0.18986653221704533, -0.1936866724683324, -0.19748007662526612, -0.20124865440887188, -0.2049943155401749, -0.20871896974020032, -0.2124245267299734, -0.2161128962305194, -0.21978598796286355, -0.22344571164803106, -0.22709397700704723, -0.2307326937609372, -0.2343637716307263, -0.23798912033743963, -0.24161064960210252, -0.2452302691457402], "type": "scatter", "x": [0.06710128071318579, 0.0648949482352121, 0.06269863521492687, 0.06052236111001858, 0.058376145378175634, 0.05627000747708651, 0.05421396686443967, 0.05221804299792357, 0.05029225533522666, 0.048446623334037396, 0.04669116645204424, 0.04503590414693564, 0.04349085587640005, 0.04206604109812594, 0.040771479269801764, 0.03961718984911597, 0.038613192293757016, 0.037769506061413355, 0.03709615060977344, 0.03660314539652573, 0.0363005098793587, 0.036198263515960775, 0.036306425764020434, 0.03663501608122613, 0.037194053925266306, 0.03799314127642574, 0.039032278134704446, 0.040301862519817606, 0.04179187497407683, 0.04349229603979363, 0.045393106259279545, 0.04748428617484612, 0.04975581632880489, 0.05219767726346744, 0.054799849521145264, 0.05755231364414996, 0.060445050174792986, 0.06346803965538599, 0.06661126262824044, 0.06986469963566792, 0.07321833121997995, 0.07666213792348808, 0.08018610028850387, 0.08378019885733884, 0.08743441417230458, 0.09113872677571253, 0.09488311720987438, 0.09865756601710154, 0.10245205373970563, 0.10625656091999819], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 50, "currentCount": 50}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y11", "zmin": null, "yaxis": "y", "legendgroup": "y11", "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.20618119656806255, -0.20984016433310457, -0.21349106401864362, -0.21712582754517665, -0.22073638683320063, -0.2243146738032126, -0.22785262037570947, -0.2313421584711883, -0.23477522001014609, -0.2381437369130798, -0.24143964110048638, -0.24465486449286294, -0.24778133901070631, -0.25081099657451356, -0.25373576910478174, -0.25654758852200776, -0.2592383867466886, -0.2618000956993213, -0.26422464730040285, -0.2665039734704302, -0.26863000612990034, -0.27059467719931035, -0.2723899185991571, -0.27400766224993767, -0.275439840072149, -0.2766787201562674, -0.2777243025022928, -0.278584319019749, -0.27926683778813904, -0.27977992688696574, -0.28013165439573234, -0.28033008839394175, -0.280383296961097, -0.28029934817670105, -0.2800863101202569, -0.2797522508712677, -0.2793052385092363, -0.27875334111366573, -0.2781046267640591, -0.2773671635399194, -0.27654901952074956, -0.2756582627860526, -0.27470296141533157, -0.27369118348808946, -0.2726309970838293, -0.2715304702820541, -0.2703976711622669, -0.26924066780397066, -0.26806752828666836, -0.2668863206898631], "type": "scatter", "x": [0.023962878907985413, 0.02423302038594725, 0.024496921458481712, 0.02474834172016141, 0.02498104076555897, 0.025188778189247002, 0.02536531358579813, 0.02550440654978497, 0.025599816675780145, 0.025645303558356276, 0.025634626792085977, 0.02556154597154187, 0.025419820691296568, 0.025203210545922703, 0.02490547512999288, 0.024520374038079728, 0.024041666864755864, 0.023463113204593905, 0.022778472652166464, 0.02198150480204617, 0.021065969248805647, 0.020025625587017495, 0.018854233411254345, 0.01754555231608882, 0.016093341896093544, 0.014491621762733933, 0.012740391916009959, 0.010845632744456263, 0.008813584653500166, 0.006650488048569073, 0.004362583335090355, 0.001956110918491404, -0.0005626887958003749, -0.0031875754023576817, -0.005912308495753036, -0.008730647670559154, -0.01163635252134854, -0.014623182642693917, -0.01768489762916786, -0.020815257075343, -0.02400802057579194, -0.02725694772508731, -0.03055579811780173, -0.03389833134850778, -0.03727830701177819, -0.04068948470218543, -0.04412562401430226, -0.04758048454270117, -0.051047825881954875, -0.05452140762663596], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 50, "currentCount": 50}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y12", "zmin": null, "yaxis": "y", "legendgroup": "y12", "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.017061586513943832, -0.020818285214873677, -0.024566905038464825, -0.02829936710737855, -0.032007592544276174, -0.035683502471819, -0.039319018012668315, -0.042906060289485376, -0.046436550424931555, -0.049902409541668115, -0.05329555876235633, -0.056607919209657534, -0.05983141200623299, -0.06295795827474403, -0.06597947913785192, -0.06888789571821798, -0.07167512913850348, -0.07433310052136975, -0.07685373098947808, -0.07922894166548976, -0.0814506536720661, -0.08351078813186837, -0.08540126616755789, -0.08711400890179592, -0.0886409374572438, -0.08997430957645193, -0.09111412525942034, -0.09206812676359855, -0.09284439296632531, -0.09345100274493931, -0.09389603497677924, -0.09418756853918385, -0.0943336823094918, -0.0943424551650418, -0.09422196598317256, -0.09398029364122276, -0.09362551701653114, -0.09316571498643639, -0.0926089664282772, -0.09196335021939227, -0.09123694523712034, -0.09043783035880004, -0.08957408446177013, -0.08865378642336934, -0.0876850151209363, -0.08667584943180977, -0.0856343682333284, -0.08456865040283093, -0.08348677481765605, -0.08239682035514251], "type": "scatter", "x": [0.1553050039620476, 0.15516740849779348, 0.15503603945367547, 0.15491712324982967, 0.1548168863063921, 0.15474155504349896, 0.15469735588128627, 0.1546905152398901, 0.1547272595394467, 0.154813815200092, 0.15495640864196214, 0.15516126628519325, 0.15543461454992138, 0.15578267985628266, 0.1562116886244132, 0.1567278672744491, 0.15733744222652635, 0.15804663990078113, 0.15886168671734952, 0.15978880909636764, 0.16083423345797157, 0.16200418622229737, 0.16330489380948118, 0.16474258263965907, 0.16632347913296716, 0.16805355027536917, 0.16993279606686515, 0.17195524952149127, 0.1741146842191115, 0.17640487373958977, 0.17881959166278988, 0.1813526115685758, 0.18399770703681143, 0.18674865164736068, 0.18959921898008741, 0.19254318261485565, 0.19557431613152912, 0.1986863931099719, 0.2018731871300478, 0.20512847177162075, 0.20844602061455464, 0.21181960723871335, 0.2152430052239608, 0.218709988150161, 0.2222143295971777, 0.22574980314487492, 0.2293101823731165, 0.23288924086176635, 0.23648075219068843, 0.24007848993974656], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 50, "currentCount": 50}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y13", "zmin": null, "yaxis": "y", "legendgroup": "y13", "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.009578699539211352, -0.013569820077643291, -0.0175548757321835, -0.021527801618940176, -0.025482532854021626, -0.029413004553536085, -0.033313151833591785, -0.03717690981029698, -0.04099821359975996, -0.04477099831808893, -0.04848919908139216, -0.05214675100577791, -0.05573758920735441, -0.05925564880222993, -0.06269486490651269, -0.06604917263631098, -0.06931250710773301, -0.07247880343688706, -0.0755419967398814, -0.07849602213282425, -0.08133481473182386, -0.08405230965298849, -0.08664244201242637, -0.08909914692624578, -0.09141635951055495, -0.09358826758495764, -0.09561487114945387, -0.09750198238443981, -0.09925566617380731, -0.10088198740144809, -0.10238701095125384, -0.10377680170711641, -0.10505742455292745, -0.1062349443725788, -0.10731542604996211, -0.10830493446896923, -0.10920953451349183, -0.11003529106742171, -0.1107882690146506, -0.11147453323907025, -0.1121001486245724, -0.11267118005504881, -0.11319369241439121, -0.11367375058649139, -0.11411741945524108, -0.11453076390453201, -0.11491984881825595, -0.11529073908030464, -0.11564949957456983, -0.11600219518494327], "type": "scatter", "x": [-0.025624126997169493, -0.02477043958326465, -0.023924953007740397, -0.023095868108977336, -0.022291385725356033, -0.021519706695257105, -0.020789031857061126, -0.020107562049148698, -0.019483498109900407, -0.01892504087769684, -0.018440391190918597, -0.01803774988794626, -0.017725317807160423, -0.01751129578694168, -0.017403884665670624, -0.01741128528172784, -0.01754169847349392, -0.017803325079349452, -0.01820436593767504, -0.01875302188685126, -0.019457493765258717, -0.020325982411277987, -0.021366688663289675, -0.02258781335967436, -0.023997557338812637, -0.025603779737485895, -0.02740648055569419, -0.029397800656656023, -0.03156953920199088, -0.03391349535331816, -0.036421468272257264, -0.03908525712042759, -0.04189666105944853, -0.04484747925093956, -0.047929510856519995, -0.05113455503780937, -0.05445441095642694, -0.057880877773992236, -0.061405754652124625, -0.06502084075244352, -0.0687179352365683, -0.07248883726611842, -0.07632534600271325, -0.0802192606079722, -0.08416238024351476, -0.08814650407096021, -0.0921634312519281, -0.09620496094803765, -0.10026289232090846, -0.10432902453215986], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 50, "currentCount": 50}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y14", "zmin": null, "yaxis": "y", "legendgroup": "y14", "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.21353531907606055, 0.20977218994958427, 0.20601516656688582, 0.20227035467174315, 0.19854386000793392, 0.19484178831923613, 0.19117024534942756, 0.1875353368422861, 0.18394316854158954, 0.18039984619111582, 0.17691147553464265, 0.17348416231594796, 0.1701240122788096, 0.16683713116700538, 0.16362962472431325, 0.16050759869451095, 0.1574771588213763, 0.15454441084868728, 0.1517154605202216, 0.1489964135797572, 0.14639337577107192, 0.14391245283794354, 0.14155975052414999, 0.13934137457346904, 0.13726343072967861, 0.13533177033056576, 0.1335463933761305, 0.13190144852858568, 0.13039083004415358, 0.12900843217905622, 0.1277481491895158, 0.1266038753317545, 0.12556950486199442, 0.12463893203645776, 0.12380605111136667, 0.12306475634294328, 0.12240894198740973, 0.12183250230098822, 0.12132933153990086, 0.12089332396036982, 0.12051837381861726, 0.1201983753708653, 0.11992722287333613, 0.1196988105822519, 0.11950703275383474, 0.11934578364430684, 0.1192089575098903, 0.11909044860680733, 0.11898415119128004, 0.11888395951953058], "type": "scatter", "x": [-0.3933621302064156, -0.39436940889920186, -0.3953685171293524, -0.3963512844342311, -0.3973095403512022, -0.39823511441762977, -0.39911983617087793, -0.3999555351483109, -0.40073404088729275, -0.40144718292518755, -0.4020867907993594, -0.40264469404717257, -0.4031127222059911, -0.40348270481317905, -0.40374647140610065, -0.40389585152212, -0.40392267469860116, -0.40381877047290826, -0.4035759683824055, -0.4031860979644569, -0.40264098875642684, -0.40193247029567913, -0.4010523721195779, -0.39999252376548755, -0.398744754770772, -0.3973012351087386, -0.3956619647793873, -0.39383477380941084, -0.3918278326614451, -0.38964931179812595, -0.3873073816820893, -0.3848102127759709, -0.38216597554240683, -0.3793828404440328, -0.3764689779434848, -0.37343255850339857, -0.37028175258641016, -0.36702473065515534, -0.3636696631722699, -0.3602247206003899, -0.3566980734021512, -0.3530978920401895, -0.34943234697714076, -0.3457096086756411, -0.3419378475983259, -0.3381252342078315, -0.33427993896679353, -0.330410132337848, -0.3265239847836306, -0.32262966676677746], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 50, "currentCount": 50}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y15", "zmin": null, "yaxis": "y", "legendgroup": "y15", "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.21353531907606052, 0.21326022525285626, 0.21299174807779256, 0.2127365041990099, 0.21250111026464885, 0.21229218292284993, 0.21211633882175368, 0.21198019460950057, 0.21189036693423127, 0.2118534724440862, 0.21187612778720594, 0.21196494961173096, 0.21212655456580184, 0.21236755929755916, 0.21269458045514336, 0.21311423468669508, 0.21363313864035471, 0.21425790896426292, 0.21499516230656016, 0.215851515315387, 0.21683358463888397, 0.2179479869251916, 0.21920133882245035, 0.22060025697880087, 0.22215135804238365, 0.22386098296766666, 0.22572913175464998, 0.22774946344886549, 0.22991536140217278, 0.23222020896643125, 0.23465738949350032, 0.23722028633523953, 0.23990228284350834, 0.24269676237016624, 0.2455971082670726, 0.24859670388608707, 0.2516889325790688, 0.2548671776978776, 0.25812482259437275, 0.2614552506204138, 0.26485184512786014, 0.26830798946857126, 0.27181706699440666, 0.27537246105722574, 0.2789675550088881, 0.28259573220125306, 0.2862503759861802, 0.2899248697155289, 0.29361259674115864, 0.297306940414929], "type": "scatter", "x": [-0.39336213020641553, -0.39714781844489655, -0.40092574417513926, -0.4046881448889054, -0.40842725807795677, -0.41213532123405494, -0.4158045718489618, -0.4194272474144388, -0.4229955854222481, -0.42650182336415104, -0.42993819873190947, -0.43329694901728505, -0.43657031171203964, -0.4397505243079348, -0.4428298242967324, -0.44580044917019407, -0.4486546364200815, -0.45138462353815645, -0.45398264801618066, -0.45644094734591584, -0.45875175901912374, -0.4609073205275661, -0.46289986936300437, -0.4647216430172007, -0.4663648789819166, -0.467822138186757, -0.46909342063172194, -0.4701861653872064, -0.4711081349614489, -0.4718670918626872, -0.4724707985991602, -0.47292701767910583, -0.4732435116107624, -0.4734280429023682, -0.4734883740621615, -0.4734322675983807, -0.47326748601926383, -0.47300179183304947, -0.4726429475479758, -0.47219871567228094, -0.47167685871420334, -0.47108513918198114, -0.4704313195838527, -0.46972316242805634, -0.4689684302228303, -0.468174885476413, -0.46735029069704237, -0.4665024083929571, -0.4656390010723951, -0.46476783124359494], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 50, "currentCount": 50}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y16", "zmin": null, "yaxis": "y", "legendgroup": "y16", "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.11888395951953058, 0.11497727158565076, 0.1110758514023122, 0.10718496672005612, 0.10330988528942371, 0.09945587486095629, 0.09562820318519505, 0.09183213801268124, 0.08807294709395609, 0.08435589817956082, 0.08068625902003672, 0.07706929736592498, 0.07351028096776684, 0.07001447757610356, 0.06658715494147639, 0.06323358081442654, 0.05995902294549526, 0.056768749085223766, 0.05366802698415332, 0.05066212439282514, 0.04775630906178049, 0.04495584874156059, 0.042266011182706675, 0.03969206413575999, 0.03723927535126179, 0.03491269309014742, 0.032712317352416816, 0.030633099877134726, 0.028669772913759845, 0.026817068711750956, 0.025069719520566816, 0.0234224575896662, 0.021870015168507867, 0.020407124506550554, 0.019028517853253064, 0.01772892745807412, 0.016503085570472524, 0.015345724439907003, 0.01425157631583634, 0.013215373447719288, 0.012231848085014615, 0.011295732477181079, 0.010401758873677447, 0.009544659523962487, 0.00871916667749493, 0.007920012583733585, 0.007141929492137171, 0.006379649652164488, 0.00562790531327427, 0.004881428724925293], "type": "scatter", "x": [-0.3226296667667775, -0.3238463894876703, -0.3250543779443698, -0.32624489787268235, -0.32740921500841474, -0.32853859508737354, -0.32962430384536523, -0.33065760701819646, -0.33162977034167385, -0.33253205955160403, -0.33335574038379345, -0.33409207857404877, -0.33473233985817663, -0.3352677899719836, -0.3356896946512763, -0.3359893196318612, -0.33615793064954497, -0.33618679344013414, -0.33606717373943545, -0.33579033728325536, -0.33534754980740056, -0.3347300770476776, -0.3339291847398929, -0.33293613861985333, -0.33174220442336533, -0.33033901181391034, -0.32872656079148815, -0.3269132216926176, -0.32490772878149204, -0.3227188163223049, -0.3203552185792496, -0.3178256698165195, -0.3151389042983081, -0.3123036562888087, -0.3093286600522147, -0.3062226498527197, -0.3029943599545169, -0.2996525246217998, -0.2962058781187618, -0.2926631547095963, -0.2890330886584967, -0.28532441422965643, -0.28154586568726886, -0.27770617729552755, -0.27381408331862556, -0.2698783180207568, -0.26590761566611415, -0.2619107105188915, -0.25789633684328184, -0.25387322890347885], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 50, "currentCount": 50}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y17", "zmin": null, "yaxis": "y", "legendgroup": "y17", "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.004881428724925297, 0.0006338603026247113, -0.003609876177529323, -0.007845948773390201, -0.012070525542811409, -0.016279774543646368, -0.02046986383374851, -0.024636961470971247, -0.02877723551316807, -0.03288685401819238, -0.03696198504389762, -0.04099879664813723, -0.044993456888764646, -0.0489421338236333, -0.05284099551059661, -0.05668621000750805, -0.06047394537222103, -0.06420036966258902, -0.06786165093646541, -0.0714539572517037, -0.07497345666615726, -0.07841631723767957, -0.08177870702412403, -0.0850567940833441, -0.08824674647319321, -0.0913448919157809, -0.09435123041110724, -0.09726943423706255, -0.1001033353357935, -0.10285676564944662, -0.10553355712016849, -0.10813754169010564, -0.11067255130140463, -0.11314241789621211, -0.11555097341667449, -0.11790204980493851, -0.12019947900315057, -0.12244709295345735, -0.12464872359800537, -0.12680820287894118, -0.12892936273841135, -0.13101603511856247, -0.13307205196154107, -0.1351012452094937, -0.13710744680456702, -0.13909448868890745, -0.1410662028046617, -0.1430264210939762, -0.14497897549899758, -0.1469276979618724], "type": "scatter", "x": [-0.2538732289034789, -0.2554526994748038, -0.25702271738586036, -0.25857382997637995, -0.2600965845860943, -0.26158152855473493, -0.2630192092220334, -0.2644001739277213, -0.26571497001153016, -0.26695414481319163, -0.26810824567243713, -0.2691678199289984, -0.2701234149226069, -0.2709655779929943, -0.27168485647989205, -0.2722717977230317, -0.27271694906214505, -0.27301085783696344, -0.2731440713872184, -0.2731071370526418, -0.2728906021729649, -0.2724850140879194, -0.2718809201372369, -0.2710688676606489, -0.270039403997887, -0.2687834703495273, -0.2673010667155698, -0.26560125189543843, -0.2636934785494015, -0.26158719933772756, -0.259291866920685, -0.25681693395854227, -0.25417185311156787, -0.25136607704003, -0.24840905840419733, -0.2453102498643382, -0.24207910408072103, -0.2387250737136143, -0.23525761142328633, -0.2316861698700057, -0.22802020171404072, -0.22426915961565985, -0.22044249623513154, -0.21654966423272431, -0.21260011626870634, -0.20860330500334637, -0.20456868309691253, -0.20050570320967354, -0.1964238180018976, -0.1923324801338533], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 50, "currentCount": 50}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y18", "zmin": null, "yaxis": "y", "legendgroup": "y18", "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.297306940414929, 0.29679577055771106, 0.2962915463475406, 0.29580121343146504, 0.2953317174565316, 0.2948900040697879, 0.29448301891828127, 0.2941177076490592, 0.293801015909169, 0.2935398893456582, 0.2933412736055742, 0.29321211433596434, 0.29315935718387615, 0.29318994779635693, 0.2933108318204542, 0.29352895490321534, 0.29385126269168776, 0.29428470083291886, 0.2948362149739561, 0.29551275076184685, 0.2963212538436387, 0.29726866986637884, 0.29836194447711484, 0.299608023322894, 0.3010138520507638, 0.30258608690581135, 0.3043247278880368, 0.3062231187523527, 0.308274313851712, 0.310471367539067, 0.31280733416737033, 0.31527526808957473, 0.31786822365863265, 0.3205792552274967, 0.32340141714911946, 0.3263277637764536, 0.3293513494624514, 0.33246522856006583, 0.33566245542224926, 0.3389360844019543, 0.34227916985213347, 0.34568476612573945, 0.34914592757572477, 0.352655708555042, 0.3562071634166438, 0.3597933465134827, 0.3634073121985113, 0.3670421148246821, 0.37069080874494775, 0.3743464483122608], "type": "scatter", "x": [-0.46476783124359494, -0.46847034831794454, -0.47216539581708156, -0.47584550416579313, -0.4795032037888668, -0.48313102511108974, -0.48672149855724944, -0.49026715455213304, -0.4937605235205281, -0.49719413588722183, -0.5005605220770016, -0.5038522125146547, -0.5070617376249685, -0.5101816278327302, -0.5132044135627275, -0.5161226252397474, -0.5189287932885772, -0.5216154481340045, -0.5241751202008165, -0.5266003399138005, -0.5288836376977439, -0.5310175439774341, -0.5329945891776583, -0.5348073037232038, -0.5364482180388581, -0.537910173781709, -0.5391931709517566, -0.5403043678919126, -0.5412512341773903, -0.5420412393834019, -0.5426818530851601, -0.5431805448578779, -0.5435447842767678, -0.5437820409170422, -0.5438997843539141, -0.5439054841625959, -0.5438066099183004, -0.5436106311962405, -0.5433250175716285, -0.542957238619677, -0.5425147639155992, -0.5420050630346072, -0.5414356055519138, -0.5408138610427319, -0.540147299082274, -0.5394433892457529, -0.5387096011083808, -0.5379534042453711, -0.5371822682319358, -0.536403662643288], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 50, "currentCount": 50}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y19", "zmin": null, "yaxis": "y", "legendgroup": "y19", "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.11600219518494327, -0.11999314579176647, -0.12398231674445037, -0.12796792838885562, -0.13194820107084293, -0.13592135513627296, -0.13988561093100638, -0.14383918880090388, -0.1477803090918262, -0.15170719214963396, -0.15561805832018785, -0.15951112794934857, -0.16338462138297677, -0.16723675896693316, -0.17106576104707838, -0.17486984796927318, -0.17864724007937818, -0.1823961577232541, -0.1861148212467616, -0.1898014509957614, -0.19345426731611412, -0.1970714905536805, -0.20065134105432117, -0.20419203916389686, -0.20769180522826822, -0.21114893374555171, -0.21456342471574746, -0.21793698364073877, -0.22127139017466516, -0.22456842397166585, -0.22782986468588018, -0.23105749197144745, -0.23425308548250695, -0.23741842487319811, -0.2405552897976601, -0.2436654599100324, -0.24675071486445418, -0.24981283431506485, -0.2528535979160037, -0.2558747853214101, -0.25887817618542325, -0.26186555016218255, -0.26483868690582724, -0.2677993660704968, -0.2707493673103304, -0.2736904702794674, -0.2766244546320472, -0.27955310002220896, -0.28247818610409214, -0.285401492531836], "type": "scatter", "x": [-0.10432902453215988, -0.10192902239825527, -0.09953906364017304, -0.09716919163373557, -0.09482944975476518, -0.09252988137908429, -0.09028052988251524, -0.08809143864088044, -0.08597265103000222, -0.08393421042570297, -0.08198616020380506, -0.08013854374013082, -0.0784014044105027, -0.076784785590743, -0.07529873065667415, -0.07395328298411849, -0.07275848594889836, -0.07172438292683618, -0.07086101729375427, -0.07017843242547507, -0.0696866716978209, -0.06939577848661414, -0.06931579616767716, -0.06945676811683235, -0.06982873770990206, -0.07044132984871607, -0.0712945445332744, -0.0723787568617472, -0.07368392345831219, -0.07520000094714696, -0.07691694595242914, -0.07882471509833638, -0.08091326500904628, -0.0831725523087365, -0.0855925336215846, -0.08816316557176833, -0.09087440478346517, -0.0937162078808529, -0.09667853148810905, -0.09975133222941128, -0.10292456672893721, -0.10618819161086449, -0.1095321634993707, -0.11294643901863352, -0.11642097479283062, -0.11994572744613949, -0.12351065360273793, -0.1271057098868034, -0.13072085292251362, -0.13434603933404626], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 50, "currentCount": 50}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y20", "zmin": null, "yaxis": "y", "legendgroup": "y20", "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.11600219518494326, -0.11951981223719255, -0.12302780633844586, -0.1265165545377071, -0.12997643388398025, -0.13339782142626933, -0.13677109421357825, -0.14008662929491103, -0.14333480371927163, -0.14650599453566404, -0.14959057879309223, -0.15257893354056018, -0.1554614358270718, -0.15822846270163116, -0.16087039121324218, -0.16337759841090885, -0.16574046134363513, -0.167949357060425, -0.16999466261028245, -0.17186675504221147, -0.17355601140521598, -0.17505280874829998, -0.17634752412046747, -0.17743053457072241, -0.17829221714806878, -0.17892334985780203, -0.17932393269992214, -0.1795031876691337, -0.17947073771643274, -0.1792362057928152, -0.1788092148492772, -0.1781993878368147, -0.17741634770642375, -0.17646971740910034, -0.17536911989584053, -0.1741241781176404, -0.17274451502549587, -0.17123975357040302, -0.16961951670335787, -0.16789342737535645, -0.16607110853739476, -0.16416218314046885, -0.16217627413557473, -0.16012300447370847, -0.158011997105866, -0.15585287498304345, -0.15365526105623675, -0.15142877827644205, -0.14918304959465523, -0.1469276979618724], "type": "scatter", "x": [-0.10432902453215986, -0.10511066712229428, -0.10589569133643106, -0.10668747879857245, -0.10748941113272079, -0.10830486996287844, -0.10913723691304768, -0.1099898936072308, -0.11086622166943023, -0.1117696027236482, -0.11270341839388708, -0.11367105030414912, -0.11467588007843671, -0.11572128934075211, -0.11681065971509771, -0.11794737282547581, -0.11913481029588867, -0.12037635375033871, -0.12167538481282815, -0.12303528510735938, -0.12445943625793471, -0.12595121988855645, -0.1275140176232269, -0.1291512110859484, -0.1308661819007233, -0.13266217079055376, -0.13453917775543983, -0.1364939620723793, -0.13852314211736977, -0.14062333626640902, -0.14279116289549465, -0.1450232403806244, -0.14731618709779584, -0.14966662142300682, -0.15207116173225488, -0.15452642640153777, -0.1570290338068531, -0.15957560232419865, -0.16216275032957203, -0.16478709619897094, -0.16744525830839302, -0.17013385503383602, -0.17284950475129757, -0.17558882583677535, -0.1783484366662671, -0.1811249556157704, -0.183915001061283, -0.18671519137880255, -0.18952214494432676, -0.1923324801338533], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 50, "currentCount": 50}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y21", "zmin": null, "yaxis": "y", "legendgroup": "y21", "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.11600219518494326, -0.12004052437263014, -0.12407565624517805, -0.12810439348744787, -0.1321235387843007, -0.13612989482059745, -0.14012026428119917, -0.14409144985096675, -0.14804025421476133, -0.1519634800574438, -0.15585793006387513, -0.15972040691891637, -0.16354771330742846, -0.16733665191427238, -0.17108402542430914, -0.17478663652239976, -0.17844128789340516, -0.18204478222218634, -0.18559392219360435, -0.1890855104925202, -0.19251634980379473, -0.19588324281228908, -0.19918299220286412, -0.20241240066038094, -0.20556827086970048, -0.20864753873714778, -0.211650204262723, -0.2145793315401008, -0.21743811788442047, -0.22022976061082083, -0.22295745703444098, -0.22562440447041987, -0.2282338002338965, -0.23078884164001, -0.23329272600389925, -0.23574865064070338, -0.23815981286556126, -0.240529409993612, -0.24286063933999463, -0.24515669821984812, -0.24742078394831143, -0.24965609384052367, -0.2518658252116238, -0.2540531753767509, -0.2562213416510438, -0.25837352134964175, -0.26051291178768365, -0.2626427102803085, -0.2647661141426553, -0.2668863206898631], "type": "scatter", "x": [-0.10432902453215986, -0.10621786382060729, -0.10809701735959136, -0.10995679939964872, -0.11178752419131605, -0.11357950598512996, -0.1153230590316271, -0.11700849758134413, -0.11862613588481771, -0.12016628819258449, -0.1216192687551811, -0.12297539182314418, -0.1242249716470104, -0.12535832247731638, -0.1263657585645988, -0.1272375941593943, -0.12796414351223956, -0.12853572087367116, -0.12894264049422577, -0.12917521662444006, -0.12922376351485068, -0.12907859541599426, -0.12873002657840749, -0.12816837125262695, -0.12738394368918932, -0.12636746171152555, -0.12511892531963567, -0.12364761669008871, -0.121963221572348, -0.12007542571587691, -0.11799391487013877, -0.11572837478459698, -0.11328849120871487, -0.11068394989195574, -0.107924436583783, -0.10501963703365998, -0.10197923699105006, -0.09881292220541656, -0.09553037842622283, -0.09214129140293224, -0.08865534688500813, -0.08508223062191383, -0.08143162836311275, -0.07771322585806827, -0.07393670885624354, -0.07011176310710218, -0.0662480743601073, -0.062355328364722476, -0.05844321087041088, -0.05452140762663595], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 50, "currentCount": 50}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y22", "zmin": null, "yaxis": "y", "legendgroup": "y22", "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.285401492531836, -0.28375725404150026, -0.28210907581292144, -0.28045301810785606, -0.2787851411880609, -0.27710150531529276, -0.2753981707513084, -0.2736711977578645, -0.2719166465967179, -0.2701305775296253, -0.2683090508183435, -0.2664481267246291, -0.264543865510239, -0.2625923274369299, -0.2605895727664586, -0.2585316617605818, -0.25641465468105623, -0.25423461178963874, -0.2519875933480859, -0.24966965961815465, -0.24727687086160166, -0.2448052873401837, -0.24225096931565746, -0.23960997704977974, -0.23687837080430732, -0.23405237499675707, -0.23113198962712891, -0.22812099027790608, -0.22502331668733175, -0.22184290859364916, -0.2185837057351016, -0.2152496478499323, -0.21184467467638457, -0.2083727259527015, -0.20483774141712652, -0.2012436608079028, -0.19759442386327358, -0.19389397032148212, -0.19014623992077165, -0.18635517239938543, -0.1825247074955667, -0.17865878494755874, -0.17476134449360484, -0.1708363258719482, -0.16688766882083197, -0.16291931307849958, -0.15893519838319412, -0.154939264473159, -0.15093545108663728, -0.1469276979618724], "type": "scatter", "x": [-0.13434603933404626, -0.13835151686323105, -0.14234758614978826, -0.14632483895109025, -0.15027386702450946, -0.15418526212741834, -0.15804961601718925, -0.16185752045119456, -0.1655995671868068, -0.16926634798139828, -0.17284845459234138, -0.1763364787770086, -0.17972101229277226, -0.18299264689700478, -0.18614197434707866, -0.18915958640036623, -0.1920360748142399, -0.19476203134607203, -0.19732804775323518, -0.19972471579310164, -0.20194262722304382, -0.20397237380043415, -0.20580454728264502, -0.20742973942704884, -0.20883854199101806, -0.21002193874203456, -0.21097992968009827, -0.2117215310377274, -0.21225615105754944, -0.21259319798219206, -0.2127420800542828, -0.2127122055164493, -0.21251298261131912, -0.2121538195815199, -0.21164412466967913, -0.2109933061184245, -0.21021077217038361, -0.209305931068184, -0.20828819105445326, -0.207166960371819, -0.20595164726290882, -0.20465165997035029, -0.20327640673677103, -0.20183529580479864, -0.20033773541706063, -0.19879313381618477, -0.19721089924479843, -0.19560043994552936, -0.1939711641610051, -0.1923324801338533], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 50, "currentCount": 50}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y23", "zmin": null, "yaxis": "y", "legendgroup": "y23", "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.285401492531836, -0.28985552396559, -0.29430924993111046, -0.2987623649601633, -0.3032145635845149, -0.30766554033593146, -0.3121149897461794, -0.31656260634702477, -0.32100808467023395, -0.32545111924757325, -0.3298914046108088, -0.33432863529170675, -0.33876250582203365, -0.34319271073355545, -0.3476189445580386, -0.35204090182724934, -0.3564582770729538, -0.3608707648269183, -0.3652780596209092, -0.3696798559866927, -0.3740758484560349, -0.3784657315607023, -0.3828491998324609, -0.38722594780307706, -0.3915956700043171, -0.3959580736957903, -0.40031315887749674, -0.4046612182898268, -0.4090025574010146, -0.4133374816792937, -0.41766629659289783, -0.42198930761006076, -0.4263068201990163, -0.4306191398279982, -0.43492657196524, -0.4392294220789758, -0.44352799563743894, -0.4478225981088635, -0.4521135349614831, -0.4564011116635315, -0.4606856336832424, -0.46496740648884954, -0.4692467355485867, -0.4735239263306877, -0.47779928430338614, -0.48207311493491595, -0.4863457236935107, -0.4906174160474043, -0.4948884974648303, -0.49915927341402266], "type": "scatter", "x": [-0.13434603933404626, -0.13141859263965866, -0.12850134120181145, -0.12560448027704485, -0.12273820512189923, -0.11991271099291498, -0.11713819314663236, -0.1144248468395917, -0.11178286732833338, -0.1092224498693977, -0.10675378971932496, -0.10438708213465554, -0.10213252237192975, -0.10000030568768792, -0.09800062733847038, -0.0961436825808175, -0.09443966667126953, -0.09289877486636687, -0.09153120242264978, -0.09034714459665864, -0.08935679664493382, -0.08857035382401555, -0.08799801139044425, -0.08764996460076019, -0.08753640871150374, -0.08766711417685935, -0.08804208099682705, -0.08865153871722233, -0.08948529208150488, -0.09053314583313436, -0.09178490471557046, -0.09323037347227284, -0.0948593568467011, -0.09666165958231505, -0.09862708642257423, -0.1007454421109384, -0.10300653139086714, -0.10540015900582021, -0.10791612969925725, -0.1105442482146379, -0.11327431929542188, -0.11609614768506879, -0.11899953812703837, -0.12197429536479024, -0.12501022414178412, -0.1280971292014796, -0.13122481528733648, -0.13438308714281427, -0.13756174951137273, -0.14075060713647158], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 50, "currentCount": 50}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y24", "zmin": null, "yaxis": "y", "legendgroup": "y24", "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.28540149253183594, -0.28800403395457835, -0.290596639323738, -0.2931693725857323, -0.2957122976869784, -0.2982154785738937, -0.30066897919289554, -0.30306286349040107, -0.3053871954128278, -0.3076320389065928, -0.3097874579181135, -0.31184351639380714, -0.31379027828009104, -0.31561780752338253, -0.3173161680700989, -0.31887542386665735, -0.3202856388594752, -0.3215368769949698, -0.32261920221955853, -0.3235226784796585, -0.32423736972168715, -0.3247533398920617, -0.32506065293719943, -0.32514937280351774, -0.32500956343743387, -0.3246317027875976, -0.3240157908540092, -0.3231713496880186, -0.3221083153432084, -0.32083662387316153, -0.31936621133146054, -0.31770701377168814, -0.31586896724742713, -0.3138620078122601, -0.3116960715197698, -0.309381094423539, -0.3069270125771503, -0.3043437620341865, -0.3016412788482303, -0.29882949907286427, -0.29591835876167116, -0.2929177939682338, -0.2898377407461347, -0.28668813514895686, -0.2834789132302826, -0.280220011043695, -0.2769213646427764, -0.27359291008110986, -0.2702445834122778, -0.2668863206898631], "type": "scatter", "x": [-0.13434603933404626, -0.1320256666127189, -0.1297075985401645, -0.127394139765156, -0.1250875949364663, -0.12279026870286835, -0.1205044657131351, -0.11823249061603949, -0.11597664806035446, -0.11373924269485293, -0.11152257916830786, -0.10932896212949218, -0.10716069622717884, -0.10502008611014074, -0.10290943642715089, -0.10083105182698218, -0.09878723695840756, -0.09678029647019996, -0.09481253501113233, -0.0928862572299776, -0.09100376777550875, -0.08916737129649864, -0.08737937244172027, -0.08564207585994657, -0.08395778619995048, -0.08232871208347274, -0.08075485351051329, -0.07923400185933147, -0.07776385248115432, -0.0763421007272089, -0.07496644194872225, -0.07363457149692143, -0.07234418472303356, -0.07109297697828562, -0.06987864361390472, -0.06869887998111791, -0.06755138143115225, -0.0664338433152348, -0.06534396098459264, -0.0642794297904528, -0.06323794508404233, -0.06221720221658834, -0.061214896539317845, -0.060228723403457946, -0.05925637816023566, -0.058295556160878094, -0.05734395275661225, -0.05639926329866527, -0.05545918313826413, -0.05452140762663596], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 50, "currentCount": 50}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y25", "zmin": null, "yaxis": "y", "legendgroup": "y25", "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.31015741184291634, -0.3078885622145387, -0.3056161708641811, -0.30333669606986347, -0.30104659610960577, -0.298742329261428, -0.29642035380335013, -0.2940771280133922, -0.2917091101695741, -0.28931275854991595, -0.2868845314324376, -0.284420887095159, -0.28191828381610023, -0.27937317987328136, -0.27678203354472225, -0.27414130310844287, -0.27144744684246325, -0.2686969230248033, -0.26588618993348306, -0.26301170584652256, -0.2600699290419417, -0.25705731779776053, -0.25397033039199896, -0.25080542510267706, -0.24755906020781476, -0.24422784155718122, -0.24081176915077643, -0.23731423713883126, -0.2337387872433257, -0.23008896118623975, -0.2263683006895535, -0.22258034747524694, -0.21872864326530006, -0.21481672978169286, -0.2108481487464054, -0.2068264418814177, -0.20275515090870977, -0.19863781755026158, -0.19447798352805323, -0.19027919056406464, -0.1860449803802759, -0.181778894698667, -0.17748447524121794, -0.17316526372990887, -0.16882480188671958, -0.16446663143363027, -0.16009429409262083, -0.15571133158567144, -0.1513212856347619, -0.1469276979618724], "type": "scatter", "x": [-0.252771900789402, -0.24866928614741934, -0.24457623669086, -0.24050231760514712, -0.23645709407570403, -0.23245013128795403, -0.22849099442732018, -0.22458924867922592, -0.22075445922909448, -0.216996191262349, -0.21332400996441286, -0.2097474805207092, -0.2062761681166614, -0.2029196379376926, -0.19968745516922615, -0.19658918499668523, -0.19363439260549314, -0.19083264318107312, -0.18819350190884843, -0.1857265339742423, -0.18344130456267801, -0.1813473788595788, -0.1794543220503679, -0.17777169932046866, -0.17630907585530423, -0.1750756182909053, -0.1740713266272718, -0.1732870342283732, -0.17271317590878613, -0.1723401864830874, -0.17215850076585382, -0.17215855357166204, -0.1723307797150888, -0.17266561401071093, -0.17315349127310514, -0.17378484631684815, -0.1745501139565167, -0.17543972900668756, -0.1764441262819375, -0.17755374059684323, -0.17875900676598147, -0.180050359603929, -0.1814182339252626, -0.18285306454455896, -0.18434528627639485, -0.185885333935347, -0.1874636423359922, -0.18907064629290712, -0.19069678062066855, -0.1923324801338533], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 50, "currentCount": 50}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y26", "zmin": null, "yaxis": "y", "legendgroup": "y26", "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [-0.3101574118429163, -0.3144344861050941, -0.3187087205849403, -0.32297727550012345, -0.32723731106831183, -0.3314859875071739, -0.3357204650343782, -0.3399379038675929, -0.34413546422448676, -0.348310306322728, -0.3524595903799852, -0.3565804766139265, -0.36067012524222064, -0.36472569648253583, -0.3687443505525406, -0.3727232476699035, -0.3766595480522927, -0.3805504119173768, -0.38439299948282407, -0.3881844709663032, -0.3919219865854824, -0.3956027065580302, -0.399223791101615, -0.40278240043390523, -0.4062756947725693, -0.4097009526595395, -0.4130581740948158, -0.4163500805364659, -0.41957951176682146, -0.422749307568214, -0.4258623077229752, -0.42892135201343634, -0.4319292802219294, -0.43488893213078567, -0.4378031475223368, -0.4406747661789144, -0.44350662788284984, -0.446301572416475, -0.4490624395621213, -0.4517920691021203, -0.4544933008188035, -0.45716897449450256, -0.45982192991154913, -0.46245500685227464, -0.4650710450990108, -0.46767288443408905, -0.470263364639841, -0.4728453254985983, -0.47542160679269235, -0.4779950483044549], "type": "scatter", "x": [-0.252771900789402, -0.2508262470640382, -0.24889038987903703, -0.24697412577476086, -0.2450872512915722, -0.2432395629698336, -0.2414408573499075, -0.23970093097215645, -0.238029580376943, -0.2364366021046296, -0.23493179269557882, -0.23352494869015308, -0.23222586662871494, -0.2310443430516269, -0.22999017449925155, -0.22907315751195126, -0.2283030886300886, -0.22768976439402613, -0.22724298134412627, -0.22697253602075157, -0.22688822496426458, -0.22699984471502777, -0.2273171918134036, -0.22785006279975464, -0.22860825421444342, -0.22960115440865062, -0.23082876338237626, -0.2322816927844396, -0.23395014607447814, -0.2358243267121294, -0.23789443815703082, -0.24015068386881988, -0.2425832673071341, -0.24518239193161104, -0.24793826120188805, -0.2508410785776028, -0.2538810475183926, -0.257048371483895, -0.26033325393374757, -0.26372589832758764, -0.2672165081250529, -0.2707952867857807, -0.27445243776940853, -0.278178164535574, -0.28196267054391444, -0.2857961592540675, -0.28966883412567057, -0.2935708986183611, -0.2974925561917767, -0.3014240103055549], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 50, "currentCount": 50}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y27", "zmin": null, "yaxis": "y", "legendgroup": "y27", "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.10941240338979821, 0.11294956777773782, 0.11648848820432259, 0.12003092070819754, 0.12357862132800791, 0.1271333461023988, 0.1306968510700153, 0.1342708922695025, 0.13785722573950562, 0.1414576075186698, 0.14507379364564002, 0.14870754015906154, 0.15236060309757943, 0.1560347384998388, 0.1597317024044848, 0.1634532508501626, 0.1672011398755172, 0.17097712551919386, 0.17478296381983766, 0.1786204108160937, 0.18249122254660716, 0.18639715505002308, 0.19033996436498662, 0.19432140653014296, 0.1983432375841372, 0.20240714039733748, 0.206513114969744, 0.21065947843098828, 0.2148444747424254, 0.21906634786541018, 0.2233233417612974, 0.227613700391442, 0.23193566771719887, 0.23628748769992294, 0.2406674043009689, 0.24507366148169188, 0.24950450320344644, 0.25395817342758775, 0.2584329161154706, 0.26292697522844977, 0.2674385947278802, 0.2719660185751167, 0.27650749073151426, 0.2810612551584276, 0.28562555581721183, 0.29019863666922163, 0.294778741675812, 0.2993641147983376, 0.3039529999981535, 0.3085436412366146], "type": "scatter", "x": [0.38176267193725166, 0.385486773867896, 0.38920082826675184, 0.39289478760203045, 0.3965586043419435, 0.40018223095470246, 0.4037556199085186, 0.4072687236716035, 0.41071149471216856, 0.41407388549842533, 0.41734584849858525, 0.4205173361808596, 0.42357830101346, 0.4265186954645979, 0.4293284720024848, 0.4319975830953321, 0.43451598121135104, 0.4368736188187534, 0.43906044838575053, 0.4410664223805538, 0.4428814932713748, 0.44449561352642497, 0.44589873561391563, 0.44708081200205835, 0.44803179515906455, 0.4487420562003036, 0.44921159512577546, 0.44945004082011075, 0.4494674408150982, 0.4492738426425261, 0.4488792938341831, 0.44829384192185784, 0.44752753443733884, 0.4465904189124145, 0.4454925428788735, 0.4442439538685044, 0.4428546994130956, 0.4413348270444358, 0.43969438429431346, 0.43794341869451703, 0.4360919777768353, 0.4341501090730565, 0.4321278601149695, 0.4300352784343627, 0.42788241156302453, 0.42567930703274376, 0.42343601237530865, 0.4211625751225081, 0.4188690428061303, 0.4165654629579641], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 50, "currentCount": 50}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y28", "zmin": null, "yaxis": "y", "legendgroup": "y28", "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.10941240338979823, 0.10492110408618852, 0.10043270793808083, 0.09595011810097719, 0.09147623773037951, 0.08701396998178988, 0.0825662180107103, 0.07813588497264277, 0.0737258740230893, 0.0693390883175519, 0.06497843101153256, 0.0606468052605333, 0.05634711422005614, 0.052082261045603054, 0.047855148892676135, 0.04366868091677729, 0.039525760273408574, 0.03542929011807199, 0.031382173606269534, 0.027387313893503226, 0.02344761413527508, 0.01956597748708709, 0.01574530710444128, 0.01198850614283965, 0.008298477757784223, 0.0046780041399644215, 0.0011270852893801645, -0.0023570609846578234, -0.005777337837651672, -0.009136648425103349, -0.012437895902514859, -0.01568398342538822, -0.018877814149225396, -0.022022291229528493, -0.025120317821799402, -0.028174797081540255, -0.031188632164252914, -0.034164726225439514, -0.03710598242060201, -0.040015303905242425, -0.04289559383486274, -0.045749755364964985, -0.04858069165105116, -0.05139130584862327, -0.054184501113183375, -0.056963180600233386, -0.059730247465275416, -0.062488604863811366, -0.06524115595134332, -0.06799080388337328], "type": "scatter", "x": [0.38176267193725166, 0.3799046444608606, 0.378056394931846, 0.3762277012975842, 0.3744283415054517, 0.37266809350282487, 0.3709567352370801, 0.3693040446555939, 0.3677197997057428, 0.36621377833490304, 0.3647957584904511, 0.3634755181197634, 0.3622628351702164, 0.3611674875891864, 0.36019925332405, 0.35936791032218357, 0.3586832365309635, 0.3581550098977661, 0.3577930083699681, 0.35760700989494565, 0.35760679242007526, 0.3578021338927334, 0.3582028122602964, 0.35881860547014083, 0.35965929146964304, 0.3607342407917054, 0.36204345343632793, 0.36357755887060816, 0.3653267791471698, 0.3672813363186364, 0.3694314524376314, 0.3717673495567786, 0.37427924972870136, 0.37695737500602344, 0.37979194744136807, 0.3827731890873594, 0.38589132199662046, 0.3891365682217751, 0.3924991498154468, 0.3959692888302593, 0.3995372073188359, 0.40319312733380036, 0.4069272709277762, 0.4107298601533871, 0.41459111706325646, 0.418501263710008, 0.4224505221462653, 0.4264291144246517, 0.43042726259779107, 0.4344351887183068], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 50, "currentCount": 50}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y29", "zmin": null, "yaxis": "y", "legendgroup": "y29", "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.10941240338979824, 0.10598547644420563, 0.10256842176184489, 0.09917111160594798, 0.09580341823974674, 0.09247521392647307, 0.08919637092935889, 0.0859767615116361, 0.08282625793653656, 0.07975473246729219, 0.07677205736713488, 0.07388810489929652, 0.07111274732700901, 0.06845585691350427, 0.06592730592201416, 0.0635369666157706, 0.06129471125800549, 0.05921041211195069, 0.05729394144083812, 0.05555517150789965, 0.05400397457636723, 0.052650222909472716, 0.051503788770448006, 0.050574544422525014, 0.04987236212893562, 0.049406702808610405, 0.049177566461549346, 0.04917549216882188, 0.049390607667196135, 0.0498130406934402, 0.05043291898432217, 0.05124037027661017, 0.05222552230707228, 0.053378502812476636, 0.0546894395295913, 0.056148460195184435, 0.05774569254602407, 0.059471264318878364, 0.06131530325051542, 0.06326793707770331, 0.06531929353721018, 0.06745950036580409, 0.06967868530025317, 0.07196697607732551, 0.07431450043378926, 0.07671138610641245, 0.07914776083196326, 0.08161375234720972, 0.08409948838892, 0.08659509669386216], "type": "scatter", "x": [0.38176267193725155, 0.3807389932472941, 0.3797127503838937, 0.37868137917360767, 0.3776423154429929, 0.37659299501860677, 0.3755308537270062, 0.37445332739474835, 0.37335785184839054, 0.37224186291448963, 0.3711027964196029, 0.36993808819028745, 0.36874517405310037, 0.3675214898345988, 0.36626447136133994, 0.36497155445988094, 0.36364017495677875, 0.3622677686785906, 0.36085177145187364, 0.35938961910318495, 0.3578787474590817, 0.356316592346121, 0.35470058959086004, 0.3530281750198558, 0.3512967844596655, 0.34950396057740646, 0.34764970337307854, 0.34573647017956455, 0.3437668251703073, 0.3417433325187499, 0.339668556398335, 0.3375450609825055, 0.3353754104447042, 0.33316216895837414, 0.33090790069695813, 0.32861516983389905, 0.3262865405426397, 0.3239245769966231, 0.32153184336929197, 0.31911090383408924, 0.3166643225644578, 0.3141946637338404, 0.31170449151568014, 0.3091963700834198, 0.3066728636105021, 0.3041365362703702, 0.3015899522364667, 0.2990356756822346, 0.2964762707811167, 0.293914301706556], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 50, "currentCount": 50}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y30", "zmin": null, "yaxis": "y", "legendgroup": "y30", "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.10941240338979823, 0.10686014604632267, 0.10431778556596344, 0.10179521881183681, 0.09930234264705907, 0.09684905393474658, 0.09444524953801563, 0.0921008263199825, 0.0898256811437635, 0.08762971087247497, 0.08552281236923318, 0.08351488249715444, 0.08161581811935506, 0.07983551609895136, 0.07818387329905965, 0.0766707865827962, 0.07530615281327736, 0.07409986885361941, 0.07306183156693864, 0.07220193781635138, 0.07153008446497394, 0.07105616837592262, 0.07079008641231371, 0.07074173543726353, 0.07092101231388839, 0.07133740153600808, 0.0719909031036226, 0.07287203252291215, 0.07397089293076042, 0.07527758746405112, 0.07678221925966794, 0.07847489145449457, 0.08034570718541469, 0.08238476958931204, 0.08458218180307024, 0.08692804696357309, 0.08941246820770414, 0.09202554867234723, 0.09475739149438597, 0.0975980998107041, 0.10053777675818526, 0.10356652547371317, 0.10667444909417154, 0.109851650756444, 0.11308823359741438, 0.11637430075396622, 0.11969995536298333, 0.12305530056134932, 0.12643043948594795, 0.12981547527366288], "type": "scatter", "x": [0.38176267193725166, 0.3841729006742857, 0.3865806618888332, 0.3889834880584073, 0.3913789116605215, 0.3937644651726893, 0.39613768107242375, 0.3984960918372383, 0.40083722994464643, 0.40315862787216145, 0.40545781809729675, 0.4077323330975656, 0.40997970535048134, 0.41219746733355744, 0.4143831515243072, 0.416534290400244, 0.4186484164388812, 0.420723062117732, 0.42275575991431, 0.42474404230612856, 0.42668544177070095, 0.42857749078554047, 0.43041772182816046, 0.43220366737607446, 0.43393285990679564, 0.4356029347112744, 0.4372138917895108, 0.4387680958505544, 0.4402680144168919, 0.44171611501101, 0.44311486515539517, 0.4444667323725342, 0.44577418418491377, 0.4470396881150205, 0.4482657116853408, 0.4494547224183616, 0.45060918783656934, 0.4517315754624509, 0.4528243528184927, 0.4538899874271814, 0.4549309468110037, 0.45594969849244626, 0.45694870999399567, 0.4579304488381386, 0.4588973825473617, 0.4598519786441516, 0.46079670465099487, 0.46173402809037833, 0.46266641648478835, 0.46359633735671196], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 50, "currentCount": 50}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y31", "zmin": null, "yaxis": "y", "legendgroup": "y31", "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.08659509669386214, 0.08221759462100411, 0.07784318860295104, 0.07347497469450791, 0.06911604895047965, 0.06476950742567124, 0.06043844617488763, 0.056125961252933794, 0.05183514871461469, 0.04756910461473527, 0.043330925008100506, 0.03912370594951534, 0.034950543493784764, 0.030814533695713714, 0.02671877261010719, 0.022666356291770107, 0.018660380795507452, 0.014703942176124182, 0.010800136488425236, 0.006952059787215597, 0.0031628081273002246, -0.0005645224365159168, -0.0042268358494278735, -0.007821036056630676, -0.011344027003319348, -0.01479284163697248, -0.018167479957590146, -0.02147090901769362, -0.024706224872087984, -0.027876523575578162, -0.03098490118296911, -0.034034453749065795, -0.037028277328673136, -0.0399694679765962, -0.04286112174763983, -0.04570633469660909, -0.04850820287830883, -0.05126982234754411, -0.05399428915911986, -0.05668469936784101, -0.05934414902851255, -0.06197573419593945, -0.06458255092492665, -0.0671676952702791, -0.06973426328680184, -0.07228535102929971, -0.07482405455257779, -0.07735346991144094, -0.07987669316069418, -0.08239682035514248], "type": "scatter", "x": [0.293914301706556, 0.29573078403513864, 0.2975375477727015, 0.29932487432822474, 0.30108304511068884, 0.3028023415290737, 0.3044730449923597, 0.30608543690952705, 0.30762979868955603, 0.30909641174142677, 0.31047555747411953, 0.31175751729661455, 0.31293257261789204, 0.3139910048469322, 0.31492309539271535, 0.31571912566422167, 0.3163693770704313, 0.3168641310203245, 0.3171936689228816, 0.3173482721870827, 0.31731822222190814, 0.31709380043633806, 0.3166652882393527, 0.31602296703993227, 0.31515711824705706, 0.3140584282109997, 0.31272689693176026, 0.311171838059066, 0.3094029701839367, 0.30743001189739216, 0.3052626817904521, 0.30291069845413626, 0.3003837804794645, 0.29769164645745655, 0.29484401497913226, 0.2918506046355113, 0.2887211340176135, 0.2854653217164587, 0.2820928863230665, 0.2786135464284568, 0.27503702062364943, 0.27137302749966397, 0.2676312856475203, 0.26382151365823836, 0.25995343012283756, 0.2560367536323381, 0.25208120277775936, 0.24809649615012144, 0.24409235234044388, 0.24007848993974656], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 50, "currentCount": 50}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "fillcolor": "rgba(0, 154, 250, 1.000)", "name": "y32", "fill": "tozeroy", "yaxis": "y", "legendgroup": "y32", "line": {"color": "rgba(0, 0, 0, 1)", "dash": "solid", "width": 1}, "y": [0.5008407265859774, 0.529323339865999, 0.529323339865999, 0.5008407265859774, 0.4723581133059559, 0.4723581133059559, 0.5008407265859774, 0.5008407265859774], "type": "scatter", "x": [0.18687087245205988, 0.17042642800761545, 0.13753753911872657, 0.12109309467428211, 0.13753753911872654, 0.17042642800761545, 0.18687087245205988, 0.18687087245205988], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 8, "currentCount": 8}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "fillcolor": "rgba(0, 154, 250, 1.000)", "name": "y33", "fill": "tozeroy", "yaxis": "y", "legendgroup": "y33", "line": {"color": "rgba(0, 0, 0, 1)", "dash": "solid", "width": 1}, "y": [0.29814160002795576, 0.3266242133079773, 0.3266242133079773, 0.29814160002795576, 0.2696589867479342, 0.2696589867479342, 0.29814160002795576, 0.29814160002795576], "type": "scatter", "x": [0.18378047798539732, 0.1673360335409529, 0.134447144652064, 0.11800270020761955, 0.13444714465206398, 0.1673360335409529, 0.18378047798539732, 0.18378047798539732], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 8, "currentCount": 8}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "fillcolor": "rgba(0, 154, 250, 1.000)", "name": "y34", "fill": "tozeroy", "yaxis": "y", "legendgroup": "y34", "line": {"color": "rgba(0, 0, 0, 1)", "dash": "solid", "width": 1}, "y": [0.1740119149107544, 0.20249452819077593, 0.20249452819077593, 0.1740119149107544, 0.14552930163073288, 0.14552930163073288, 0.1740119149107544, 0.1740119149107544], "type": "scatter", "x": [0.11244286696039607, 0.09599842251595163, 0.06310953362706276, 0.0466650891826183, 0.06310953362706273, 0.09599842251595163, 0.11244286696039607, 0.11244286696039607], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 8, "currentCount": 8}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "fillcolor": "rgba(0, 154, 250, 1.000)", "name": "y35", "fill": "tozeroy", "yaxis": "y", "legendgroup": "y35", "line": {"color": "rgba(0, 0, 0, 1)", "dash": "solid", "width": 1}, "y": [0.15445377321939707, 0.1829363864994186, 0.1829363864994186, 0.15445377321939707, 0.12597115993937555, 0.12597115993937555, 0.15445377321939707, 0.15445377321939707], "type": "scatter", "x": [0.24261927765679625, 0.22617483321235182, 0.19328594432346294, 0.17684149987901848, 0.1932859443234629, 0.22617483321235182, 0.24261927765679625, 0.24261927765679625], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 8, "currentCount": 8}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "fillcolor": "rgba(0, 154, 250, 1.000)", "name": "y36", "fill": "tozeroy", "yaxis": "y", "legendgroup": "y36", "line": {"color": "rgba(0, 0, 0, 1)", "dash": "solid", "width": 1}, "y": [-0.03979991145034603, -0.011317298170324487, -0.011317298170324484, -0.039799911450346025, -0.06828252473036757, -0.06828252473036758, -0.03979991145034604, -0.03979991145034603], "type": "scatter", "x": [0.09999016960207469, 0.08354572515763024, 0.050656836268741345, 0.03421239182429689, 0.050656836268741325, 0.08354572515763024, 0.09999016960207469, 0.09999016960207469], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 8, "currentCount": 8}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "fillcolor": "rgba(0, 154, 250, 1.000)", "name": "y37", "fill": "tozeroy", "yaxis": "y", "legendgroup": "y37", "line": {"color": "rgba(0, 0, 0, 1)", "dash": "solid", "width": 1}, "y": [-0.20618119656806255, -0.177698583288041, -0.177698583288041, -0.20618119656806255, -0.23466380984808408, -0.2346638098480841, -0.20618119656806255, -0.20618119656806255], "type": "scatter", "x": [0.0568517677968743, 0.04040732335242986, 0.00751843446354097, -0.008926009980903482, 0.00751843446354095, 0.04040732335242986, 0.0568517677968743, 0.0568517677968743], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 8, "currentCount": 8}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "fillcolor": "rgba(0, 154, 250, 1.000)", "name": "y38", "fill": "tozeroy", "yaxis": "y", "legendgroup": "y38", "line": {"color": "rgba(0, 0, 0, 1)", "dash": "solid", "width": 1}, "y": [-0.017061586513943825, 0.011421026766077706, 0.011421026766077709, -0.01706158651394382, -0.04554419979396535, -0.04554419979396536, -0.017061586513943832, -0.017061586513943825], "type": "scatter", "x": [0.18819389285093652, 0.1717494484064921, 0.1388605595176032, 0.12241611507315875, 0.13886055951760318, 0.1717494484064921, 0.18819389285093652, 0.18819389285093652], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 8, "currentCount": 8}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "fillcolor": "rgba(0, 154, 250, 1.000)", "name": "y39", "fill": "tozeroy", "yaxis": "y", "legendgroup": "y39", "line": {"color": "rgba(0, 0, 0, 1)", "dash": "solid", "width": 1}, "y": [-0.009578699539211356, 0.018903913740810182, 0.018903913740810185, -0.009578699539211352, -0.03806131281923289, -0.03806131281923289, -0.009578699539211364, -0.009578699539211356], "type": "scatter", "x": [0.007264761891719398, -0.009179682552725044, -0.04206857144161393, -0.05851301588605838, -0.04206857144161395, -0.009179682552725044, 0.007264761891719398, 0.007264761891719398], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 8, "currentCount": 8}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "fillcolor": "rgba(0, 154, 250, 1.000)", "name": "y40", "fill": "tozeroy", "yaxis": "y", "legendgroup": "y40", "line": {"color": "rgba(0, 0, 0, 1)", "dash": "solid", "width": 1}, "y": [0.21353531907606055, 0.2420179323560821, 0.2420179323560821, 0.21353531907606055, 0.185052705796039, 0.185052705796039, 0.21353531907606055, 0.21353531907606055], "type": "scatter", "x": [-0.3604732413175267, -0.37691768576197116, -0.40980657465086007, -0.42625101909530455, -0.4098065746508601, -0.37691768576197116, -0.3604732413175267, -0.3604732413175267], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 8, "currentCount": 8}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "fillcolor": "rgba(0, 154, 250, 1.000)", "name": "y41", "fill": "tozeroy", "yaxis": "y", "legendgroup": "y41", "line": {"color": "rgba(0, 0, 0, 1)", "dash": "solid", "width": 1}, "y": [0.11888395951953057, 0.1684750695896674, 0.16847506958966743, 0.11888395951953058, 0.06929284944939373, 0.06929284944939372, 0.11888395951953055, 0.11888395951953057], "type": "scatter", "x": [-0.2653667852699658, -0.29399822601837167, -0.3512611075151834, -0.3798925482635893, -0.35126110751518347, -0.29399822601837167, -0.2653667852699658, -0.2653667852699658], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 8, "currentCount": 8}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "fillcolor": "rgba(0, 154, 250, 1.000)", "name": "y42", "fill": "tozeroy", "yaxis": "y", "legendgroup": "y42", "line": {"color": "rgba(0, 0, 0, 1)", "dash": "solid", "width": 1}, "y": [0.004881428724925285, 0.05447253879506212, 0.05447253879506213, 0.004881428724925292, -0.04470968134521155, -0.04470968134521155, 0.004881428724925271, 0.004881428724925285], "type": "scatter", "x": [-0.19661034740666722, -0.2252417881550731, -0.2825046696518848, -0.3111361104002907, -0.28250466965188487, -0.2252417881550731, -0.19661034740666722, -0.19661034740666722], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 8, "currentCount": 8}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "fillcolor": "rgba(0, 154, 250, 1.000)", "name": "y43", "fill": "tozeroy", "yaxis": "y", "legendgroup": "y43", "line": {"color": "rgba(0, 0, 0, 1)", "dash": "solid", "width": 1}, "y": [0.297306940414929, 0.34689805048506583, 0.34689805048506583, 0.297306940414929, 0.24771583034479217, 0.24771583034479217, 0.297306940414929, 0.297306940414929], "type": "scatter", "x": [-0.4075049497467833, -0.43613639049518915, -0.49339927199200084, -0.5220307127404067, -0.4933992719920009, -0.43613639049518915, -0.4075049497467833, -0.4075049497467833], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 8, "currentCount": 8}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "fillcolor": "rgba(0, 154, 250, 1.000)", "name": "y44", "fill": "tozeroy", "yaxis": "y", "legendgroup": "y44", "line": {"color": "rgba(0, 0, 0, 1)", "dash": "solid", "width": 1}, "y": [-0.11600219518494329, -0.06641108511480645, -0.06641108511480645, -0.11600219518494327, -0.1655933052550801, -0.16559330525508012, -0.1160021951849433, -0.11600219518494329], "type": "scatter", "x": [-0.047066143035348174, -0.07569758378375402, -0.13296046528056574, -0.1615919060289716, -0.13296046528056576, -0.07569758378375402, -0.047066143035348174, -0.047066143035348174], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 8, "currentCount": 8}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "fillcolor": "rgba(0, 154, 250, 1.000)", "name": "y45", "fill": "tozeroy", "yaxis": "y", "legendgroup": "y45", "line": {"color": "rgba(0, 0, 0, 1)", "dash": "solid", "width": 1}, "y": [-0.285401492531836, -0.23581038246169916, -0.23581038246169916, -0.285401492531836, -0.33499260260197283, -0.33499260260197283, -0.285401492531836, -0.285401492531836], "type": "scatter", "x": [-0.07708315783723454, -0.10571459858564039, -0.1629774800824521, -0.19160892083085798, -0.16297748008245214, -0.10571459858564039, -0.07708315783723454, -0.07708315783723454], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 8, "currentCount": 8}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "fillcolor": "rgba(0, 154, 250, 1.000)", "name": "y46", "fill": "tozeroy", "yaxis": "y", "legendgroup": "y46", "line": {"color": "rgba(0, 0, 0, 1)", "dash": "solid", "width": 1}, "y": [-0.31015741184291634, -0.2605663017727795, -0.2605663017727795, -0.31015741184291634, -0.3597485219130532, -0.3597485219130532, -0.31015741184291634, -0.31015741184291634], "type": "scatter", "x": [-0.1955090192925903, -0.22414046004099616, -0.2814033415378079, -0.3100347822862138, -0.28140334153780794, -0.22414046004099616, -0.1955090192925903, -0.1955090192925903], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 8, "currentCount": 8}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "fillcolor": "rgba(0, 154, 250, 1.000)", "name": "y47", "fill": "tozeroy", "yaxis": "y", "legendgroup": "y47", "line": {"color": "rgba(0, 0, 0, 1)", "dash": "solid", "width": 1}, "y": [-0.14692769796187244, -0.0973365878917356, -0.0973365878917356, -0.14692769796187244, -0.19651880803200927, -0.19651880803200927, -0.14692769796187247, -0.14692769796187244], "type": "scatter", "x": [-0.1350695986370416, -0.16370103938544744, -0.22096392088225916, -0.24959536163066504, -0.2209639208822592, -0.16370103938544744, -0.1350695986370416, -0.1350695986370416], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 8, "currentCount": 8}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "fillcolor": "rgba(0, 154, 250, 1.000)", "name": "y48", "fill": "tozeroy", "yaxis": "y", "legendgroup": "y48", "line": {"color": "rgba(0, 0, 0, 1)", "dash": "solid", "width": 1}, "y": [0.10941240338979824, 0.15900351345993508, 0.1590035134599351, 0.10941240338979825, 0.0598212933196614, 0.05982129331966139, 0.10941240338979823, 0.10941240338979824], "type": "scatter", "x": [0.43902555343406346, 0.4103941126856576, 0.3531312311888459, 0.32449979044044, 0.3531312311888458, 0.4103941126856576, 0.43902555343406346, 0.43902555343406346], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 8, "currentCount": 8}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "fillcolor": "rgba(0, 154, 250, 1.000)", "name": "y49", "fill": "tozeroy", "yaxis": "y", "legendgroup": "y49", "line": {"color": "rgba(0, 0, 0, 1)", "dash": "solid", "width": 1}, "y": [0.30854364123661465, 0.3581347513067515, 0.3581347513067515, 0.30854364123661465, 0.2589525311664778, 0.2589525311664778, 0.30854364123661465, 0.30854364123661465], "type": "scatter", "x": [0.4738283444547759, 0.44519690370637005, 0.3879340222095583, 0.3593025814611524, 0.38793402220955825, 0.44519690370637005, 0.4738283444547759, 0.4738283444547759], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 8, "currentCount": 8}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "fillcolor": "rgba(0, 154, 250, 1.000)", "name": "y50", "fill": "tozeroy", "yaxis": "y", "legendgroup": "y50", "line": {"color": "rgba(0, 0, 0, 1)", "dash": "solid", "width": 1}, "y": [-0.06799080388337328, -0.01839969381323643, -0.018399693813236424, -0.06799080388337327, -0.11758191395351011, -0.11758191395351013, -0.0679908038833733, -0.06799080388337328], "type": "scatter", "x": [0.4916980702151186, 0.46306662946671273, 0.405803747969901, 0.3771723072214951, 0.40580374796990093, 0.46306662946671273, 0.4916980702151186, 0.4916980702151186], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 8, "currentCount": 8}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "fillcolor": "rgba(0, 154, 250, 1.000)", "name": "y51", "fill": "tozeroy", "yaxis": "y", "legendgroup": "y51", "line": {"color": "rgba(0, 0, 0, 1)", "dash": "solid", "width": 1}, "y": [0.08659509669386216, 0.136186206763999, 0.136186206763999, 0.08659509669386217, 0.037003986623725324, 0.037003986623725324, 0.08659509669386214, 0.08659509669386216], "type": "scatter", "x": [0.3511771832033678, 0.3225457424549619, 0.26528286095815024, 0.23665142020974433, 0.2652828609581502, 0.3225457424549619, 0.3511771832033678, 0.3511771832033678], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 8, "currentCount": 8}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "fillcolor": "rgba(0, 154, 250, 1.000)", "name": "y52", "fill": "tozeroy", "yaxis": "y", "legendgroup": "y52", "line": {"color": "rgba(0, 0, 0, 1)", "dash": "solid", "width": 1}, "y": [0.12981547527366288, 0.17940658534379972, 0.17940658534379972, 0.12981547527366288, 0.08022436520352606, 0.08022436520352605, 0.12981547527366286, 0.12981547527366288], "type": "scatter", "x": [0.5208592188535237, 0.49222777810511786, 0.4349648966083062, 0.4063334558599003, 0.4349648966083061, 0.49222777810511786, 0.5208592188535237, 0.5208592188535237], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 8, "currentCount": 8}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "fillcolor": "rgba(0, 154, 250, 1.000)", "name": "y53", "fill": "tozeroy", "yaxis": "y", "legendgroup": "y53", "line": {"color": "rgba(0, 0, 0, 1)", "dash": "solid", "width": 1}, "y": [-0.4991592734140226, -0.4495681633438858, -0.4495681633438858, -0.4991592734140226, -0.5487503834841594, -0.5487503834841594, -0.4991592734140226, -0.4991592734140226], "type": "scatter", "x": [-0.08348772563965987, -0.11211916638806571, -0.16938204788487743, -0.1980134886332833, -0.16938204788487746, -0.11211916638806571, -0.08348772563965987, -0.08348772563965987], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 8, "currentCount": 8}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "fillcolor": "rgba(0, 154, 250, 1.000)", "name": "y54", "fill": "tozeroy", "yaxis": "y", "legendgroup": "y54", "line": {"color": "rgba(0, 0, 0, 1)", "dash": "solid", "width": 1}, "y": [-0.47799504830445494, -0.4284039382343181, -0.4284039382343181, -0.47799504830445494, -0.5275861583745918, -0.5275861583745918, -0.47799504830445494, -0.47799504830445494], "type": "scatter", "x": [-0.24416112880874313, -0.27279256955714903, -0.3300554510539607, -0.3586868918023666, -0.3300554510539608, -0.27279256955714903, -0.24416112880874313, -0.24416112880874313], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 8, "currentCount": 8}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "fillcolor": "rgba(0, 154, 250, 1.000)", "name": "y55", "fill": "tozeroy", "yaxis": "y", "legendgroup": "y55", "line": {"color": "rgba(0, 0, 0, 1)", "dash": "solid", "width": 1}, "y": [0.3743464483122608, 0.42393755838239766, 0.42393755838239766, 0.3743464483122608, 0.324755338242124, 0.324755338242124, 0.3743464483122608, 0.3743464483122608], "type": "scatter", "x": [-0.4791407811464763, -0.5077722218948821, -0.5650351033916938, -0.5936665441400997, -0.5650351033916938, -0.5077722218948821, -0.4791407811464763, -0.4791407811464763], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 8, "currentCount": 8}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "fillcolor": "rgba(0, 154, 250, 1.000)", "name": "y56", "fill": "tozeroy", "yaxis": "y", "legendgroup": "y56", "line": {"color": "rgba(0, 0, 0, 1)", "dash": "solid", "width": 1}, "y": [-0.2668863206898631, -0.2172952106197263, -0.2172952106197263, -0.2668863206898631, -0.31647743075999996, -0.31647743075999996, -0.2668863206898631, -0.2668863206898631], "type": "scatter", "x": [0.002741473870175759, -0.0258899668782301, -0.08315284837504183, -0.1117842891234477, -0.08315284837504186, -0.0258899668782301, 0.002741473870175759, 0.002741473870175759], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 8, "currentCount": 8}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "fillcolor": "rgba(0, 154, 250, 1.000)", "name": "y57", "fill": "tozeroy", "yaxis": "y", "legendgroup": "y57", "line": {"color": "rgba(0, 0, 0, 1)", "dash": "solid", "width": 1}, "y": [-0.2452302691457402, -0.19563915907560336, -0.19563915907560336, -0.2452302691457402, -0.29482137921587703, -0.29482137921587703, -0.24523026914574023, -0.2452302691457402], "type": "scatter", "x": [0.16351944241680993, 0.1348880016684041, 0.07762512017159234, 0.04899367942318647, 0.07762512017159232, 0.1348880016684041, 0.16351944241680993, 0.16351944241680993], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 8, "currentCount": 8}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "fillcolor": "rgba(0, 154, 250, 1.000)", "name": "y58", "fill": "tozeroy", "yaxis": "y", "legendgroup": "y58", "line": {"color": "rgba(0, 0, 0, 1)", "dash": "solid", "width": 1}, "y": [-0.08239682035514248, -0.032805710285005646, -0.03280571028500564, -0.08239682035514247, -0.13198793042527932, -0.13198793042527932, -0.0823968203551425, -0.08239682035514248], "type": "scatter", "x": [0.29734137143655837, 0.2687099306881525, 0.21144704919134077, 0.18281560844293487, 0.21144704919134072, 0.2687099306881525, 0.29734137143655837, 0.29734137143655837], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 8, "currentCount": 8}}}, {"showlegend": true, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "markerstrokesize": 0, "name": "y59", "zmin": null, "yaxis": "y", "legendgroup": "y59", "marker": {"symbol": "hexagon", "color": "rgba(0, 154, 250, 0.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 0}, "zmax": null, "y": [0.5008407265859774, 0.29814160002795576, 0.1740119149107544, 0.15445377321939707, -0.03979991145034603, -0.20618119656806255, -0.017061586513943825, -0.009578699539211356, 0.21353531907606055, 0.11888395951953057, 0.004881428724925285, 0.297306940414929, -0.11600219518494329, -0.285401492531836, -0.31015741184291634, -0.14692769796187244, 0.10941240338979824, 0.30854364123661465, -0.06799080388337328, 0.08659509669386216, 0.12981547527366288, -0.4991592734140226, -0.47799504830445494, 0.3743464483122608, -0.2668863206898631, -0.2452302691457402, -0.08239682035514248], "type": "scatter", "x": [0.153981983563171, 0.15089158909650843, 0.07955397807150719, 0.20973038876790737, 0.06710128071318579, 0.02396287890798541, 0.15530500396204763, -0.025624126997169493, -0.39336213020641564, -0.32262966676677757, -0.25387322890347896, -0.464767831243595, -0.10432902453215989, -0.13434603933404626, -0.25277190078940204, -0.19233248013385332, 0.3817626719372517, 0.41656546295796415, 0.43443518871830683, 0.2939143017065561, 0.463596337356712, -0.14075060713647158, -0.3014240103055549, -0.536403662643288, -0.05452140762663597, 0.1062565609199982, 0.24007848993974662], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 27, "currentCount": 27}}}], "config": {"showlegend": false, "xaxis": {"showticklabels": true, "gridwidth": 0.5, "tickvals": [], "range": [-0.7364036626432879, 0.663596337356712], "domain": [0.17322834645669297, 0.8267716535433071], "mirror": false, "tickangle": 0, "showline": false, "ticktext": [], "zeroline": false, "tickfont": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "zerolinecolor": "rgba(0, 0, 0, 1)", "anchor": "y", "visible": false, "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": "middle", "xanchor": "center", "rotation": 0, "y": 0.5008407265859774, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 14}, "yref": "y", "showarrow": false, "text": "1", "xref": "x", "x": 0.153981983563171}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 0.29814160002795576, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 14}, "yref": "y", "showarrow": false, "text": "2", "xref": "x", "x": 0.15089158909650843}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 0.1740119149107544, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 14}, "yref": "y", "showarrow": false, "text": "3", "xref": "x", "x": 0.07955397807150719}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 0.15445377321939707, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 14}, "yref": "y", "showarrow": false, "text": "4", "xref": "x", "x": 0.20973038876790737}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": -0.03979991145034603, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 14}, "yref": "y", "showarrow": false, "text": "5", "xref": "x", "x": 0.06710128071318579}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": -0.20618119656806255, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 14}, "yref": "y", "showarrow": false, "text": "6", "xref": "x", "x": 0.02396287890798541}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": -0.017061586513943825, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 14}, "yref": "y", "showarrow": false, "text": "7", "xref": "x", "x": 0.15530500396204763}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": -0.009578699539211356, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 14}, "yref": "y", "showarrow": false, "text": "8", "xref": "x", "x": -0.025624126997169493}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 0.21353531907606055, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 14}, "yref": "y", "showarrow": false, "text": "9", "xref": "x", "x": -0.39336213020641564}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 0.11888395951953057, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 14}, "yref": "y", "showarrow": false, "text": "10", "xref": "x", "x": -0.32262966676677757}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 0.004881428724925285, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 14}, "yref": "y", "showarrow": false, "text": "11", "xref": "x", "x": -0.25387322890347896}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 0.297306940414929, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 14}, "yref": "y", "showarrow": false, "text": "12", "xref": "x", "x": -0.464767831243595}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": -0.11600219518494329, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 14}, "yref": "y", "showarrow": false, "text": "13", "xref": "x", "x": -0.10432902453215989}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": -0.285401492531836, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 14}, "yref": "y", "showarrow": false, "text": "14", "xref": "x", "x": -0.13434603933404626}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": -0.31015741184291634, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 14}, "yref": "y", "showarrow": false, "text": "15", "xref": "x", "x": -0.25277190078940204}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": -0.14692769796187244, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 14}, "yref": "y", "showarrow": false, "text": "16", "xref": "x", "x": -0.19233248013385332}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 0.10941240338979824, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 14}, "yref": "y", "showarrow": false, "text": "17", "xref": "x", "x": 0.3817626719372517}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 0.30854364123661465, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 14}, "yref": "y", "showarrow": false, "text": "18", "xref": "x", "x": 0.41656546295796415}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": -0.06799080388337328, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 14}, "yref": "y", "showarrow": false, "text": "19", "xref": "x", "x": 0.43443518871830683}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 0.08659509669386216, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 14}, "yref": "y", "showarrow": false, "text": "20", "xref": "x", "x": 0.2939143017065561}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 0.12981547527366288, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 14}, "yref": "y", "showarrow": false, "text": "21", "xref": "x", "x": 0.463596337356712}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": -0.4991592734140226, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 14}, "yref": "y", "showarrow": false, "text": "22", "xref": "x", "x": -0.14075060713647158}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": -0.47799504830445494, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 14}, "yref": "y", "showarrow": false, "text": "23", "xref": "x", "x": -0.3014240103055549}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 0.3743464483122608, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 14}, "yref": "y", "showarrow": false, "text": "24", "xref": "x", "x": -0.536403662643288}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": -0.2668863206898631, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 14}, "yref": "y", "showarrow": false, "text": "25", "xref": "x", "x": -0.05452140762663597}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": -0.2452302691457402, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 14}, "yref": "y", "showarrow": false, "text": "26", "xref": "x", "x": 0.1062565609199982}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": -0.08239682035514248, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 14}, "yref": "y", "showarrow": false, "text": "27", "xref": "x", "x": 0.24007848993974662}], "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, "tickvals": [], "range": [-0.6991592734140226, 0.7008407265859775], "domain": [0.00984251968503937, 0.9901574803149606], "mirror": false, "tickangle": 0, "showline": false, "ticktext": [], "zeroline": false, "tickfont": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "zerolinecolor": "rgba(0, 0, 0, 1)", "anchor": "x", "visible": false, "ticks": "inside", "tickmode": "array", "linecolor": "rgba(0, 0, 0, 1)", "showgrid": true, "title": {"text": "", "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}}, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickcolor": "rgb(0, 0, 0)", "type": "linear"}, "width": 1056.265625}}