Решение головоломок судоку¶
В данном примере продемонстрировано, как найти решение головоломки судоку, используя методы смешанного целочисленного линейного программирования (англ. Mixed Integer Linear Programming, MILP) и программирования в ограничениях (англ. Constraint Programming, CP).
В этом примере мы воспользуемся функциями библиотеки JuMP.jl для формулировки оптимизационной задачи, библиотекой линейной оптимизации HiGHS.jl, библиотекой генерации случайных чисел Random.jl и библиотекой Plots.jl для визуализации результатов.
Если в вашем окружении не установлена последняя версия пакета JuMP
, раскомментируйте и запустите ячейку ниже:
Для запуска новой версии библиотеки после завершения установки нажмите на кнопку «Личный кабинет»:
Затем нажмите на кнопку «Стоп»:
Перезапустите сессию нажатием кнопки «Старт Engee»:
Судоку — это логическая комбинаторная головоломка с размещением чисел. Цель состоит в том, чтобы заполнить сетку 9x9 цифрами так, чтобы каждый столбец, каждая строка и каждая из девяти подсеток 3x3 содержали все цифры от 1 до 9.
Правила:
- Каждая строка должна содержать цифры от 1 до 9 без повторений.
- Каждый столбец должен содержать цифры от 1 до 9 без повторений.
- Каждая подсетка 3х3 должна содержать цифры от 1 до 9 без повторений.
Для того чтобы решение головоломки было возможно, предоставлены первоначальные подсказки:
Головоломки судоку варьируются от простых до чрезвычайно сложных, причем сложность часто определяется количеством предоставленных первоначальных подсказок и сложностью стратегий, необходимых для их решения. Правильно составленная головоломка судоку должна иметь только одно решение.
Подключите библиотеку JuMP
:
Подключите библиотеку решателя HiGHS
:
Подключите библиотеку построения графиков Plots
:
Подключите библиотеку генерации случайных чисел Random
:
Создание функции визуализации судоку¶
Создайте функцию plot_sudoku()
, визуализирующую судоку:
Out[0]:
plot_sudoku (generic function with 1 method)
Мы будем использовать данную функцию для визуализации судоку в этом примере.
Генерация головоломок судоку¶
В данном разделе мы напишем программу, которая будет генерировать головоломки судоку для решения.
Создайте функцию generate_full_grid()
, отвечающую за построение сетки судоку:
Out[0]:
generate_full_grid (generic function with 1 method)
Создайте рекурсивную функцию fill_grid!()
, заполняющую сетку судоку числами:
Out[0]:
fill_grid! (generic function with 1 method)
Данная функция реализует алгоритм обратного отслеживания для заполнения сетки судоку допустимыми числами.
Создайте функцию is_valid()
, проверяющую допустимо ли размещение заданного числа (num
) в определенной ячейке (строке, столбце) сетки судоку:
Out[0]:
is_valid (generic function with 1 method)
Эта функция имеет решающее значение для соблюдения всех трех правил в процессе заполнения сетки судоку.
Создайте функцию remove_numbers!()
, отвечающую за удаление чисел из заполненной сетки судоку, для создания головоломки:
Out[0]:
remove_numbers! (generic function with 1 method)
Это ключевая часть создания головоломок судоку разного уровня сложности, поскольку количество удаленных ячеек может повлиять на сложность головоломки.
Создайте рекурсивную функцию count_solutions()
, подсчитывающую количество допустимых решений для заданной сетки судоку:
Out[0]:
count_solutions (generic function with 2 methods)
Эта функция имеет решающее значение для обеспечения того, чтобы удаление чисел из сетки (в функции remove_numbers!
) не приводило к появлению множественных решений.
Создайте функцию generate_sudoku_puzzle()
, генерирующую судоку с заданным количеством подсказок:
Out[0]:
generate_sudoku_puzzle (generic function with 1 method)
Теоретическое минимальное количество подсказок для головоломки судоку с единственным решением — 17.
Написанная нами программа может стабильно генерировать судоку с единственным решением, где минимальное количество подсказок составляет где-то между 20 и 30, что является более чем достаточным для данного примера.
Сгенерируйте судоку с 25 подсказками:
Визуализируйте судоку с подсказками:
Формулировка задачи смешанного целочисленного линейного программирования¶
Решим задачу с использованием смешанного целочисленного линейного программирования. Цель состоит в том, чтобы смоделировать головоломку как задачу осуществимости, где каждая ячейка должна удовлетворять определенным ограничениям.
Создайте оптимизационную задачу с помощью функции Model()
и укажите название решателя в скобках:
Out[0]:
A JuMP Model
├ solver: HiGHS
├ objective_sense: FEASIBILITY_SENSE
├ num_variables: 0
├ num_constraints: 0
└ Names registered in the model: none
Создайте переменную x
, представляющую собой трехмерный массив $x(i, j, k)$, где i
, j
и k
находятся в диапазоне от 1 до 9. Аргумент Bin
указывает на то, что переменная x
является двоичной.
Массив x
состоит из:
i
(индекс строки): представляет номер строки в сетке судоку в диапазоне от 1 до 9
j
(индекс столбца): представляет номер столбца в сетке судоку, также в диапазоне от 1 до 9
k
(индекс цифры): представляет потенциальную цифру (от 1 до 9), которую можно поместить в ячейку (i
, j
)
Таким образом, двоичное представление x
означает что:
$x(3, 3, 8) = 1$ — цифра 8 помещена в ячейку, расположенную в строке 3, столбце 3
$x(3, 3, 8)$ = 0 — цифра 8 не помещена в эту ячейку
Используя циклы for
для перебора строк i
и столбцов j
, создайте следующее условие для оптимизационной задачи:
$$\sum_{k=1}^{9} x_{i, j, k} = 1$$
Данное условие гарантирует, что каждая из ячеек в сетке судоку содержит ровно одно число от 1 до 9.
Используя циклы for
для перебора строк i
и столбцов j
, создайте следующие условия для оптимизационной задачи:
$$\sum_{j=1}^{9} x_{ind, j, k} = 1$$
Это ограничение гарантирует, что каждая цифра k
появляется ровно один раз в каждой строке ind
.
$$\sum_{i=1}^{9} x_{i, ind, k} = 1$$
Это ограничение гарантирует, что каждая цифра k
появляется ровно один раз в каждом столбце ind
.
Код в вышестоящей ячейке добавляет в модель 162 ограничения:
- 81 ограничение для строк (9 строк × 9 цифр)
- 81 ограничение для столбцов (9 столбцов × 9 цифр)
С помощью этих двух условий мы выполнили соблюдение первых двух правил судоку:
- Каждая строка должна содержать цифры от 1 до 9 без повторений
- Каждый столбец должен содержать цифры от 1 до 9 без повторений
Используя циклы for
, создайте следующее условие для оптимизационной задачи:
$$\sum_{r=i}^{i+2} \sum_{c=j}^{j+2} x_{r, c, k} = 1$$
Самый внешний цикл для i
в 1:3:7 перебирает строки 1, 4 и 7, являющиеся начальными строками каждой подсетки 3x3.
Средний цикл для j
в 1:3:7 перебирает столбцы 1, 4 и 7, которые являющиеся начальными столбцами каждой подсетки 3x3.
Самый внутренний цикл для k
в 1:9 перебирает все возможные цифры (от 1 до 9).
Переменные r
и c
позволяют определить ограничения для каждой подсетки 3x3 в судоку.
r
- представляет индексы строк в подсетке 3x3 и принимает значения от i
до i+2
c
- представляет индексы столбцов в подсетке 3x3 и принимает значения от j
до j+2
Код в вышестоящей ячейке добавляет в модель 81 ограничение (9 цифр для каждой из 9 подсеток), гарантируя, что каждая подсетка 3х3 содержит все цифры от 1 до 9 без повторений. Так мы выполняем третье правило головоломок судоку.
Используя циклы for
для перебора ячеек, проставьте значения 1 (true
) в двоичной переменной x
в ячейках, где есть первоначальные подсказки (sudoku_puzzle
), с помощью функции fix()
:
Вы создали условия выполнения всех трех правил решения головоломок и внесли подсказки в переменную x
. Теперь вы можете решить оптимизационную задачу:
Running HiGHS 1.7.2 (git hash: 5ce7a2753): Copyright (c) 2024 HiGHS under MIT licence terms
Coefficient ranges:
Matrix [1e+00, 1e+00]
Cost [0e+00, 0e+00]
Bound [1e+00, 1e+00]
RHS [1e+00, 1e+00]
Presolving model
200 rows, 184 cols, 736 nonzeros 0s
0 rows, 0 cols, 0 nonzeros 0s
Presolve: Optimal
Solving report
Status Optimal
Primal bound 0
Dual bound 0
Gap 0% (tolerance: 0.01%)
Solution status feasible
0 (objective)
0 (bound viol.)
0 (int. viol.)
0 (row viol.)
Timing 0.00 (total)
0.00 (presolve)
0.00 (postsolve)
Nodes 0
LP iterations 0 (total)
0 (strong br.)
0 (separation)
0 (heuristics)
Выведите статус результата работы решателя:
Статус: OPTIMAL
Оптимальное решение найдено
Статус OPTIMAL означает, что решатель нашел глобальное оптимальное решение задачи.
Сохраните значения двоичной переменной x
в переменной x_val
:
Out[0]:
9×9×9 Array{Float64, 3}:
[:, :, 1] =
0.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.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 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 1.0
0.0 0.0 0.0 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 0.0 0.0 0.0 0.0 1.0 0.0 0.0
[:, :, 2] =
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 1.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 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 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 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.0 0.0
[:, :, 3] =
0.0 0.0 0.0 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 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 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.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 1.0 0.0
0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0
[:, :, 4] =
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 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.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 0.0 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 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
[:, :, 5] =
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 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.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 1.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 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 0.0 0.0
[:, :, 6] =
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 1.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 1.0 0.0
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.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 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.0
[:, :, 7] =
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 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.0 0.0
0.0 0.0 0.0 1.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 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.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.0
[:, :, 8] =
0.0 0.0 0.0 1.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 1.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 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 1.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 1.0 0.0
[:, :, 9] =
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 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.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 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 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.0
1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
Вы можете убедиться в том, что каждому значению k
из решения была присвоена позиция в сетке переменной x_val
.
Создайте новую матрицу 9x9, заполненную нулями, которая будет использована для преобразования результатов из двоичного формата в стандартный формат сетки судоку. Аргумент Int
указывает на то, что значения матрицы целые числа.
Используя циклы for
для перебора всех ячейк и возможных цифр в сетке судоку, преобразуйте значения трехмерного массива x_val
в двухмерный массив целых чисел sol_milp
.
Теперь переменная sol_milp
содержит фактическое решение головоломки в формате двухмерного массива целых чисел.
Визуализируйте результаты:
Мы продемонстрировали решение задачи с помощью смешанного целочисленного линейного программирования. Решатель находит возможную конфигурацию чисел, которая соответствует правилам решения судоку, сформулированным как ограничения по строкам, столбцам и подсеткам.
Формулировка задачи программирования в ограничениях¶
Вы также можете смоделировать данную задачу, используя программирование с ограничениями. Применим условие AllDifferent()
(«все разные»), которое гласит, что никакие два элемента вектора не могут принимать одно и то же значение.
Создайте оптимизационную задачу с помощью функции Model()
и укажите название решателя в скобках:
Out[0]:
A JuMP Model
├ solver: HiGHS
├ objective_sense: FEASIBILITY_SENSE
├ num_variables: 0
├ num_constraints: 0
└ Names registered in the model: none
Создайте переменную sudoku_cp
, содержащую двухмерный массив $x(i, j)$. Каждая переменная находится в диапазоне от 1 до 9. Аргумент Int
указывает, что значения переменных являются целыми числами.
Задайте условие, применимое к каждой строке i
сетки судоку. MOI.AllDifferent(9)
гарантирует, что все элементы в строке i
различны.
Это означает, что каждое число от 1 до 9 появляется ровно один раз в каждой строке.
Задайте условие, применимое к каждому столбцу j
сетки судоку. MOI.AllDifferent(9)
гарантирует, что все элементы в столбце j
различны.
Это означает, что каждое число от 1 до 9 появляется ровно один раз в каждом столбце.
Задайте условие, применимое к каждой подсетке 3x3 в судоку. MOI.AllDifferent(9)
гарантирует, что все элементы в каждой из подсеток различны. Это означает, что каждое число от 1 до 9 появляется ровно один раз в каждой подсетке 3x3.
Для каждой из ячеек [i, j]
перенесите изначальные подсказки из sudoku_puzzle
в переменную x
с помощью функции fix
:
Вы создали условия выполнения всех трех правил решения головоломок и внесли подсказки в переменную x
. Теперь вы можете решить оптимизационную задачу:
Running HiGHS 1.7.2 (git hash: 5ce7a2753): Copyright (c) 2024 HiGHS under MIT licence terms
Coefficient ranges:
Matrix [1e+00, 9e+00]
Cost [0e+00, 0e+00]
Bound [1e+00, 9e+00]
RHS [1e+00, 1e+00]
Presolving model
747 rows, 1568 cols, 5788 nonzeros 0s
504 rows, 1568 cols, 4108 nonzeros 0s
Objective function is integral with scale 1
Solving MIP model with:
504 rows
1568 cols (1512 binary, 56 integer, 0 implied int., 0 continuous)
4108 nonzeros
Nodes | B&B Tree | Objective Bounds | Dynamic Constraints | Work
Proc. InQueue | Leaves Expl. | BestBound BestSol Gap | Cuts InLp Confl. | LpIters Time
0 0 0 0.00% 0 inf inf 0 0 0 0 0.0s
0 0 0 0.00% 0 inf inf 0 0 3 831 0.0s
10.4% inactive integer columns, restarting
Model after restart has 302 rows, 570 cols (514 bin., 56 int., 0 impl., 0 cont.), and 2281 nonzeros
0 0 0 0.00% 0 inf inf 13 0 0 8462 1.7s
Solving report
Status Optimal
Primal bound 0
Dual bound 0
Gap 0% (tolerance: 0.01%)
Solution status feasible
0 (objective)
0 (bound viol.)
1.34559030585e-13 (int. viol.)
0 (row viol.)
Timing 1.77 (total)
0.08 (presolve)
0.00 (postsolve)
Nodes 1
LP iterations 8783 (total)
0 (strong br.)
1996 (separation)
5635 (heuristics)
Выведите статус результата работы решателя:
Статус: OPTIMAL
Оптимальное решение найдено
Статус OPTIMAL означает, что решатель нашел глобальное оптимальное решение задачи.
Сохраните результаты в переменной. Полученные значения имеют тип Float64
. Вы можете использовать функцию round
вместе с аргументом Int
, чтобы конвертировать значения в целые числа.
Визуализируйте полученное решение судоку:
Вы можете сравнить решения полученные путем использования смешанного целочисленного линейного программирования и путем программирования в ограничениях:
Результаты обоих методов решения головоломки совпадают.
В данном примере мы решили головоломку судоку с помощью двух разных подходов — смешанного целочисленного линейного программирования (англ. Mixed Integer Linear Programming, MILP) и программирования в ограничениях (англ. Constraint Programming, CP). Оба подхода могут решить головоломку, но они формулируют и решают задачу принципиально по-разному, демонстрируя различные характеристики в моделировании и решении задач. В рамках решения задачи продемонстрированной в данном примере мы можем выделить некоторые отличия между этими подходами.
Смешанное целочисленное линейное программирование:
- Использует двоичные переменные $x(i, j, k)$
@variable(sudoku_milp, x[i = 1:9, j = 1:9, k = 1:9], Bin)
- Использует линейные ограничения для обеспечения соблюдения правил судоку
@constraint(sudoku_milp, sum(x[i, j, k] для k в 1:9) == 1)
- Более крупная модель с большим количеством переменных, но с более простыми ограничениями
- Как правило, более устойчиво к небольшим изменениям модели и лучше масштабируется с увеличением размера задачи
Программирование в ограничениях:
- Использует целочисленные переменные $x(i, j)$
@variable(sudoku_cp, 1 <= x[1:9, 1:9] <= 9, Int)
- Использует глобальные ограничения, такие как
AllDifferent
, для обеспечения соблюдения правил судоку
@constraint(sudoku_cp, [i = 1:9], x[i, :] в MOI.AllDifferent(9))
- Меньшая модель с меньшим количеством переменных, но с более сложными ограничениями
- Может быть более чувствительно к размеру и структуре задачи
На практике выбор между смешанным целочисленным линейным программированием и программированием в ограничениях часто зависит от конкретных характеристик задачи, причем для некоторых задач один метод лучше подходит, чем другой. В некоторых случаях эффективными могут оказаться гибридные подходы, сочетающие оба метода.
{"id": "7925004c-4ad4-48f9-aae8-c12460e4ba0b", "data": [{"showlegend": true, "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": 2}, "y": [0, 9], "type": "scatter", "x": [0, 0], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": true, "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": 2}, "y": [0, 0], "type": "scatter", "x": [0, 9], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": true, "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, 9], "type": "scatter", "x": [1, 1], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": true, "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": [1, 1], "type": "scatter", "x": [0, 9], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": true, "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, 9], "type": "scatter", "x": [2, 2], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": true, "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": [2, 2], "type": "scatter", "x": [0, 9], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": true, "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": 2}, "y": [0, 9], "type": "scatter", "x": [3, 3], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y8", "zmin": null, "yaxis": "y", "legendgroup": "y8", "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 2}, "y": [3, 3], "type": "scatter", "x": [0, 9], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": true, "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, 9], "type": "scatter", "x": [4, 4], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": true, "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": [4, 4], "type": "scatter", "x": [0, 9], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": true, "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, 9], "type": "scatter", "x": [5, 5], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": true, "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": [5, 5], "type": "scatter", "x": [0, 9], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": true, "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": 2}, "y": [0, 9], "type": "scatter", "x": [6, 6], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": true, "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": 2}, "y": [6, 6], "type": "scatter", "x": [0, 9], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": true, "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, 9], "type": "scatter", "x": [7, 7], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": true, "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": [7, 7], "type": "scatter", "x": [0, 9], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": true, "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, 9], "type": "scatter", "x": [8, 8], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": true, "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": [8, 8], "type": "scatter", "x": [0, 9], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": true, "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": 2}, "y": [0, 9], "type": "scatter", "x": [9, 9], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": true, "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": 2}, "y": [9, 9], "type": "scatter", "x": [0, 9], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}], "config": {"showlegend": false, "xaxis": {"tickangle": 0, "showline": false, "gridcolor": "rgba(0, 0, 0, 0.1)", "showticklabels": false, "gridwidth": 0.5, "visible": true, "ticks": "inside", "range": [-2.7028915662650617, 11.702891566265059], "domain": [0.006561679790026247, 0.9934383202099737], "linecolor": "rgba(0, 0, 0, 1)", "showgrid": false, "zeroline": false, "type": "linear", "title": {"text": ""}, "zerolinecolor": "rgba(0, 0, 0, 1)", "mirror": false, "anchor": "y"}, "paper_bgcolor": "rgba(255, 255, 255, 1.000)", "annotations": [{"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 8.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "2", "xref": "x", "x": 0.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 8.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "8", "xref": "x", "x": 3.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 8.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "6", "xref": "x", "x": 4.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 8.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "9", "xref": "x", "x": 6.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 7.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "7", "xref": "x", "x": 4.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 7.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "4", "xref": "x", "x": 7.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 6.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "7", "xref": "x", "x": 2.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 5.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "5", "xref": "x", "x": 0.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 5.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "3", "xref": "x", "x": 2.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 5.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "6", "xref": "x", "x": 7.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 4.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "4", "xref": "x", "x": 2.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 4.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "9", "xref": "x", "x": 7.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 4.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "8", "xref": "x", "x": 8.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 3.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "8", "xref": "x", "x": 0.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 3.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "9", "xref": "x", "x": 2.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 3.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "2", "xref": "x", "x": 3.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 3.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "3", "xref": "x", "x": 4.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 2.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "8", "xref": "x", "x": 4.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 2.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "1", "xref": "x", "x": 5.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 2.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "7", "xref": "x", "x": 8.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 1.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "5", "xref": "x", "x": 2.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 0.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "9", "xref": "x", "x": 0.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 0.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "3", "xref": "x", "x": 3.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 0.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "5", "xref": "x", "x": 5.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 0.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "1", "xref": "x", "x": 6.5}], "height": 400, "margin": {"l": 0, "b": 20, "r": 0, "t": 20}, "plot_bgcolor": "rgba(255, 255, 255, 1.000)", "yaxis": {"tickangle": 0, "showline": false, "gridcolor": "rgba(0, 0, 0, 0.1)", "showticklabels": false, "gridwidth": 0.5, "visible": true, "ticks": "inside", "range": [-0.27000000000000046, 9.27], "domain": [0.009842519685039424, 0.9901574803149606], "linecolor": "rgba(0, 0, 0, 1)", "showgrid": false, "zeroline": false, "type": "linear", "title": {"text": ""}, "zerolinecolor": "rgba(0, 0, 0, 1)", "mirror": false, "anchor": "x"}, "width": 983.984375}}
{"id": "d0ce3730-b622-411d-b39c-57600fb5d20f", "data": [{"showlegend": true, "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": 2}, "y": [0, 9], "type": "scatter", "x": [0, 0], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": true, "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": 2}, "y": [0, 0], "type": "scatter", "x": [0, 9], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": true, "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, 9], "type": "scatter", "x": [1, 1], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": true, "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": [1, 1], "type": "scatter", "x": [0, 9], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": true, "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, 9], "type": "scatter", "x": [2, 2], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": true, "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": [2, 2], "type": "scatter", "x": [0, 9], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": true, "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": 2}, "y": [0, 9], "type": "scatter", "x": [3, 3], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y8", "zmin": null, "yaxis": "y", "legendgroup": "y8", "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 2}, "y": [3, 3], "type": "scatter", "x": [0, 9], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": true, "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, 9], "type": "scatter", "x": [4, 4], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": true, "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": [4, 4], "type": "scatter", "x": [0, 9], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": true, "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, 9], "type": "scatter", "x": [5, 5], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": true, "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": [5, 5], "type": "scatter", "x": [0, 9], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": true, "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": 2}, "y": [0, 9], "type": "scatter", "x": [6, 6], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": true, "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": 2}, "y": [6, 6], "type": "scatter", "x": [0, 9], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": true, "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, 9], "type": "scatter", "x": [7, 7], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": true, "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": [7, 7], "type": "scatter", "x": [0, 9], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": true, "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, 9], "type": "scatter", "x": [8, 8], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": true, "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": [8, 8], "type": "scatter", "x": [0, 9], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": true, "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": 2}, "y": [0, 9], "type": "scatter", "x": [9, 9], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": true, "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": 2}, "y": [9, 9], "type": "scatter", "x": [0, 9], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}], "config": {"showlegend": false, "xaxis": {"tickangle": 0, "showline": false, "gridcolor": "rgba(0, 0, 0, 0.1)", "showticklabels": false, "gridwidth": 0.5, "visible": true, "ticks": "inside", "range": [-2.7028915662650617, 11.702891566265059], "domain": [0.006561679790026247, 0.9934383202099737], "linecolor": "rgba(0, 0, 0, 1)", "showgrid": false, "zeroline": false, "type": "linear", "title": {"text": ""}, "zerolinecolor": "rgba(0, 0, 0, 1)", "mirror": false, "anchor": "y"}, "paper_bgcolor": "rgba(255, 255, 255, 1.000)", "annotations": [{"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 8.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "2", "xref": "x", "x": 0.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 8.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "4", "xref": "x", "x": 1.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 8.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "1", "xref": "x", "x": 2.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 8.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "8", "xref": "x", "x": 3.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 8.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "6", "xref": "x", "x": 4.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 8.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "3", "xref": "x", "x": 5.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 8.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "9", "xref": "x", "x": 6.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 8.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "7", "xref": "x", "x": 7.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 8.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "5", "xref": "x", "x": 8.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 7.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "3", "xref": "x", "x": 0.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 7.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "5", "xref": "x", "x": 1.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 7.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "8", "xref": "x", "x": 2.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 7.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "1", "xref": "x", "x": 3.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 7.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "7", "xref": "x", "x": 4.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 7.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "9", "xref": "x", "x": 5.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 7.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "6", "xref": "x", "x": 6.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 7.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "4", "xref": "x", "x": 7.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 7.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "2", "xref": "x", "x": 8.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 6.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "6", "xref": "x", "x": 0.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 6.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "9", "xref": "x", "x": 1.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 6.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "7", "xref": "x", "x": 2.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 6.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "4", "xref": "x", "x": 3.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 6.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "5", "xref": "x", "x": 4.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 6.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "2", "xref": "x", "x": 5.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 6.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "8", "xref": "x", "x": 6.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 6.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "1", "xref": "x", "x": 7.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 6.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "3", "xref": "x", "x": 8.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 5.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "5", "xref": "x", "x": 0.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 5.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "1", "xref": "x", "x": 1.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 5.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "3", "xref": "x", "x": 2.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 5.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "7", "xref": "x", "x": 3.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 5.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "9", "xref": "x", "x": 4.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 5.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "8", "xref": "x", "x": 5.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 5.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "2", "xref": "x", "x": 6.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 5.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "6", "xref": "x", "x": 7.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 5.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "4", "xref": "x", "x": 8.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 4.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "7", "xref": "x", "x": 0.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 4.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "2", "xref": "x", "x": 1.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 4.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "4", "xref": "x", "x": 2.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 4.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "5", "xref": "x", "x": 3.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 4.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "1", "xref": "x", "x": 4.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 4.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "6", "xref": "x", "x": 5.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 4.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "3", "xref": "x", "x": 6.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 4.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "9", "xref": "x", "x": 7.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 4.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "8", "xref": "x", "x": 8.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 3.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "8", "xref": "x", "x": 0.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 3.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "6", "xref": "x", "x": 1.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 3.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "9", "xref": "x", "x": 2.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 3.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "2", "xref": "x", "x": 3.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 3.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "3", "xref": "x", "x": 4.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 3.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "4", "xref": "x", "x": 5.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 3.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "7", "xref": "x", "x": 6.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 3.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "5", "xref": "x", "x": 7.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 3.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "1", "xref": "x", "x": 8.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 2.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "4", "xref": "x", "x": 0.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 2.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "3", "xref": "x", "x": 1.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 2.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "6", "xref": "x", "x": 2.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 2.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "9", "xref": "x", "x": 3.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 2.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "8", "xref": "x", "x": 4.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 2.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "1", "xref": "x", "x": 5.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 2.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "5", "xref": "x", "x": 6.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 2.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "2", "xref": "x", "x": 7.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 2.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "7", "xref": "x", "x": 8.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 1.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "1", "xref": "x", "x": 0.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 1.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "8", "xref": "x", "x": 1.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 1.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "5", "xref": "x", "x": 2.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 1.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "6", "xref": "x", "x": 3.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 1.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "2", "xref": "x", "x": 4.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 1.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "7", "xref": "x", "x": 5.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 1.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "4", "xref": "x", "x": 6.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 1.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "3", "xref": "x", "x": 7.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 1.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "9", "xref": "x", "x": 8.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 0.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "9", "xref": "x", "x": 0.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 0.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "7", "xref": "x", "x": 1.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 0.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "2", "xref": "x", "x": 2.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 0.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "3", "xref": "x", "x": 3.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 0.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "4", "xref": "x", "x": 4.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 0.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "5", "xref": "x", "x": 5.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 0.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "1", "xref": "x", "x": 6.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 0.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "8", "xref": "x", "x": 7.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 0.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "6", "xref": "x", "x": 8.5}], "height": 400, "margin": {"l": 0, "b": 20, "r": 0, "t": 20}, "plot_bgcolor": "rgba(255, 255, 255, 1.000)", "yaxis": {"tickangle": 0, "showline": false, "gridcolor": "rgba(0, 0, 0, 0.1)", "showticklabels": false, "gridwidth": 0.5, "visible": true, "ticks": "inside", "range": [-0.27000000000000046, 9.27], "domain": [0.009842519685039424, 0.9901574803149606], "linecolor": "rgba(0, 0, 0, 1)", "showgrid": false, "zeroline": false, "type": "linear", "title": {"text": ""}, "zerolinecolor": "rgba(0, 0, 0, 1)", "mirror": false, "anchor": "x"}, "width": 983.984375}}
{"id": "21076e3c-2bf1-4c57-a704-7ef1ee6c6dd1", "data": [{"showlegend": true, "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": 2}, "y": [0, 9], "type": "scatter", "x": [0, 0], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": true, "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": 2}, "y": [0, 0], "type": "scatter", "x": [0, 9], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": true, "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, 9], "type": "scatter", "x": [1, 1], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": true, "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": [1, 1], "type": "scatter", "x": [0, 9], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": true, "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, 9], "type": "scatter", "x": [2, 2], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": true, "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": [2, 2], "type": "scatter", "x": [0, 9], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": true, "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": 2}, "y": [0, 9], "type": "scatter", "x": [3, 3], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y8", "zmin": null, "yaxis": "y", "legendgroup": "y8", "zmax": null, "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 2}, "y": [3, 3], "type": "scatter", "x": [0, 9], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": true, "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, 9], "type": "scatter", "x": [4, 4], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": true, "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": [4, 4], "type": "scatter", "x": [0, 9], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": true, "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, 9], "type": "scatter", "x": [5, 5], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": true, "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": [5, 5], "type": "scatter", "x": [0, 9], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": true, "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": 2}, "y": [0, 9], "type": "scatter", "x": [6, 6], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": true, "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": 2}, "y": [6, 6], "type": "scatter", "x": [0, 9], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": true, "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, 9], "type": "scatter", "x": [7, 7], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": true, "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": [7, 7], "type": "scatter", "x": [0, 9], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": true, "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, 9], "type": "scatter", "x": [8, 8], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": true, "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": [8, 8], "type": "scatter", "x": [0, 9], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": true, "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": 2}, "y": [0, 9], "type": "scatter", "x": [9, 9], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": true, "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": 2}, "y": [9, 9], "type": "scatter", "x": [0, 9], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}], "config": {"showlegend": false, "xaxis": {"tickangle": 0, "showline": false, "gridcolor": "rgba(0, 0, 0, 0.1)", "showticklabels": false, "gridwidth": 0.5, "visible": true, "ticks": "inside", "range": [-2.7028915662650617, 11.702891566265059], "domain": [0.006561679790026247, 0.9934383202099737], "linecolor": "rgba(0, 0, 0, 1)", "showgrid": false, "zeroline": false, "type": "linear", "title": {"text": ""}, "zerolinecolor": "rgba(0, 0, 0, 1)", "mirror": false, "anchor": "y"}, "paper_bgcolor": "rgba(255, 255, 255, 1.000)", "annotations": [{"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 8.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "2", "xref": "x", "x": 0.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 8.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "4", "xref": "x", "x": 1.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 8.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "1", "xref": "x", "x": 2.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 8.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "8", "xref": "x", "x": 3.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 8.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "6", "xref": "x", "x": 4.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 8.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "3", "xref": "x", "x": 5.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 8.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "9", "xref": "x", "x": 6.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 8.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "7", "xref": "x", "x": 7.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 8.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "5", "xref": "x", "x": 8.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 7.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "3", "xref": "x", "x": 0.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 7.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "5", "xref": "x", "x": 1.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 7.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "8", "xref": "x", "x": 2.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 7.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "1", "xref": "x", "x": 3.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 7.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "7", "xref": "x", "x": 4.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 7.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "9", "xref": "x", "x": 5.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 7.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "6", "xref": "x", "x": 6.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 7.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "4", "xref": "x", "x": 7.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 7.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "2", "xref": "x", "x": 8.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 6.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "6", "xref": "x", "x": 0.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 6.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "9", "xref": "x", "x": 1.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 6.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "7", "xref": "x", "x": 2.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 6.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "4", "xref": "x", "x": 3.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 6.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "5", "xref": "x", "x": 4.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 6.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "2", "xref": "x", "x": 5.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 6.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "8", "xref": "x", "x": 6.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 6.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "1", "xref": "x", "x": 7.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 6.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "3", "xref": "x", "x": 8.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 5.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "5", "xref": "x", "x": 0.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 5.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "1", "xref": "x", "x": 1.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 5.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "3", "xref": "x", "x": 2.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 5.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "7", "xref": "x", "x": 3.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 5.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "9", "xref": "x", "x": 4.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 5.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "8", "xref": "x", "x": 5.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 5.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "2", "xref": "x", "x": 6.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 5.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "6", "xref": "x", "x": 7.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 5.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "4", "xref": "x", "x": 8.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 4.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "7", "xref": "x", "x": 0.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 4.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "2", "xref": "x", "x": 1.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 4.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "4", "xref": "x", "x": 2.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 4.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "5", "xref": "x", "x": 3.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 4.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "1", "xref": "x", "x": 4.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 4.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "6", "xref": "x", "x": 5.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 4.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "3", "xref": "x", "x": 6.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 4.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "9", "xref": "x", "x": 7.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 4.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "8", "xref": "x", "x": 8.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 3.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "8", "xref": "x", "x": 0.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 3.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "6", "xref": "x", "x": 1.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 3.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "9", "xref": "x", "x": 2.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 3.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "2", "xref": "x", "x": 3.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 3.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "3", "xref": "x", "x": 4.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 3.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "4", "xref": "x", "x": 5.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 3.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "7", "xref": "x", "x": 6.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 3.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "5", "xref": "x", "x": 7.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 3.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "1", "xref": "x", "x": 8.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 2.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "4", "xref": "x", "x": 0.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 2.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "3", "xref": "x", "x": 1.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 2.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "6", "xref": "x", "x": 2.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 2.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "9", "xref": "x", "x": 3.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 2.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "8", "xref": "x", "x": 4.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 2.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "1", "xref": "x", "x": 5.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 2.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "5", "xref": "x", "x": 6.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 2.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "2", "xref": "x", "x": 7.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 2.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "7", "xref": "x", "x": 8.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 1.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "1", "xref": "x", "x": 0.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 1.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "8", "xref": "x", "x": 1.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 1.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "5", "xref": "x", "x": 2.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 1.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "6", "xref": "x", "x": 3.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 1.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "2", "xref": "x", "x": 4.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 1.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "7", "xref": "x", "x": 5.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 1.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "4", "xref": "x", "x": 6.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 1.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "3", "xref": "x", "x": 7.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 1.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "9", "xref": "x", "x": 8.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 0.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "9", "xref": "x", "x": 0.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 0.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "7", "xref": "x", "x": 1.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 0.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "2", "xref": "x", "x": 2.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 0.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "3", "xref": "x", "x": 3.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 0.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "4", "xref": "x", "x": 4.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 0.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "5", "xref": "x", "x": 5.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 0.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "1", "xref": "x", "x": 6.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 0.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "8", "xref": "x", "x": 7.5}, {"yanchor": "middle", "xanchor": "center", "rotation": 0, "y": 0.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "y", "showarrow": false, "text": "6", "xref": "x", "x": 8.5}], "height": 400, "margin": {"l": 0, "b": 20, "r": 0, "t": 20}, "plot_bgcolor": "rgba(255, 255, 255, 1.000)", "yaxis": {"tickangle": 0, "showline": false, "gridcolor": "rgba(0, 0, 0, 0.1)", "showticklabels": false, "gridwidth": 0.5, "visible": true, "ticks": "inside", "range": [-0.27000000000000046, 9.27], "domain": [0.009842519685039424, 0.9901574803149606], "linecolor": "rgba(0, 0, 0, 1)", "showgrid": false, "zeroline": false, "type": "linear", "title": {"text": ""}, "zerolinecolor": "rgba(0, 0, 0, 1)", "mirror": false, "anchor": "x"}, "width": 983.984375}}