Преобразование Фурье – это формула, при помощи которой выполняется перевод одного вектора чисел в другой. Первый вектор состоит из набора значений сигнала, взятых в отдельные моменты времени. Второй вектор состоит из дискретного набора значений, характеризующих амплитуду и частоту гармонических сигналов, из которых можно составить наблюдаемый сигнал путем его реконструкции во времени или в пространстве.
Рассмотрим вектор $x$, включающий $n$ измерений, взятых через одинаковые интервалы времени. Преобразование Фурье такого вектора описано следующим образом:
$$y_{k+1} = \sum_{j=0}^{n-1}\omega^{jk}x_{j+1}$$
Угловая частота $\omega = e^{-2\pi i/n}$ является комплексным корнем из единицы , $i$ – мнимая единица. Для обоих векторов $x$ и $y$, индексы $j$ и $k$ принимают значения от 0 до $n-1$.
Функция fft
из библиотеки FFTW
выполняет разложение вектора в ряд Фурье при помощи алгоритма быстрого преобразования Фурье (БПФ). Рассмотрим синусоидальный сигнал $x$, каждому взятый через равные интервалы времени. Моменты осуществления измерений образуют вектор $t$. Сигнал состоит из двух компонентов с частотами 15 и 20 Гц. Изучим сигнал, измерение которого производилось каждую 1/50 долю секунды в течение 10 секунд.
Разложим сигнал в ряд Фурье и создадим вектор $f$, дискретные компоненты которого образуют выборку сигнала в частотной области.
Построим график результата преобразования, где по абсциссе выведена частота гармонических составляющих, а по ординате – амплитуда.
На графике видны четыре всплеска, хотя исходный сигнал имел две составляющих с частотами 15 и 20 Гц. Дело в том, что правая половина графика зеркально отражает левую половину. Дискретное преобразование Фурье сигнала во временной области тоже имеет свою периодичность – первая половина вектора соответствует области "положительных значений частоты", а вторая половина – области "отрицательных значений частоты" составляющих. Всплески в области 30 и 35 Гц на самом деле соответствуют значениям -20 и -15 Гц.
На практике часто достаточно использовать только одну половину ряда Фурье, не выполняя лишних расчетов. Для этого можно пользоватьcя функцией rfft
. Но для наглядности выведем весь ряд Фурье, сместив правую половину в область отрицательных частот при помощи функции fftshift
.
В реальном сценарии, измеренный сигнал часто включает как полезную составляющую, так и случайный шум, который не позволяет однозначно различить гармонические составляющие. Использование преобразования Фурье может помочь отсечь случайную составляющую и оставить только систематический, колебательный процесс. Рассмотрим новый вектор измерений xnoise
, результат сложения сигнала x
и случайного гауссовского шума.
На практике, зависимость мощности сигнала от частоты используется чаще, чем зависимость амплитуды от частоты. Мощность равняется квадрату амплитуды компонента ряда Фурье, разделенная на количество точек в ряде. Рассчитаем и построим график спектра мощности сигнала, с нулевой частотой по центру оси $x$. Несмотря на наличие шума, мы ясно видим оба всплеска на графике мощности сигнала.
Чтобы рассчитать преобразование Фурье всего ряда из $n$ элементов вектора $y$ при помощи исходной формулы, нужно выполнить порядка $n^2$ вычислений с числами с плавающей запятой. Алгоритм быстрого преобразования Фурье требует выполнить порядка $n log n$ действий, что делает этот метод очень привлекательным из-за экономии времени, особенно если обрабатываемый сигнал состоит из нескольких миллионов точек. Более того, конкретные реализации алгоритма БПФ могут вычисляться еще быстрее в ряде конкретных случаем. Например, в случае, когда $n$ равно 2 в некоторой степени.
Рассмотрим аудиофайл bluewhale.wav
– запись акустических коммуникаций синих китов, записанных на подводный микрофон.
Синие киты общаются в инфразвуке, полоса частот акустических колебаний почти не пересекается с частотами, к которым чувствителен человеческий слух. Поэтому вектор времени в представленных данных сжат в 10 раз, чтобы высота звукового сигнала была доступна нашему восприятию.
Следующая ячейка позволяет воспроизвести звуковой сигнал, прочитанный из файла.
Your browser does not support the audio element.
Визуализируем этот сигнал:
Теперь увеличим длину сигнала до ближайшего числа $2^N$ в сторону возрастания. Мы получим более длинный отрезок сигнала. И рассчитаем ряд Фурье для этого нового отрезка сигнала. Если бы длина сигнала не была взята из ряда $2^N$ (при $N = 1,2\dots$), то функция fft
, скорее всего, все равно дополнила бы сигнал нулями до ближайшей длины $2^N$. Это делается для того, чтобы существенно ускорить алгоритм БПФ, особенно если значение количества точек не имеет малых делителей.
Построим график спектра мощности этого сигнала. Согласно графику, акустический сигнал включает основную гармонику – звук на частоте примерно 17 Гц, и несколько других заметных гармонических составляющих.
Определение фазы синусоид¶
При помощи преобразования Фурье можно также построить фазовый спектр изучаемого сигнала. Ради примера мы создадим сигнал, в котором суммируется два гармонических сигнала с частотой 15 и 20 Гц. Первый сигнал будет косинусом со значением фазы $-\pi/4$, а второй сигнал будет синусоидой без фазового смещения. Частота дискретизации сигнала будет 100 Гц, длина сигнала 1 с.
Разложим сигнал в ряд Фурье и построим график амплитуды в зависимости от частоты.
Теперь посмотрим на фазовую часть коэффициентов ряда Фурье, при этом уберем значения с низкой амплитудой. На графике изображен спектр фазы сигнала в зависимости от частоты.
Мы построили несколько разных спектров (амплитуды, мощности и фазы) на основе разложения сигнала в ряд Фурье. В этом нам помогла функция fft
, использующая алгоритм БПФ, и несколько других функций (например fftshift
). В итоге мы смогли наглядно показать все интересующие нас свойства входного сигнала.
{"id": "c0068184-1fe0-4b47-8f5d-0419cfb2298d", "data": [{"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.538841768587627, -1.5388417685876266, 0.36327126400268017, 0.3632712640026807, -1.2246467991473535e-16, -0.36327126400268017, -0.36327126400268106, 1.538841768587627, -1.538841768587626, -1.7145055188062944e-15, 1.538841768587628, -1.5388417685876266, 0.3632712640026793, 0.3632712640026813, -3.6739403974420584e-16, -0.3632712640026796, -0.36327126400268483, 1.5388417685876272, -1.5388417685876257, -3.429011037612589e-15, 1.53884176858763, -1.5388417685876261, 0.3632712640026813, 0.3632712640026817, 2.940390279226824e-15, -0.36327126400267906, -0.36327126400268006, 1.5388417685876274, -1.5388417685876226, -5.143516556418883e-15, 1.5388417685876288, -1.5388417685876257, 0.3632712640026745, 0.36327126400268017, -4.4099664382036485e-15, -0.3632712640026784, -0.3632712640026866, 1.5388417685876221, -1.538841768587624, -6.858022075225178e-15, 1.5388417685876319, -1.53884176858762, 0.3632712640026795, 0.36327126400268295, 2.450531559567883e-15, -0.3632712640026756, -0.3632712640026817, 1.5388417685876281, -1.5388417685876206, -1.5677954951632475e-14, 1.5388417685876423, -1.5388417685876252, 0.3632712640026772, 0.3632712640026857, -1.911067987306459e-14, -0.3632712640026773, -0.36327126400268395, 1.538841768587634, -1.5388417685876101, -1.0287033112837767e-14, 1.5388417685876226, -1.5388417685876306, 0.3632712640026733, 0.36327126400268406, 1.6171527555110945e-14, -0.36327126400267895, -0.36327126400268794, 1.5388417685876403, -1.53884176858763, -4.896111274043059e-15, 1.5388417685876488, -1.5388417685876246, 0.36327126400268694, 0.3632712640026824, -1.9600538592723535e-14, -0.36327126400267173, -0.36327126400268583, 1.5388417685876232, -1.538841768587604, -1.3716044150450356e-14, 1.5388417685876201, -1.5388417685876186, 0.3632712640026715, 0.36327126400268084, 1.5681668835452004e-14, -0.3632712640026734, -0.36327126400270127, 1.5388417685876292, -1.5388417685876323, -2.2535977026857653e-14, 1.5388417685876463, -1.5388417685876354, 0.3632712640026736, 0.36327126400268794, -5.879542597180472e-15, -0.36327126400267507, -0.36327126400267606, 1.5388417685876354, -1.5388417685876061, -3.135590990326495e-14, 1.5388417685876266, -1.538841768587638, 0.3632712640026582, 0.3632712640026863, 9.809554005910593e-16, -0.3632712640026997, -0.3632712640026916, 1.5388417685876183, -1.5388417685876261, -4.0175842779672244e-14, 1.5388417685876528, -1.5388417685876234, 0.3632712640026833, 0.36327126400266163, -2.0580256032041416e-14, -0.3632712640026783, -0.3632712640026895, 1.5388417685876155, -1.5388417685875997, -2.0574066225675533e-14, 1.5388417685876243, -1.5388417685876088, 0.36327126400266785, 0.36327126400269194, 1.4701951396134123e-14, -0.3632712640026481, -0.36327126400270493, 1.5388417685876303, -1.5388417685876283, -9.72289671678823e-16, 1.5388417685876505, -1.5388417685876115, 0.36327126400267007, 0.36327126400271326, -6.859260036498356e-15, -0.3632712640026815, -0.36327126400267973, 1.5388417685876452, -1.5388417685875933, -9.792222548086118e-15, 1.5388417685876306, -1.5388417685876141, 0.3632712640026776, 0.3632712640026886, 2.842294739167718e-14, -0.3632712640026886, -0.36327126400269516, 1.5388417685876425, -1.5388417685876306, -4.703386485489742e-14, 1.5388417685876568, -1.5388417685876452, 0.36327126400267973, 0.36327126400266396, 6.861735959044707e-15, -0.3632712640026673, -0.36327126400269305, 1.5388417685876399, -1.5388417685876044, -2.743208830090071e-14, 1.5388417685876372, -1.5388417685876303, 0.3632712640026643, 0.3632712640026853, -1.469947547358777e-14, -0.36327126400264587, -0.36327126400270837, 1.5388417685876545, -1.5388417685876243, -7.830311746903999e-15, 1.5388417685876634, -1.5388417685876332, 0.3632712640026665, 0.3632712640027066, -3.6260686906220245e-14, -0.3632712640026704, -0.36327126400270626, 1.5388417685876234, -1.5388417685875981, -4.5071954053715305e-14, 1.5388417685876261, -1.5388417685876359, 0.363271264002651, 0.3632712640026996, -9.784794780447059e-16, -0.36327126400269505, -0.3632712640027217, 1.5388417685876208, -1.538841768587618, -8.231359636052661e-14, 1.5388417685876523, -1.5388417685876212, 0.3632712640026531, 0.36327126400267507, -2.2539690910677182e-14, -0.36327126400267373, -0.3632712640026736, 1.538841768587618, -1.5388417685875915, -6.27118198065299e-14, 1.5388417685876323, -1.5388417685876061, 0.36327126400263765, 0.36327126400274234, -4.410090234330965e-14, -0.3632712640026524, -0.36327126400268905, 1.5388417685876328, -1.5388417685876115, 1.3733375608274829e-14, 1.5388417685876128, -1.5388417685875915, 0.3632712640026683, 0.3632712640027177, -8.818694915134122e-15, -0.3632712640026594, -0.36327126400268694, 1.5388417685876474, -1.538841768587631, -8.035168555934449e-14, 1.5388417685876847, -1.538841768587612, 0.3632712640026704, 0.36327126400269316, 2.646351251304142e-14, -0.36327126400268406, -0.36327126400268483, 1.5388417685876625, -1.5388417685875766, -6.074990900534777e-14, 1.538841768587665, -1.538841768587597, 0.3632712640026725, 0.3632712640026685, 6.174571994121697e-14, -0.36327126400261667, -0.3632712640027178, 1.538841768587642, -1.5388417685875964, -4.1148132451351067e-14, 1.5388417685876452, -1.5388417685876281, 0.36327126400267473, 0.36327126400264387, -7.350232921303155e-14, -0.3632712640026413, -0.3632712640027156, 1.538841768587611, -1.5388417685876161, -2.1546355897354356e-14, 1.5388417685876254, -1.5388417685876483, 0.36327126400264176, 0.36327126400271115, -3.822012178485601e-14, -0.36327126400266596, -0.3632712640027135, 1.5388417685876257, -1.5388417685876359, -1.944579343357646e-15, 1.5388417685876803, -1.5388417685876337, 0.36327126400264387, 0.3632712640026866, -2.9379143566804714e-15, -0.3632712640026906, -0.36327126400271126, 1.5388417685876055, -1.5388417685875635, -9.602964051097696e-14, 1.5388417685876603, -1.5388417685875728, 0.36327126400264587, 0.3632712640026796, 8.918771193230308e-14, -0.36327126400271514, -0.3632712640026984, 1.538841768587666, -1.5388417685875835, -1.9584445096172237e-14, 1.538841768587658, -1.538841768587604, 0.36327126400269416, 0.36327126400272935, -4.6060337221945426e-14, -0.3632712640026303, -0.3632712640027421, 1.538841768587635, -1.5388417685876208, -5.682608740298354e-14, 1.5388417685876208, -1.538841768587635, 0.3632712640026151, 0.36327126400272225, -6.762154865457789e-14, -0.3632712640026725, -0.36327126400269405, 1.538841768587604, -1.538841768587623, -9.406772970979484e-14, 1.5388417685876754, -1.5388417685876095, 0.3632712640026632, 0.36327126400271514, 2.4504077634405655e-14, -0.3632712640026796, -0.3632712640027379, 1.5388417685876647, -1.5388417685875684, -1.3130937201660613e-13, 1.5388417685876732, -1.5388417685876405, 0.36327126400261944, 0.36327126400267296, 2.9428662017731774e-15, -0.36327126400262977, -0.3632712640027249, 1.5388417685875986, -1.5388417685875706, -5.486417660180142e-14, 1.5388417685876359, -1.53884176858758, 0.3632712640026675, 0.36327126400266596, -1.8618345230859294e-14, -0.36327126400263676, -0.36327126400267684, 1.5388417685876594, -1.538841768587608, 2.1581018813003303e-14, 1.5388417685876337, -1.538841768587646, 0.3632712640026805, 0.3632712640027158, -4.0179556663491776e-14, -0.36327126400267895, -0.3632712640027207, 1.5388417685876281, -1.5388417685876101, -1.5660623493807998e-14, 1.5388417685876883, -1.5388417685875853, 0.36327126400263665, 0.3632712640027087, 5.194606962549178e-14, -0.36327126400268606, -0.3632712640026725, 1.5388417685876536, -1.5388417685875555, -5.290226580061931e-14, 1.538841768587686, -1.5388417685876163, 0.36327126400268483, 0.3632712640026665, 3.03848581928593e-14, -0.36327126400269305, -0.36327126400275145, 1.5388417685876226, -1.5388417685875928, -9.014390810743061e-14, 1.5388417685876488, -1.5388417685876474, 0.36327126400264087, 0.36327126400275134, -1.048631909613892e-13, -0.3632712640026434, -0.3632712640027034, 1.5388417685875915, -1.538841768587595, -1.3698712692625882e-14, 1.5388417685876465, -1.5388417685875868, 0.36327126400265397, 0.36327126400270915, -1.273756467240565e-14, -0.3632712640026504, -0.36327126400274723, 1.5388417685876523, -1.5388417685876323, -1.6462719272105323e-13, 1.5388417685877012, -1.5388417685876532, 0.36327126400261, 0.36327126400270215, -3.4298776105038126e-14, -0.3632712640026926, -0.36327126400269905, 1.5388417685876212, -1.5388417685875426, -8.818199730624848e-14, 1.5388417685876639, -1.5388417685875924, 0.3632712640026582, 0.36327126400269505, 5.782685018394543e-14, -0.3632712640026077, -0.36327126400268606, 1.5388417685876468, -1.53884176858758, -1.254236396130598e-13, 1.5388417685876616, -1.5388417685876234, 0.36327126400261434, 0.36327126400265286, -7.742119897030308e-14, -0.36327126400264986, -0.36327126400273, 1.5388417685875804, -1.5388417685875821, -1.626652819198711e-13, 1.5388417685876243, -1.5388417685875977, 0.3632712640026625, 0.3632712640027379, 1.283912650402965e-13, -0.36327126400265686, -0.36327126400271703, 1.5388417685876765, -1.5388417685875275, 2.7466751216549658e-14, 1.538841768587714, -1.5388417685875937, 0.3632712640026754, 0.3632712640026037, -6.856784113951999e-15, -0.36327126400257204, -0.3632712640027257, 1.5388417685876101, -1.5388417685876568, -1.2346172881187767e-13, 1.5388417685875848, -1.53884176858766, 0.36327126400259646, 0.3632712640026886, -2.8417995546584475e-14, -0.36327126400270615, -0.3632712640027127, 1.538841768587706, -1.538841768587567, -1.6070337111868897e-13, 1.5388417685876745, -1.5388417685876346, 0.36327126400267973, 0.36327126400273835, 6.370763074239908e-14, -0.36327126400262133, -0.36327126400272136, 1.5388417685876399, -1.5388417685875124, -8.425817570388426e-14, 1.5388417685877291, -1.5388417685876306, 0.3632712640026008, 0.3632712640026393, -7.154041841184943e-14, -0.36327126400275545, -0.36327126400270837, 1.5388417685875735, -1.5388417685876066, -1.2149981801069555e-13, 1.5388417685875997, -1.5388417685876048, 0.36327126400268406, 0.36327126400268905, -9.310162984448189e-14, -0.3632712640026704, -0.3632712640027874, 1.5388417685876694, -1.538841768587552, -4.505462259589083e-14, 1.5388417685876896, -1.538841768587671, 0.363271264002605, 0.3632712640027741, -9.760035554983525e-16, -0.36327126400262066, -0.36327126400270415, 1.538841768587603, -1.5388417685876463, -8.229626490270213e-14, 1.5388417685877442, -1.538841768587575, 0.363271264002618, 0.36327126400267495, -2.2537214988130825e-14, -0.3632712640027197, -0.36327126400269116, 1.538841768587699, -1.5388417685875915, -1.1953790720951345e-13, 1.53884176858765, -1.5388417685876414, 0.36327126400270127, 0.3632712640027248, 6.958841130085272e-14, -0.3632712640026349, -0.3632712640027702, 1.5388417685876328, -1.5388417685875018], "type": "scatter", "x": [0, 0.02, 0.04, 0.06, 0.08, 0.1, 0.12, 0.14, 0.16, 0.18, 0.2, 0.22, 0.24, 0.26, 0.28, 0.3, 0.32, 0.34, 0.36, 0.38, 0.4, 0.42, 0.44, 0.46, 0.48, 0.5, 0.52, 0.54, 0.56, 0.58, 0.6, 0.62, 0.64, 0.66, 0.68, 0.7, 0.72, 0.74, 0.76, 0.78, 0.8, 0.82, 0.84, 0.86, 0.88, 0.9, 0.92, 0.94, 0.96, 0.98, 1, 1.02, 1.04, 1.06, 1.08, 1.1, 1.12, 1.14, 1.16, 1.18, 1.2, 1.22, 1.24, 1.26, 1.28, 1.3, 1.32, 1.34, 1.36, 1.38, 1.4, 1.42, 1.44, 1.46, 1.48, 1.5, 1.52, 1.54, 1.56, 1.58, 1.6, 1.62, 1.64, 1.66, 1.68, 1.7, 1.72, 1.74, 1.76, 1.78, 1.8, 1.82, 1.84, 1.86, 1.88, 1.9, 1.92, 1.94, 1.96, 1.98, 2, 2.02, 2.04, 2.06, 2.08, 2.1, 2.12, 2.14, 2.16, 2.18, 2.2, 2.22, 2.24, 2.26, 2.28, 2.3, 2.32, 2.34, 2.36, 2.38, 2.4, 2.42, 2.44, 2.46, 2.48, 2.5, 2.52, 2.54, 2.56, 2.58, 2.6, 2.62, 2.64, 2.66, 2.68, 2.7, 2.72, 2.74, 2.76, 2.78, 2.8, 2.82, 2.84, 2.86, 2.88, 2.9, 2.92, 2.94, 2.96, 2.98, 3, 3.02, 3.04, 3.06, 3.08, 3.1, 3.12, 3.14, 3.16, 3.18, 3.2, 3.22, 3.24, 3.26, 3.28, 3.3, 3.32, 3.34, 3.36, 3.38, 3.4, 3.42, 3.44, 3.46, 3.48, 3.5, 3.52, 3.54, 3.56, 3.58, 3.6, 3.62, 3.64, 3.66, 3.68, 3.7, 3.72, 3.74, 3.76, 3.78, 3.8, 3.82, 3.84, 3.86, 3.88, 3.9, 3.92, 3.94, 3.96, 3.98, 4, 4.02, 4.04, 4.06, 4.08, 4.1, 4.12, 4.14, 4.16, 4.18, 4.2, 4.22, 4.24, 4.26, 4.28, 4.3, 4.32, 4.34, 4.36, 4.38, 4.4, 4.42, 4.44, 4.46, 4.48, 4.5, 4.52, 4.54, 4.56, 4.58, 4.6, 4.62, 4.64, 4.66, 4.68, 4.7, 4.72, 4.74, 4.76, 4.78, 4.8, 4.82, 4.84, 4.86, 4.88, 4.9, 4.92, 4.94, 4.96, 4.98, 5, 5.02, 5.04, 5.06, 5.08, 5.1, 5.12, 5.14, 5.16, 5.18, 5.2, 5.22, 5.24, 5.26, 5.28, 5.3, 5.32, 5.34, 5.36, 5.38, 5.4, 5.42, 5.44, 5.46, 5.48, 5.5, 5.52, 5.54, 5.56, 5.58, 5.6, 5.62, 5.64, 5.66, 5.68, 5.7, 5.72, 5.74, 5.76, 5.78, 5.8, 5.82, 5.84, 5.86, 5.88, 5.9, 5.92, 5.94, 5.96, 5.98, 6, 6.02, 6.04, 6.06, 6.08, 6.1, 6.12, 6.14, 6.16, 6.18, 6.2, 6.22, 6.24, 6.26, 6.28, 6.3, 6.32, 6.34, 6.36, 6.38, 6.4, 6.42, 6.44, 6.46, 6.48, 6.5, 6.52, 6.54, 6.56, 6.58, 6.6, 6.62, 6.64, 6.66, 6.68, 6.7, 6.72, 6.74, 6.76, 6.78, 6.8, 6.82, 6.84, 6.86, 6.88, 6.9, 6.92, 6.94, 6.96, 6.98, 7, 7.02, 7.04, 7.06, 7.08, 7.1, 7.12, 7.14, 7.16, 7.18, 7.2, 7.22, 7.24, 7.26, 7.28, 7.3, 7.32, 7.34, 7.36, 7.38, 7.4, 7.42, 7.44, 7.46, 7.48, 7.5, 7.52, 7.54, 7.56, 7.58, 7.6, 7.62, 7.64, 7.66, 7.68, 7.7, 7.72, 7.74, 7.76, 7.78, 7.8, 7.82, 7.84, 7.86, 7.88, 7.9, 7.92, 7.94, 7.96, 7.98, 8, 8.02, 8.04, 8.06, 8.08, 8.1, 8.12, 8.14, 8.16, 8.18, 8.2, 8.22, 8.24, 8.26, 8.28, 8.3, 8.32, 8.34, 8.36, 8.38, 8.4, 8.42, 8.44, 8.46, 8.48, 8.5, 8.52, 8.54, 8.56, 8.58, 8.6, 8.62, 8.64, 8.66, 8.68, 8.7, 8.72, 8.74, 8.76, 8.78, 8.8, 8.82, 8.84, 8.86, 8.88, 8.9, 8.92, 8.94, 8.96, 8.98, 9, 9.02, 9.04, 9.06, 9.08, 9.1, 9.12, 9.14, 9.16, 9.18, 9.2, 9.22, 9.24, 9.26, 9.28, 9.3, 9.32, 9.34, 9.36, 9.38, 9.4, 9.42, 9.44, 9.46, 9.48, 9.5, 9.52, 9.54, 9.56, 9.58, 9.6, 9.62, 9.64, 9.66, 9.68, 9.7, 9.72, 9.74, 9.76, 9.78, 9.8, 9.82, 9.84, 9.86, 9.88, 9.9, 9.92, 9.94, 9.96, 9.98], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 500, "currentCount": 500}}}], "config": {"showlegend": false, "xaxis": {"showticklabels": true, "gridwidth": 0.5, "range": [-0.29940000000000033, 10.2794], "domain": [0.09128390201224845, 0.9934383202099738], "mirror": false, "tickangle": 0, "showline": true, "zeroline": false, "tickfont": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "zerolinecolor": "rgba(0, 0, 0, 1)", "anchor": "y", "visible": true, "ticks": "inside", "tickmode": "array", "linecolor": "rgba(0, 0, 0, 1)", "showgrid": true, "title": {"text": "Время (с)", "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}}, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickcolor": "rgb(0, 0, 0)", "type": "linear"}, "paper_bgcolor": "rgba(255, 255, 255, 1.000)", "annotations": [], "height": 400, "margin": {"l": 0, "b": 20, "r": 0, "t": 20}, "plot_bgcolor": "rgba(255, 255, 255, 1.000)", "yaxis": {"showticklabels": true, "gridwidth": 0.5, "range": [-1.6311722747029336, 1.6311722747030069], "domain": [0.07581474190726165, 0.9901574803149606], "mirror": false, "tickangle": 0, "showline": true, "zeroline": false, "tickfont": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "zerolinecolor": "rgba(0, 0, 0, 1)", "anchor": "x", "visible": true, "ticks": "inside", "tickmode": "array", "linecolor": "rgba(0, 0, 0, 1)", "showgrid": true, "title": {"text": "Амплитуда", "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}}, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickcolor": "rgb(0, 0, 0)", "type": "linear"}, "width": 634.71875}}
{"id": "c9801044-841d-48ba-a966-3eece5699e48", "data": [{"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [5.661252747058895e-13, 3.929289347881063e-13, 3.957595643555919e-13, 4.686330713788317e-13, 3.842464983001864e-13, 8.305834219908739e-13, 8.144251646376892e-13, 1.3063212613546244e-12, 5.876551717396218e-13, 7.844946711880725e-13, 6.573501749561458e-13, 5.085260480008701e-13, 9.23651817044879e-14, 1.97998133375921e-13, 1.0741421801616736e-12, 6.16481230701433e-13, 9.477826277853511e-13, 1.071391721988928e-12, 1.6627884816682692e-12, 1.87762918794844e-12, 1.8110467114891368e-12, 2.2325285181221244e-12, 1.7490050278114051e-12, 7.07519857324063e-13, 1.269418420183069e-13, 2.893779025884946e-13, 8.122609643009649e-14, 1.529037188836951e-13, 1.9331265060585053e-13, 2.1989062920939788e-13, 3.340221010660703e-13, 4.508053235604447e-13, 3.5255228452563487e-13, 3.2259761346450304e-13, 5.255572035581557e-13, 7.010791287646002e-14, 2.79053940526218e-13, 3.8071764084557855e-13, 6.004161000018954e-13, 6.7667055018076e-14, 5.279106652734964e-13, 4.779666954832935e-13, 5.0188070155961e-13, 5.881405805136494e-13, 6.049917714366295e-13, 9.536339033557601e-13, 6.366017943436137e-13, 4.738629200239136e-13, 4.830900035991501e-13, 3.0437630852711917e-13, 2.8720880191140655e-13, 8.901310841547639e-15, 3.3706278470150377e-13, 3.4270705547488136e-13, 2.951871482657554e-13, 3.362462719268906e-13, 1.6798656078877496e-13, 1.2259970386818723e-13, 3.619916549945513e-14, 1.6181998024474912e-13, 2.8627215209413745e-13, 4.811122355873925e-13, 5.444993721234301e-13, 5.392039644087864e-13, 4.855061870220542e-13, 4.5463544076092335e-13, 4.220298699082792e-13, 4.214274639442387e-13, 4.876954229312341e-13, 3.2412339304564e-13, 1.694741193290637e-13, 3.458001126870552e-14, 2.1217242204160543e-13, 6.524217254552705e-13, 6.855211607432008e-13, 5.90339625402247e-13, 1.0156064052806694e-12, 7.367035778679705e-13, 4.985019905457534e-13, 1.2339891859034435e-12, 1.1159414004385301e-12, 2.5002944701276984e-12, 1.8392022667852663e-12, 1.3594734817150805e-12, 9.808539837957328e-13, 5.565133855568535e-13, 2.320694403805355e-13, 3.7000148751240866e-13, 4.71999900173544e-13, 5.196817372674184e-13, 5.444334875902739e-13, 4.603065229843616e-13, 1.2281936404940964e-13, 1.1884722480720844e-13, 1.9992544252564802e-13, 1.3773716168371587e-13, 3.59944320099147e-13, 4.418406239756845e-13, 3.9014983553142895e-13, 2.4973279668765943e-13, 3.129349448435865e-13, 2.0196474237630144e-13, 1.0844102588405208e-13, 4.5061436880857713e-13, 1.857823461652371e-13, 3.9407063303284667e-13, 8.568627686097284e-13, 6.538054236448716e-13, 2.484806955447577e-13, 2.516780201939752e-13, 2.418958887876181e-13, 4.687610888776346e-13, 2.2092469980756688e-13, 4.514114978120243e-14, 6.019672285737179e-13, 1.9381213416546247e-13, 1.079844210645873e-13, 2.2481875024586783e-13, 2.1427227341379366e-13, 1.9089375386106531e-13, 3.9556234355369957e-13, 2.608124697961943e-13, 4.0414117200957745e-13, 5.55833576903937e-13, 6.092156723328601e-13, 4.592333281817293e-13, 3.7340353248919125e-13, 3.418159406536387e-13, 3.6361308920193216e-13, 5.9754884389135e-13, 6.017234275791973e-13, 6.644223125899893e-13, 3.2374561221572174e-13, 3.8383634103062856e-13, 2.4066870137876516e-13, 8.050230087045765e-13, 1.7619499085575543e-12, 1.7958152202203925e-12, 1.979168523745833e-12, 1.6515021196502896e-12, 6.551099425536726e-13, 7.353631298967915e-13, 5.107183386352571e-13, 2.943988453314412e-13, 9.113168685653877e-13, 1.0289881648920456e-12, 2.0601124116639454e-13, 3.718375879101641e-13, 9.028620666018917e-13, 1.6980421986464524e-12, 249.99999999999972, 1.5986573710418173e-12, 1.006520284174902e-12, 9.996211036351988e-13, 3.859858477416979e-13, 1.8927214520589055e-13, 1.446357686542396e-13, 2.514651423886267e-13, 3.125798822553396e-14, 1.8032039296839718e-13, 3.948438995923552e-13, 2.4809858482893683e-13, 7.399460241996259e-13, 5.342563844126978e-13, 5.510785971689153e-13, 5.806406097970016e-13, 8.630923521115282e-13, 4.297139591562088e-13, 6.009122643588847e-13, 6.74156964164087e-13, 4.484790602677837e-13, 1.7020195844102435e-13, 1.9433261774709845e-13, 1.3049706216772724e-13, 9.433473663864753e-13, 2.030388288438209e-13, 1.210245709069541e-12, 9.623220218697844e-13, 2.3776729826430224e-12, 1.6667124540027885e-12, 7.122199571976451e-14, 6.301441920872024e-13, 3.456178039760125e-13, 4.0426301496843726e-13, 6.076710329642576e-13, 4.225867982349603e-13, 5.997764172238444e-13, 5.616245364001262e-13, 1.71416622811752e-13, 6.249262055784728e-13, 5.920707521943189e-13, 1.3885999907479725e-13, 9.156781494455167e-13, 9.771444465366563e-13, 5.1182573907418e-13, 1.231225781580565e-12, 4.045405537345992e-13, 4.800958809224989e-13, 1.034848777099008e-12, 1.8819288244790054e-12, 250.00000000000017, 2.176714945747953e-12, 1.2033985337579402e-12, 5.088939966395667e-13, 4.577758563144947e-13, 7.234174451196188e-13, 1.3749077229123447e-12, 2.4836555355818444e-13, 4.447465552279891e-13, 3.653246752828204e-13, 2.9254867580309614e-13, 1.5909183715921707e-13, 1.7932530308446438e-13, 2.7390482931059997e-13, 2.120923665445641e-13, 2.8716865935749623e-13, 3.0839988462831837e-13, 3.8890261353002973e-13, 2.6861594221148733e-13, 2.447255382361798e-13, 1.3426349069711902e-13, 3.024618786044441e-13, 2.717083623739843e-13, 1.5060653288958193e-13, 7.939937620185857e-14, 4.2491125888088795e-13, 6.941437975556227e-14, 4.232644401173148e-13, 8.882548220982277e-14, 2.473018844940063e-13, 3.904574415945928e-13, 6.132013855021167e-13, 5.568906050303114e-13, 4.153236844251675e-13, 4.36143936797888e-13, 8.356136702938897e-13, 1.0072394478842995e-12, 1.6266575867788452e-12, 1.5714415847014589e-12, 1.1116557175058736e-12, 8.045214825509298e-13, 6.256533719014829e-13, 1.5636428774508073e-13, 1.9757162850996828e-13, 2.723413045662989e-13, 1.6272299935053067e-13, 1.0314841218603274e-13, 3.863850313652527e-13, 3.4464980264748166e-13, 7.062561607748956e-13, 6.643446108923129e-13, 7.062561607748956e-13, 3.4464980264748166e-13, 3.863850313652526e-13, 1.0314841218603261e-13, 1.627229993505309e-13, 2.723413045662988e-13, 1.975716285099683e-13, 1.5636428774508063e-13, 6.256533719014831e-13, 8.045214825509298e-13, 1.1116557175058736e-12, 1.5714415847014589e-12, 1.6266575867788448e-12, 1.0072394478842993e-12, 8.356136702938896e-13, 4.3614393679788804e-13, 4.153236844251676e-13, 5.568906050303114e-13, 6.132013855021167e-13, 3.904574415945929e-13, 2.473018844940064e-13, 8.882548220982286e-14, 4.2326444011731486e-13, 6.941437975556225e-14, 4.2491125888088795e-13, 7.939937620185854e-14, 1.5060653288958195e-13, 2.7170836237398433e-13, 3.0246187860444414e-13, 1.34263490697119e-13, 2.4472553823617975e-13, 2.686159422114875e-13, 3.889026135300296e-13, 3.083998846283183e-13, 2.871686593574962e-13, 2.12092366544564e-13, 2.739048293106002e-13, 1.7932530308446456e-13, 1.5909183715921687e-13, 2.925486758030962e-13, 3.653246752828205e-13, 4.4474655522798895e-13, 2.4836555355818464e-13, 1.3749077229123447e-12, 7.234174451196186e-13, 4.577758563144948e-13, 5.088939966395668e-13, 1.2033985337579402e-12, 2.176714945747953e-12, 250.00000000000017, 1.881928824479005e-12, 1.0348487770990082e-12, 4.800958809224989e-13, 4.0454055373459917e-13, 1.2312257815805653e-12, 5.118257390741795e-13, 9.771444465366565e-13, 9.156781494455167e-13, 1.3885999907479732e-13, 5.920707521943189e-13, 6.249262055784728e-13, 1.7141662281175189e-13, 5.616245364001263e-13, 5.997764172238446e-13, 4.225867982349602e-13, 6.076710329642576e-13, 4.042630149684373e-13, 3.4561780397601233e-13, 6.301441920872023e-13, 7.122199571976446e-14, 1.6667124540027885e-12, 2.3776729826430224e-12, 9.623220218697846e-13, 1.2102457090695408e-12, 2.030388288438209e-13, 9.433473663864755e-13, 1.304970621677272e-13, 1.9433261774709815e-13, 1.7020195844102432e-13, 4.484790602677836e-13, 6.74156964164087e-13, 6.009122643588848e-13, 4.297139591562088e-13, 8.630923521115282e-13, 5.806406097970015e-13, 5.510785971689155e-13, 5.342563844126979e-13, 7.39946024199626e-13, 2.4809858482893693e-13, 3.948438995923551e-13, 1.803203929683972e-13, 3.125798822553402e-14, 2.514651423886268e-13, 1.4463576865423954e-13, 1.8927214520589052e-13, 3.8598584774169806e-13, 9.99621103635199e-13, 1.006520284174902e-12, 1.5986573710418175e-12, 249.99999999999972, 1.6980421986464524e-12, 9.028620666018917e-13, 3.7183758791016423e-13, 2.0601124116639451e-13, 1.0289881648920458e-12, 9.113168685653875e-13, 2.9439884533144127e-13, 5.107183386352571e-13, 7.353631298967914e-13, 6.551099425536726e-13, 1.6515021196502896e-12, 1.979168523745833e-12, 1.7958152202203923e-12, 1.7619499085575543e-12, 8.050230087045762e-13, 2.4066870137876516e-13, 3.8383634103062846e-13, 3.2374561221572184e-13, 6.644223125899895e-13, 6.017234275791971e-13, 5.9754884389135e-13, 3.636130892019322e-13, 3.4181594065363864e-13, 3.734035324891911e-13, 4.592333281817293e-13, 6.092156723328601e-13, 5.55833576903937e-13, 4.041411720095776e-13, 2.608124697961943e-13, 3.9556234355369957e-13, 1.9089375386106531e-13, 2.1427227341379381e-13, 2.248187502458679e-13, 1.0798442106458747e-13, 1.938121341654625e-13, 6.019672285737179e-13, 4.514114978120242e-14, 2.2092469980756685e-13, 4.687610888776346e-13, 2.4189588878761816e-13, 2.5167802019397514e-13, 2.4848069554475773e-13, 6.538054236448718e-13, 8.568627686097283e-13, 3.940706330328465e-13, 1.85782346165237e-13, 4.5061436880857723e-13, 1.0844102588405206e-13, 2.0196474237630124e-13, 3.129349448435865e-13, 2.497327966876593e-13, 3.9014983553142885e-13, 4.418406239756845e-13, 3.59944320099147e-13, 1.377371616837159e-13, 1.9992544252564802e-13, 1.1884722480720854e-13, 1.2281936404940962e-13, 4.603065229843615e-13, 5.444334875902739e-13, 5.196817372674185e-13, 4.719999001735442e-13, 3.7000148751240866e-13, 2.320694403805355e-13, 5.565133855568535e-13, 9.808539837957328e-13, 1.3594734817150805e-12, 1.8392022667852663e-12, 2.5002944701276984e-12, 1.11594140043853e-12, 1.2339891859034435e-12, 4.985019905457534e-13, 7.367035778679704e-13, 1.015606405280669e-12, 5.90339625402247e-13, 6.855211607432011e-13, 6.524217254552706e-13, 2.121724220416056e-13, 3.458001126870558e-14, 1.6947411932906347e-13, 3.2412339304564e-13, 4.876954229312341e-13, 4.2142746394423877e-13, 4.220298699082791e-13, 4.546354407609233e-13, 4.855061870220542e-13, 5.392039644087863e-13, 5.4449937212343e-13, 4.811122355873927e-13, 2.862721520941375e-13, 1.618199802447491e-13, 3.619916549945515e-14, 1.2259970386818726e-13, 1.6798656078877496e-13, 3.362462719268907e-13, 2.951871482657555e-13, 3.4270705547488126e-13, 3.3706278470150377e-13, 8.901310841547572e-15, 2.8720880191140655e-13, 3.0437630852711917e-13, 4.8309000359915e-13, 4.738629200239136e-13, 6.366017943436137e-13, 9.536339033557601e-13, 6.049917714366295e-13, 5.881405805136494e-13, 5.0188070155961e-13, 4.779666954832935e-13, 5.279106652734964e-13, 6.766705501807593e-14, 6.004161000018953e-13, 3.807176408455786e-13, 2.790539405262179e-13, 7.010791287645987e-14, 5.255572035581557e-13, 3.2259761346450314e-13, 3.525522845256348e-13, 4.5080532356044497e-13, 3.3402210106607e-13, 2.1989062920939816e-13, 1.933126506058507e-13, 1.5290371888369502e-13, 8.122609643009655e-14, 2.893779025884946e-13, 1.26941842018307e-13, 7.075198573240631e-13, 1.7490050278114051e-12, 2.2325285181221244e-12, 1.8110467114891372e-12, 1.87762918794844e-12, 1.6627884816682692e-12, 1.0713917219889278e-12, 9.477826277853511e-13, 6.16481230701433e-13, 1.0741421801616734e-12, 1.9799813337592107e-13, 9.236518170448778e-14, 5.085260480008701e-13, 6.573501749561458e-13, 7.844946711880728e-13, 5.876551717396217e-13, 1.3063212613546244e-12, 8.144251646376892e-13, 8.305834219908739e-13, 3.842464983001863e-13, 4.686330713788316e-13, 3.957595643555919e-13, 3.929289347881062e-13], "type": "scatter", "x": [0, 0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9, 1, 1.1, 1.2, 1.3, 1.4, 1.5, 1.6, 1.7, 1.8, 1.9, 2, 2.1, 2.2, 2.3, 2.4, 2.5, 2.6, 2.7, 2.8, 2.9, 3, 3.1, 3.2, 3.3, 3.4, 3.5, 3.6, 3.7, 3.8, 3.9, 4, 4.1, 4.2, 4.3, 4.4, 4.5, 4.6, 4.7, 4.8, 4.9, 5, 5.1, 5.2, 5.3, 5.4, 5.5, 5.6, 5.7, 5.8, 5.9, 6, 6.1, 6.2, 6.3, 6.4, 6.5, 6.6, 6.7, 6.8, 6.9, 7, 7.1, 7.2, 7.3, 7.4, 7.5, 7.6, 7.7, 7.8, 7.9, 8, 8.1, 8.2, 8.3, 8.4, 8.5, 8.6, 8.7, 8.8, 8.9, 9, 9.1, 9.2, 9.3, 9.4, 9.5, 9.6, 9.7, 9.8, 9.9, 10, 10.1, 10.2, 10.3, 10.4, 10.5, 10.6, 10.7, 10.8, 10.9, 11, 11.1, 11.2, 11.3, 11.4, 11.5, 11.6, 11.7, 11.8, 11.9, 12, 12.1, 12.2, 12.3, 12.4, 12.5, 12.6, 12.7, 12.8, 12.9, 13, 13.1, 13.2, 13.3, 13.4, 13.5, 13.6, 13.7, 13.8, 13.9, 14, 14.1, 14.2, 14.3, 14.4, 14.5, 14.6, 14.7, 14.8, 14.9, 15, 15.1, 15.2, 15.3, 15.4, 15.5, 15.6, 15.7, 15.8, 15.9, 16, 16.1, 16.2, 16.3, 16.4, 16.5, 16.6, 16.7, 16.8, 16.9, 17, 17.1, 17.2, 17.3, 17.4, 17.5, 17.6, 17.7, 17.8, 17.9, 18, 18.1, 18.2, 18.3, 18.4, 18.5, 18.6, 18.7, 18.8, 18.9, 19, 19.1, 19.2, 19.3, 19.4, 19.5, 19.6, 19.7, 19.8, 19.9, 20, 20.1, 20.2, 20.3, 20.4, 20.5, 20.6, 20.7, 20.8, 20.9, 21, 21.1, 21.2, 21.3, 21.4, 21.5, 21.6, 21.7, 21.8, 21.9, 22, 22.1, 22.2, 22.3, 22.4, 22.5, 22.6, 22.7, 22.8, 22.9, 23, 23.1, 23.2, 23.3, 23.4, 23.5, 23.6, 23.7, 23.8, 23.9, 24, 24.1, 24.2, 24.3, 24.4, 24.5, 24.6, 24.7, 24.8, 24.9, 25, 25.1, 25.2, 25.3, 25.4, 25.5, 25.6, 25.7, 25.8, 25.9, 26, 26.1, 26.2, 26.3, 26.4, 26.5, 26.6, 26.7, 26.8, 26.9, 27, 27.1, 27.2, 27.3, 27.4, 27.5, 27.6, 27.7, 27.8, 27.9, 28, 28.1, 28.2, 28.3, 28.4, 28.5, 28.6, 28.7, 28.8, 28.9, 29, 29.1, 29.2, 29.3, 29.4, 29.5, 29.6, 29.7, 29.8, 29.9, 30, 30.1, 30.2, 30.3, 30.4, 30.5, 30.6, 30.7, 30.8, 30.9, 31, 31.1, 31.2, 31.3, 31.4, 31.5, 31.6, 31.7, 31.8, 31.9, 32, 32.1, 32.2, 32.3, 32.4, 32.5, 32.6, 32.7, 32.8, 32.9, 33, 33.1, 33.2, 33.3, 33.4, 33.5, 33.6, 33.7, 33.8, 33.9, 34, 34.1, 34.2, 34.3, 34.4, 34.5, 34.6, 34.7, 34.8, 34.9, 35, 35.1, 35.2, 35.3, 35.4, 35.5, 35.6, 35.7, 35.8, 35.9, 36, 36.1, 36.2, 36.3, 36.4, 36.5, 36.6, 36.7, 36.8, 36.9, 37, 37.1, 37.2, 37.3, 37.4, 37.5, 37.6, 37.7, 37.8, 37.9, 38, 38.1, 38.2, 38.3, 38.4, 38.5, 38.6, 38.7, 38.8, 38.9, 39, 39.1, 39.2, 39.3, 39.4, 39.5, 39.6, 39.7, 39.8, 39.9, 40, 40.1, 40.2, 40.3, 40.4, 40.5, 40.6, 40.7, 40.8, 40.9, 41, 41.1, 41.2, 41.3, 41.4, 41.5, 41.6, 41.7, 41.8, 41.9, 42, 42.1, 42.2, 42.3, 42.4, 42.5, 42.6, 42.7, 42.8, 42.9, 43, 43.1, 43.2, 43.3, 43.4, 43.5, 43.6, 43.7, 43.8, 43.9, 44, 44.1, 44.2, 44.3, 44.4, 44.5, 44.6, 44.7, 44.8, 44.9, 45, 45.1, 45.2, 45.3, 45.4, 45.5, 45.6, 45.7, 45.8, 45.9, 46, 46.1, 46.2, 46.3, 46.4, 46.5, 46.6, 46.7, 46.8, 46.9, 47, 47.1, 47.2, 47.3, 47.4, 47.5, 47.6, 47.7, 47.8, 47.9, 48, 48.1, 48.2, 48.3, 48.4, 48.5, 48.6, 48.7, 48.8, 48.9, 49, 49.1, 49.2, 49.3, 49.4, 49.5, 49.6, 49.7, 49.8, 49.9], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 500, "currentCount": 500}}}], "config": {"showlegend": true, "xaxis": {"showticklabels": true, "gridwidth": 0.5, "range": [-1.4969999999999999, 51.397], "domain": [0.07646908719743364, 0.9934383202099737], "mirror": false, "tickangle": 0, "showline": true, "zeroline": false, "tickfont": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "zerolinecolor": "rgba(0, 0, 0, 1)", "anchor": "y", "visible": true, "ticks": "inside", "tickmode": "array", "linecolor": "rgba(0, 0, 0, 1)", "showgrid": true, "title": {"text": "Частота (Hz)", "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}}, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickcolor": "rgb(0, 0, 0)", "type": "linear"}, "paper_bgcolor": "rgba(255, 255, 255, 1.000)", "annotations": [{"yanchor": "top", "xanchor": "center", "rotation": 0, "y": 1, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "paper", "showarrow": false, "text": "Амплитудный спектр", "xref": "paper", "x": 0.5349537037037038}], "height": 400, "margin": {"l": 0, "b": 20, "r": 0, "t": 20}, "plot_bgcolor": "rgba(255, 255, 255, 1.000)", "yaxis": {"showticklabels": true, "gridwidth": 0.5, "range": [-7.5, 257.50000000000017], "domain": [0.07581474190726165, 0.9415463692038496], "mirror": false, "tickangle": 0, "showline": true, "zeroline": false, "tickfont": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "zerolinecolor": "rgba(0, 0, 0, 1)", "anchor": "x", "visible": true, "ticks": "inside", "tickmode": "array", "linecolor": "rgba(0, 0, 0, 1)", "showgrid": true, "title": {"text": "Амплитуда", "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}}, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickcolor": "rgb(0, 0, 0)", "type": "linear"}, "legend": {"yanchor": "auto", "xanchor": "auto", "bordercolor": "rgba(0, 0, 0, 1)", "bgcolor": "rgba(255, 255, 255, 1.000)", "borderwidth": 1, "tracegroupgap": 0, "y": 1, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "title": {"font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}, "text": ""}, "traceorder": "normal", "x": 1}, "width": 634.71875}}
{"id": "c84c5715-06fb-4185-82f0-60614f0e6c3a", "data": [{"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [6.643446108923129e-13, 7.062561607748956e-13, 3.4464980264748166e-13, 3.863850313652526e-13, 1.0314841218603261e-13, 1.627229993505309e-13, 2.723413045662988e-13, 1.975716285099683e-13, 1.5636428774508063e-13, 6.256533719014831e-13, 8.045214825509298e-13, 1.1116557175058736e-12, 1.5714415847014589e-12, 1.6266575867788448e-12, 1.0072394478842993e-12, 8.356136702938896e-13, 4.3614393679788804e-13, 4.153236844251676e-13, 5.568906050303114e-13, 6.132013855021167e-13, 3.904574415945929e-13, 2.473018844940064e-13, 8.882548220982286e-14, 4.2326444011731486e-13, 6.941437975556225e-14, 4.2491125888088795e-13, 7.939937620185854e-14, 1.5060653288958195e-13, 2.7170836237398433e-13, 3.0246187860444414e-13, 1.34263490697119e-13, 2.4472553823617975e-13, 2.686159422114875e-13, 3.889026135300296e-13, 3.083998846283183e-13, 2.871686593574962e-13, 2.12092366544564e-13, 2.739048293106002e-13, 1.7932530308446456e-13, 1.5909183715921687e-13, 2.925486758030962e-13, 3.653246752828205e-13, 4.4474655522798895e-13, 2.4836555355818464e-13, 1.3749077229123447e-12, 7.234174451196186e-13, 4.577758563144948e-13, 5.088939966395668e-13, 1.2033985337579402e-12, 2.176714945747953e-12, 250.00000000000017, 1.881928824479005e-12, 1.0348487770990082e-12, 4.800958809224989e-13, 4.0454055373459917e-13, 1.2312257815805653e-12, 5.118257390741795e-13, 9.771444465366565e-13, 9.156781494455167e-13, 1.3885999907479732e-13, 5.920707521943189e-13, 6.249262055784728e-13, 1.7141662281175189e-13, 5.616245364001263e-13, 5.997764172238446e-13, 4.225867982349602e-13, 6.076710329642576e-13, 4.042630149684373e-13, 3.4561780397601233e-13, 6.301441920872023e-13, 7.122199571976446e-14, 1.6667124540027885e-12, 2.3776729826430224e-12, 9.623220218697846e-13, 1.2102457090695408e-12, 2.030388288438209e-13, 9.433473663864755e-13, 1.304970621677272e-13, 1.9433261774709815e-13, 1.7020195844102432e-13, 4.484790602677836e-13, 6.74156964164087e-13, 6.009122643588848e-13, 4.297139591562088e-13, 8.630923521115282e-13, 5.806406097970015e-13, 5.510785971689155e-13, 5.342563844126979e-13, 7.39946024199626e-13, 2.4809858482893693e-13, 3.948438995923551e-13, 1.803203929683972e-13, 3.125798822553402e-14, 2.514651423886268e-13, 1.4463576865423954e-13, 1.8927214520589052e-13, 3.8598584774169806e-13, 9.99621103635199e-13, 1.006520284174902e-12, 1.5986573710418175e-12, 249.99999999999972, 1.6980421986464524e-12, 9.028620666018917e-13, 3.7183758791016423e-13, 2.0601124116639451e-13, 1.0289881648920458e-12, 9.113168685653875e-13, 2.9439884533144127e-13, 5.107183386352571e-13, 7.353631298967914e-13, 6.551099425536726e-13, 1.6515021196502896e-12, 1.979168523745833e-12, 1.7958152202203923e-12, 1.7619499085575543e-12, 8.050230087045762e-13, 2.4066870137876516e-13, 3.8383634103062846e-13, 3.2374561221572184e-13, 6.644223125899895e-13, 6.017234275791971e-13, 5.9754884389135e-13, 3.636130892019322e-13, 3.4181594065363864e-13, 3.734035324891911e-13, 4.592333281817293e-13, 6.092156723328601e-13, 5.55833576903937e-13, 4.041411720095776e-13, 2.608124697961943e-13, 3.9556234355369957e-13, 1.9089375386106531e-13, 2.1427227341379381e-13, 2.248187502458679e-13, 1.0798442106458747e-13, 1.938121341654625e-13, 6.019672285737179e-13, 4.514114978120242e-14, 2.2092469980756685e-13, 4.687610888776346e-13, 2.4189588878761816e-13, 2.5167802019397514e-13, 2.4848069554475773e-13, 6.538054236448718e-13, 8.568627686097283e-13, 3.940706330328465e-13, 1.85782346165237e-13, 4.5061436880857723e-13, 1.0844102588405206e-13, 2.0196474237630124e-13, 3.129349448435865e-13, 2.497327966876593e-13, 3.9014983553142885e-13, 4.418406239756845e-13, 3.59944320099147e-13, 1.377371616837159e-13, 1.9992544252564802e-13, 1.1884722480720854e-13, 1.2281936404940962e-13, 4.603065229843615e-13, 5.444334875902739e-13, 5.196817372674185e-13, 4.719999001735442e-13, 3.7000148751240866e-13, 2.320694403805355e-13, 5.565133855568535e-13, 9.808539837957328e-13, 1.3594734817150805e-12, 1.8392022667852663e-12, 2.5002944701276984e-12, 1.11594140043853e-12, 1.2339891859034435e-12, 4.985019905457534e-13, 7.367035778679704e-13, 1.015606405280669e-12, 5.90339625402247e-13, 6.855211607432011e-13, 6.524217254552706e-13, 2.121724220416056e-13, 3.458001126870558e-14, 1.6947411932906347e-13, 3.2412339304564e-13, 4.876954229312341e-13, 4.2142746394423877e-13, 4.220298699082791e-13, 4.546354407609233e-13, 4.855061870220542e-13, 5.392039644087863e-13, 5.4449937212343e-13, 4.811122355873927e-13, 2.862721520941375e-13, 1.618199802447491e-13, 3.619916549945515e-14, 1.2259970386818726e-13, 1.6798656078877496e-13, 3.362462719268907e-13, 2.951871482657555e-13, 3.4270705547488126e-13, 3.3706278470150377e-13, 8.901310841547572e-15, 2.8720880191140655e-13, 3.0437630852711917e-13, 4.8309000359915e-13, 4.738629200239136e-13, 6.366017943436137e-13, 9.536339033557601e-13, 6.049917714366295e-13, 5.881405805136494e-13, 5.0188070155961e-13, 4.779666954832935e-13, 5.279106652734964e-13, 6.766705501807593e-14, 6.004161000018953e-13, 3.807176408455786e-13, 2.790539405262179e-13, 7.010791287645987e-14, 5.255572035581557e-13, 3.2259761346450314e-13, 3.525522845256348e-13, 4.5080532356044497e-13, 3.3402210106607e-13, 2.1989062920939816e-13, 1.933126506058507e-13, 1.5290371888369502e-13, 8.122609643009655e-14, 2.893779025884946e-13, 1.26941842018307e-13, 7.075198573240631e-13, 1.7490050278114051e-12, 2.2325285181221244e-12, 1.8110467114891372e-12, 1.87762918794844e-12, 1.6627884816682692e-12, 1.0713917219889278e-12, 9.477826277853511e-13, 6.16481230701433e-13, 1.0741421801616734e-12, 1.9799813337592107e-13, 9.236518170448778e-14, 5.085260480008701e-13, 6.573501749561458e-13, 7.844946711880728e-13, 5.876551717396217e-13, 1.3063212613546244e-12, 8.144251646376892e-13, 8.305834219908739e-13, 3.842464983001863e-13, 4.686330713788316e-13, 3.957595643555919e-13, 3.929289347881062e-13, 5.661252747058895e-13, 3.929289347881063e-13, 3.957595643555919e-13, 4.686330713788317e-13, 3.842464983001864e-13, 8.305834219908739e-13, 8.144251646376892e-13, 1.3063212613546244e-12, 5.876551717396218e-13, 7.844946711880725e-13, 6.573501749561458e-13, 5.085260480008701e-13, 9.23651817044879e-14, 1.97998133375921e-13, 1.0741421801616736e-12, 6.16481230701433e-13, 9.477826277853511e-13, 1.071391721988928e-12, 1.6627884816682692e-12, 1.87762918794844e-12, 1.8110467114891368e-12, 2.2325285181221244e-12, 1.7490050278114051e-12, 7.07519857324063e-13, 1.269418420183069e-13, 2.893779025884946e-13, 8.122609643009649e-14, 1.529037188836951e-13, 1.9331265060585053e-13, 2.1989062920939788e-13, 3.340221010660703e-13, 4.508053235604447e-13, 3.5255228452563487e-13, 3.2259761346450304e-13, 5.255572035581557e-13, 7.010791287646002e-14, 2.79053940526218e-13, 3.8071764084557855e-13, 6.004161000018954e-13, 6.7667055018076e-14, 5.279106652734964e-13, 4.779666954832935e-13, 5.0188070155961e-13, 5.881405805136494e-13, 6.049917714366295e-13, 9.536339033557601e-13, 6.366017943436137e-13, 4.738629200239136e-13, 4.830900035991501e-13, 3.0437630852711917e-13, 2.8720880191140655e-13, 8.901310841547639e-15, 3.3706278470150377e-13, 3.4270705547488136e-13, 2.951871482657554e-13, 3.362462719268906e-13, 1.6798656078877496e-13, 1.2259970386818723e-13, 3.619916549945513e-14, 1.6181998024474912e-13, 2.8627215209413745e-13, 4.811122355873925e-13, 5.444993721234301e-13, 5.392039644087864e-13, 4.855061870220542e-13, 4.5463544076092335e-13, 4.220298699082792e-13, 4.214274639442387e-13, 4.876954229312341e-13, 3.2412339304564e-13, 1.694741193290637e-13, 3.458001126870552e-14, 2.1217242204160543e-13, 6.524217254552705e-13, 6.855211607432008e-13, 5.90339625402247e-13, 1.0156064052806694e-12, 7.367035778679705e-13, 4.985019905457534e-13, 1.2339891859034435e-12, 1.1159414004385301e-12, 2.5002944701276984e-12, 1.8392022667852663e-12, 1.3594734817150805e-12, 9.808539837957328e-13, 5.565133855568535e-13, 2.320694403805355e-13, 3.7000148751240866e-13, 4.71999900173544e-13, 5.196817372674184e-13, 5.444334875902739e-13, 4.603065229843616e-13, 1.2281936404940964e-13, 1.1884722480720844e-13, 1.9992544252564802e-13, 1.3773716168371587e-13, 3.59944320099147e-13, 4.418406239756845e-13, 3.9014983553142895e-13, 2.4973279668765943e-13, 3.129349448435865e-13, 2.0196474237630144e-13, 1.0844102588405208e-13, 4.5061436880857713e-13, 1.857823461652371e-13, 3.9407063303284667e-13, 8.568627686097284e-13, 6.538054236448716e-13, 2.484806955447577e-13, 2.516780201939752e-13, 2.418958887876181e-13, 4.687610888776346e-13, 2.2092469980756688e-13, 4.514114978120243e-14, 6.019672285737179e-13, 1.9381213416546247e-13, 1.079844210645873e-13, 2.2481875024586783e-13, 2.1427227341379366e-13, 1.9089375386106531e-13, 3.9556234355369957e-13, 2.608124697961943e-13, 4.0414117200957745e-13, 5.55833576903937e-13, 6.092156723328601e-13, 4.592333281817293e-13, 3.7340353248919125e-13, 3.418159406536387e-13, 3.6361308920193216e-13, 5.9754884389135e-13, 6.017234275791973e-13, 6.644223125899893e-13, 3.2374561221572174e-13, 3.8383634103062856e-13, 2.4066870137876516e-13, 8.050230087045765e-13, 1.7619499085575543e-12, 1.7958152202203925e-12, 1.979168523745833e-12, 1.6515021196502896e-12, 6.551099425536726e-13, 7.353631298967915e-13, 5.107183386352571e-13, 2.943988453314412e-13, 9.113168685653877e-13, 1.0289881648920456e-12, 2.0601124116639454e-13, 3.718375879101641e-13, 9.028620666018917e-13, 1.6980421986464524e-12, 249.99999999999972, 1.5986573710418173e-12, 1.006520284174902e-12, 9.996211036351988e-13, 3.859858477416979e-13, 1.8927214520589055e-13, 1.446357686542396e-13, 2.514651423886267e-13, 3.125798822553396e-14, 1.8032039296839718e-13, 3.948438995923552e-13, 2.4809858482893683e-13, 7.399460241996259e-13, 5.342563844126978e-13, 5.510785971689153e-13, 5.806406097970016e-13, 8.630923521115282e-13, 4.297139591562088e-13, 6.009122643588847e-13, 6.74156964164087e-13, 4.484790602677837e-13, 1.7020195844102435e-13, 1.9433261774709845e-13, 1.3049706216772724e-13, 9.433473663864753e-13, 2.030388288438209e-13, 1.210245709069541e-12, 9.623220218697844e-13, 2.3776729826430224e-12, 1.6667124540027885e-12, 7.122199571976451e-14, 6.301441920872024e-13, 3.456178039760125e-13, 4.0426301496843726e-13, 6.076710329642576e-13, 4.225867982349603e-13, 5.997764172238444e-13, 5.616245364001262e-13, 1.71416622811752e-13, 6.249262055784728e-13, 5.920707521943189e-13, 1.3885999907479725e-13, 9.156781494455167e-13, 9.771444465366563e-13, 5.1182573907418e-13, 1.231225781580565e-12, 4.045405537345992e-13, 4.800958809224989e-13, 1.034848777099008e-12, 1.8819288244790054e-12, 250.00000000000017, 2.176714945747953e-12, 1.2033985337579402e-12, 5.088939966395667e-13, 4.577758563144947e-13, 7.234174451196188e-13, 1.3749077229123447e-12, 2.4836555355818444e-13, 4.447465552279891e-13, 3.653246752828204e-13, 2.9254867580309614e-13, 1.5909183715921707e-13, 1.7932530308446438e-13, 2.7390482931059997e-13, 2.120923665445641e-13, 2.8716865935749623e-13, 3.0839988462831837e-13, 3.8890261353002973e-13, 2.6861594221148733e-13, 2.447255382361798e-13, 1.3426349069711902e-13, 3.024618786044441e-13, 2.717083623739843e-13, 1.5060653288958193e-13, 7.939937620185857e-14, 4.2491125888088795e-13, 6.941437975556227e-14, 4.232644401173148e-13, 8.882548220982277e-14, 2.473018844940063e-13, 3.904574415945928e-13, 6.132013855021167e-13, 5.568906050303114e-13, 4.153236844251675e-13, 4.36143936797888e-13, 8.356136702938897e-13, 1.0072394478842995e-12, 1.6266575867788452e-12, 1.5714415847014589e-12, 1.1116557175058736e-12, 8.045214825509298e-13, 6.256533719014829e-13, 1.5636428774508073e-13, 1.9757162850996828e-13, 2.723413045662989e-13, 1.6272299935053067e-13, 1.0314841218603274e-13, 3.863850313652527e-13, 3.4464980264748166e-13, 7.062561607748956e-13], "type": "scatter", "x": [-25, -24.900000000000002, -24.8, -24.700000000000003, -24.6, -24.5, -24.400000000000002, -24.3, -24.200000000000003, -24.1, -24, -23.900000000000002, -23.8, -23.700000000000003, -23.6, -23.5, -23.400000000000002, -23.3, -23.200000000000003, -23.1, -23, -22.900000000000002, -22.8, -22.700000000000003, -22.6, -22.5, -22.400000000000002, -22.3, -22.200000000000003, -22.1, -22, -21.900000000000002, -21.8, -21.700000000000003, -21.6, -21.5, -21.400000000000002, -21.3, -21.200000000000003, -21.1, -21, -20.900000000000002, -20.8, -20.700000000000003, -20.6, -20.5, -20.400000000000002, -20.3, -20.200000000000003, -20.1, -20, -19.900000000000002, -19.8, -19.700000000000003, -19.6, -19.5, -19.400000000000002, -19.3, -19.200000000000003, -19.1, -19, -18.900000000000002, -18.8, -18.7, -18.6, -18.5, -18.400000000000002, -18.3, -18.2, -18.1, -18, -17.900000000000002, -17.8, -17.7, -17.6, -17.5, -17.400000000000002, -17.3, -17.2, -17.1, -17, -16.900000000000002, -16.8, -16.7, -16.6, -16.5, -16.400000000000002, -16.3, -16.2, -16.1, -16, -15.9, -15.8, -15.700000000000001, -15.600000000000001, -15.5, -15.4, -15.3, -15.200000000000001, -15.100000000000001, -15, -14.9, -14.8, -14.700000000000001, -14.600000000000001, -14.5, -14.4, -14.3, -14.200000000000001, -14.100000000000001, -14, -13.9, -13.8, -13.700000000000001, -13.600000000000001, -13.5, -13.4, -13.3, -13.200000000000001, -13.100000000000001, -13, -12.9, -12.8, -12.700000000000001, -12.600000000000001, -12.5, -12.4, -12.3, -12.200000000000001, -12.100000000000001, -12, -11.9, -11.8, -11.700000000000001, -11.600000000000001, -11.5, -11.4, -11.3, -11.200000000000001, -11.100000000000001, -11, -10.9, -10.8, -10.700000000000001, -10.600000000000001, -10.5, -10.4, -10.3, -10.200000000000001, -10.100000000000001, -10, -9.9, -9.8, -9.700000000000001, -9.600000000000001, -9.5, -9.4, -9.3, -9.200000000000001, -9.1, -9, -8.9, -8.8, -8.700000000000001, -8.6, -8.5, -8.4, -8.3, -8.200000000000001, -8.1, -8, -7.9, -7.800000000000001, -7.7, -7.6000000000000005, -7.5, -7.4, -7.300000000000001, -7.2, -7.1000000000000005, -7, -6.9, -6.800000000000001, -6.7, -6.6000000000000005, -6.5, -6.4, -6.300000000000001, -6.2, -6.1000000000000005, -6, -5.9, -5.800000000000001, -5.7, -5.6000000000000005, -5.5, -5.4, -5.300000000000001, -5.2, -5.1000000000000005, -5, -4.9, -4.800000000000001, -4.7, -4.6000000000000005, -4.5, -4.4, -4.3, -4.2, -4.1000000000000005, -4, -3.9000000000000004, -3.8000000000000003, -3.7, -3.6, -3.5, -3.4000000000000004, -3.3000000000000003, -3.2, -3.1, -3, -2.9000000000000004, -2.8000000000000003, -2.7, -2.6, -2.5, -2.4000000000000004, -2.3000000000000003, -2.2, -2.1, -2, -1.9000000000000001, -1.8, -1.7000000000000002, -1.6, -1.5, -1.4000000000000001, -1.3, -1.2000000000000002, -1.1, -1, -0.9, -0.8, -0.7000000000000001, -0.6000000000000001, -0.5, -0.4, -0.30000000000000004, -0.2, -0.1, 0, 0.1, 0.2, 0.30000000000000004, 0.4, 0.5, 0.6000000000000001, 0.7000000000000001, 0.8, 0.9, 1, 1.1, 1.2000000000000002, 1.3, 1.4000000000000001, 1.5, 1.6, 1.7000000000000002, 1.8, 1.9000000000000001, 2, 2.1, 2.2, 2.3000000000000003, 2.4000000000000004, 2.5, 2.6, 2.7, 2.8000000000000003, 2.9000000000000004, 3, 3.1, 3.2, 3.3000000000000003, 3.4000000000000004, 3.5, 3.6, 3.7, 3.8000000000000003, 3.9000000000000004, 4, 4.1000000000000005, 4.2, 4.3, 4.4, 4.5, 4.6000000000000005, 4.7, 4.800000000000001, 4.9, 5, 5.1000000000000005, 5.2, 5.300000000000001, 5.4, 5.5, 5.6000000000000005, 5.7, 5.800000000000001, 5.9, 6, 6.1000000000000005, 6.2, 6.300000000000001, 6.4, 6.5, 6.6000000000000005, 6.7, 6.800000000000001, 6.9, 7, 7.1000000000000005, 7.2, 7.300000000000001, 7.4, 7.5, 7.6000000000000005, 7.7, 7.800000000000001, 7.9, 8, 8.1, 8.200000000000001, 8.3, 8.4, 8.5, 8.6, 8.700000000000001, 8.8, 8.9, 9, 9.1, 9.200000000000001, 9.3, 9.4, 9.5, 9.600000000000001, 9.700000000000001, 9.8, 9.9, 10, 10.100000000000001, 10.200000000000001, 10.3, 10.4, 10.5, 10.600000000000001, 10.700000000000001, 10.8, 10.9, 11, 11.100000000000001, 11.200000000000001, 11.3, 11.4, 11.5, 11.600000000000001, 11.700000000000001, 11.8, 11.9, 12, 12.100000000000001, 12.200000000000001, 12.3, 12.4, 12.5, 12.600000000000001, 12.700000000000001, 12.8, 12.9, 13, 13.100000000000001, 13.200000000000001, 13.3, 13.4, 13.5, 13.600000000000001, 13.700000000000001, 13.8, 13.9, 14, 14.100000000000001, 14.200000000000001, 14.3, 14.4, 14.5, 14.600000000000001, 14.700000000000001, 14.8, 14.9, 15, 15.100000000000001, 15.200000000000001, 15.3, 15.4, 15.5, 15.600000000000001, 15.700000000000001, 15.8, 15.9, 16, 16.1, 16.2, 16.3, 16.400000000000002, 16.5, 16.6, 16.7, 16.8, 16.900000000000002, 17, 17.1, 17.2, 17.3, 17.400000000000002, 17.5, 17.6, 17.7, 17.8, 17.900000000000002, 18, 18.1, 18.2, 18.3, 18.400000000000002, 18.5, 18.6, 18.7, 18.8, 18.900000000000002, 19, 19.1, 19.200000000000003, 19.3, 19.400000000000002, 19.5, 19.6, 19.700000000000003, 19.8, 19.900000000000002, 20, 20.1, 20.200000000000003, 20.3, 20.400000000000002, 20.5, 20.6, 20.700000000000003, 20.8, 20.900000000000002, 21, 21.1, 21.200000000000003, 21.3, 21.400000000000002, 21.5, 21.6, 21.700000000000003, 21.8, 21.900000000000002, 22, 22.1, 22.200000000000003, 22.3, 22.400000000000002, 22.5, 22.6, 22.700000000000003, 22.8, 22.900000000000002, 23, 23.1, 23.200000000000003, 23.3, 23.400000000000002, 23.5, 23.6, 23.700000000000003, 23.8, 23.900000000000002, 24, 24.1, 24.200000000000003, 24.3, 24.400000000000002, 24.5, 24.6, 24.700000000000003, 24.8, 24.900000000000002], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 500, "currentCount": 500}}}], "config": {"showlegend": true, "xaxis": {"showticklabels": true, "gridwidth": 0.5, "range": [-26.497, 26.397000000000006], "domain": [0.07646908719743364, 0.9934383202099737], "mirror": false, "tickangle": 0, "showline": true, "zeroline": false, "tickfont": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "zerolinecolor": "rgba(0, 0, 0, 1)", "anchor": "y", "visible": true, "ticks": "inside", "tickmode": "array", "linecolor": "rgba(0, 0, 0, 1)", "showgrid": true, "title": {"text": "Частота (Uw)", "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}}, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickcolor": "rgb(0, 0, 0)", "type": "linear"}, "paper_bgcolor": "rgba(255, 255, 255, 1.000)", "annotations": [{"yanchor": "top", "xanchor": "center", "rotation": 0, "y": 1, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "paper", "showarrow": false, "text": "Амплитудный спектр", "xref": "paper", "x": 0.5349537037037038}], "height": 400, "margin": {"l": 0, "b": 20, "r": 0, "t": 20}, "plot_bgcolor": "rgba(255, 255, 255, 1.000)", "yaxis": {"showticklabels": true, "gridwidth": 0.5, "range": [-7.5, 257.50000000000017], "domain": [0.07581474190726165, 0.9415463692038496], "mirror": false, "tickangle": 0, "showline": true, "zeroline": false, "tickfont": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "zerolinecolor": "rgba(0, 0, 0, 1)", "anchor": "x", "visible": true, "ticks": "inside", "tickmode": "array", "linecolor": "rgba(0, 0, 0, 1)", "showgrid": true, "title": {"text": "Амплитуда", "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}}, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickcolor": "rgb(0, 0, 0)", "type": "linear"}, "legend": {"yanchor": "auto", "xanchor": "auto", "bordercolor": "rgba(0, 0, 0, 1)", "bgcolor": "rgba(255, 255, 255, 1.000)", "borderwidth": 1, "tracegroupgap": 0, "y": 1, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "title": {"font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}, "text": ""}, "traceorder": "normal", "x": 1}, "width": 634.71875}}
{"id": "8d2736d0-b021-413d-9330-808f37336f12", "data": [{"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.0010431883283329542, 1.2229382836072082, 4.375153758918058, 0.650468488400887, 4.736375719294344, 11.929276365099936, 7.440985425785007, 18.09855270467828, 4.371818909903608, 1.3745263252693884, 10.251282239428397, 3.346860065392977, 0.5989027917512134, 1.5344403271020757, 6.500894717534599, 10.205239046221621, 2.151995443079726, 2.870418212133764, 5.141683830917776, 1.9144104810754583, 14.14574782375524, 5.403954574201018, 0.01132125643702218, 14.411422895257228, 10.168368170418567, 0.7050297060584348, 36.22178818932336, 6.649005855417311, 1.5163820631057374, 22.003991419119963, 6.162372656261454, 19.240115943458083, 5.875002667258835, 1.3207903745461265, 8.090472994581235, 6.710683975468246, 9.14052195427165, 9.498523143302508, 2.2118803839593686, 7.825781190946746, 1.8275895129803696, 1.5204818451937179, 1.084237746104727, 0.5363155305900157, 0.38243434527358827, 3.6158341496455546, 20.567498795745628, 25.87655086839117, 6.02839552429074, 2.0044249926841333, 165.85185830459972, 7.547771878393025, 8.590155912671143, 2.488411722518266, 2.346596995989468, 0.816119120542314, 3.006841137358057, 4.401560183516434, 2.820819837672822, 10.426304062463576, 5.448817046225675, 5.316803452373674, 18.123737539993414, 5.400041453953414, 15.674849433361539, 3.1118159069377955, 1.5483301094446607, 24.565147492060486, 0.6670345656670655, 3.6713000543107586, 16.31767328635832, 0.21244261171450404, 6.641368314117946, 8.199225622731028, 3.1935140010252754, 5.962181885509637, 2.0928605019093096, 2.6506976267142037, 3.2709918052285563, 8.714260246426292, 10.483020924740849, 7.634119110818156, 10.632087530835587, 15.270127838751995, 26.65169100141102, 3.470217859680733, 10.401958002085998, 0.9459815857930437, 0.39860728669093526, 3.093823348299161, 0.16193068458833917, 1.8677887562986981, 19.44958582722355, 0.7574292255307031, 5.864679997156069, 19.059722644915063, 7.005605435475923, 0.3864573861601273, 13.5747612206507, 5.57714994578026, 101.94359366600344, 11.119893161571653, 1.1045240782044448, 2.3662385847954055, 9.11854222215228, 2.4040332351848432, 5.778219121914604, 2.690291858456375, 4.396068910054451, 10.710401807253046, 18.47071274777714, 23.05534181719678, 2.6408246230092067, 1.8806224726762342, 4.590895802341248, 3.83057495676413, 16.960782920895987, 11.6480801852027, 1.2576749024497662, 0.9295259760318724, 0.3668549238693586, 3.859608268064944, 10.04145530203921, 5.784169638441374, 8.008346219941973, 15.259566827422804, 2.6595949374784253, 2.207925938382418, 1.8441956659824212, 1.300437949250733, 1.332462166345827, 5.2865009308151585, 12.465776548297024, 7.8360633555044155, 8.558676848924637, 3.882754791991424, 1.0018529002496466, 2.471255543287343, 2.395263736532272, 0.154552630039505, 2.7488173470576553, 25.32274488760747, 7.338328932657057, 1.3396842216650973, 0.4375857770928867, 2.8866767209824946, 18.137571462790316, 1.4606337770360749, 15.613980090005356, 5.4717390422904915, 4.7570903059964555, 6.990773731623808, 0.8423462107922878, 17.94695247791793, 0.5701107554574085, 1.869460121550369, 12.183793848868476, 0.181216773448379, 1.1145006485913296, 4.39386504781037, 2.5765413549042084, 0.0034439820519170244, 6.818157689393136, 9.824431161018808, 1.7966376935472705, 1.080952495848967, 19.987328401715402, 14.996698224734057, 4.631807283889675, 11.961894953803533, 5.443848435667301, 11.603691763448447, 8.486660667599612, 0.8044523137683673, 0.5626836745563099, 14.839983048542429, 6.693841890387771, 11.093961335006808, 13.48047662702403, 11.26407994730287, 1.6664083418326754, 13.353072252844655, 2.590742766660047, 0.19216770307207046, 1.1847252038967029, 20.42617238411655, 19.30216397994301, 2.4035674142357646, 15.012364543477053, 12.4274559153069, 6.488253495336987, 6.439436287321303, 17.14001513847041, 10.175212535607235, 3.9626354345247687, 14.39232935283486, 0.47935345301364674, 0.6539048096617195, 7.197699852874457, 1.663076365051525, 4.902208104702116, 9.491790812133928, 7.611782503308092, 12.573495501067033, 10.628017437059896, 8.172397041064436, 29.778248656700715, 6.740019582274542, 0.4266937819566222, 6.5578708399317485, 6.742134338990667, 0.5594886777499288, 12.677352165212932, 1.0693856242783404, 3.486117828414036, 2.478977746428774, 0.32925559674002114, 1.4454080199866868, 2.4211030930803834, 5.955957525620753, 6.174792562659323, 3.2305809156866725, 4.026507493548295, 0.5467410707603886, 1.5418493504041453, 0.22072423659722903, 3.370080719736998, 6.552984699579984, 6.881383842091879, 0.03645765100895952, 27.066117609970956, 7.51916363572302, 4.551322358046439, 1.594107376095795, 2.957006437634995, 2.421531070110981, 2.199273037627007, 5.872876010565702, 1.2231592554341564, 7.42086731439147, 6.2898274965315135, 1.0626601811284184, 5.964736063451899, 4.949878579014398, 9.61237086411425, 0.30762628769399736, 6.115239498562038, 1.5171943239687908, 1.6458943457483834, 5.724270500855011, 23.225187082485313, 5.724270500855014, 1.6458943457483834, 1.5171943239687917, 6.115239498562036, 0.3076262876939975, 9.612370864114247, 4.9498785790144, 5.964736063451899, 1.0626601811284184, 6.2898274965315135, 7.42086731439147, 1.2231592554341564, 5.872876010565702, 2.199273037627008, 2.42153107011098, 2.957006437634994, 1.594107376095795, 4.551322358046439, 7.519163635723023, 27.06611760997095, 0.0364576510089596, 6.881383842091879, 6.552984699579985, 3.370080719736998, 0.22072423659722903, 1.5418493504041468, 0.5467410707603881, 4.026507493548297, 3.2305809156866725, 6.1747925626593245, 5.955957525620753, 2.4211030930803834, 1.445408019986687, 0.32925559674002114, 2.4789777464287748, 3.486117828414035, 1.0693856242783415, 12.677352165212929, 0.5594886777499297, 6.742134338990668, 6.55787083993175, 0.426693781956624, 6.74001958227454, 29.778248656700715, 8.172397041064432, 10.628017437059896, 12.573495501067033, 7.611782503308093, 9.491790812133928, 4.902208104702116, 1.663076365051526, 7.197699852874459, 0.6539048096617183, 0.47935345301364635, 14.39232935283487, 3.9626354345247687, 10.175212535607235, 17.14001513847041, 6.439436287321302, 6.488253495336985, 12.4274559153069, 15.012364543477059, 2.4035674142357646, 19.302163979943018, 20.426172384116544, 1.1847252038967027, 0.1921677030720706, 2.590742766660047, 13.353072252844658, 1.666408341832674, 11.26407994730287, 13.480476627024027, 11.093961335006805, 6.693841890387769, 14.839983048542429, 0.5626836745563096, 0.8044523137683677, 8.486660667599619, 11.603691763448447, 5.443848435667302, 11.961894953803538, 4.631807283889671, 14.996698224734057, 19.9873284017154, 1.0809524958489676, 1.796637693547271, 9.824431161018808, 6.818157689393131, 0.0034439820519170266, 2.5765413549042084, 4.39386504781037, 1.1145006485913291, 0.181216773448379, 12.183793848868476, 1.8694601215503694, 0.5701107554574087, 17.94695247791793, 0.8423462107922863, 6.990773731623804, 4.7570903059964555, 5.4717390422904915, 15.613980090005361, 1.460633777036075, 18.137571462790316, 2.886676720982497, 0.437585777092886, 1.339684221665098, 7.338328932657063, 25.322744887607477, 2.748817347057657, 0.154552630039505, 2.3952637365322698, 2.4712555432873407, 1.0018529002496463, 3.882754791991424, 8.558676848924637, 7.836063355504419, 12.465776548297024, 5.286500930815158, 1.3324621663458267, 1.3004379492507323, 1.8441956659824201, 2.207925938382417, 2.6595949374784245, 15.259566827422804, 8.008346219941972, 5.784169638441372, 10.041455302039207, 3.8596082680649477, 0.36685492386935836, 0.9295259760318718, 1.257674902449765, 11.648080185202705, 16.960782920895983, 3.83057495676413, 4.590895802341248, 1.880622472676234, 2.6408246230092054, 23.05534181719678, 18.470712747777142, 10.71040180725305, 4.396068910054454, 2.690291858456375, 5.778219121914605, 2.4040332351848424, 9.118542222152277, 2.3662385847954046, 1.104524078204445, 11.119893161571648, 101.94359366600344, 5.577149945780262, 13.574761220650705, 0.3864573861601275, 7.005605435475924, 19.059722644915084, 5.864679997156068, 0.7574292255307037, 19.44958582722355, 1.8677887562986981, 0.16193068458833937, 3.093823348299161, 0.39860728669093515, 0.9459815857930428, 10.401958002086001, 3.470217859680733, 26.65169100141102, 15.270127838751986, 10.632087530835587, 7.634119110818156, 10.483020924740849, 8.714260246426289, 3.2709918052285563, 2.6506976267142046, 2.0928605019093087, 5.962181885509637, 3.1935140010252767, 8.199225622731031, 6.641368314117948, 0.21244261171450493, 16.31767328635832, 3.6713000543107586, 0.6670345656670661, 24.565147492060486, 1.5483301094446602, 3.1118159069377964, 15.674849433361544, 5.400041453953414, 18.123737539993407, 5.316803452373676, 5.448817046225674, 10.426304062463576, 2.8208198376728264, 4.401560183516432, 3.0068411373580615, 0.8161191205423151, 2.3465969959894672, 2.488411722518264, 8.59015591267114, 7.547771878393027, 165.85185830459972, 2.0044249926841333, 6.02839552429074, 25.87655086839117, 20.567498795745628, 3.615834149645551, 0.38243434527358905, 0.5363155305900157, 1.0842377461047248, 1.5204818451937174, 1.827589512980371, 7.825781190946744, 2.211880383959371, 9.498523143302505, 9.14052195427165, 6.710683975468246, 8.090472994581237, 1.3207903745461254, 5.87500266725884, 19.240115943458072, 6.162372656261448, 22.003991419119963, 1.5163820631057363, 6.649005855417309, 36.22178818932336, 0.7050297060584348, 10.168368170418567, 14.411422895257223, 0.011321256437022108, 5.40395457420102, 14.145747823755235, 1.91441048107546, 5.141683830917774, 2.8704182121337616, 2.151995443079727, 10.205239046221621, 6.500894717534595, 1.5344403271020775, 0.598902791751213, 3.3468600653929763, 10.251282239428397, 1.3745263252693884, 4.371818909903607, 18.098552704678276, 7.440985425785007, 11.92927636509993, 4.736375719294343, 0.6504684884008873, 4.375153758918057, 1.222938283607207], "type": "scatter", "x": [-25, -24.900000000000002, -24.8, -24.700000000000003, -24.6, -24.5, -24.400000000000002, -24.3, -24.200000000000003, -24.1, -24, -23.900000000000002, -23.8, -23.700000000000003, -23.6, -23.5, -23.400000000000002, -23.3, -23.200000000000003, -23.1, -23, -22.900000000000002, -22.8, -22.700000000000003, -22.6, -22.5, -22.400000000000002, -22.3, -22.200000000000003, -22.1, -22, -21.900000000000002, -21.8, -21.700000000000003, -21.6, -21.5, -21.400000000000002, -21.3, -21.200000000000003, -21.1, -21, -20.900000000000002, -20.8, -20.700000000000003, -20.6, -20.5, -20.400000000000002, -20.3, -20.200000000000003, -20.1, -20, -19.900000000000002, -19.8, -19.700000000000003, -19.6, -19.5, -19.400000000000002, -19.3, -19.200000000000003, -19.1, -19, -18.900000000000002, -18.8, -18.7, -18.6, -18.5, -18.400000000000002, -18.3, -18.2, -18.1, -18, -17.900000000000002, -17.8, -17.7, -17.6, -17.5, -17.400000000000002, -17.3, -17.2, -17.1, -17, -16.900000000000002, -16.8, -16.7, -16.6, -16.5, -16.400000000000002, -16.3, -16.2, -16.1, -16, -15.9, -15.8, -15.700000000000001, -15.600000000000001, -15.5, -15.4, -15.3, -15.200000000000001, -15.100000000000001, -15, -14.9, -14.8, -14.700000000000001, -14.600000000000001, -14.5, -14.4, -14.3, -14.200000000000001, -14.100000000000001, -14, -13.9, -13.8, -13.700000000000001, -13.600000000000001, -13.5, -13.4, -13.3, -13.200000000000001, -13.100000000000001, -13, -12.9, -12.8, -12.700000000000001, -12.600000000000001, -12.5, -12.4, -12.3, -12.200000000000001, -12.100000000000001, -12, -11.9, -11.8, -11.700000000000001, -11.600000000000001, -11.5, -11.4, -11.3, -11.200000000000001, -11.100000000000001, -11, -10.9, -10.8, -10.700000000000001, -10.600000000000001, -10.5, -10.4, -10.3, -10.200000000000001, -10.100000000000001, -10, -9.9, -9.8, -9.700000000000001, -9.600000000000001, -9.5, -9.4, -9.3, -9.200000000000001, -9.1, -9, -8.9, -8.8, -8.700000000000001, -8.6, -8.5, -8.4, -8.3, -8.200000000000001, -8.1, -8, -7.9, -7.800000000000001, -7.7, -7.6000000000000005, -7.5, -7.4, -7.300000000000001, -7.2, -7.1000000000000005, -7, -6.9, -6.800000000000001, -6.7, -6.6000000000000005, -6.5, -6.4, -6.300000000000001, -6.2, -6.1000000000000005, -6, -5.9, -5.800000000000001, -5.7, -5.6000000000000005, -5.5, -5.4, -5.300000000000001, -5.2, -5.1000000000000005, -5, -4.9, -4.800000000000001, -4.7, -4.6000000000000005, -4.5, -4.4, -4.3, -4.2, -4.1000000000000005, -4, -3.9000000000000004, -3.8000000000000003, -3.7, -3.6, -3.5, -3.4000000000000004, -3.3000000000000003, -3.2, -3.1, -3, -2.9000000000000004, -2.8000000000000003, -2.7, -2.6, -2.5, -2.4000000000000004, -2.3000000000000003, -2.2, -2.1, -2, -1.9000000000000001, -1.8, -1.7000000000000002, -1.6, -1.5, -1.4000000000000001, -1.3, -1.2000000000000002, -1.1, -1, -0.9, -0.8, -0.7000000000000001, -0.6000000000000001, -0.5, -0.4, -0.30000000000000004, -0.2, -0.1, 0, 0.1, 0.2, 0.30000000000000004, 0.4, 0.5, 0.6000000000000001, 0.7000000000000001, 0.8, 0.9, 1, 1.1, 1.2000000000000002, 1.3, 1.4000000000000001, 1.5, 1.6, 1.7000000000000002, 1.8, 1.9000000000000001, 2, 2.1, 2.2, 2.3000000000000003, 2.4000000000000004, 2.5, 2.6, 2.7, 2.8000000000000003, 2.9000000000000004, 3, 3.1, 3.2, 3.3000000000000003, 3.4000000000000004, 3.5, 3.6, 3.7, 3.8000000000000003, 3.9000000000000004, 4, 4.1000000000000005, 4.2, 4.3, 4.4, 4.5, 4.6000000000000005, 4.7, 4.800000000000001, 4.9, 5, 5.1000000000000005, 5.2, 5.300000000000001, 5.4, 5.5, 5.6000000000000005, 5.7, 5.800000000000001, 5.9, 6, 6.1000000000000005, 6.2, 6.300000000000001, 6.4, 6.5, 6.6000000000000005, 6.7, 6.800000000000001, 6.9, 7, 7.1000000000000005, 7.2, 7.300000000000001, 7.4, 7.5, 7.6000000000000005, 7.7, 7.800000000000001, 7.9, 8, 8.1, 8.200000000000001, 8.3, 8.4, 8.5, 8.6, 8.700000000000001, 8.8, 8.9, 9, 9.1, 9.200000000000001, 9.3, 9.4, 9.5, 9.600000000000001, 9.700000000000001, 9.8, 9.9, 10, 10.100000000000001, 10.200000000000001, 10.3, 10.4, 10.5, 10.600000000000001, 10.700000000000001, 10.8, 10.9, 11, 11.100000000000001, 11.200000000000001, 11.3, 11.4, 11.5, 11.600000000000001, 11.700000000000001, 11.8, 11.9, 12, 12.100000000000001, 12.200000000000001, 12.3, 12.4, 12.5, 12.600000000000001, 12.700000000000001, 12.8, 12.9, 13, 13.100000000000001, 13.200000000000001, 13.3, 13.4, 13.5, 13.600000000000001, 13.700000000000001, 13.8, 13.9, 14, 14.100000000000001, 14.200000000000001, 14.3, 14.4, 14.5, 14.600000000000001, 14.700000000000001, 14.8, 14.9, 15, 15.100000000000001, 15.200000000000001, 15.3, 15.4, 15.5, 15.600000000000001, 15.700000000000001, 15.8, 15.9, 16, 16.1, 16.2, 16.3, 16.400000000000002, 16.5, 16.6, 16.7, 16.8, 16.900000000000002, 17, 17.1, 17.2, 17.3, 17.400000000000002, 17.5, 17.6, 17.7, 17.8, 17.900000000000002, 18, 18.1, 18.2, 18.3, 18.400000000000002, 18.5, 18.6, 18.7, 18.8, 18.900000000000002, 19, 19.1, 19.200000000000003, 19.3, 19.400000000000002, 19.5, 19.6, 19.700000000000003, 19.8, 19.900000000000002, 20, 20.1, 20.200000000000003, 20.3, 20.400000000000002, 20.5, 20.6, 20.700000000000003, 20.8, 20.900000000000002, 21, 21.1, 21.200000000000003, 21.3, 21.400000000000002, 21.5, 21.6, 21.700000000000003, 21.8, 21.900000000000002, 22, 22.1, 22.200000000000003, 22.3, 22.400000000000002, 22.5, 22.6, 22.700000000000003, 22.8, 22.900000000000002, 23, 23.1, 23.200000000000003, 23.3, 23.400000000000002, 23.5, 23.6, 23.700000000000003, 23.8, 23.900000000000002, 24, 24.1, 24.200000000000003, 24.3, 24.400000000000002, 24.5, 24.6, 24.700000000000003, 24.8, 24.900000000000002], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 500, "currentCount": 500}}}], "config": {"showlegend": true, "xaxis": {"showticklabels": true, "gridwidth": 0.5, "range": [-26.497, 26.397000000000006], "domain": [0.07646908719743364, 0.9934383202099737], "mirror": false, "tickangle": 0, "showline": true, "zeroline": false, "tickfont": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "zerolinecolor": "rgba(0, 0, 0, 1)", "anchor": "y", "visible": true, "ticks": "inside", "tickmode": "array", "linecolor": "rgba(0, 0, 0, 1)", "showgrid": true, "title": {"text": "Частота (Гц)", "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}}, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickcolor": "rgb(0, 0, 0)", "type": "linear"}, "paper_bgcolor": "rgba(255, 255, 255, 1.000)", "annotations": [{"yanchor": "top", "xanchor": "center", "rotation": 0, "y": 1, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "paper", "showarrow": false, "text": "Спектр мощности", "xref": "paper", "x": 0.5349537037037038}], "height": 400, "margin": {"l": 0, "b": 20, "r": 0, "t": 20}, "plot_bgcolor": "rgba(255, 255, 255, 1.000)", "yaxis": {"showticklabels": true, "gridwidth": 0.5, "range": [-4.97448126515981, 170.82738275808788], "domain": [0.07581474190726165, 0.9415463692038496], "mirror": false, "tickangle": 0, "showline": true, "zeroline": false, "tickfont": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "zerolinecolor": "rgba(0, 0, 0, 1)", "anchor": "x", "visible": true, "ticks": "inside", "tickmode": "array", "linecolor": "rgba(0, 0, 0, 1)", "showgrid": true, "title": {"text": "Мощность сигнала", "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}}, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickcolor": "rgb(0, 0, 0)", "type": "linear"}, "legend": {"yanchor": "auto", "xanchor": "auto", "bordercolor": "rgba(0, 0, 0, 1)", "bgcolor": "rgba(255, 255, 255, 1.000)", "borderwidth": 1, "tracegroupgap": 0, "y": 1, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "title": {"font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}, "text": ""}, "traceorder": "normal", "x": 1}, "width": 634.71875}}
{"id": "23a4edbd-1b76-4c01-814d-1377a99cf853", "data": [{"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "", "zmin": null, "yaxis": "y", "legendgroup": "", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0.007934570316194822, 0.015991210944946488, 0.007934570316194822, -0.007934570316194822, 0, -0.015991210944946488, 0.023803710948584467, 0, 0.007934570316194822, -0.04772949220972578, -0.023803710948584467, 0.007934570316194822, 0.03210449220244982, 0.015991210944946488, -0.015991210944946488, -0.007934570316194822, 0, 0.015991210944946488, 0.007934570316194822, 0.023803710948584467, 0.023803710948584467, 0.007934570316194822, -0.015991210944946488, -0.007934570316194822, 0, -0.0399169922060878, 0, 0.015991210944946488, 0.0399169922060878, 0.023803710948584467, -0.007934570316194822, -0.023803710948584467, -0.023803710948584467, -0.023803710948584467, 0.023803710948584467, 0.03210449220244982, 0.007934570316194822, 0, 0.007934570316194822, 0.015991210944946488, 0.023803710948584467, -0.007934570316194822, -0.015991210944946488, 0.015991210944946488, -0.007934570316194822, -0.023803710948584467, -0.007934570316194822, 0, -0.03210449220244982, 0, 0, -0.015991210944946488, -0.015991210944946488, 0.007934570316194822, 0.015991210944946488, 0.015991210944946488, 0, 0, 0, 0.007934570316194822, 0.023803710948584467, 0.03210449220244982, 0.007934570316194822, -0.015991210944946488, -0.015991210944946488, -0.015991210944946488, 0.007934570316194822, 0.015991210944946488, -0.007934570316194822, -0.015991210944946488, -0.015991210944946488, -0.007934570316194822, -0.015991210944946488, 0.023803710948584467, -0.007934570316194822, -0.007934570316194822, -0.007934570316194822, 0.015991210944946488, -0.015991210944946488, -0.007934570316194822, -0.007934570316194822, 0.023803710948584467, 0.0399169922060878, 0.023803710948584467, 0.015991210944946488, -0.023803710948584467, -0.015991210944946488, -0.015991210944946488, 0.015991210944946488, -0.007934570316194822, -0.007934570316194822, 0, -0.03210449220244982, -0.015991210944946488, -0.015991210944946488, -0.023803710948584467, 0.007934570316194822, 0, 0.023803710948584467, 0.007934570316194822, 0.007934570316194822, -0.015991210944946488, 0.007934570316194822, 0.015991210944946488, 0.023803710948584467, -0.007934570316194822, 0.007934570316194822, 0, 0.015991210944946488, -0.007934570316194822, 0.015991210944946488, 0.015991210944946488, -0.023803710948584467, -0.0399169922060878, 0.007934570316194822, -0.007934570316194822, 0.007934570316194822, -0.007934570316194822, -0.023803710948584467, -0.03210449220244982, -0.007934570316194822, 0.007934570316194822, 0.023803710948584467, 0.007934570316194822, -0.007934570316194822, 0, 0.0399169922060878, 0.03210449220244982, 0.007934570316194822, 0, -0.007934570316194822, 0.007934570316194822, 0.023803710948584467, 0.007934570316194822, -0.023803710948584467, -0.0399169922060878, -0.023803710948584467, -0.03210449220244982, -0.015991210944946488, -0.023803710948584467, 0.03210449220244982, 0.03210449220244982, -0.015991210944946488, -0.03210449220244982, -0.015991210944946488, -0.007934570316194822, 0.03210449220244982, 0.04772949220972578, 0.04772949220972578, 0.007934570316194822, 0.023803710948584467, 0, 0, 0, 0.007934570316194822, -0.023803710948584467, 0, -0.015991210944946488, -0.007934570316194822, -0.015991210944946488, -0.0399169922060878, -0.023803710948584467, 0, 0.023803710948584467, 0.015991210944946488, 0, -0.023803710948584467, -0.03210449220244982, -0.023803710948584467, 0.03210449220244982, 0.07214355472109446, 0.07214355472109446, 0.03210449220244982, -0.007934570316194822, -0.015991210944946488, -0.03210449220244982, -0.023803710948584467, 0, 0.0399169922060878, 0.023803710948584467, -0.007934570316194822, -0.06433105471745648, -0.07214355472109446, -0.0399169922060878, -0.007934570316194822, 0.023803710948584467, 0.023803710948584467, 0.007934570316194822, 0.007934570316194822, -0.007934570316194822, -0.0399169922060878, -0.007934570316194822, 0.03210449220244982, 0.07995605472473244, 0.07995605472473244, 0.015991210944946488, -0.007934570316194822, -0.03210449220244982, -0.03210449220244982, -0.015991210944946488, 0.023803710948584467, 0.015991210944946488, -0.0399169922060878, -0.03210449220244982, -0.03210449220244982, -0.023803710948584467, -0.0399169922060878, 0.007934570316194822, 0.015991210944946488, 0, 0, -0.023803710948584467, -0.03210449220244982, -0.015991210944946488, 0.055541992213363756, 0.055541992213363756, 0.07995605472473244, 0.023803710948584467, -0.015991210944946488, -0.0399169922060878, 0, 0, 0.007934570316194822, 0, 0, -0.03210449220244982, -0.04772949220972578, -0.023803710948584467, -0.015991210944946488, 0.007934570316194822, 0, -0.007934570316194822, -0.03210449220244982, -0.0399169922060878, -0.007934570316194822, 0.007934570316194822, 0.023803710948584467, 0.06433105471745648, 0.07995605472473244, 0.0399169922060878, 0, -0.007934570316194822, -0.03210449220244982, 0, 0.023803710948584467, 0.015991210944946488, -0.015991210944946488, -0.04772949220972578, -0.03210449220244982, -0.0399169922060878, 0, -0.007934570316194822, -0.007934570316194822, -0.007934570316194822, -0.023803710948584467, -0.023803710948584467, -0.0399169922060878, -0.015991210944946488, 0.03210449220244982, 0.0955810547320084, 0.08776855472837042, 0.06433105471745648, 0.015991210944946488, -0.03210449220244982, -0.03210449220244982, -0.007934570316194822, 0.007934570316194822, 0.04772949220972578, 0.023803710948584467, -0.0399169922060878, -0.07995605472473244, -0.06433105471745648, -0.03210449220244982, 0.007934570316194822, 0.015991210944946488, 0.0399169922060878, -0.007934570316194822, -0.015991210944946488, -0.055541992213363756, -0.08776855472837042, -0.03210449220244982, 0.07995605472473244, 0.14831542975656475, 0.10339355473564638, 0.023803710948584467, -0.023803710948584467, -0.06433105471745648, -0.023803710948584467, 0.023803710948584467, 0.04772949220972578, 0.03210449220244982, -0.015991210944946488, -0.055541992213363756, -0.055541992213363756, -0.0399169922060878, -0.023803710948584467, 0, 0.0399169922060878, 0.015991210944946488, -0.0399169922060878, -0.07995605472473244, -0.0955810547320084, -0.055541992213363756, 0.06433105471745648, 0.14050292975292678, 0.14831542975656475, 0.07995605472473244, -0.007934570316194822, -0.055541992213363756, -0.023803710948584467, 0.023803710948584467, 0.04772949220972578, 0.0399169922060878, -0.007934570316194822, -0.06433105471745648, -0.06433105471745648, -0.06433105471745648, -0.03210449220244982, 0.007934570316194822, 0.055541992213363756, 0.0399169922060878, -0.0399169922060878, -0.0955810547320084, -0.11120605473928435, -0.04772949220972578, 0.06433105471745648, 0.12487792974565082, 0.1326904297492888, 0.11120605473928435, 0.007934570316194822, -0.055541992213363756, -0.06433105471745648, -0.007934570316194822, 0.04772949220972578, 0.07995605472473244, 0.0399169922060878, -0.055541992213363756, -0.08776855472837042, -0.0955810547320084, -0.023803710948584467, 0.015991210944946488, 0.04772949220972578, 0.055541992213363756, 0.015991210944946488, -0.07995605472473244, -0.1326904297492888, -0.11120605473928435, 0.007934570316194822, 0.11901855474292233, 0.1639404297638407, 0.12487792974565082, 0.07214355472109446, -0.0399169922060878, -0.07214355472109446, -0.023803710948584467, 0.0399169922060878, 0.07214355472109446, 0.06433105471745648, 0.007934570316194822, -0.08776855472837042, -0.10339355473564638, -0.07995605472473244, -0.04772949220972578, 0.023803710948584467, 0.07214355472109446, 0.055541992213363756, -0.007934570316194822, -0.11120605473928435, -0.15612792976020273, -0.0955810547320084, 0.03210449220244982, 0.19519042977839263, 0.21862792978930656, 0.12487792974565082, -0.015991210944946488, -0.0955810547320084, -0.11120605473928435, 0, 0.055541992213363756, 0.11120605473928435, 0.04772949220972578, -0.007934570316194822, -0.11120605473928435, -0.11901855474292233, -0.08776855472837042, -0.03210449220244982, 0.055541992213363756, 0.07214355472109446, 0.0399169922060878, -0.03210449220244982, -0.11901855474292233, -0.1717529297674787, -0.0955810547320084, 0.06433105471745648, 0.21081542978566858, 0.17956542977111667, 0.07214355472109446, -0.0399169922060878, -0.11120605473928435, -0.055541992213363756, 0, 0.06433105471745648, 0.10339355473564638, 0.06433105471745648, -0.0399169922060878, -0.11901855474292233, -0.11901855474292233, -0.08776855472837042, 0.007934570316194822, 0.07214355472109446, 0.07214355472109446, 0.03210449220244982, -0.055541992213363756, -0.14050292975292678, -0.1717529297674787, -0.055541992213363756, 0.11901855474292233, 0.22644042979294454, 0.1717529297674787, 0.06433105471745648, -0.0399169922060878, -0.11120605473928435, -0.04772949220972578, 0.015991210944946488, 0.07214355472109446, 0.07214355472109446, 0, -0.07214355472109446, -0.10339355473564638, -0.07214355472109446, -0.055541992213363756, 0, 0.07214355472109446, 0.0955810547320084, 0.023803710948584467, -0.07214355472109446, -0.1717529297674787, -0.15612792976020273, -0.007934570316194822, 0.1717529297674787, 0.22644042979294454, 0.14831542975656475, 0.055541992213363756, -0.08776855472837042, -0.10339355473564638, -0.07995605472473244, 0.055541992213363756, 0.10339355473564638, 0.07214355472109446, -0.007934570316194822, -0.07995605472473244, -0.11120605473928435, -0.11901855474292233, -0.0399169922060878, 0.03210449220244982, 0.11120605473928435, 0.0955810547320084, -0.007934570316194822, -0.0955810547320084, -0.19519042977839263, -0.1639404297638407, -0.015991210944946488, 0.17956542977111667, 0.21081542978566858, 0.14050292975292678, -0.007934570316194822, -0.10339355473564638, -0.0955810547320084, -0.015991210944946488, 0.08776855472837042, 0.08776855472837042, 0.055541992213363756, -0.0399169922060878, -0.10339355473564638, -0.0955810547320084, -0.0955810547320084, -0.015991210944946488, 0.015991210944946488, 0.055541992213363756, 0.06433105471745648, 0.007934570316194822, -0.11120605473928435, -0.2030029297820306, -0.1326904297492888, 0.055541992213363756, 0.22644042979294454, 0.21862792978930656, 0.11901855474292233, -0.04772949220972578, -0.10339355473564638, -0.07995605472473244, 0.015991210944946488, 0.08776855472837042, 0.07214355472109446, 0.0399169922060878, -0.055541992213363756, -0.10339355473564638, -0.11901855474292233, -0.07214355472109446, -0.03210449220244982, 0.03210449220244982, 0.08776855472837042, 0.10339355473564638, 0.023803710948584467, -0.11120605473928435, -0.21862792978930656, -0.10339355473564638, 0.10339355473564638, 0.21862792978930656, 0.19519042977839263, 0.11120605473928435, -0.023803710948584467, -0.11120605473928435, -0.08776855472837042, -0.015991210944946488, 0.06433105471745648, 0.10339355473564638, 0.0399169922060878, -0.03210449220244982, -0.1326904297492888, -0.10339355473564638, -0.055541992213363756, 0, 0.055541992213363756, 0.08776855472837042, 0.07995605472473244, -0.015991210944946488, -0.15612792976020273, -0.17956542977111667, -0.11120605473928435, 0.0955810547320084, 0.2420654298002205, 0.17956542977111667, 0.055541992213363756, -0.055541992213363756, -0.11901855474292233, -0.055541992213363756, 0.015991210944946488, 0.08776855472837042, 0.10339355473564638, 0.0399169922060878, -0.015991210944946488, -0.10339355473564638, -0.14831542975656475, -0.0955810547320084, -0.007934570316194822, 0.03210449220244982, 0.07995605472473244, 0.07995605472473244, 0, -0.11901855474292233, -0.18737792977475465, -0.11120605473928435, 0.07214355472109446, 0.21862792978930656, 0.21862792978930656, 0.12487792974565082, -0.015991210944946488, -0.11901855474292233, -0.10339355473564638, -0.03210449220244982, 0.07214355472109446, 0.08776855472837042, 0.03210449220244982, -0.03210449220244982, -0.10339355473564638, -0.11901855474292233, -0.055541992213363756, 0.007934570316194822, 0.055541992213363756, 0.06433105471745648, 0.07995605472473244, 0.023803710948584467, -0.0955810547320084, -0.19519042977839263, -0.10339355473564638, 0.0955810547320084, 0.22644042979294454, 0.19519042977839263, 0.07995605472473244, -0.0399169922060878, -0.10339355473564638, -0.10339355473564638, 0.007934570316194822, 0.06433105471745648, 0.07214355472109446, 0.04772949220972578, -0.015991210944946488, -0.08776855472837042, -0.08776855472837042, -0.055541992213363756, -0.015991210944946488, 0.0399169922060878, 0.055541992213363756, 0.08776855472837042, 0.055541992213363756, -0.10339355473564638, -0.23425292979658252, -0.18737792977475465, 0.03210449220244982, 0.2030029297820306, 0.25378417980567747, 0.11901855474292233, -0.03210449220244982, -0.0955810547320084, -0.10339355473564638, -0.03210449220244982, 0.055541992213363756, 0.07214355472109446, 0.0399169922060878, 0, -0.055541992213363756, -0.11120605473928435, -0.0955810547320084, -0.03210449220244982, 0.04772949220972578, 0.0955810547320084, 0.07995605472473244, 0.023803710948584467, -0.11120605473928435, -0.21862792978930656, -0.15612792976020273, 0.0399169922060878, 0.21862792978930656, 0.22644042979294454, 0.12487792974565082, 0, -0.11120605473928435, -0.11901855474292233, -0.07995605472473244, 0.07214355472109446, 0.10339355473564638, 0.06433105471745648, -0.015991210944946488, -0.0955810547320084, -0.11901855474292233, -0.07995605472473244, -0.023803710948584467, 0.0399169922060878, 0.07995605472473244, 0.07995605472473244, 0.04772949220972578, -0.0399169922060878, -0.21081542978566858, -0.14050292975292678, 0.023803710948584467, 0.18737792977475465, 0.19519042977839263, 0.11901855474292233, 0, -0.0955810547320084, -0.11901855474292233, -0.04772949220972578, 0.06433105471745648, 0.11120605473928435, 0.04772949220972578, 0, -0.07995605472473244, -0.10339355473564638, -0.10339355473564638, -0.0399169922060878, 0.04772949220972578, 0.08776855472837042, 0.08776855472837042, 0.0399169922060878, -0.07995605472473244, -0.2030029297820306, -0.21081542978566858, -0.023803710948584467, 0.1717529297674787, 0.25378417980567747, 0.15612792976020273, 0.015991210944946488, -0.11120605473928435, -0.11901855474292233, -0.0399169922060878, 0.04772949220972578, 0.0955810547320084, 0.08776855472837042, -0.007934570316194822, -0.06433105471745648, -0.11120605473928435, -0.11120605473928435, -0.055541992213363756, 0, 0.07995605472473244, 0.11120605473928435, 0.06433105471745648, -0.055541992213363756, -0.22644042979294454, -0.21862792978930656, -0.03210449220244982, 0.17956542977111667, 0.22644042979294454, 0.17956542977111667, 0.055541992213363756, -0.08776855472837042, -0.11120605473928435, -0.07995605472473244, 0.03210449220244982, 0.0955810547320084, 0.07995605472473244, 0.015991210944946488, -0.055541992213363756, -0.11120605473928435, -0.12487792974565082, -0.055541992213363756, 0, 0.07214355472109446, 0.12487792974565082, 0.07995605472473244, -0.03210449220244982, -0.1639404297638407, -0.21862792978930656, -0.0399169922060878, 0.1639404297638407, 0.23425292979658252, 0.15612792976020273, 0.055541992213363756, -0.055541992213363756, -0.14050292975292678, -0.10339355473564638, 0.023803710948584467, 0.08776855472837042, 0.0955810547320084, 0.0399169922060878, -0.015991210944946488, -0.0955810547320084, -0.10339355473564638, -0.055541992213363756, 0, 0.06433105471745648, 0.08776855472837042, 0.07995605472473244, 0.007934570316194822, -0.14050292975292678, -0.23425292979658252, -0.14831542975656475, 0.11120605473928435, 0.21862792978930656, 0.21081542978566858, 0.07995605472473244, -0.07214355472109446, -0.14050292975292678, -0.0955810547320084, 0.015991210944946488, 0.1326904297492888, 0.11901855474292233, 0.055541992213363756, -0.07214355472109446, -0.11120605473928435, -0.11901855474292233, -0.06433105471745648, -0.007934570316194822, 0.06433105471745648, 0.08776855472837042, 0.07214355472109446, -0.015991210944946488, -0.14050292975292678, -0.25378417980567747, -0.14831542975656475, 0.07995605472473244, 0.2420654298002205, 0.2420654298002205, 0.11901855474292233, -0.007934570316194822, -0.0955810547320084, -0.11120605473928435, -0.007934570316194822, 0.07995605472473244, 0.055541992213363756, 0.015991210944946488, -0.023803710948584467, -0.08776855472837042, -0.0955810547320084, -0.07214355472109446, -0.023803710948584467, -0.007934570316194822, 0.07995605472473244, 0.11120605473928435, 0.055541992213363756, -0.04772949220972578, -0.21081542978566858, -0.2030029297820306, 0.015991210944946488, 0.2030029297820306, 0.2420654298002205, 0.14050292975292678, 0.023803710948584467, -0.07214355472109446, -0.10339355473564638, -0.04772949220972578, 0.023803710948584467, 0.06433105471745648, 0.07995605472473244, 0.0399169922060878, -0.055541992213363756, -0.1326904297492888, -0.10339355473564638, -0.055541992213363756, 0.015991210944946488, 0.04772949220972578, 0.08776855472837042, 0.06433105471745648, -0.023803710948584467, -0.15612792976020273, -0.23425292979658252, -0.0955810547320084, 0.1326904297492888, 0.25378417980567747, 0.19519042977839263, 0.055541992213363756, -0.07995605472473244, -0.0955810547320084, -0.06433105471745648, 0, 0.07995605472473244, 0.0955810547320084, 0.023803710948584467, -0.04772949220972578, -0.11120605473928435, -0.07995605472473244, -0.055541992213363756, -0.03210449220244982, 0, 0.06433105471745648, 0.07214355472109446, 0.023803710948584467, -0.11901855474292233, -0.19519042977839263, -0.15612792976020273, 0.07214355472109446, 0.22644042979294454, 0.25378417980567747, 0.11901855474292233, -0.023803710948584467, -0.11901855474292233, -0.10339355473564638, -0.015991210944946488, 0.055541992213363756, 0.0955810547320084, 0.06433105471745648, 0, -0.11120605473928435, -0.12487792974565082, -0.11120605473928435, -0.0399169922060878, 0.0399169922060878, 0.10339355473564638, 0.0955810547320084, 0.04772949220972578, -0.0955810547320084, -0.2030029297820306, -0.17956542977111667, 0.03210449220244982, 0.21081542978566858, 0.25378417980567747, 0.14831542975656475, -0.007934570316194822, -0.1326904297492888, -0.11901855474292233, -0.0399169922060878, 0.04772949220972578, 0.10339355473564638, 0.07995605472473244, 0.015991210944946488, -0.07995605472473244, -0.14831542975656475, -0.0955810547320084, -0.023803710948584467, 0.04772949220972578, 0.07214355472109446, 0.07214355472109446, 0.04772949220972578, -0.03210449220244982, -0.19519042977839263, -0.21862792978930656, -0.06433105471745648, 0.1639404297638407, 0.25378417980567747, 0.15612792976020273, 0.015991210944946488, -0.07995605472473244, -0.10339355473564638, -0.055541992213363756, 0.023803710948584467, 0.08776855472837042, 0.07995605472473244, 0.04772949220972578, -0.055541992213363756, -0.0955810547320084, -0.11901855474292233, -0.07995605472473244, 0, 0.04772949220972578, 0.08776855472837042, 0.07214355472109446, 0, -0.14831542975656475, -0.21862792978930656, -0.08776855472837042, 0.08776855472837042, 0.23425292979658252, 0.22644042979294454, 0.10339355473564638, -0.0399169922060878, -0.10339355473564638, -0.055541992213363756, 0.015991210944946488, 0.04772949220972578, 0.06433105471745648, 0.0399169922060878, 0, -0.07214355472109446, -0.11901855474292233, -0.0955810547320084, -0.03210449220244982, 0.04772949220972578, 0.0955810547320084, 0.0955810547320084, 0.023803710948584467, -0.12487792974565082, -0.2420654298002205, -0.11901855474292233, 0.11120605473928435, 0.23425292979658252, 0.2420654298002205, 0.10339355473564638, -0.0399169922060878, -0.1326904297492888, -0.11120605473928435, -0.03210449220244982, 0.0955810547320084, 0.11120605473928435, 0.06433105471745648, -0.007934570316194822, -0.0955810547320084, -0.11901855474292233, -0.08776855472837042, -0.007934570316194822, 0.04772949220972578, 0.10339355473564638, 0.08776855472837042, 0.03210449220244982, -0.0955810547320084, -0.2420654298002205, -0.21081542978566858, 0, 0.22644042979294454, 0.25378417980567747, 0.1326904297492888, -0.015991210944946488, -0.11120605473928435, -0.12487792974565082, -0.015991210944946488, 0.08776855472837042, 0.08776855472837042, 0.055541992213363756, 0, -0.07214355472109446, -0.11901855474292233, -0.0955810547320084, -0.055541992213363756, 0.015991210944946488, 0.08776855472837042, 0.0955810547320084, 0.04772949220972578, -0.04772949220972578, -0.2030029297820306, -0.2420654298002205, -0.04772949220972578, 0.18737792977475465, 0.25378417980567747, 0.19519042977839263, 0.04772949220972578, -0.07995605472473244, -0.12487792974565082, -0.04772949220972578, 0.0399169922060878, 0.08776855472837042, 0.06433105471745648, 0.03210449220244982, -0.06433105471745648, -0.1326904297492888, -0.1326904297492888, -0.055541992213363756, 0.007934570316194822, 0.04772949220972578, 0.0955810547320084, 0.0955810547320084, 0.023803710948584467, -0.1639404297638407, -0.25378417980567747, -0.11901855474292233, 0.1326904297492888, 0.25378417980567747, 0.21081542978566858, 0.06433105471745648, -0.04772949220972578, -0.1326904297492888, -0.07995605472473244, 0.015991210944946488, 0.0955810547320084, 0.10339355473564638, 0.03210449220244982, -0.0399169922060878, -0.08776855472837042, -0.11901855474292233, -0.07214355472109446, -0.007934570316194822, 0.04772949220972578, 0.07995605472473244, 0.06433105471745648, 0.015991210944946488, -0.08776855472837042, -0.25378417980567747, -0.18737792977475465, 0.04772949220972578, 0.23425292979658252, 0.22644042979294454, 0.08776855472837042, -0.055541992213363756, -0.10339355473564638, -0.08776855472837042, -0.015991210944946488, 0.06433105471745648, 0.11120605473928435, 0.07214355472109446, -0.023803710948584467, -0.07214355472109446, -0.11901855474292233, -0.08776855472837042, -0.03210449220244982, 0.03210449220244982, 0.06433105471745648, 0.07995605472473244, 0.04772949220972578, -0.03210449220244982, -0.2420654298002205, -0.25378417980567747, -0.03210449220244982, 0.2030029297820306, 0.25378417980567747, 0.14050292975292678, 0.04772949220972578, -0.06433105471745648, -0.12487792974565082, -0.0399169922060878, 0.055541992213363756, 0.08776855472837042, 0.07995605472473244, 0.03210449220244982, -0.055541992213363756, -0.10339355473564638, -0.12487792974565082, -0.0399169922060878, -0.007934570316194822, 0.055541992213363756, 0.08776855472837042, 0.055541992213363756, 0, -0.15612792976020273, -0.25378417980567747, -0.10339355473564638, 0.11901855474292233, 0.2420654298002205, 0.21862792978930656, 0.08776855472837042, -0.06433105471745648, -0.11120605473928435, -0.08776855472837042, 0, 0.08776855472837042, 0.0955810547320084, 0.06433105471745648, -0.04772949220972578, -0.12487792974565082, -0.12487792974565082, -0.08776855472837042, 0.007934570316194822, 0.0399169922060878, 0.0955810547320084, 0.0955810547320084, 0.0399169922060878, -0.0955810547320084, -0.2420654298002205, -0.21862792978930656, 0.007934570316194822, 0.23425292979658252, 0.25378417980567747, 0.11901855474292233, -0.0399169922060878, -0.10339355473564638, -0.11120605473928435, -0.015991210944946488, 0.055541992213363756, 0.08776855472837042, 0.07995605472473244, 0.023803710948584467, -0.04772949220972578, -0.11120605473928435, -0.11120605473928435, -0.055541992213363756, 0.015991210944946488, 0.0955810547320084, 0.07995605472473244, 0.015991210944946488, -0.04772949220972578, -0.17956542977111667, -0.22644042979294454, -0.04772949220972578, 0.1639404297638407, 0.2420654298002205, 0.19519042977839263, 0.06433105471745648, -0.0955810547320084, -0.11901855474292233, -0.04772949220972578, 0.04772949220972578, 0.10339355473564638, 0.08776855472837042, 0.007934570316194822, -0.07214355472109446, -0.07995605472473244, -0.11901855474292233, -0.055541992213363756, 0, 0.07995605472473244, 0.08776855472837042, 0.055541992213363756, -0.015991210944946488, -0.18737792977475465, -0.25378417980567747, -0.11120605473928435, 0.14050292975292678, 0.2850341798202294, 0.21081542978566858, 0.055541992213363756, -0.055541992213363756, -0.10339355473564638, -0.11120605473928435, 0.007934570316194822, 0.0955810547320084, 0.10339355473564638, 0.055541992213363756, -0.0399169922060878, -0.10339355473564638, -0.10339355473564638, -0.07995605472473244, -0.007934570316194822, 0.04772949220972578, 0.08776855472837042, 0.07214355472109446, 0.0399169922060878, -0.07214355472109446, -0.21862792978930656, -0.22644042979294454, 0, 0.2030029297820306, 0.2420654298002205, 0.14050292975292678, 0.007934570316194822, -0.0955810547320084, -0.0955810547320084, -0.0399169922060878, 0.04772949220972578, 0.10339355473564638, 0.0955810547320084, 0.007934570316194822, -0.04772949220972578, -0.10339355473564638, -0.08776855472837042, -0.04772949220972578, 0.023803710948584467, 0.07214355472109446, 0.07214355472109446, 0.055541992213363756, -0.04772949220972578, -0.19519042977839263, -0.25378417980567747, -0.07995605472473244, 0.1639404297638407, 0.2694091798129534, 0.19519042977839263, 0.07214355472109446, -0.07995605472473244, -0.1326904297492888, -0.08776855472837042, 0.0399169922060878, 0.11901855474292233, 0.10339355473564638, 0.055541992213363756, -0.023803710948584467, -0.11120605473928435, -0.11120605473928435, -0.07214355472109446, -0.03210449220244982, 0.03210449220244982, 0.08776855472837042, 0.07995605472473244, 0, -0.1326904297492888, -0.2694091798129534, -0.1639404297638407, 0.06433105471745648, 0.25378417980567747, 0.2420654298002205, 0.0955810547320084, -0.055541992213363756, -0.11901855474292233, -0.07995605472473244, 0, 0.0955810547320084, 0.08776855472837042, 0.04772949220972578, -0.023803710948584467, -0.0955810547320084, -0.11120605473928435, -0.07214355472109446, -0.03210449220244982, 0.007934570316194822, 0.07995605472473244, 0.10339355473564638, 0.04772949220972578, -0.0399169922060878, -0.22644042979294454, -0.25378417980567747, -0.015991210944946488, 0.21081542978566858, 0.2694091798129534, 0.15612792976020273, -0.007934570316194822, -0.10339355473564638, -0.10339355473564638, -0.0399169922060878, 0.04772949220972578, 0.08776855472837042, 0.07214355472109446, 0.0399169922060878, -0.0399169922060878, -0.11120605473928435, -0.0955810547320084, -0.03210449220244982, 0.007934570316194822, 0.0399169922060878, 0.07995605472473244, 0.07214355472109446, -0.007934570316194822, -0.12487792974565082, -0.25378417980567747, -0.1717529297674787, 0.07214355472109446, 0.2420654298002205, 0.23425292979658252, 0.10339355473564638, -0.0399169922060878, -0.0955810547320084, -0.0955810547320084, -0.007934570316194822, 0.07995605472473244, 0.11901855474292233, 0.04772949220972578, -0.015991210944946488, -0.07214355472109446, -0.10339355473564638, -0.07214355472109446, -0.04772949220972578, 0, 0.06433105471745648, 0.07995605472473244, 0.08776855472837042, -0.0399169922060878, -0.21862792978930656, -0.25378417980567747, -0.04772949220972578, 0.17956542977111667, 0.2850341798202294, 0.18737792977475465, 0.023803710948584467, -0.10339355473564638, -0.1326904297492888, -0.04772949220972578, 0.055541992213363756, 0.10339355473564638, 0.07995605472473244, 0.03210449220244982, -0.0399169922060878, -0.0955810547320084, -0.10339355473564638, -0.07214355472109446, -0.023803710948584467, 0.0399169922060878, 0.11120605473928435, 0.07995605472473244, 0.03210449220244982, -0.14831542975656475, -0.2694091798129534, -0.11120605473928435, 0.12487792974565082, 0.2694091798129534, 0.19519042977839263, 0.07995605472473244, -0.04772949220972578, -0.12487792974565082, -0.07995605472473244, -0.023803710948584467, 0.11120605473928435, 0.08776855472837042, 0.07214355472109446, 0, -0.08776855472837042, -0.12487792974565082, -0.055541992213363756, 0.015991210944946488, 0.0399169922060878, 0.06433105471745648, 0.06433105471745648, 0, -0.07214355472109446, -0.21862792978930656, -0.23425292979658252, -0.0399169922060878, 0.18737792977475465, 0.2694091798129534, 0.15612792976020273, -0.007934570316194822, -0.11120605473928435, -0.11901855474292233, -0.04772949220972578, 0.07214355472109446, 0.12487792974565082, 0.08776855472837042, 0, -0.07214355472109446, -0.11120605473928435, -0.11901855474292233, -0.03210449220244982, 0.015991210944946488, 0.06433105471745648, 0.08776855472837042, 0.0399169922060878, -0.023803710948584467, -0.17956542977111667, -0.2694091798129534, -0.12487792974565082, 0.11901855474292233, 0.2694091798129534, 0.21862792978930656, 0.08776855472837042, -0.0399169922060878, -0.14831542975656475, -0.08776855472837042, 0.04772949220972578, 0.0955810547320084, 0.07995605472473244, 0.0399169922060878, -0.0399169922060878, -0.12487792974565082, -0.11901855474292233, -0.055541992213363756, -0.015991210944946488, 0.03210449220244982, 0.07995605472473244, 0.07995605472473244, 0.03210449220244982, -0.08776855472837042, -0.2420654298002205, -0.19519042977839263, 0.03210449220244982, 0.21081542978566858, 0.2420654298002205, 0.12487792974565082, -0.007934570316194822, -0.11120605473928435, -0.1326904297492888, -0.0399169922060878, 0.06433105471745648, 0.08776855472837042, 0.055541992213363756, 0.007934570316194822, -0.023803710948584467, -0.0955810547320084, -0.10339355473564638, -0.055541992213363756, 0.015991210944946488, 0.07214355472109446, 0.11120605473928435, 0.04772949220972578, -0.055541992213363756, -0.18737792977475465, -0.25378417980567747, -0.11901855474292233, 0.08776855472837042, 0.25378417980567747, 0.21862792978930656, 0.07214355472109446, -0.08776855472837042, -0.15612792976020273, -0.0955810547320084, 0.055541992213363756, 0.12487792974565082, 0.11120605473928435, 0.06433105471745648, -0.03210449220244982, -0.11901855474292233, -0.0955810547320084, -0.06433105471745648, -0.007934570316194822, 0.04772949220972578, 0.07995605472473244, 0.055541992213363756, 0.015991210944946488, -0.11901855474292233, -0.25378417980567747, -0.2030029297820306, 0.0399169922060878, 0.23425292979658252, 0.2694091798129534, 0.15612792976020273, -0.023803710948584467, -0.12487792974565082, -0.10339355473564638, 0.007934570316194822, 0.0955810547320084, 0.11901855474292233, 0.07995605472473244, -0.007934570316194822, -0.06433105471745648, -0.1326904297492888, -0.07995605472473244, -0.0399169922060878, 0.007934570316194822, 0.07214355472109446, 0.08776855472837042, 0.06433105471745648, -0.03210449220244982, -0.2030029297820306, -0.2694091798129534, -0.07214355472109446, 0.14831542975656475, 0.2694091798129534, 0.21081542978566858, 0.06433105471745648, -0.07995605472473244, -0.14050292975292678, -0.06433105471745648, 0.055541992213363756, 0.0955810547320084, 0.07995605472473244, 0.06433105471745648, -0.055541992213363756, -0.10339355473564638, -0.11120605473928435, -0.0399169922060878, 0.007934570316194822, 0.06433105471745648, 0.07214355472109446, 0.04772949220972578, 0.015991210944946488, -0.055541992213363756, -0.21862792978930656, -0.22644042979294454, 0.015991210944946488, 0.2030029297820306, 0.2420654298002205, 0.1326904297492888, 0, -0.11120605473928435, -0.14050292975292678, -0.04772949220972578, 0.0955810547320084, 0.1326904297492888, 0.0955810547320084, 0.03210449220244982, -0.06433105471745648, -0.12487792974565082, -0.08776855472837042, -0.015991210944946488, 0.007934570316194822, 0.04772949220972578, 0.0955810547320084, 0.04772949220972578, 0, -0.14050292975292678, -0.2850341798202294, -0.15612792976020273, 0.08776855472837042, 0.25378417980567747, 0.2420654298002205, 0.10339355473564638, -0.07995605472473244, -0.15612792976020273, -0.0399169922060878, 0.06433105471745648, 0.08776855472837042, 0.06433105471745648, 0.055541992213363756, 0, -0.07214355472109446, -0.11120605473928435, -0.0955810547320084, -0.03210449220244982, 0.0399169922060878, 0.0955810547320084, 0.07214355472109446, 0.015991210944946488, -0.07995605472473244, -0.22644042979294454, -0.23425292979658252, -0.0399169922060878, 0.1639404297638407, 0.2694091798129534, 0.18737792977475465, 0.007934570316194822, -0.10339355473564638, -0.12487792974565082, -0.04772949220972578, 0.06433105471745648, 0.11120605473928435, 0.07214355472109446, 0.023803710948584467, -0.07214355472109446, -0.12487792974565082, -0.08776855472837042, -0.007934570316194822, 0.007934570316194822, 0.07995605472473244, 0.07214355472109446, 0.055541992213363756, -0.007934570316194822, -0.1326904297492888, -0.2850341798202294, -0.1326904297492888, 0.1326904297492888, 0.23425292979658252, 0.21081542978566858, 0.0955810547320084, -0.06433105471745648, -0.12487792974565082, -0.07214355472109446, 0.015991210944946488, 0.08776855472837042, 0.10339355473564638, 0.06433105471745648, -0.007934570316194822, -0.07995605472473244, -0.11120605473928435, -0.07214355472109446, -0.007934570316194822, 0.04772949220972578, 0.06433105471745648, 0.06433105471745648, 0.03210449220244982, -0.07995605472473244, -0.2030029297820306, -0.22644042979294454, -0.04772949220972578, 0.14050292975292678, 0.25378417980567747, 0.17956542977111667, 0.023803710948584467, -0.1326904297492888, -0.12487792974565082, -0.055541992213363756, 0.06433105471745648, 0.1326904297492888, 0.11120605473928435, 0.0399169922060878, -0.04772949220972578, -0.11901855474292233, -0.0955810547320084, -0.055541992213363756, -0.015991210944946488, 0.0399169922060878, 0.07995605472473244, 0.04772949220972578, -0.007934570316194822, -0.14050292975292678, -0.25378417980567747, -0.15612792976020273, 0.06433105471745648, 0.2420654298002205, 0.2694091798129534, 0.12487792974565082, -0.04772949220972578, -0.14831542975656475, -0.0955810547320084, 0.015991210944946488, 0.11120605473928435, 0.08776855472837042, 0.04772949220972578, -0.03210449220244982, -0.0955810547320084, -0.11901855474292233, -0.055541992213363756, -0.007934570316194822, 0.007934570316194822, 0.0955810547320084, 0.07214355472109446, 0.0399169922060878, -0.04772949220972578, -0.2030029297820306, -0.2420654298002205, -0.055541992213363756, 0.18737792977475465, 0.2694091798129534, 0.21081542978566858, 0.03210449220244982, -0.0955810547320084, -0.1326904297492888, -0.07214355472109446, 0.03210449220244982, 0.11120605473928435, 0.11120605473928435, 0.04772949220972578, -0.04772949220972578, -0.11120605473928435, -0.10339355473564638, -0.0399169922060878, -0.015991210944946488, 0.04772949220972578, 0.12487792974565082, 0.07214355472109446, -0.023803710948584467, -0.14831542975656475, -0.25378417980567747, -0.1326904297492888, 0.04772949220972578, 0.21862792978930656, 0.21081542978566858, 0.08776855472837042, -0.07214355472109446, -0.11901855474292233, -0.11120605473928435, 0.015991210944946488, 0.12487792974565082, 0.12487792974565082, 0.07214355472109446, 0, -0.0955810547320084, -0.12487792974565082, -0.0955810547320084, -0.023803710948584467, 0.015991210944946488, 0.07214355472109446, 0.08776855472837042, 0.03210449220244982, -0.03210449220244982, -0.17956542977111667, -0.25378417980567747, -0.10339355473564638, 0.12487792974565082, 0.2420654298002205, 0.21862792978930656, 0.07995605472473244, -0.055541992213363756, -0.12487792974565082, -0.055541992213363756, 0.04772949220972578, 0.11901855474292233, 0.10339355473564638, 0.03210449220244982, -0.06433105471745648, -0.08776855472837042, -0.11120605473928435, -0.06433105471745648, 0.007934570316194822, 0.023803710948584467, 0.0399169922060878, 0.0955810547320084, 0.015991210944946488, -0.11901855474292233, -0.23425292979658252, -0.15612792976020273, 0.08776855472837042, 0.22644042979294454, 0.19519042977839263, 0.0955810547320084, -0.015991210944946488, -0.10339355473564638, -0.10339355473564638, -0.015991210944946488, 0.07995605472473244, 0.12487792974565082, 0.06433105471745648, -0.023803710948584467, -0.0955810547320084, -0.14050292975292678, -0.07214355472109446, -0.007934570316194822, 0.03210449220244982, 0.07995605472473244, 0.07214355472109446, 0.04772949220972578, -0.0399169922060878, -0.18737792977475465, -0.25378417980567747, -0.08776855472837042, 0.14831542975656475, 0.21862792978930656, 0.19519042977839263, 0.04772949220972578, -0.07214355472109446, -0.11901855474292233, -0.06433105471745648, 0.023803710948584467, 0.11120605473928435, 0.08776855472837042, 0.04772949220972578, -0.023803710948584467, -0.0955810547320084, -0.11120605473928435, -0.06433105471745648, -0.007934570316194822, 0.0399169922060878, 0.0955810547320084, 0.07995605472473244, 0.007934570316194822, -0.0955810547320084, -0.2420654298002205, -0.2030029297820306, 0.007934570316194822, 0.18737792977475465, 0.23425292979658252, 0.14831542975656475, 0.015991210944946488, -0.11120605473928435, -0.11901855474292233, 0.007934570316194822, 0.07995605472473244, 0.10339355473564638, 0.07214355472109446, 0.007934570316194822, -0.055541992213363756, -0.12487792974565082, -0.07214355472109446, -0.055541992213363756, 0.015991210944946488, 0.07995605472473244, 0.11120605473928435, 0.023803710948584467, -0.06433105471745648, -0.19519042977839263, -0.25378417980567747, -0.07995605472473244, 0.11120605473928435, 0.25378417980567747, 0.19519042977839263, 0.08776855472837042, -0.07214355472109446, -0.11120605473928435, -0.08776855472837042, 0.03210449220244982, 0.0955810547320084, 0.07995605472473244, 0.0399169922060878, -0.023803710948584467, -0.06433105471745648, -0.11120605473928435, -0.07995605472473244, -0.007934570316194822, 0.023803710948584467, 0.07214355472109446, 0.06433105471745648, 0.04772949220972578, -0.08776855472837042, -0.21862792978930656, -0.21862792978930656, -0.015991210944946488, 0.21862792978930656, 0.25378417980567747, 0.1326904297492888, -0.015991210944946488, -0.08776855472837042, -0.0955810547320084, -0.023803710948584467, 0.0399169922060878, 0.0955810547320084, 0.0955810547320084, 0.0399169922060878, -0.055541992213363756, -0.0955810547320084, -0.10339355473564638, -0.055541992213363756, 0, 0.07214355472109446, 0.07995605472473244, 0.04772949220972578, -0.03210449220244982, -0.12487792974565082, -0.23425292979658252, -0.15612792976020273, 0.04772949220972578, 0.21862792978930656, 0.2420654298002205, 0.0955810547320084, -0.04772949220972578, -0.12487792974565082, -0.08776855472837042, 0, 0.11120605473928435, 0.11120605473928435, 0.07214355472109446, -0.007934570316194822, -0.08776855472837042, -0.11901855474292233, -0.07214355472109446, -0.023803710948584467, 0.03210449220244982, 0.055541992213363756, 0.04772949220972578, -0.007934570316194822, -0.04772949220972578, -0.18737792977475465, -0.23425292979658252, -0.06433105471745648, 0.1639404297638407, 0.2694091798129534, 0.21081542978566858, 0.03210449220244982, -0.08776855472837042, -0.11901855474292233, -0.04772949220972578, 0.04772949220972578, 0.10339355473564638, 0.06433105471745648, 0.015991210944946488, -0.03210449220244982, -0.07995605472473244, -0.10339355473564638, -0.06433105471745648, -0.03210449220244982, 0.055541992213363756, 0.08776855472837042, 0.07214355472109446, 0.007934570316194822, -0.10339355473564638, -0.22644042979294454, -0.14831542975656475, 0.06433105471745648, 0.22644042979294454, 0.2420654298002205, 0.11120605473928435, -0.0399169922060878, -0.1326904297492888, -0.12487792974565082, 0, 0.12487792974565082, 0.14050292975292678, 0.07995605472473244, -0.007934570316194822, -0.0955810547320084, -0.11901855474292233, -0.07214355472109446, -0.03210449220244982, 0.0399169922060878, 0.07214355472109446, 0.07214355472109446, 0, -0.03210449220244982, -0.14050292975292678, -0.22644042979294454, -0.11901855474292233, 0.0955810547320084, 0.23425292979658252, 0.17956542977111667, 0.0399169922060878, -0.07995605472473244, -0.10339355473564638, -0.04772949220972578, 0.06433105471745648, 0.10339355473564638, 0.08776855472837042, 0.023803710948584467, -0.007934570316194822, -0.0955810547320084, -0.11901855474292233, -0.055541992213363756, -0.015991210944946488, 0.015991210944946488, 0.06433105471745648, 0.07214355472109446, 0.015991210944946488, -0.07995605472473244, -0.2030029297820306, -0.2030029297820306, -0.007934570316194822, 0.15612792976020273, 0.25378417980567747, 0.15612792976020273, 0.03210449220244982, -0.06433105471745648, -0.11120605473928435, -0.023803710948584467, 0.07214355472109446, 0.10339355473564638, 0.07214355472109446, -0.007934570316194822, -0.04772949220972578, -0.11120605473928435, -0.07995605472473244, -0.06433105471745648, -0.007934570316194822, 0.055541992213363756, 0.0955810547320084, 0.06433105471745648, -0.015991210944946488, -0.1326904297492888, -0.25378417980567747, -0.1326904297492888, 0.11120605473928435, 0.25378417980567747, 0.22644042979294454, 0.07995605472473244, -0.03210449220244982, -0.12487792974565082, -0.10339355473564638, 0.007934570316194822, 0.07995605472473244, 0.08776855472837042, 0.07214355472109446, -0.007934570316194822, -0.10339355473564638, -0.14050292975292678, -0.07995605472473244, -0.007934570316194822, 0.055541992213363756, 0.07995605472473244, 0.07995605472473244, -0.007934570316194822, -0.055541992213363756, -0.19519042977839263, -0.21862792978930656, -0.055541992213363756, 0.17956542977111667, 0.21862792978930656, 0.14831542975656475, 0.015991210944946488, -0.08776855472837042, -0.12487792974565082, -0.015991210944946488, 0.06433105471745648, 0.11120605473928435, 0.07995605472473244, 0.015991210944946488, -0.055541992213363756, -0.11120605473928435, -0.0955810547320084, -0.03210449220244982, 0.023803710948584467, 0.03210449220244982, 0.07214355472109446, 0.055541992213363756, -0.007934570316194822, -0.12487792974565082, -0.2420654298002205, -0.17956542977111667, 0.03210449220244982, 0.21081542978566858, 0.23425292979658252, 0.12487792974565082, 0.007934570316194822, -0.07995605472473244, -0.08776855472837042, -0.007934570316194822, 0.07995605472473244, 0.08776855472837042, 0.0399169922060878, -0.007934570316194822, -0.055541992213363756, -0.11120605473928435, -0.07995605472473244, -0.03210449220244982, 0, 0.07214355472109446, 0.07214355472109446, 0.015991210944946488, -0.055541992213363756, -0.1639404297638407, -0.22644042979294454, -0.08776855472837042, 0.1326904297492888, 0.23425292979658252, 0.21862792978930656, 0.055541992213363756, -0.06433105471745648, -0.11120605473928435, -0.0399169922060878, 0.03210449220244982, 0.11120605473928435, 0.07995605472473244, 0, -0.04772949220972578, -0.0955810547320084, -0.0955810547320084, -0.055541992213363756, -0.015991210944946488, 0.0399169922060878, 0.08776855472837042, 0.055541992213363756, -0.007934570316194822, -0.07214355472109446, -0.17956542977111667, -0.2030029297820306, 0.023803710948584467, 0.21081542978566858, 0.22644042979294454, 0.11901855474292233, -0.03210449220244982, -0.08776855472837042, -0.07995605472473244, -0.015991210944946488, 0.07214355472109446, 0.11120605473928435, 0.07995605472473244, 0.023803710948584467, -0.055541992213363756, -0.11120605473928435, -0.07995605472473244, -0.023803710948584467, 0.015991210944946488, 0.07214355472109446, 0.08776855472837042, 0.023803710948584467, -0.03210449220244982, -0.11901855474292233, -0.2420654298002205, -0.14831542975656475, 0.04772949220972578, 0.22644042979294454, 0.23425292979658252, 0.0955810547320084, -0.055541992213363756, -0.1326904297492888, -0.07995605472473244, 0.015991210944946488, 0.11120605473928435, 0.0955810547320084, 0.07214355472109446, -0.015991210944946488, -0.07214355472109446, -0.0955810547320084, -0.07995605472473244, -0.023803710948584467, 0.023803710948584467, 0.07995605472473244, 0.07214355472109446, 0, -0.07214355472109446, -0.1717529297674787, -0.22644042979294454, -0.03210449220244982, 0.15612792976020273, 0.21862792978930656, 0.15612792976020273, 0.023803710948584467, -0.08776855472837042, -0.0955810547320084, -0.03210449220244982, 0.07995605472473244, 0.11901855474292233, 0.07995605472473244, 0, -0.055541992213363756, -0.10339355473564638, -0.07995605472473244, -0.03210449220244982, 0, 0.023803710948584467, 0.055541992213363756, 0.06433105471745648, 0, -0.06433105471745648, -0.2030029297820306, -0.18737792977475465, 0.007934570316194822, 0.19519042977839263, 0.22644042979294454, 0.14831542975656475, 0.015991210944946488, -0.0955810547320084, -0.0955810547320084, -0.04772949220972578, 0.07995605472473244, 0.10339355473564638, 0.07214355472109446, 0.023803710948584467, -0.06433105471745648, -0.11901855474292233, -0.0955810547320084, -0.023803710948584467, 0.007934570316194822, 0.06433105471745648, 0.07214355472109446, 0.03210449220244982, -0.015991210944946488, -0.11901855474292233, -0.21862792978930656, -0.18737792977475465, 0.04772949220972578, 0.21862792978930656, 0.21081542978566858, 0.0955810547320084, -0.04772949220972578, -0.11120605473928435, -0.08776855472837042, 0.03210449220244982, 0.10339355473564638, 0.0955810547320084, 0.04772949220972578, -0.015991210944946488, -0.08776855472837042, -0.11901855474292233, -0.08776855472837042, -0.0399169922060878, 0.023803710948584467, 0.11901855474292233, 0.0399169922060878, -0.007934570316194822, -0.055541992213363756, -0.1717529297674787, -0.21081542978566858, -0.055541992213363756, 0.12487792974565082, 0.23425292979658252, 0.18737792977475465, 0.06433105471745648, -0.055541992213363756, -0.10339355473564638, -0.055541992213363756, 0.0399169922060878, 0.12487792974565082, 0.07995605472473244, 0.03210449220244982, -0.04772949220972578, -0.1326904297492888, -0.11901855474292233, -0.055541992213363756, 0, 0.04772949220972578, 0.07214355472109446, 0.055541992213363756, 0.007934570316194822, -0.0955810547320084, -0.21081542978566858, -0.19519042977839263, 0.0399169922060878, 0.2030029297820306, 0.25378417980567747, 0.1326904297492888, -0.04772949220972578, -0.11901855474292233, -0.10339355473564638, -0.007934570316194822, 0.10339355473564638, 0.10339355473564638, 0.055541992213363756, -0.023803710948584467, -0.07995605472473244, -0.10339355473564638, -0.06433105471745648, -0.015991210944946488, -0.007934570316194822, 0.04772949220972578, 0.06433105471745648, 0.0399169922060878, 0, -0.11901855474292233, -0.22644042979294454, -0.14831542975656475, 0.10339355473564638, 0.22644042979294454, 0.19519042977839263, 0.055541992213363756, -0.07214355472109446, -0.11120605473928435, -0.04772949220972578, 0.015991210944946488, 0.08776855472837042, 0.08776855472837042, 0.055541992213363756, 0, -0.07214355472109446, -0.11120605473928435, -0.07995605472473244, -0.023803710948584467, 0.0399169922060878, 0.0955810547320084, 0.06433105471745648, -0.007934570316194822, -0.06433105471745648, -0.1717529297674787, -0.21862792978930656, -0.04772949220972578, 0.14831542975656475, 0.21862792978930656, 0.17956542977111667, 0.04772949220972578, -0.07995605472473244, -0.10339355473564638, -0.04772949220972578, 0.0955810547320084, 0.11120605473928435, 0.07995605472473244, -0.007934570316194822, -0.055541992213363756, -0.08776855472837042, -0.07995605472473244, -0.015991210944946488, 0.015991210944946488, 0.023803710948584467, 0.04772949220972578, 0.007934570316194822, -0.03210449220244982, -0.11120605473928435, -0.19519042977839263, -0.1326904297492888, 0.055541992213363756, 0.21081542978566858, 0.23425292979658252, 0.11120605473928435, -0.023803710948584467, -0.0955810547320084, -0.07995605472473244, 0, 0.0955810547320084, 0.08776855472837042, 0.03210449220244982, -0.015991210944946488, -0.07995605472473244, -0.10339355473564638, -0.08776855472837042, -0.023803710948584467, 0, 0.06433105471745648, 0.07995605472473244, 0.04772949220972578, -0.015991210944946488, -0.11120605473928435, -0.21862792978930656, -0.11120605473928435, 0.11120605473928435, 0.2420654298002205, 0.21081542978566858, 0.07214355472109446, -0.06433105471745648, -0.11901855474292233, -0.0955810547320084, 0.023803710948584467, 0.0955810547320084, 0.10339355473564638, 0.0399169922060878, -0.023803710948584467, -0.07995605472473244, -0.07214355472109446, -0.03210449220244982, -0.015991210944946488, 0, 0.04772949220972578, 0.07995605472473244, 0.023803710948584467, -0.055541992213363756, -0.17956542977111667, -0.21862792978930656, -0.07214355472109446, 0.10339355473564638, 0.21862792978930656, 0.18737792977475465, 0.0399169922060878, -0.07995605472473244, -0.11120605473928435, -0.0399169922060878, 0.06433105471745648, 0.08776855472837042, 0.07214355472109446, 0.0399169922060878, -0.0399169922060878, -0.0955810547320084, -0.11901855474292233, -0.04772949220972578, -0.015991210944946488, 0.023803710948584467, 0.06433105471745648, 0.04772949220972578, 0.007934570316194822, -0.08776855472837042, -0.22644042979294454, -0.19519042977839263, 0.0399169922060878, 0.18737792977475465, 0.23425292979658252, 0.14050292975292678, 0.015991210944946488, -0.0955810547320084, -0.12487792974565082, -0.015991210944946488, 0.10339355473564638, 0.14050292975292678, 0.07214355472109446, -0.015991210944946488, -0.08776855472837042, -0.11120605473928435, -0.08776855472837042, -0.0399169922060878, 0.007934570316194822, 0.0399169922060878, 0.07214355472109446, 0.055541992213363756, -0.007934570316194822, -0.10339355473564638, -0.22644042979294454, -0.14831542975656475, 0.07995605472473244, 0.19519042977839263, 0.2030029297820306, 0.10339355473564638, -0.03210449220244982, -0.10339355473564638, -0.07214355472109446, 0.023803710948584467, 0.08776855472837042, 0.0955810547320084, 0.03210449220244982, -0.023803710948584467, -0.07995605472473244, -0.0955810547320084, -0.06433105471745648, -0.023803710948584467, 0.015991210944946488, 0.06433105471745648, 0.07214355472109446, 0.015991210944946488, -0.03210449220244982, -0.11901855474292233, -0.21862792978930656, -0.10339355473564638, 0.08776855472837042, 0.21862792978930656, 0.14831542975656475, 0.0399169922060878, -0.07214355472109446, -0.07995605472473244, -0.0399169922060878, 0.06433105471745648, 0.07995605472473244, 0.07995605472473244, 0.023803710948584467, -0.04772949220972578, -0.0955810547320084, -0.07214355472109446, -0.023803710948584467, 0.007934570316194822, 0.015991210944946488, 0.03210449220244982, 0.0399169922060878, 0.007934570316194822, -0.055541992213363756, -0.1717529297674787, -0.17956542977111667, -0.015991210944946488, 0.14831542975656475, 0.21081542978566858, 0.11120605473928435, 0.03210449220244982, -0.07995605472473244, -0.07214355472109446, 0.023803710948584467, 0.08776855472837042, 0.07995605472473244, 0.04772949220972578, -0.03210449220244982, -0.04772949220972578, -0.07995605472473244, -0.07995605472473244, -0.015991210944946488, 0.007934570316194822, 0.03210449220244982, 0.0399169922060878, 0.0399169922060878, -0.007934570316194822, -0.07995605472473244, -0.22644042979294454, -0.14831542975656475, 0.0399169922060878, 0.21081542978566858, 0.23425292979658252, 0.07995605472473244, -0.04772949220972578, -0.12487792974565082, -0.07214355472109446, 0.0399169922060878, 0.11901855474292233, 0.10339355473564638, 0.007934570316194822, -0.0399169922060878, -0.07214355472109446, -0.07995605472473244, -0.07214355472109446, -0.015991210944946488, 0.055541992213363756, 0.04772949220972578, 0.0399169922060878, -0.015991210944946488, -0.0399169922060878, -0.12487792974565082, -0.21081542978566858, -0.07995605472473244, 0.1326904297492888, 0.21862792978930656, 0.15612792976020273, 0.03210449220244982, -0.06433105471745648, -0.10339355473564638, -0.04772949220972578, 0.055541992213363756, 0.1326904297492888, 0.10339355473564638, 0.03210449220244982, -0.0399169922060878, -0.0955810547320084, -0.07995605472473244, -0.03210449220244982, 0, -0.015991210944946488, 0.015991210944946488, 0.03210449220244982, 0.015991210944946488, -0.03210449220244982, -0.19519042977839263, -0.2030029297820306, -0.03210449220244982, 0.15612792976020273, 0.21081542978566858, 0.14831542975656475, 0, -0.06433105471745648, -0.0955810547320084, -0.015991210944946488, 0.06433105471745648, 0.11120605473928435, 0.07995605472473244, 0.055541992213363756, -0.055541992213363756, -0.11901855474292233, -0.12487792974565082, -0.055541992213363756, 0.015991210944946488, 0.055541992213363756, 0.08776855472837042, 0.03210449220244982, -0.0399169922060878, -0.14050292975292678, -0.22644042979294454, -0.1326904297492888, 0.06433105471745648, 0.21862792978930656, 0.22644042979294454, 0.10339355473564638, -0.04772949220972578, -0.1326904297492888, -0.08776855472837042, 0.0399169922060878, 0.11901855474292233, 0.10339355473564638, 0.07214355472109446, -0.007934570316194822, -0.08776855472837042, -0.08776855472837042, -0.06433105471745648, 0, -0.007934570316194822, 0.015991210944946488, 0.04772949220972578, 0.023803710948584467, -0.015991210944946488, -0.1326904297492888, -0.18737792977475465, -0.07214355472109446, 0.10339355473564638, 0.21862792978930656, 0.17956542977111667, 0.06433105471745648, -0.07214355472109446, -0.11901855474292233, -0.0399169922060878, 0.055541992213363756, 0.11120605473928435, 0.0955810547320084, 0.03210449220244982, -0.0399169922060878, -0.07995605472473244, -0.08776855472837042, -0.03210449220244982, -0.007934570316194822, 0.007934570316194822, 0.04772949220972578, 0.0399169922060878, 0.023803710948584467, -0.0399169922060878, -0.15612792976020273, -0.18737792977475465, -0.06433105471745648, 0.11120605473928435, 0.22644042979294454, 0.1326904297492888, 0.015991210944946488, -0.08776855472837042, -0.07214355472109446, 0.015991210944946488, 0.0955810547320084, 0.10339355473564638, 0.055541992213363756, -0.015991210944946488, -0.07214355472109446, -0.10339355473564638, -0.055541992213363756, -0.03210449220244982, -0.015991210944946488, 0.015991210944946488, 0.055541992213363756, 0.023803710948584467, 0, -0.10339355473564638, -0.17956542977111667, -0.1326904297492888, 0.04772949220972578, 0.17956542977111667, 0.19519042977839263, 0.07995605472473244, -0.023803710948584467, -0.0955810547320084, -0.0399169922060878, 0.0399169922060878, 0.11901855474292233, 0.08776855472837042, 0.015991210944946488, -0.0399169922060878, -0.0955810547320084, -0.07995605472473244, -0.0399169922060878, -0.015991210944946488, 0.023803710948584467, 0.015991210944946488, 0.023803710948584467, 0, -0.023803710948584467, -0.11901855474292233, -0.18737792977475465, -0.07995605472473244, 0.08776855472837042, 0.1717529297674787, 0.15612792976020273, 0.08776855472837042, -0.015991210944946488, -0.10339355473564638, -0.04772949220972578, 0.0399169922060878, 0.0955810547320084, 0.07214355472109446, -0.023803710948584467, -0.055541992213363756, -0.055541992213363756, -0.06433105471745648, -0.03210449220244982, -0.023803710948584467, 0.007934570316194822, 0.023803710948584467, 0.04772949220972578, 0.023803710948584467, -0.0399169922060878, -0.11120605473928435, -0.18737792977475465, -0.04772949220972578, 0.11901855474292233, 0.18737792977475465, 0.11901855474292233, 0.023803710948584467, -0.06433105471745648, -0.08776855472837042, -0.015991210944946488, 0.07214355472109446, 0.10339355473564638, 0.055541992213363756, -0.023803710948584467, -0.04772949220972578, -0.06433105471745648, -0.055541992213363756, -0.023803710948584467, -0.03210449220244982, -0.007934570316194822, 0.055541992213363756, 0.04772949220972578, 0.007934570316194822, -0.06433105471745648, -0.1639404297638407, -0.1639404297638407, -0.015991210944946488, 0.11901855474292233, 0.18737792977475465, 0.12487792974565082, 0.015991210944946488, -0.06433105471745648, -0.0399169922060878, 0.015991210944946488, 0.06433105471745648, 0.07995605472473244, 0.04772949220972578, -0.015991210944946488, -0.06433105471745648, -0.07995605472473244, -0.055541992213363756, -0.015991210944946488, -0.023803710948584467, 0, 0.03210449220244982, 0.04772949220972578, 0.015991210944946488, -0.07995605472473244, -0.1717529297674787, -0.14050292975292678, 0.0399169922060878, 0.17956542977111667, 0.18737792977475465, 0.11120605473928435, 0.007934570316194822, -0.0955810547320084, -0.07995605472473244, 0.007934570316194822, 0.0955810547320084, 0.0955810547320084, 0.023803710948584467, -0.03210449220244982, -0.0955810547320084, -0.0955810547320084, -0.055541992213363756, -0.015991210944946488, 0.015991210944946488, 0.03210449220244982, 0.04772949220972578, 0.03210449220244982, -0.007934570316194822, -0.11120605473928435, -0.1717529297674787, -0.0955810547320084, 0.07995605472473244, 0.18737792977475465, 0.18737792977475465, 0.07995605472473244, -0.023803710948584467, -0.10339355473564638, -0.055541992213363756, 0.007934570316194822, 0.08776855472837042, 0.10339355473564638, 0.07995605472473244, -0.023803710948584467, -0.0955810547320084, -0.0955810547320084, -0.04772949220972578, -0.015991210944946488, 0.023803710948584467, 0.023803710948584467, 0.03210449220244982, 0.015991210944946488, -0.0399169922060878, -0.10339355473564638, -0.18737792977475465, -0.07995605472473244, 0.08776855472837042, 0.2030029297820306, 0.15612792976020273, 0.03210449220244982, -0.055541992213363756, -0.07995605472473244, -0.007934570316194822, 0.03210449220244982, 0.08776855472837042, 0.04772949220972578, -0.007934570316194822, -0.03210449220244982, -0.07214355472109446, -0.055541992213363756, -0.015991210944946488, 0.007934570316194822, 0, -0.007934570316194822, 0.015991210944946488, 0.007934570316194822, -0.04772949220972578, -0.12487792974565082, -0.1326904297492888, -0.007934570316194822, 0.1326904297492888, 0.1326904297492888, 0.10339355473564638, 0.015991210944946488, -0.055541992213363756, -0.0399169922060878, 0, 0.04772949220972578, 0.07214355472109446, 0.0399169922060878, 0, -0.04772949220972578, -0.07995605472473244, -0.03210449220244982, 0.015991210944946488, -0.015991210944946488, -0.03210449220244982, 0, 0.023803710948584467, -0.007934570316194822, -0.06433105471745648, -0.1326904297492888, -0.12487792974565082, 0.023803710948584467, 0.11120605473928435, 0.14831542975656475, 0.07995605472473244, 0.023803710948584467, -0.03210449220244982, -0.03210449220244982, 0, 0.07214355472109446, 0.08776855472837042, 0.03210449220244982, -0.0399169922060878, -0.07995605472473244, -0.07214355472109446, -0.03210449220244982, 0.007934570316194822, -0.007934570316194822, 0.007934570316194822, 0.023803710948584467, 0, 0.007934570316194822, -0.055541992213363756, -0.1326904297492888, -0.14050292975292678, 0.04772949220972578, 0.1326904297492888, 0.14831542975656475, 0.07995605472473244, -0.015991210944946488, -0.0955810547320084, -0.055541992213363756, 0.023803710948584467, 0.11901855474292233, 0.07214355472109446, 0.03210449220244982, 0, -0.07214355472109446, -0.07214355472109446, -0.04772949220972578, 0, -0.007934570316194822, 0.023803710948584467, 0.023803710948584467, -0.007934570316194822, -0.03210449220244982, -0.07214355472109446, -0.14050292975292678, -0.08776855472837042, 0.0399169922060878, 0.14831542975656475, 0.1326904297492888, 0.055541992213363756, 0.007934570316194822, -0.06433105471745648, -0.007934570316194822, 0.0399169922060878, 0.055541992213363756, 0.07995605472473244, 0.023803710948584467, -0.007934570316194822, -0.08776855472837042, -0.08776855472837042, -0.0399169922060878, 0, 0.023803710948584467, 0.015991210944946488, 0.007934570316194822, 0, -0.03210449220244982, -0.11120605473928435, -0.15612792976020273, -0.055541992213363756, 0.07995605472473244, 0.15612792976020273, 0.1639404297638407, 0.06433105471745648, -0.03210449220244982, -0.08776855472837042, -0.03210449220244982, 0.06433105471745648, 0.08776855472837042, 0.04772949220972578, -0.007934570316194822, -0.055541992213363756, -0.06433105471745648, -0.06433105471745648, -0.023803710948584467, -0.023803710948584467, 0.007934570316194822, 0.03210449220244982, 0.0399169922060878, 0.007934570316194822, -0.03210449220244982, -0.10339355473564638, -0.1326904297492888, -0.0399169922060878, 0.11120605473928435, 0.1639404297638407, 0.11901855474292233, 0.03210449220244982, -0.04772949220972578, -0.06433105471745648, 0, 0.055541992213363756, 0.07995605472473244, 0.06433105471745648, 0.023803710948584467, -0.055541992213363756, -0.0955810547320084, -0.0955810547320084, -0.007934570316194822, 0.007934570316194822, -0.007934570316194822, 0.015991210944946488, 0.0399169922060878, 0.023803710948584467, -0.0399169922060878, -0.1326904297492888, -0.15612792976020273, -0.03210449220244982, 0.11120605473928435, 0.1717529297674787, 0.11901855474292233, 0.015991210944946488, -0.07995605472473244, -0.07214355472109446, 0.023803710948584467, 0.07995605472473244, 0.0955810547320084, 0.04772949220972578, -0.015991210944946488, -0.07214355472109446, -0.10339355473564638, -0.0955810547320084, -0.03210449220244982, 0, 0.023803710948584467, 0.055541992213363756, 0.015991210944946488, 0, -0.06433105471745648, -0.14050292975292678, -0.10339355473564638, 0.03210449220244982, 0.14831542975656475, 0.15612792976020273, 0.08776855472837042, 0, -0.07995605472473244, -0.0399169922060878, 0.04772949220972578, 0.10339355473564638, 0.06433105471745648, 0.015991210944946488, -0.0399169922060878, -0.07995605472473244, -0.06433105471745648, -0.015991210944946488, 0, -0.023803710948584467, 0.007934570316194822, 0.023803710948584467, 0.03210449220244982, 0, -0.10339355473564638, -0.15612792976020273, -0.07995605472473244, 0.0955810547320084, 0.1639404297638407, 0.12487792974565082, 0.06433105471745648, -0.0399169922060878, -0.04772949220972578, -0.023803710948584467, 0.055541992213363756, 0.07995605472473244, 0.04772949220972578, 0.007934570316194822, -0.03210449220244982, -0.0955810547320084, -0.07214355472109446, -0.03210449220244982, 0, 0, 0.015991210944946488, 0.015991210944946488, -0.007934570316194822, -0.0399169922060878, -0.10339355473564638, -0.12487792974565082, -0.023803710948584467, 0.12487792974565082, 0.15612792976020273, 0.10339355473564638, -0.015991210944946488, -0.04772949220972578, -0.055541992213363756, 0, 0.07995605472473244, 0.07214355472109446, 0.04772949220972578, -0.007934570316194822, -0.04772949220972578, -0.07995605472473244, -0.055541992213363756, -0.015991210944946488, 0.023803710948584467, 0.007934570316194822, 0.03210449220244982, 0.03210449220244982, -0.015991210944946488, -0.07995605472473244, -0.12487792974565082, -0.11120605473928435, -0.023803710948584467, 0.10339355473564638, 0.14050292975292678, 0.12487792974565082, 0.007934570316194822, -0.06433105471745648, -0.07995605472473244, 0, 0.07214355472109446, 0.10339355473564638, 0.04772949220972578, -0.023803710948584467, -0.06433105471745648, -0.07214355472109446, -0.055541992213363756, -0.04772949220972578, -0.015991210944946488, 0.0399169922060878, 0.04772949220972578, 0.04772949220972578, -0.03210449220244982, -0.10339355473564638, -0.1326904297492888, -0.08776855472837042, 0.023803710948584467, 0.14050292975292678, 0.14050292975292678, 0.08776855472837042, -0.03210449220244982, -0.0955810547320084, -0.06433105471745648, 0, 0.0955810547320084, 0.08776855472837042, 0.03210449220244982, -0.0399169922060878, -0.07995605472473244, -0.06433105471745648, -0.04772949220972578, -0.015991210944946488, 0.007934570316194822, 0.023803710948584467, 0.023803710948584467, 0.03210449220244982, -0.015991210944946488, -0.06433105471745648, -0.11901855474292233, -0.11120605473928435, 0.0399169922060878, 0.1326904297492888, 0.12487792974565082, 0.07214355472109446, -0.023803710948584467, -0.0955810547320084, -0.03210449220244982, 0.007934570316194822, 0.06433105471745648, 0.0955810547320084, 0.055541992213363756, -0.015991210944946488, -0.04772949220972578, -0.07214355472109446, -0.0399169922060878, -0.007934570316194822, 0.007934570316194822, 0.007934570316194822, 0.015991210944946488, 0, -0.04772949220972578, -0.0955810547320084, -0.11901855474292233, -0.055541992213363756, 0.055541992213363756, 0.11120605473928435, 0.11901855474292233, 0.055541992213363756, 0.007934570316194822, -0.06433105471745648, -0.0399169922060878, 0.023803710948584467, 0.07995605472473244, 0.07214355472109446, 0.023803710948584467, -0.04772949220972578, -0.06433105471745648, -0.055541992213363756, -0.023803710948584467, 0, 0.015991210944946488, 0.023803710948584467, 0.04772949220972578, 0.015991210944946488, -0.0399169922060878, -0.10339355473564638, -0.14831542975656475, -0.06433105471745648, 0.055541992213363756, 0.1326904297492888, 0.11120605473928435, 0.0399169922060878, -0.0399169922060878, -0.0399169922060878, -0.007934570316194822, 0.04772949220972578, 0.07995605472473244, 0.07214355472109446, 0.007934570316194822, -0.023803710948584467, -0.06433105471745648, -0.04772949220972578, -0.0399169922060878, -0.015991210944946488, 0.015991210944946488, 0.03210449220244982, 0.03210449220244982, 0.007934570316194822, -0.055541992213363756, -0.11901855474292233, -0.1326904297492888, -0.03210449220244982, 0.0955810547320084, 0.1717529297674787, 0.12487792974565082, 0.023803710948584467, -0.055541992213363756, -0.07214355472109446, -0.015991210944946488, 0.07214355472109446, 0.0955810547320084, 0.0399169922060878, -0.0399169922060878, -0.0399169922060878, -0.04772949220972578, -0.0399169922060878, -0.023803710948584467, -0.007934570316194822, 0.015991210944946488, 0.03210449220244982, 0.03210449220244982, 0.007934570316194822, -0.07214355472109446, -0.11120605473928435, -0.11120605473928435, 0.03210449220244982, 0.12487792974565082, 0.1326904297492888, 0.04772949220972578, -0.023803710948584467, -0.06433105471745648, -0.0399169922060878, 0.023803710948584467, 0.055541992213363756, 0.07214355472109446, 0.03210449220244982, -0.007934570316194822, -0.023803710948584467, -0.04772949220972578, -0.023803710948584467, 0.007934570316194822, -0.015991210944946488, -0.007934570316194822, 0.015991210944946488, 0.023803710948584467, -0.015991210944946488, -0.07214355472109446, -0.14831542975656475, -0.0955810547320084, 0.015991210944946488, 0.0955810547320084, 0.11901855474292233, 0.04772949220972578, 0.007934570316194822, -0.015991210944946488, -0.0399169922060878, 0.0399169922060878, 0.07995605472473244, 0.07995605472473244, 0.015991210944946488, -0.015991210944946488, -0.055541992213363756, -0.07214355472109446, -0.06433105471745648, -0.015991210944946488, 0.023803710948584467, 0.023803710948584467, 0.007934570316194822, 0, -0.023803710948584467, -0.0955810547320084, -0.1326904297492888, -0.06433105471745648, 0.04772949220972578, 0.0955810547320084, 0.11120605473928435, 0.06433105471745648, 0.007934570316194822, -0.04772949220972578, -0.023803710948584467, 0.055541992213363756, 0.07214355472109446, 0.04772949220972578, 0.015991210944946488, -0.04772949220972578, -0.08776855472837042, -0.0399169922060878, -0.007934570316194822, 0.023803710948584467, -0.023803710948584467, 0.015991210944946488, 0.023803710948584467, 0, -0.023803710948584467, -0.07995605472473244, -0.1326904297492888, -0.055541992213363756, 0.03210449220244982, 0.11901855474292233, 0.11120605473928435, 0.03210449220244982, -0.007934570316194822, -0.023803710948584467, -0.007934570316194822, 0.0399169922060878, 0.07214355472109446, 0.06433105471745648, 0.007934570316194822, -0.023803710948584467, -0.06433105471745648, -0.015991210944946488, -0.0399169922060878, -0.03210449220244982, -0.023803710948584467, 0.007934570316194822, 0.023803710948584467, 0.015991210944946488, -0.023803710948584467, -0.07214355472109446, -0.1326904297492888, -0.06433105471745648, 0.06433105471745648, 0.14831542975656475, 0.08776855472837042, 0.04772949220972578, -0.0399169922060878, -0.06433105471745648, -0.023803710948584467, 0.0399169922060878, 0.07995605472473244, 0.04772949220972578, 0.03210449220244982, 0.007934570316194822, -0.06433105471745648, -0.07214355472109446, -0.015991210944946488, -0.007934570316194822, -0.015991210944946488, 0.0399169922060878, 0.023803710948584467, -0.007934570316194822, -0.0399169922060878, -0.07995605472473244, -0.1326904297492888, -0.06433105471745648, 0.06433105471745648, 0.1326904297492888, 0.11120605473928435, 0.0399169922060878, -0.055541992213363756, -0.04772949220972578, 0.007934570316194822, 0.08776855472837042, 0.08776855472837042, 0.055541992213363756, 0, -0.0399169922060878, -0.07995605472473244, -0.0399169922060878, -0.015991210944946488, 0.007934570316194822, 0, -0.023803710948584467, 0, -0.007934570316194822, -0.03210449220244982, -0.10339355473564638, -0.0955810547320084, 0, 0.0955810547320084, 0.12487792974565082, 0.08776855472837042, 0, -0.023803710948584467, -0.03210449220244982, -0.007934570316194822, 0.04772949220972578, 0.07214355472109446, 0.0399169922060878, -0.015991210944946488, -0.0399169922060878, -0.0399169922060878, -0.03210449220244982, -0.007934570316194822, -0.015991210944946488, -0.007934570316194822, 0.03210449220244982, 0.007934570316194822, -0.015991210944946488, -0.0399169922060878, -0.07214355472109446, -0.0955810547320084, -0.023803710948584467, 0.0955810547320084, 0.12487792974565082, 0.04772949220972578, -0.007934570316194822, -0.0399169922060878, 0, 0.007934570316194822, 0.04772949220972578, 0.07214355472109446, 0.055541992213363756, 0, -0.04772949220972578, -0.055541992213363756, -0.03210449220244982, -0.0399169922060878, 0.007934570316194822, 0.015991210944946488, 0.007934570316194822, 0, -0.007934570316194822, -0.0955810547320084, -0.0955810547320084, -0.055541992213363756, 0.015991210944946488, 0.11120605473928435, 0.0955810547320084, 0.06433105471745648, -0.04772949220972578, -0.0399169922060878, -0.015991210944946488, 0.03210449220244982, 0.08776855472837042, 0.06433105471745648, 0.04772949220972578, -0.015991210944946488, -0.055541992213363756, -0.06433105471745648, -0.0399169922060878, -0.007934570316194822, 0.023803710948584467, 0.007934570316194822, -0.015991210944946488, -0.03210449220244982, -0.023803710948584467, -0.04772949220972578, -0.07214355472109446, -0.07214355472109446, 0.015991210944946488, 0.10339355473564638, 0.07995605472473244, 0.07214355472109446, -0.015991210944946488, -0.04772949220972578, -0.023803710948584467, 0.04772949220972578, 0.07214355472109446, 0.06433105471745648, 0.015991210944946488, -0.03210449220244982, -0.04772949220972578, -0.055541992213363756, -0.0399169922060878, 0.03210449220244982, 0.007934570316194822, -0.023803710948584467, -0.007934570316194822, -0.015991210944946488, -0.023803710948584467, -0.06433105471745648, -0.07995605472473244, -0.055541992213363756, 0.03210449220244982, 0.0955810547320084, 0.10339355473564638, 0.0399169922060878, -0.03210449220244982, -0.015991210944946488, -0.007934570316194822, 0.03210449220244982, 0.04772949220972578, 0.07214355472109446, 0.023803710948584467, -0.03210449220244982, -0.055541992213363756, -0.04772949220972578, 0, 0, -0.023803710948584467, -0.023803710948584467, -0.007934570316194822, 0.007934570316194822, 0, -0.04772949220972578, -0.06433105471745648, -0.08776855472837042, 0.007934570316194822, 0.11120605473928435, 0.11120605473928435, 0.04772949220972578, -0.007934570316194822, -0.055541992213363756, -0.0399169922060878, 0.023803710948584467, 0.0955810547320084, 0.055541992213363756, 0.03210449220244982, -0.03210449220244982, -0.06433105471745648, -0.06433105471745648, -0.023803710948584467, 0.007934570316194822, 0, 0.015991210944946488, 0.007934570316194822, -0.007934570316194822, -0.03210449220244982, -0.06433105471745648, -0.08776855472837042, -0.07214355472109446, 0.023803710948584467, 0.10339355473564638, 0.11120605473928435, 0.03210449220244982, -0.03210449220244982, -0.015991210944946488, 0.0399169922060878, 0.07995605472473244, 0.055541992213363756, 0.04772949220972578, -0.015991210944946488, -0.06433105471745648, -0.07214355472109446, -0.03210449220244982, 0, 0.015991210944946488, -0.015991210944946488, 0.015991210944946488, -0.023803710948584467, -0.023803710948584467, -0.015991210944946488, -0.04772949220972578, -0.08776855472837042, -0.055541992213363756, 0.023803710948584467, 0.11120605473928435, 0.0955810547320084, 0.023803710948584467, -0.03210449220244982, -0.023803710948584467, 0.007934570316194822, 0.055541992213363756, 0.07214355472109446, 0.06433105471745648, 0, -0.03210449220244982, -0.055541992213363756, -0.055541992213363756, -0.015991210944946488, 0.007934570316194822, -0.03210449220244982, 0, -0.015991210944946488, -0.007934570316194822, -0.015991210944946488, -0.0399169922060878, -0.07214355472109446, -0.023803710948584467, 0.015991210944946488, 0.07214355472109446, 0.055541992213363756, 0.03210449220244982, -0.007934570316194822, 0, 0.007934570316194822, 0.04772949220972578, 0.06433105471745648, 0.06433105471745648, 0, -0.0399169922060878, -0.04772949220972578, -0.023803710948584467, -0.007934570316194822, -0.015991210944946488, -0.015991210944946488, -0.023803710948584467, -0.007934570316194822, -0.007934570316194822, -0.023803710948584467, -0.07214355472109446, -0.07995605472473244, -0.03210449220244982, 0.03210449220244982, 0.0955810547320084, 0.055541992213363756, 0.023803710948584467, -0.007934570316194822, 0, 0.0399169922060878, 0.07214355472109446, 0.055541992213363756, 0.023803710948584467, -0.007934570316194822, -0.03210449220244982, -0.04772949220972578, -0.03210449220244982, -0.0399169922060878, -0.023803710948584467, -0.015991210944946488, -0.015991210944946488, 0.007934570316194822, -0.007934570316194822, -0.023803710948584467, -0.06433105471745648, -0.055541992213363756, -0.023803710948584467, 0.03210449220244982, 0.07995605472473244, 0.08776855472837042, 0.015991210944946488, -0.007934570316194822, 0.015991210944946488, 0.04772949220972578, 0.06433105471745648, 0.03210449220244982, 0.007934570316194822, -0.007934570316194822, -0.03210449220244982, 0.007934570316194822, -0.04772949220972578, -0.055541992213363756, -0.04772949220972578, -0.023803710948584467, 0.007934570316194822, 0.007934570316194822, -0.015991210944946488, -0.03210449220244982, -0.06433105471745648, -0.055541992213363756, -0.007934570316194822, 0.055541992213363756, 0.07214355472109446, 0.055541992213363756, 0.023803710948584467, 0.015991210944946488, 0.015991210944946488, 0.015991210944946488, 0.0399169922060878, 0.04772949220972578, 0.06433105471745648, 0.007934570316194822, -0.04772949220972578, -0.07214355472109446, -0.04772949220972578, -0.015991210944946488, 0, -0.015991210944946488, -0.023803710948584467, -0.015991210944946488, -0.015991210944946488, 0.007934570316194822, -0.04772949220972578, -0.06433105471745648, -0.023803710948584467, 0.055541992213363756, 0.07214355472109446, 0.07214355472109446, 0.023803710948584467, 0.023803710948584467, 0.015991210944946488, 0.023803710948584467, 0.055541992213363756, 0.0399169922060878, 0.023803710948584467, 0, -0.03210449220244982, -0.07214355472109446, -0.06433105471745648, -0.03210449220244982, -0.007934570316194822, 0.007934570316194822, 0.015991210944946488, 0.007934570316194822, -0.023803710948584467, -0.04772949220972578, -0.07995605472473244, -0.06433105471745648, 0, 0.04772949220972578, 0.07214355472109446, 0.07995605472473244, 0.0399169922060878, 0.015991210944946488, 0, 0.015991210944946488, 0.04772949220972578, 0.055541992213363756, 0.0399169922060878, 0, -0.007934570316194822, -0.08776855472837042, -0.06433105471745648, -0.015991210944946488, -0.007934570316194822, 0.023803710948584467, 0, -0.023803710948584467, -0.04772949220972578, -0.055541992213363756, -0.04772949220972578, -0.0399169922060878, 0.007934570316194822, 0.055541992213363756, 0.07995605472473244, 0.07214355472109446, 0.023803710948584467, 0, 0, 0.03210449220244982, 0.0399169922060878, 0.04772949220972578, 0.023803710948584467, 0.007934570316194822, -0.04772949220972578, -0.0955810547320084, -0.07214355472109446, -0.007934570316194822, -0.007934570316194822, -0.015991210944946488, -0.007934570316194822, 0, -0.015991210944946488, -0.0399169922060878, -0.07214355472109446, -0.015991210944946488, 0.03210449220244982, 0.07214355472109446, 0.055541992213363756, 0.055541992213363756, 0.007934570316194822, 0.007934570316194822, 0, 0.03210449220244982, 0.06433105471745648, 0.03210449220244982, 0, -0.023803710948584467, -0.0399169922060878, -0.055541992213363756, -0.06433105471745648, -0.023803710948584467, -0.007934570316194822, 0.03210449220244982, 0.007934570316194822, 0, -0.03210449220244982, -0.07214355472109446, -0.07995605472473244, -0.055541992213363756, 0.015991210944946488, 0.06433105471745648, 0.08776855472837042, 0.04772949220972578, 0, 0.007934570316194822, 0.007934570316194822, 0.03210449220244982, 0.04772949220972578, 0.055541992213363756, 0.023803710948584467, -0.0399169922060878, -0.08776855472837042, -0.07214355472109446, -0.0399169922060878, 0, 0.015991210944946488, 0.007934570316194822, -0.03210449220244982, -0.023803710948584467, -0.007934570316194822, -0.04772949220972578, -0.03210449220244982, -0.015991210944946488, 0.007934570316194822, 0.055541992213363756, 0.07214355472109446, 0.03210449220244982, 0.007934570316194822, -0.007934570316194822, 0.007934570316194822, 0.0399169922060878, 0.06433105471745648, 0.0399169922060878, 0.015991210944946488, -0.0399169922060878, -0.055541992213363756, -0.04772949220972578, -0.0399169922060878, -0.007934570316194822, 0.007934570316194822, 0, -0.007934570316194822, -0.03210449220244982, -0.04772949220972578, -0.06433105471745648, -0.03210449220244982, -0.007934570316194822, 0.04772949220972578, 0.055541992213363756, 0.06433105471745648, 0.03210449220244982, 0.023803710948584467, 0, 0.023803710948584467, 0.04772949220972578, 0.06433105471745648, 0.023803710948584467, -0.015991210944946488, -0.0399169922060878, -0.06433105471745648, -0.04772949220972578, -0.0399169922060878, -0.015991210944946488, 0.007934570316194822, 0.015991210944946488, -0.007934570316194822, -0.007934570316194822, -0.04772949220972578, -0.03210449220244982, -0.055541992213363756, -0.007934570316194822, 0.0399169922060878, 0.08776855472837042, 0.10339355473564638, 0.0399169922060878, -0.015991210944946488, -0.023803710948584467, 0, 0.055541992213363756, 0.07995605472473244, 0.03210449220244982, -0.015991210944946488, -0.06433105471745648, -0.055541992213363756, -0.03210449220244982, 0.015991210944946488, 0.023803710948584467, 0, -0.023803710948584467, -0.055541992213363756, -0.04772949220972578, -0.015991210944946488, -0.023803710948584467, -0.023803710948584467, 0.007934570316194822, 0.04772949220972578, 0.06433105471745648, 0.0399169922060878, 0.03210449220244982, 0.007934570316194822, 0.023803710948584467, 0.0399169922060878, 0.055541992213363756, 0.023803710948584467, 0.023803710948584467, -0.0399169922060878, -0.04772949220972578, -0.04772949220972578, -0.023803710948584467, -0.015991210944946488, -0.007934570316194822, -0.007934570316194822, -0.015991210944946488, -0.023803710948584467, -0.015991210944946488, -0.0399169922060878, -0.03210449220244982, -0.007934570316194822, -0.007934570316194822, 0.015991210944946488, 0.07995605472473244, 0.055541992213363756, 0.03210449220244982, 0.007934570316194822, 0.023803710948584467, 0.023803710948584467, 0.0399169922060878, 0.015991210944946488, 0.015991210944946488, -0.015991210944946488, -0.03210449220244982, -0.07214355472109446, -0.03210449220244982, -0.015991210944946488, -0.007934570316194822, -0.015991210944946488, -0.007934570316194822, 0, -0.023803710948584467, -0.023803710948584467, -0.04772949220972578, -0.0399169922060878, -0.007934570316194822, 0.06433105471745648, 0.06433105471745648, 0.04772949220972578, 0.023803710948584467, -0.007934570316194822, 0.007934570316194822, 0.015991210944946488, 0.015991210944946488, 0.023803710948584467, 0.015991210944946488, -0.023803710948584467, -0.03210449220244982, -0.0399169922060878, 0.007934570316194822, 0, -0.015991210944946488, -0.04772949220972578, -0.04772949220972578, 0.007934570316194822, -0.015991210944946488, -0.015991210944946488, -0.023803710948584467, -0.023803710948584467, -0.007934570316194822, 0.04772949220972578, 0.04772949220972578, 0.023803710948584467, 0.023803710948584467, 0.023803710948584467, 0.023803710948584467, 0.007934570316194822, 0, 0.023803710948584467, 0, -0.007934570316194822, -0.023803710948584467, -0.03210449220244982, -0.03210449220244982, -0.023803710948584467, 0, -0.023803710948584467, -0.015991210944946488, -0.023803710948584467, -0.023803710948584467, -0.015991210944946488, -0.015991210944946488, 0, 0.03210449220244982, 0.04772949220972578, 0.023803710948584467, 0.007934570316194822, -0.007934570316194822, 0.015991210944946488, 0.03210449220244982, 0.0399169922060878, 0.03210449220244982, 0.007934570316194822, -0.015991210944946488, -0.015991210944946488, -0.015991210944946488, -0.04772949220972578, -0.007934570316194822, -0.007934570316194822, 0, 0, -0.015991210944946488, -0.015991210944946488, -0.04772949220972578, -0.0399169922060878, -0.03210449220244982, -0.007934570316194822, 0.015991210944946488, 0.06433105471745648, 0.04772949220972578, 0.04772949220972578, 0.007934570316194822, -0.007934570316194822, 0.015991210944946488, 0.0399169922060878, 0.0399169922060878, 0.015991210944946488, 0.007934570316194822, -0.03210449220244982, -0.0399169922060878, -0.0399169922060878, -0.023803710948584467, -0.023803710948584467, 0.0399169922060878, 0.023803710948584467, -0.007934570316194822, -0.04772949220972578, -0.055541992213363756, -0.04772949220972578, -0.015991210944946488, 0.04772949220972578, 0.04772949220972578, 0.04772949220972578, 0.007934570316194822, 0.023803710948584467, 0.023803710948584467, 0.007934570316194822, 0.015991210944946488, 0.06433105471745648, 0.0399169922060878, 0.007934570316194822, -0.023803710948584467, -0.023803710948584467, -0.03210449220244982, -0.03210449220244982, -0.03210449220244982, 0.007934570316194822, -0.023803710948584467, -0.0399169922060878, -0.0399169922060878, 0, 0.015991210944946488, -0.007934570316194822, -0.03210449220244982, 0.023803710948584467, 0.015991210944946488, 0.055541992213363756, 0.0399169922060878, 0.015991210944946488, -0.015991210944946488, 0.023803710948584467, 0.023803710948584467, 0.055541992213363756, 0.023803710948584467, -0.007934570316194822, -0.023803710948584467, -0.04772949220972578, -0.015991210944946488, -0.007934570316194822, -0.015991210944946488, -0.0399169922060878, -0.023803710948584467, -0.015991210944946488, -0.03210449220244982, -0.007934570316194822, 0, -0.015991210944946488, 0.023803710948584467, -0.015991210944946488, 0.007934570316194822, 0.06433105471745648, 0.023803710948584467, 0.015991210944946488, 0.007934570316194822, 0.007934570316194822, 0.015991210944946488, 0.0399169922060878, 0.023803710948584467, 0.015991210944946488, 0.007934570316194822, -0.055541992213363756, -0.023803710948584467, -0.03210449220244982, -0.015991210944946488, -0.03210449220244982, -0.007934570316194822, -0.007934570316194822, -0.007934570316194822, -0.023803710948584467, -0.007934570316194822, -0.015991210944946488, -0.007934570316194822, 0.007934570316194822, 0.015991210944946488, 0.0399169922060878, 0.055541992213363756, 0.023803710948584467, 0.007934570316194822, 0.007934570316194822, 0, 0.03210449220244982, 0.04772949220972578, 0.023803710948584467, -0.023803710948584467, -0.04772949220972578, -0.0399169922060878, -0.015991210944946488, 0.007934570316194822, -0.03210449220244982, -0.023803710948584467, -0.007934570316194822, -0.015991210944946488, -0.03210449220244982, 0.007934570316194822, 0.007934570316194822, 0, -0.007934570316194822, 0.023803710948584467, 0.0399169922060878, 0.03210449220244982, 0.023803710948584467, 0.007934570316194822, 0.023803710948584467, 0.0399169922060878, 0.023803710948584467, 0.007934570316194822, -0.03210449220244982, -0.023803710948584467, 0.007934570316194822, -0.015991210944946488, -0.03210449220244982, -0.03210449220244982, 0.007934570316194822, 0.023803710948584467, -0.015991210944946488, -0.007934570316194822, -0.023803710948584467, 0.007934570316194822, -0.015991210944946488, -0.015991210944946488, 0, 0, 0.0399169922060878, 0.015991210944946488, 0.015991210944946488, 0.0399169922060878, 0.0399169922060878, 0.04772949220972578, 0.0399169922060878, 0.015991210944946488, -0.023803710948584467, -0.023803710948584467, -0.015991210944946488, -0.007934570316194822, -0.015991210944946488, -0.023803710948584467, -0.023803710948584467, -0.03210449220244982, -0.03210449220244982, 0.007934570316194822, 0.007934570316194822, 0.015991210944946488, 0.007934570316194822, -0.015991210944946488, -0.007934570316194822, -0.023803710948584467, 0.03210449220244982, 0.04772949220972578, 0.04772949220972578, 0.015991210944946488, 0.015991210944946488, 0, -0.007934570316194822, -0.007934570316194822, 0.007934570316194822, 0.023803710948584467, 0, -0.023803710948584467, -0.015991210944946488, -0.06433105471745648, -0.0399169922060878, 0.007934570316194822, 0.023803710948584467, 0.023803710948584467, 0, -0.015991210944946488, 0, -0.03210449220244982, -0.023803710948584467, -0.007934570316194822, 0.03210449220244982, 0.055541992213363756, 0.023803710948584467, 0, 0.015991210944946488, 0.03210449220244982, 0.015991210944946488, 0, 0, -0.015991210944946488, -0.0399169922060878, -0.03210449220244982, -0.04772949220972578, -0.015991210944946488, 0.023803710948584467, -0.023803710948584467, -0.015991210944946488, 0.007934570316194822, 0.015991210944946488, 0, -0.03210449220244982, -0.023803710948584467, -0.015991210944946488, 0, 0.03210449220244982, 0.0399169922060878, 0.023803710948584467, 0.023803710948584467, 0.015991210944946488, 0, 0.007934570316194822, -0.015991210944946488, -0.007934570316194822, 0, 0, -0.023803710948584467, -0.06433105471745648, -0.015991210944946488, -0.007934570316194822, 0.007934570316194822, 0.007934570316194822, 0.007934570316194822, 0, -0.03210449220244982, -0.04772949220972578, -0.055541992213363756, -0.007934570316194822, 0.0399169922060878, 0.06433105471745648, 0.0399169922060878, 0.007934570316194822, 0, 0, 0.023803710948584467, 0.03210449220244982, 0.03210449220244982, 0, 0, -0.03210449220244982, -0.023803710948584467, -0.0399169922060878, -0.04772949220972578, -0.03210449220244982, 0, 0.015991210944946488, 0.015991210944946488, 0, -0.007934570316194822, -0.0399169922060878, -0.04772949220972578, -0.03210449220244982, 0.03210449220244982, 0.04772949220972578, 0.04772949220972578, 0.015991210944946488, 0.007934570316194822, 0.023803710948584467, 0.03210449220244982, 0.023803710948584467, -0.015991210944946488, 0, -0.015991210944946488, -0.03210449220244982, -0.023803710948584467, -0.0399169922060878, -0.03210449220244982, 0.007934570316194822, 0.015991210944946488, 0.015991210944946488, 0.007934570316194822, -0.015991210944946488, -0.007934570316194822, 0.015991210944946488, -0.015991210944946488, -0.03210449220244982, 0.007934570316194822, 0.03210449220244982, 0.055541992213363756, 0.03210449220244982, 0.007934570316194822, -0.007934570316194822, 0.007934570316194822, 0.023803710948584467, 0.03210449220244982, 0.015991210944946488, 0, -0.04772949220972578, -0.04772949220972578, -0.015991210944946488, 0, 0.015991210944946488, -0.007934570316194822, 0.007934570316194822, -0.007934570316194822, -0.007934570316194822, -0.015991210944946488, 0.015991210944946488, -0.007934570316194822, -0.015991210944946488, 0.015991210944946488, 0.015991210944946488, 0.023803710948584467, 0.03210449220244982, 0.0399169922060878, 0.023803710948584467, 0.0399169922060878, 0.023803710948584467, 0, -0.023803710948584467, 0, -0.03210449220244982, -0.023803710948584467, -0.04772949220972578, -0.007934570316194822, 0, 0.007934570316194822, 0.007934570316194822, 0, 0.007934570316194822, 0, -0.015991210944946488, -0.015991210944946488, -0.007934570316194822, 0.023803710948584467, 0.03210449220244982, 0.0399169922060878, 0.015991210944946488, -0.007934570316194822, 0, 0.0399169922060878, 0.023803710948584467, 0.03210449220244982, -0.007934570316194822, -0.0399169922060878, -0.03210449220244982, -0.03210449220244982, -0.0399169922060878, -0.015991210944946488, 0.015991210944946488, 0.015991210944946488, 0.015991210944946488, -0.007934570316194822, -0.023803710948584467, -0.015991210944946488, -0.015991210944946488, -0.007934570316194822, 0.015991210944946488, 0.0399169922060878, -0.007934570316194822, 0.007934570316194822, 0.023803710948584467, -0.007934570316194822, 0.03210449220244982, 0.06433105471745648, 0.023803710948584467, 0, -0.04772949220972578, -0.023803710948584467, -0.023803710948584467, -0.0399169922060878, -0.023803710948584467, -0.015991210944946488, 0.023803710948584467, 0.007934570316194822, 0.015991210944946488, -0.007934570316194822, -0.015991210944946488, -0.023803710948584467, -0.023803710948584467, -0.015991210944946488, 0, 0.04772949220972578, 0.04772949220972578, 0, 0.007934570316194822, 0.007934570316194822, 0.007934570316194822, 0.023803710948584467, 0.0399169922060878, 0.015991210944946488, -0.015991210944946488, -0.03210449220244982, -0.06433105471745648, -0.0399169922060878, -0.0399169922060878, 0.015991210944946488, 0.023803710948584467, 0.007934570316194822, 0.015991210944946488, -0.023803710948584467, -0.03210449220244982, -0.007934570316194822, 0, -0.015991210944946488, 0.007934570316194822, 0.015991210944946488, 0.03210449220244982, 0, 0.03210449220244982, 0.015991210944946488, 0.015991210944946488, 0.015991210944946488, 0.023803710948584467, -0.015991210944946488, -0.04772949220972578, -0.015991210944946488, 0.007934570316194822, -0.023803710948584467, -0.023803710948584467, -0.007934570316194822, 0.015991210944946488, 0.015991210944946488, 0, -0.007934570316194822, 0.023803710948584467, -0.03210449220244982, -0.04772949220972578, -0.015991210944946488, 0.03210449220244982, 0.015991210944946488, -0.007934570316194822, 0.007934570316194822, 0, 0.015991210944946488, 0.04772949220972578, 0.015991210944946488, 0.03210449220244982, 0.007934570316194822, -0.007934570316194822, -0.03210449220244982, -0.0399169922060878, -0.023803710948584467, -0.03210449220244982, -0.015991210944946488, 0.023803710948584467, 0.007934570316194822, 0.023803710948584467, 0.007934570316194822, -0.015991210944946488, -0.023803710948584467, -0.03210449220244982, -0.015991210944946488, 0, 0.03210449220244982, 0.023803710948584467, 0, 0, 0.007934570316194822, 0.007934570316194822, 0.04772949220972578, 0.03210449220244982, 0.015991210944946488, -0.015991210944946488, -0.0399169922060878, -0.023803710948584467, 0, 0, 0.015991210944946488, -0.007934570316194822, -0.007934570316194822, 0.015991210944946488, -0.007934570316194822, -0.023803710948584467, -0.0399169922060878, -0.015991210944946488, 0, -0.023803710948584467, 0.007934570316194822, 0, 0.015991210944946488, 0.0399169922060878, 0.03210449220244982, 0.03210449220244982, 0.015991210944946488, 0.03210449220244982, -0.015991210944946488, -0.015991210944946488, -0.015991210944946488, -0.015991210944946488, -0.04772949220972578, 0.023803710948584467, -0.007934570316194822, 0, 0, 0, -0.023803710948584467, -0.015991210944946488, -0.015991210944946488, -0.03210449220244982, -0.0399169922060878, 0.007934570316194822, -0.007934570316194822, 0.007934570316194822, 0.0399169922060878, 0.04772949220972578, 0, 0.015991210944946488, 0.0399169922060878, 0.03210449220244982, 0.015991210944946488, -0.0399169922060878, -0.0399169922060878, -0.015991210944946488, -0.015991210944946488, 0.007934570316194822, 0.015991210944946488, 0, -0.007934570316194822, -0.007934570316194822, -0.023803710948584467, -0.04772949220972578, 0, -0.007934570316194822, 0.015991210944946488, 0.007934570316194822, -0.015991210944946488, -0.015991210944946488, -0.015991210944946488, 0.023803710948584467, 0.06433105471745648, 0.06433105471745648, 0.04772949220972578, -0.007934570316194822, -0.03210449220244982, -0.03210449220244982, 0.007934570316194822, -0.007934570316194822, -0.015991210944946488, -0.015991210944946488, -0.03210449220244982, -0.015991210944946488, -0.007934570316194822, 0.015991210944946488, 0.007934570316194822, 0.015991210944946488, -0.007934570316194822, -0.03210449220244982, 0.007934570316194822, 0.023803710948584467, -0.023803710948584467, -0.007934570316194822, 0, 0.023803710948584467, 0.04772949220972578, 0.055541992213363756, 0, 0.03210449220244982, 0, -0.007934570316194822, -0.007934570316194822, -0.023803710948584467, -0.007934570316194822, 0.023803710948584467, 0, -0.015991210944946488, 0, 0, -0.015991210944946488, -0.023803710948584467, -0.007934570316194822, -0.03210449220244982, -0.007934570316194822, -0.007934570316194822, 0, 0.007934570316194822, 0.04772949220972578, 0.0399169922060878, 0.04772949220972578, 0.023803710948584467, 0.03210449220244982, 0.007934570316194822, -0.007934570316194822, 0, -0.023803710948584467, -0.015991210944946488, -0.015991210944946488, 0, 0.007934570316194822, 0, -0.007934570316194822, -0.015991210944946488, -0.007934570316194822, -0.015991210944946488, -0.015991210944946488, -0.007934570316194822, -0.015991210944946488, -0.023803710948584467, 0.007934570316194822, 0.007934570316194822, 0.023803710948584467, 0.0399169922060878, 0.04772949220972578, 0.0399169922060878, 0.0399169922060878, 0.007934570316194822, -0.015991210944946488, -0.015991210944946488, -0.0399169922060878, -0.007934570316194822, 0, 0, 0.015991210944946488, -0.023803710948584467, -0.007934570316194822, -0.015991210944946488, -0.023803710948584467, 0, 0.007934570316194822, -0.023803710948584467, -0.023803710948584467, -0.03210449220244982, 0, 0.015991210944946488, 0.023803710948584467, 0.04772949220972578, 0.03210449220244982, 0.03210449220244982, 0.015991210944946488, 0.007934570316194822, 0.007934570316194822, -0.007934570316194822, 0, 0, -0.015991210944946488, -0.015991210944946488, -0.03210449220244982, -0.015991210944946488, -0.007934570316194822, -0.007934570316194822, 0.007934570316194822, -0.015991210944946488, -0.007934570316194822, 0, -0.04772949220972578, -0.023803710948584467, -0.023803710948584467, 0.015991210944946488, 0.0399169922060878, 0.04772949220972578, 0.04772949220972578, 0.03210449220244982, 0.023803710948584467, 0, -0.007934570316194822, -0.015991210944946488, 0, 0.015991210944946488, -0.007934570316194822, -0.023803710948584467, -0.0399169922060878, -0.015991210944946488, -0.03210449220244982, -0.007934570316194822, 0, 0.007934570316194822, 0.015991210944946488, -0.023803710948584467, -0.055541992213363756, -0.07214355472109446, -0.007934570316194822, 0.023803710948584467, 0.0399169922060878, 0.055541992213363756, 0.03210449220244982, 0.023803710948584467, 0.023803710948584467, -0.007934570316194822, 0, -0.015991210944946488, -0.007934570316194822, 0.023803710948584467, 0.007934570316194822, -0.007934570316194822, -0.055541992213363756, -0.03210449220244982, -0.007934570316194822, 0.023803710948584467, 0, -0.015991210944946488, -0.0399169922060878, -0.0399169922060878, -0.0399169922060878, 0, 0, 0.03210449220244982, 0.023803710948584467, 0.007934570316194822, 0.03210449220244982, 0.0399169922060878, 0.023803710948584467, 0.015991210944946488, 0.007934570316194822, 0, 0, -0.023803710948584467, -0.007934570316194822, 0, 0, 0, 0.03210449220244982, -0.015991210944946488, -0.03210449220244982, -0.03210449220244982, -0.023803710948584467, -0.023803710948584467, -0.015991210944946488, -0.023803710948584467, -0.03210449220244982, 0, 0.015991210944946488, 0.04772949220972578, 0.0399169922060878, 0.055541992213363756, 0.0399169922060878, 0.023803710948584467, 0.007934570316194822, -0.023803710948584467, -0.007934570316194822, 0.023803710948584467, 0.007934570316194822, 0, -0.023803710948584467, -0.0399169922060878, -0.0399169922060878, 0, 0.023803710948584467, 0.015991210944946488, -0.015991210944946488, -0.015991210944946488, -0.055541992213363756, -0.0399169922060878, 0, 0.007934570316194822, 0.015991210944946488, 0.023803710948584467, 0.055541992213363756, 0.07995605472473244, 0.0399169922060878, -0.007934570316194822, -0.03210449220244982, -0.007934570316194822, 0.015991210944946488, 0.023803710948584467, 0.015991210944946488, -0.023803710948584467, -0.0399169922060878, -0.03210449220244982, -0.023803710948584467, 0.015991210944946488, 0.015991210944946488, 0, -0.015991210944946488, -0.03210449220244982, -0.055541992213363756, -0.0399169922060878, -0.015991210944946488, 0.03210449220244982, 0.055541992213363756, 0.04772949220972578, 0.03210449220244982, 0.015991210944946488, 0.0399169922060878, 0.023803710948584467, 0.007934570316194822, 0.007934570316194822, 0.015991210944946488, -0.007934570316194822, -0.007934570316194822, -0.007934570316194822, -0.015991210944946488, -0.03210449220244982, -0.0399169922060878, -0.015991210944946488, 0.007934570316194822, 0.007934570316194822, -0.015991210944946488, -0.03210449220244982, -0.0399169922060878, -0.0399169922060878, 0.015991210944946488, 0.04772949220972578, 0.023803710948584467, 0.023803710948584467, 0.023803710948584467, 0.023803710948584467, 0.03210449220244982, 0.023803710948584467, 0.007934570316194822, -0.007934570316194822, -0.007934570316194822, 0, 0.007934570316194822, 0, 0, -0.03210449220244982, -0.0399169922060878, 0, 0, -0.015991210944946488, -0.03210449220244982, -0.015991210944946488, -0.0399169922060878, -0.03210449220244982, 0, 0.0399169922060878, 0.03210449220244982, 0.06433105471745648, 0.055541992213363756, 0.0399169922060878, 0.007934570316194822, 0.007934570316194822, 0.015991210944946488, 0.007934570316194822, -0.015991210944946488, -0.0399169922060878, -0.023803710948584467, -0.007934570316194822, -0.007934570316194822, 0, 0, 0.007934570316194822, -0.007934570316194822, -0.007934570316194822, -0.0399169922060878, -0.03210449220244982, -0.015991210944946488, -0.03210449220244982, 0, 0.007934570316194822, 0.023803710948584467, 0.04772949220972578, 0.03210449220244982, 0.0399169922060878, 0.023803710948584467, 0.0399169922060878, 0.023803710948584467, -0.007934570316194822, -0.015991210944946488, -0.015991210944946488, -0.007934570316194822, 0, -0.015991210944946488, -0.023803710948584467, -0.0399169922060878, -0.0399169922060878, 0.023803710948584467, 0.023803710948584467, 0.007934570316194822, -0.0399169922060878, -0.07214355472109446, -0.04772949220972578, -0.023803710948584467, 0.03210449220244982, 0.04772949220972578, 0.055541992213363756, 0.03210449220244982, 0.015991210944946488, 0.03210449220244982, 0.0399169922060878, 0.03210449220244982, 0.023803710948584467, 0, -0.03210449220244982, -0.023803710948584467, -0.023803710948584467, -0.015991210944946488, -0.0399169922060878, -0.015991210944946488, 0, 0.015991210944946488, -0.015991210944946488, -0.0399169922060878, -0.023803710948584467, -0.023803710948584467, -0.015991210944946488, 0, 0, 0.007934570316194822, 0.03210449220244982, 0.03210449220244982, 0.04772949220972578, 0.06433105471745648, 0.0399169922060878, 0.015991210944946488, -0.007934570316194822, -0.015991210944946488, -0.03210449220244982, -0.007934570316194822, -0.007934570316194822, -0.007934570316194822, -0.023803710948584467, -0.015991210944946488, -0.04772949220972578, 0.007934570316194822, 0.03210449220244982, -0.007934570316194822, -0.04772949220972578, -0.06433105471745648, -0.03210449220244982, 0.03210449220244982, 0.0399169922060878, 0.0399169922060878, 0.023803710948584467, 0.03210449220244982, 0.023803710948584467, 0.015991210944946488, 0.0399169922060878, 0.055541992213363756, 0.015991210944946488, -0.015991210944946488, -0.0399169922060878, -0.03210449220244982, -0.015991210944946488, -0.023803710948584467, -0.023803710948584467, -0.007934570316194822, -0.015991210944946488, 0, -0.007934570316194822, -0.015991210944946488, -0.023803710948584467, -0.0399169922060878, -0.023803710948584467, -0.007934570316194822, 0.023803710948584467, 0.04772949220972578, 0.04772949220972578, 0.04772949220972578, 0.023803710948584467, 0.023803710948584467, 0.007934570316194822, 0.0399169922060878, 0, -0.03210449220244982, -0.023803710948584467, -0.015991210944946488, -0.0399169922060878, -0.015991210944946488, 0, 0, 0.023803710948584467, 0.015991210944946488, -0.023803710948584467, -0.04772949220972578, -0.03210449220244982, -0.03210449220244982, -0.015991210944946488, -0.007934570316194822, -0.007934570316194822, 0.04772949220972578, 0.0399169922060878, 0.023803710948584467, 0, 0.03210449220244982, 0.07214355472109446, 0.055541992213363756, 0.03210449220244982, -0.03210449220244982, -0.055541992213363756, -0.0399169922060878, -0.03210449220244982, 0, -0.007934570316194822, -0.015991210944946488, 0, -0.007934570316194822, -0.007934570316194822, -0.0399169922060878, -0.03210449220244982, -0.015991210944946488, 0, -0.007934570316194822, 0, 0.023803710948584467, 0.015991210944946488, 0.015991210944946488, 0.055541992213363756, 0.07214355472109446, 0.04772949220972578, 0.007934570316194822, -0.03210449220244982, -0.015991210944946488, -0.015991210944946488, -0.015991210944946488, -0.04772949220972578, -0.0399169922060878, -0.03210449220244982, 0.007934570316194822, 0.007934570316194822, -0.007934570316194822, -0.007934570316194822, -0.007934570316194822, -0.023803710948584467, -0.03210449220244982, -0.023803710948584467, 0, 0.023803710948584467, 0.0399169922060878, 0.03210449220244982, 0.03210449220244982, 0.023803710948584467, 0.04772949220972578, 0.0399169922060878, 0.0399169922060878, 0.007934570316194822, -0.023803710948584467, -0.04772949220972578, -0.03210449220244982, -0.03210449220244982, 0, -0.023803710948584467, -0.023803710948584467, -0.015991210944946488, -0.007934570316194822, 0, 0.007934570316194822, 0, -0.023803710948584467, -0.055541992213363756, -0.03210449220244982, 0.007934570316194822, 0.0399169922060878, 0.055541992213363756, 0.04772949220972578, 0.0399169922060878, 0.04772949220972578, 0.023803710948584467, 0.023803710948584467, 0.007934570316194822, 0, -0.04772949220972578, -0.0399169922060878, -0.055541992213363756, -0.015991210944946488, 0, 0.007934570316194822, -0.007934570316194822, -0.007934570316194822, -0.03210449220244982, -0.007934570316194822, 0, -0.015991210944946488, -0.015991210944946488, -0.007934570316194822, 0.007934570316194822, 0.023803710948584467, 0.03210449220244982, 0.055541992213363756, 0.04772949220972578, 0.0399169922060878, 0.0399169922060878, 0.015991210944946488, -0.007934570316194822, -0.0399169922060878, -0.03210449220244982, -0.015991210944946488, -0.007934570316194822, -0.023803710948584467, -0.007934570316194822, -0.023803710948584467, -0.007934570316194822, -0.023803710948584467, -0.007934570316194822, -0.007934570316194822, 0.007934570316194822, -0.015991210944946488, -0.023803710948584467, -0.023803710948584467, 0, 0.0399169922060878, 0.0399169922060878, 0.03210449220244982, 0.0399169922060878, 0.06433105471745648, 0.0399169922060878, 0.04772949220972578, 0.007934570316194822, -0.03210449220244982, -0.03210449220244982, -0.03210449220244982, -0.023803710948584467, 0.007934570316194822, -0.007934570316194822, -0.04772949220972578, -0.03210449220244982, -0.023803710948584467, 0, 0.007934570316194822, 0.015991210944946488, -0.03210449220244982, -0.023803710948584467, -0.03210449220244982, 0.015991210944946488, 0.023803710948584467, 0.055541992213363756, 0.03210449220244982, 0.07214355472109446, 0.07995605472473244, 0.055541992213363756, -0.007934570316194822, -0.015991210944946488, -0.015991210944946488, 0, -0.023803710948584467, -0.0399169922060878, -0.023803710948584467, -0.015991210944946488, -0.015991210944946488, -0.023803710948584467, -0.023803710948584467, 0, 0.015991210944946488, 0.007934570316194822, -0.0399169922060878, -0.0399169922060878, -0.023803710948584467, 0.015991210944946488, 0.023803710948584467, 0.055541992213363756, 0.04772949220972578, 0.015991210944946488, 0.0399169922060878, 0.03210449220244982, 0.0399169922060878, 0.015991210944946488, -0.015991210944946488, -0.0399169922060878, -0.055541992213363756, -0.06433105471745648, -0.023803710948584467, -0.007934570316194822, -0.007934570316194822, -0.023803710948584467, 0, -0.015991210944946488, 0.023803710948584467, 0.007934570316194822, -0.015991210944946488, -0.023803710948584467, 0, -0.007934570316194822, 0.015991210944946488, 0.007934570316194822, 0.0399169922060878, 0.07214355472109446, 0.04772949220972578, 0.03210449220244982, 0.015991210944946488, 0, 0, -0.023803710948584467, -0.0399169922060878, -0.023803710948584467, -0.03210449220244982, -0.04772949220972578, -0.03210449220244982, -0.007934570316194822, -0.007934570316194822, 0.007934570316194822, 0, 0.007934570316194822, -0.03210449220244982, -0.023803710948584467, -0.015991210944946488, 0.023803710948584467, 0.023803710948584467, 0.023803710948584467, 0.023803710948584467, 0.0399169922060878, 0.04772949220972578, 0.0399169922060878, 0.0399169922060878, 0.015991210944946488, -0.015991210944946488, -0.023803710948584467, -0.04772949220972578, -0.07214355472109446, -0.0399169922060878, 0.007934570316194822, -0.015991210944946488, -0.015991210944946488, -0.007934570316194822, -0.007934570316194822, 0, 0, -0.007934570316194822, 0, -0.007934570316194822, -0.023803710948584467, 0.023803710948584467, 0.0399169922060878, 0.0399169922060878, 0.023803710948584467, 0.03210449220244982, 0.0399169922060878, 0.0399169922060878, -0.007934570316194822, -0.023803710948584467, -0.03210449220244982, -0.015991210944946488, -0.04772949220972578, -0.0399169922060878, -0.03210449220244982, 0, 0.03210449220244982, 0.015991210944946488, 0, -0.007934570316194822, -0.007934570316194822, -0.0399169922060878, -0.015991210944946488, 0.007934570316194822, -0.023803710948584467, 0, 0.007934570316194822, 0.03210449220244982, 0.06433105471745648, 0.055541992213363756, 0.055541992213363756, 0.03210449220244982, -0.015991210944946488, -0.015991210944946488, -0.023803710948584467, -0.055541992213363756, -0.03210449220244982, -0.04772949220972578, -0.0399169922060878, 0, -0.007934570316194822, 0.007934570316194822, 0.007934570316194822, 0, 0.015991210944946488, 0, -0.04772949220972578, -0.03210449220244982, -0.007934570316194822, 0, 0.023803710948584467, 0.0399169922060878, 0.0399169922060878, 0.06433105471745648, 0.07995605472473244, 0.04772949220972578, 0.023803710948584467, -0.023803710948584467, -0.04772949220972578, -0.04772949220972578, -0.055541992213363756, -0.023803710948584467, -0.007934570316194822, -0.007934570316194822, -0.015991210944946488, -0.015991210944946488, 0.007934570316194822, 0.023803710948584467, 0.007934570316194822, -0.015991210944946488, -0.03210449220244982, -0.007934570316194822, -0.007934570316194822, 0, 0.015991210944946488, 0.0399169922060878, 0.07214355472109446, 0.055541992213363756, 0.0399169922060878, 0.0399169922060878, 0.015991210944946488, 0.007934570316194822, -0.007934570316194822, -0.07214355472109446, -0.055541992213363756, -0.015991210944946488, -0.023803710948584467, 0, 0, -0.015991210944946488, -0.015991210944946488, 0.015991210944946488, 0.03210449220244982, 0.015991210944946488, -0.007934570316194822, -0.04772949220972578, -0.03210449220244982, -0.007934570316194822, 0.023803710948584467, 0.055541992213363756, 0.04772949220972578, 0.04772949220972578, 0.055541992213363756, 0.03210449220244982, 0, -0.03210449220244982, -0.04772949220972578, -0.023803710948584467, -0.023803710948584467, -0.007934570316194822, -0.023803710948584467, -0.0399169922060878, -0.007934570316194822, -0.015991210944946488, 0.015991210944946488, 0.03210449220244982, 0.015991210944946488, 0, -0.023803710948584467, -0.03210449220244982, -0.03210449220244982, -0.007934570316194822, 0.007934570316194822, 0.04772949220972578, 0.055541992213363756, 0.07214355472109446, 0.04772949220972578, 0.015991210944946488, 0, -0.023803710948584467, -0.023803710948584467, -0.0399169922060878, -0.007934570316194822, -0.03210449220244982, -0.023803710948584467, -0.03210449220244982, -0.007934570316194822, 0, 0.04772949220972578, 0.023803710948584467, -0.015991210944946488, -0.015991210944946488, -0.03210449220244982, -0.023803710948584467, -0.015991210944946488, -0.007934570316194822, 0.023803710948584467, 0.023803710948584467, 0.03210449220244982, 0.06433105471745648, 0.04772949220972578, 0.0399169922060878, 0.015991210944946488, -0.015991210944946488, -0.03210449220244982, -0.04772949220972578, -0.04772949220972578, -0.0399169922060878, -0.007934570316194822, -0.007934570316194822, 0, -0.007934570316194822, -0.007934570316194822, 0.015991210944946488, 0, 0.007934570316194822, -0.015991210944946488, -0.015991210944946488, -0.007934570316194822, -0.015991210944946488, 0.007934570316194822, 0.023803710948584467, 0.04772949220972578, 0.055541992213363756, 0.0399169922060878, 0.0399169922060878, 0.007934570316194822, -0.007934570316194822, -0.04772949220972578, -0.06433105471745648, -0.0399169922060878, -0.03210449220244982, -0.023803710948584467, 0, 0, 0.015991210944946488, -0.007934570316194822, 0.03210449220244982, 0.015991210944946488, -0.03210449220244982, -0.023803710948584467, -0.007934570316194822, -0.007934570316194822, -0.015991210944946488, 0, 0.015991210944946488, 0.04772949220972578, 0.06433105471745648, 0.0399169922060878, 0.015991210944946488, 0.007934570316194822, 0.007934570316194822, -0.03210449220244982, -0.0399169922060878, -0.04772949220972578, -0.04772949220972578, -0.03210449220244982, 0.03210449220244982, -0.007934570316194822, -0.007934570316194822, 0.007934570316194822, 0.015991210944946488, 0, -0.007934570316194822, 0.015991210944946488, 0, -0.007934570316194822, -0.007934570316194822, 0, 0, 0.015991210944946488, 0.0399169922060878, 0.0399169922060878, 0.04772949220972578, 0.007934570316194822, -0.015991210944946488, -0.023803710948584467, -0.04772949220972578, -0.07995605472473244, -0.023803710948584467, -0.023803710948584467, 0, 0.007934570316194822, 0.015991210944946488, 0.023803710948584467, 0.015991210944946488, 0.007934570316194822, -0.023803710948584467, 0, -0.015991210944946488, -0.015991210944946488, -0.007934570316194822, 0.007934570316194822, 0, 0.023803710948584467, 0.03210449220244982, 0.0399169922060878, 0.023803710948584467, 0.0399169922060878, 0, -0.03210449220244982, -0.0399169922060878, -0.0399169922060878, -0.0399169922060878, -0.015991210944946488, 0.015991210944946488, 0.015991210944946488, 0.015991210944946488, 0, 0, 0, 0, 0, 0.015991210944946488, -0.03210449220244982, -0.0399169922060878, -0.007934570316194822, 0.023803710948584467, 0.04772949220972578, 0.055541992213363756, 0.06433105471745648, 0.055541992213363756, 0.023803710948584467, -0.04772949220972578, -0.0399169922060878, -0.06433105471745648, -0.015991210944946488, -0.0399169922060878, 0, 0.007934570316194822, 0, 0, -0.023803710948584467, 0.03210449220244982, 0.0399169922060878, 0.04772949220972578, 0.007934570316194822, -0.015991210944946488, -0.07214355472109446, -0.03210449220244982, -0.007934570316194822, 0.015991210944946488, 0.055541992213363756, 0.06433105471745648, 0.023803710948584467, 0.04772949220972578, 0, -0.015991210944946488, -0.03210449220244982, -0.0399169922060878, -0.023803710948584467, -0.0399169922060878, 0, 0.007934570316194822, -0.015991210944946488, -0.015991210944946488, 0.007934570316194822, 0.007934570316194822, 0.0399169922060878, 0.0399169922060878, 0.007934570316194822, -0.03210449220244982, -0.03210449220244982, -0.03210449220244982, -0.023803710948584467, 0.007934570316194822, 0.03210449220244982, 0.055541992213363756, 0.04772949220972578, 0.007934570316194822, 0, -0.015991210944946488, -0.015991210944946488, -0.023803710948584467, -0.007934570316194822, -0.03210449220244982, -0.007934570316194822, -0.015991210944946488, -0.055541992213363756, -0.015991210944946488, 0.007934570316194822, 0.0399169922060878, 0.06433105471745648, 0.0399169922060878, 0, -0.023803710948584467, -0.0399169922060878, -0.04772949220972578, -0.023803710948584467, 0.023803710948584467, 0.015991210944946488, 0.03210449220244982, 0.015991210944946488, 0.007934570316194822, 0.023803710948584467, 0, 0, -0.023803710948584467, -0.015991210944946488, -0.007934570316194822, -0.023803710948584467, -0.023803710948584467, -0.03210449220244982, -0.007934570316194822, 0, 0.0399169922060878, 0.03210449220244982, 0.015991210944946488, 0.015991210944946488, 0, -0.0399169922060878, -0.04772949220972578, -0.007934570316194822, -0.007934570316194822, 0.007934570316194822, 0.0399169922060878, 0.015991210944946488, 0.03210449220244982, 0.015991210944946488, 0.015991210944946488, 0.015991210944946488, -0.03210449220244982, -0.023803710948584467, -0.015991210944946488, -0.015991210944946488, -0.03210449220244982, -0.015991210944946488, 0.007934570316194822, 0.0399169922060878, 0.0399169922060878, 0.023803710948584467, 0.015991210944946488, 0.03210449220244982, -0.015991210944946488, -0.0399169922060878, -0.06433105471745648, -0.023803710948584467, -0.015991210944946488, 0.007934570316194822, 0.03210449220244982, 0.03210449220244982, 0.03210449220244982, 0.015991210944946488, 0.015991210944946488, 0.007934570316194822, 0.007934570316194822, -0.03210449220244982, -0.04772949220972578, -0.023803710948584467, -0.023803710948584467, -0.023803710948584467, 0, 0.0399169922060878, 0.0399169922060878, 0.023803710948584467, 0.03210449220244982, 0.015991210944946488, -0.015991210944946488, -0.0399169922060878, -0.03210449220244982, -0.03210449220244982, 0, 0, 0.007934570316194822, 0.007934570316194822, 0.007934570316194822, 0.015991210944946488, 0.03210449220244982, 0.023803710948584467, 0.007934570316194822, -0.015991210944946488, -0.04772949220972578, -0.0399169922060878, -0.0399169922060878, -0.015991210944946488, 0.04772949220972578, 0.055541992213363756, 0, 0.023803710948584467, 0.015991210944946488, 0.015991210944946488, 0.015991210944946488, 0.007934570316194822, -0.007934570316194822, -0.023803710948584467, -0.055541992213363756, -0.0399169922060878, -0.007934570316194822, -0.007934570316194822, 0.007934570316194822, 0.03210449220244982, 0.04772949220972578, 0.04772949220972578, 0.03210449220244982, -0.015991210944946488, -0.0399169922060878, -0.04772949220972578, -0.04772949220972578, 0.015991210944946488, 0.04772949220972578, 0.0399169922060878, 0.015991210944946488, 0.007934570316194822, -0.023803710948584467, 0.023803710948584467, 0.007934570316194822, 0.0399169922060878, -0.007934570316194822, -0.015991210944946488, -0.04772949220972578, -0.023803710948584467, -0.03210449220244982, -0.007934570316194822, 0.007934570316194822, 0.04772949220972578, 0.04772949220972578, 0.03210449220244982, 0.015991210944946488, -0.015991210944946488, -0.03210449220244982, -0.04772949220972578, -0.0399169922060878, 0.007934570316194822, 0.015991210944946488, 0.0399169922060878, 0.007934570316194822, 0.015991210944946488, 0, 0.007934570316194822, 0.023803710948584467, 0.007934570316194822, 0, -0.023803710948584467, -0.04772949220972578, -0.0399169922060878, -0.015991210944946488, 0, 0.0399169922060878, 0.06433105471745648, 0.055541992213363756, -0.007934570316194822, 0.007934570316194822, -0.007934570316194822, -0.023803710948584467, -0.04772949220972578, -0.03210449220244982, 0, 0.03210449220244982, 0.015991210944946488, 0, 0, -0.007934570316194822, 0.007934570316194822, 0.023803710948584467, 0.023803710948584467, 0.007934570316194822, -0.03210449220244982, -0.04772949220972578, -0.08776855472837042, -0.0399169922060878, 0, 0.055541992213363756, 0.06433105471745648, 0.03210449220244982, 0.015991210944946488, 0.007934570316194822, -0.03210449220244982, -0.0399169922060878, -0.055541992213363756, -0.023803710948584467, 0.03210449220244982, 0.0399169922060878, 0, 0.015991210944946488, 0, -0.007934570316194822, 0.015991210944946488, 0.03210449220244982, 0.023803710948584467, -0.023803710948584467, -0.04772949220972578, -0.055541992213363756, -0.06433105471745648, -0.023803710948584467, 0.03210449220244982, 0.007934570316194822, 0.055541992213363756, 0.06433105471745648, 0.0399169922060878, -0.015991210944946488, -0.015991210944946488, -0.0399169922060878, -0.03210449220244982, -0.007934570316194822, 0.007934570316194822, 0, 0, -0.007934570316194822, 0.015991210944946488, 0, 0.03210449220244982, 0.0399169922060878, 0.023803710948584467, 0, -0.03210449220244982, -0.07995605472473244, -0.07214355472109446, -0.03210449220244982, -0.007934570316194822, 0.03210449220244982, 0.04772949220972578, 0.055541992213363756, 0.055541992213363756, 0.015991210944946488, 0.023803710948584467, -0.0399169922060878, -0.0399169922060878, -0.04772949220972578, -0.03210449220244982, 0.015991210944946488, 0.015991210944946488, 0.0399169922060878, -0.007934570316194822, 0, 0.023803710948584467, 0.023803710948584467, 0.03210449220244982, 0.015991210944946488, -0.0399169922060878, -0.07214355472109446, -0.07995605472473244, -0.055541992213363756, 0, 0.023803710948584467, 0.03210449220244982, 0.04772949220972578, 0.04772949220972578, 0.015991210944946488, 0.007934570316194822, 0, -0.03210449220244982, -0.04772949220972578, -0.015991210944946488, -0.015991210944946488, 0.015991210944946488, 0, 0.007934570316194822, 0.015991210944946488, 0.0399169922060878, 0.023803710948584467, 0.007934570316194822, 0.007934570316194822, -0.015991210944946488, -0.0399169922060878, -0.0399169922060878, -0.055541992213363756, -0.0399169922060878, -0.023803710948584467, 0.03210449220244982, 0.03210449220244982, 0.06433105471745648, 0.055541992213363756, 0.015991210944946488, -0.015991210944946488, -0.023803710948584467, -0.03210449220244982, -0.023803710948584467, 0, 0.023803710948584467, 0.023803710948584467, 0.007934570316194822, -0.023803710948584467, 0, 0, 0.0399169922060878, 0.015991210944946488, -0.015991210944946488, -0.0399169922060878, -0.055541992213363756, -0.07214355472109446, -0.03210449220244982, -0.015991210944946488, 0.0399169922060878, 0.055541992213363756, 0.055541992213363756, 0.0399169922060878, 0.023803710948584467, -0.007934570316194822, -0.007934570316194822, -0.023803710948584467, -0.023803710948584467, 0.007934570316194822, 0.007934570316194822, 0.007934570316194822, 0.007934570316194822, 0.007934570316194822, 0.015991210944946488, 0.015991210944946488, 0.007934570316194822, 0, -0.007934570316194822, -0.03210449220244982, -0.04772949220972578, -0.023803710948584467, -0.03210449220244982, -0.0399169922060878, 0.007934570316194822, 0.03210449220244982, 0.07214355472109446, 0.06433105471745648, 0.007934570316194822, 0.007934570316194822, -0.007934570316194822, -0.03210449220244982, -0.023803710948584467, -0.007934570316194822, -0.007934570316194822, 0.007934570316194822, 0.015991210944946488, 0.015991210944946488, 0, -0.007934570316194822, 0.023803710948584467, 0.023803710948584467, 0.023803710948584467, -0.015991210944946488, -0.055541992213363756, -0.04772949220972578, -0.055541992213363756, -0.03210449220244982, -0.007934570316194822, 0.03210449220244982, 0.055541992213363756, 0.06433105471745648, 0.03210449220244982, 0.023803710948584467, 0, -0.007934570316194822, -0.03210449220244982, -0.03210449220244982, -0.023803710948584467, -0.007934570316194822, 0.007934570316194822, 0.03210449220244982, 0.023803710948584467, 0, -0.007934570316194822, 0.007934570316194822, 0.0399169922060878, 0.023803710948584467, -0.03210449220244982, -0.055541992213363756, -0.06433105471745648, -0.04772949220972578, -0.0399169922060878, 0.007934570316194822, 0.055541992213363756, 0.055541992213363756, 0.055541992213363756, 0.055541992213363756, 0.015991210944946488, -0.007934570316194822, -0.0399169922060878, -0.055541992213363756, -0.015991210944946488, -0.007934570316194822, 0.023803710948584467, 0.03210449220244982, 0.03210449220244982, -0.023803710948584467, -0.015991210944946488, -0.007934570316194822, -0.007934570316194822, 0.03210449220244982, 0.007934570316194822, -0.015991210944946488, -0.055541992213363756, -0.07214355472109446, -0.055541992213363756, 0, 0.055541992213363756, 0.04772949220972578, 0.055541992213363756, 0.04772949220972578, -0.007934570316194822, -0.023803710948584467, 0, -0.023803710948584467, -0.007934570316194822, -0.007934570316194822, 0.023803710948584467, -0.007934570316194822, 0, -0.007934570316194822, -0.015991210944946488, 0, 0.03210449220244982, 0.023803710948584467, 0.023803710948584467, -0.03210449220244982, -0.06433105471745648, -0.07214355472109446, -0.04772949220972578, -0.007934570316194822, 0.03210449220244982, 0.055541992213363756, 0.04772949220972578, 0.0399169922060878, 0.015991210944946488, 0.007934570316194822, 0.007934570316194822, -0.015991210944946488, -0.015991210944946488, -0.015991210944946488, 0, 0.007934570316194822, 0.03210449220244982, 0, -0.007934570316194822, -0.023803710948584467, -0.03210449220244982, 0.015991210944946488, 0.03210449220244982, 0.023803710948584467, -0.03210449220244982, -0.055541992213363756, -0.07995605472473244, -0.0399169922060878, 0.007934570316194822, 0.055541992213363756, 0.04772949220972578, 0.055541992213363756, 0.04772949220972578, 0.0399169922060878, 0.007934570316194822, -0.023803710948584467, -0.03210449220244982, -0.03210449220244982, 0, 0, 0.007934570316194822, 0.015991210944946488, -0.015991210944946488, -0.015991210944946488, -0.0399169922060878, -0.03210449220244982, 0.03210449220244982, 0.03210449220244982, 0.015991210944946488, -0.03210449220244982, -0.055541992213363756, -0.07995605472473244, -0.03210449220244982, 0.023803710948584467, 0.07995605472473244, 0.0955810547320084, 0.055541992213363756, 0.03210449220244982, -0.007934570316194822, -0.055541992213363756, -0.0399169922060878, -0.03210449220244982, -0.023803710948584467, 0.015991210944946488, 0.015991210944946488, 0.007934570316194822, 0.007934570316194822, -0.007934570316194822, -0.007934570316194822, 0, 0.007934570316194822, 0.03210449220244982, 0.015991210944946488, -0.03210449220244982, -0.03210449220244982, -0.06433105471745648, -0.07995605472473244, 0.007934570316194822, 0.03210449220244982, 0.07214355472109446, 0.06433105471745648, 0.06433105471745648, 0.0399169922060878, -0.015991210944946488, -0.03210449220244982, -0.0399169922060878, -0.055541992213363756, -0.007934570316194822, 0.03210449220244982, 0.03210449220244982, 0.0399169922060878, 0, -0.04772949220972578, -0.03210449220244982, 0, 0.0399169922060878, 0.03210449220244982, 0.023803710948584467, -0.023803710948584467, -0.07995605472473244, -0.07214355472109446, -0.04772949220972578, 0.0399169922060878, 0.07995605472473244, 0.06433105471745648, 0.08776855472837042, 0.023803710948584467, -0.03210449220244982, -0.03210449220244982, -0.04772949220972578, -0.03210449220244982, -0.007934570316194822, 0.007934570316194822, 0.007934570316194822, 0.023803710948584467, 0.007934570316194822, 0, -0.023803710948584467, 0, 0.007934570316194822, 0.04772949220972578, 0.03210449220244982, 0.007934570316194822, -0.06433105471745648, -0.08776855472837042, -0.07214355472109446, -0.007934570316194822, 0.0399169922060878, 0.055541992213363756, 0.08776855472837042, 0.07995605472473244, 0.015991210944946488, -0.03210449220244982, -0.0399169922060878, -0.0399169922060878, -0.03210449220244982, 0.015991210944946488, 0.015991210944946488, 0.015991210944946488, 0, -0.015991210944946488, -0.03210449220244982, 0, 0.03210449220244982, 0.0399169922060878, 0.04772949220972578, 0.015991210944946488, -0.023803710948584467, -0.08776855472837042, -0.06433105471745648, -0.06433105471745648, 0, 0.0399169922060878, 0.07214355472109446, 0.055541992213363756, 0.04772949220972578, 0.007934570316194822, -0.023803710948584467, -0.055541992213363756, -0.007934570316194822, 0.015991210944946488, 0.023803710948584467, 0, -0.007934570316194822, -0.03210449220244982, -0.015991210944946488, 0, 0.023803710948584467, 0, 0.015991210944946488, 0.007934570316194822, 0, -0.015991210944946488, -0.0399169922060878, -0.07214355472109446, -0.03210449220244982, 0, 0.0399169922060878, 0.055541992213363756, 0.055541992213363756, 0.023803710948584467, 0.015991210944946488, 0, -0.015991210944946488, -0.03210449220244982, -0.0399169922060878, -0.007934570316194822, -0.015991210944946488, 0.015991210944946488, 0.015991210944946488, -0.007934570316194822, -0.015991210944946488, 0.015991210944946488, 0, 0.007934570316194822, 0.015991210944946488, 0, -0.0399169922060878, -0.0399169922060878, -0.04772949220972578, -0.0399169922060878, 0.015991210944946488, 0.0399169922060878, 0.06433105471745648, 0.06433105471745648, 0.04772949220972578, 0.015991210944946488, -0.04772949220972578, -0.0399169922060878, -0.023803710948584467, -0.007934570316194822, 0, 0.007934570316194822, 0, 0.007934570316194822, 0, 0, -0.03210449220244982, 0.007934570316194822, 0.015991210944946488, 0.055541992213363756, 0, -0.03210449220244982, -0.055541992213363756, -0.055541992213363756, -0.0399169922060878, 0.023803710948584467, 0.055541992213363756, 0.07995605472473244, 0.055541992213363756, 0.0399169922060878, 0.023803710948584467, -0.03210449220244982, -0.055541992213363756, -0.06433105471745648, -0.03210449220244982, 0.023803710948584467, 0.015991210944946488, 0.023803710948584467, 0, -0.023803710948584467, -0.023803710948584467, -0.023803710948584467, -0.007934570316194822, 0.04772949220972578, 0.04772949220972578, 0.03210449220244982, -0.015991210944946488, -0.06433105471745648, -0.08776855472837042, -0.04772949220972578, 0.03210449220244982, 0.08776855472837042, 0.08776855472837042, 0.06433105471745648, 0.0399169922060878, -0.015991210944946488, -0.06433105471745648, -0.07995605472473244, -0.04772949220972578, 0.007934570316194822, 0.015991210944946488, 0.023803710948584467, 0, -0.007934570316194822, -0.007934570316194822, -0.007934570316194822, -0.023803710948584467, 0.007934570316194822, 0.03210449220244982, 0.07214355472109446, 0.007934570316194822, -0.03210449220244982, -0.10339355473564638, -0.11901855474292233, -0.04772949220972578, 0.0399169922060878, 0.10339355473564638, 0.12487792974565082, 0.06433105471745648, 0.007934570316194822, -0.06433105471745648, -0.07214355472109446, -0.07214355472109446, -0.015991210944946488, 0.015991210944946488, 0.04772949220972578, 0.03210449220244982, -0.03210449220244982, -0.03210449220244982, -0.0399169922060878, -0.015991210944946488, 0.007934570316194822, 0.055541992213363756, 0.055541992213363756, 0.04772949220972578, 0.007934570316194822, -0.06433105471745648, -0.0955810547320084, -0.055541992213363756, 0.007934570316194822, 0.06433105471745648, 0.08776855472837042, 0.07214355472109446, 0.023803710948584467, -0.03210449220244982, -0.055541992213363756, -0.08776855472837042, -0.023803710948584467, 0.015991210944946488, 0.0399169922060878, 0.023803710948584467, 0, -0.015991210944946488, -0.023803710948584467, -0.023803710948584467, 0, 0.007934570316194822, 0.07214355472109446, 0.055541992213363756, 0.015991210944946488, -0.023803710948584467, -0.06433105471745648, -0.08776855472837042, -0.055541992213363756, 0.007934570316194822, 0.0955810547320084, 0.08776855472837042, 0.0399169922060878, 0, -0.04772949220972578, -0.04772949220972578, -0.04772949220972578, -0.015991210944946488, 0.015991210944946488, 0, 0.007934570316194822, 0.007934570316194822, -0.007934570316194822, -0.007934570316194822, -0.007934570316194822, 0.007934570316194822, 0.04772949220972578, 0.03210449220244982, 0.07214355472109446, 0.055541992213363756, -0.055541992213363756, -0.11120605473928435, -0.0955810547320084, -0.023803710948584467, 0.06433105471745648, 0.0955810547320084, 0.07995605472473244, 0.007934570316194822, -0.007934570316194822, -0.023803710948584467, -0.06433105471745648, -0.03210449220244982, -0.015991210944946488, 0.007934570316194822, 0.007934570316194822, -0.007934570316194822, 0, 0, 0.03210449220244982, 0.015991210944946488, -0.007934570316194822, 0, 0.03210449220244982, 0.03210449220244982, 0.015991210944946488, -0.015991210944946488, -0.04772949220972578, -0.055541992213363756, -0.015991210944946488, 0.023803710948584467, 0.04772949220972578, 0.055541992213363756, 0.007934570316194822, 0.007934570316194822, 0, -0.07214355472109446, -0.03210449220244982, -0.03210449220244982, 0, 0.015991210944946488, 0.0399169922060878, 0.023803710948584467, 0.03210449220244982, -0.023803710948584467, -0.023803710948584467, -0.015991210944946488, 0, 0.0399169922060878, 0.06433105471745648, 0.015991210944946488, 0, -0.06433105471745648, -0.07214355472109446, -0.06433105471745648, -0.015991210944946488, 0.04772949220972578, 0.10339355473564638, 0.04772949220972578, 0.007934570316194822, -0.04772949220972578, -0.055541992213363756, -0.04772949220972578, -0.04772949220972578, 0.007934570316194822, 0.055541992213363756, 0.06433105471745648, 0.015991210944946488, 0.007934570316194822, -0.015991210944946488, -0.03210449220244982, -0.0399169922060878, 0.03210449220244982, 0.07214355472109446, 0.07995605472473244, 0.023803710948584467, -0.03210449220244982, -0.08776855472837042, -0.08776855472837042, -0.07214355472109446, 0.007934570316194822, 0.07214355472109446, 0.07995605472473244, 0.055541992213363756, 0.007934570316194822, -0.03210449220244982, -0.055541992213363756, -0.023803710948584467, -0.023803710948584467, 0, 0.055541992213363756, 0.055541992213363756, 0.015991210944946488, -0.007934570316194822, -0.03210449220244982, -0.007934570316194822, 0.007934570316194822, 0.023803710948584467, 0.0399169922060878, 0.0399169922060878, 0, -0.0399169922060878, -0.04772949220972578, -0.0955810547320084, -0.055541992213363756, 0.007934570316194822, 0.06433105471745648, 0.055541992213363756, 0.06433105471745648, 0.03210449220244982, -0.023803710948584467, -0.07995605472473244, -0.0399169922060878, -0.007934570316194822, 0.0399169922060878, 0.023803710948584467, 0.007934570316194822, 0.015991210944946488, 0, -0.03210449220244982, -0.015991210944946488, 0, 0.015991210944946488, 0.03210449220244982, 0.055541992213363756, 0.0399169922060878, 0, -0.07214355472109446, -0.08776855472837042, -0.0399169922060878, -0.015991210944946488, 0.023803710948584467, 0.04772949220972578, 0.07214355472109446, 0.015991210944946488, -0.03210449220244982, -0.0399169922060878, -0.03210449220244982, -0.007934570316194822, -0.007934570316194822, 0.023803710948584467, 0.023803710948584467, 0.007934570316194822, 0, -0.015991210944946488, -0.007934570316194822, 0.007934570316194822, 0.015991210944946488, 0.04772949220972578, 0.03210449220244982, 0.015991210944946488, -0.023803710948584467, -0.0399169922060878, -0.07214355472109446, -0.055541992213363756, -0.03210449220244982, 0.023803710948584467, 0.023803710948584467, 0.06433105471745648, 0.023803710948584467, 0, -0.015991210944946488, 0.007934570316194822, -0.015991210944946488, -0.007934570316194822, -0.007934570316194822, -0.007934570316194822, 0.015991210944946488, 0.015991210944946488, 0.015991210944946488, -0.007934570316194822, -0.0399169922060878, 0.007934570316194822, 0.023803710948584467, 0.0399169922060878, 0.007934570316194822, 0.007934570316194822, -0.023803710948584467, -0.06433105471745648, -0.07214355472109446, -0.055541992213363756, 0.015991210944946488, 0.055541992213363756, 0.04772949220972578, 0.055541992213363756, 0.007934570316194822, -0.0399169922060878, -0.023803710948584467, -0.03210449220244982, -0.015991210944946488, -0.015991210944946488, 0.023803710948584467, 0.0399169922060878, 0.023803710948584467, 0.007934570316194822, -0.03210449220244982, -0.03210449220244982, 0.023803710948584467, 0.03210449220244982, 0.023803710948584467, 0.015991210944946488, 0.015991210944946488, -0.055541992213363756, -0.055541992213363756, -0.07214355472109446, -0.04772949220972578, 0, 0.04772949220972578, 0.04772949220972578, 0.0399169922060878, 0.023803710948584467, -0.007934570316194822, -0.03210449220244982, -0.023803710948584467, -0.015991210944946488, 0.007934570316194822, 0.03210449220244982, 0.04772949220972578, 0.023803710948584467, -0.015991210944946488, -0.055541992213363756, -0.015991210944946488, 0, 0.007934570316194822, 0.023803710948584467, 0.015991210944946488, 0.007934570316194822, -0.015991210944946488, -0.03210449220244982, -0.055541992213363756, -0.023803710948584467, 0, 0.04772949220972578, 0.0399169922060878, 0.03210449220244982, 0, 0, -0.023803710948584467, -0.015991210944946488, -0.007934570316194822, -0.007934570316194822, 0.03210449220244982, 0.03210449220244982, 0.015991210944946488, 0.007934570316194822, -0.015991210944946488, -0.04772949220972578, -0.007934570316194822, 0.007934570316194822, 0.03210449220244982, 0.023803710948584467, 0.007934570316194822, 0, -0.0399169922060878, -0.03210449220244982, -0.015991210944946488, -0.007934570316194822, 0.015991210944946488, 0.023803710948584467, 0.023803710948584467, 0.015991210944946488, 0, -0.03210449220244982, -0.023803710948584467, 0.007934570316194822, 0.03210449220244982, 0.015991210944946488, 0.015991210944946488, -0.007934570316194822, -0.015991210944946488, -0.007934570316194822, 0, 0, 0, 0.007934570316194822, 0.0399169922060878, 0, -0.015991210944946488, -0.03210449220244982, -0.015991210944946488, -0.023803710948584467, 0, 0.015991210944946488, 0.007934570316194822, 0.015991210944946488, 0.0399169922060878, 0.007934570316194822, 0.023803710948584467, 0.007934570316194822, -0.007934570316194822, -0.015991210944946488, -0.007934570316194822, 0, 0.023803710948584467, 0.007934570316194822, -0.007934570316194822, -0.03210449220244982, 0, 0, 0, 0.015991210944946488, 0.015991210944946488, -0.023803710948584467, -0.03210449220244982, 0.007934570316194822, 0, -0.007934570316194822, -0.007934570316194822, 0.007934570316194822, 0.0399169922060878, 0, 0.023803710948584467, 0.0399169922060878, 0.007934570316194822, -0.0399169922060878, -0.015991210944946488, 0.007934570316194822, 0, 0.015991210944946488, -0.015991210944946488, 0.015991210944946488, 0.007934570316194822, -0.007934570316194822, -0.04772949220972578, -0.023803710948584467, -0.007934570316194822, 0.0399169922060878, 0.015991210944946488, 0.023803710948584467, -0.015991210944946488, -0.023803710948584467, -0.03210449220244982, -0.03210449220244982, 0.007934570316194822, 0.03210449220244982, 0.03210449220244982, 0.023803710948584467, 0.023803710948584467, -0.007934570316194822, -0.023803710948584467, -0.007934570316194822, -0.007934570316194822, 0.015991210944946488, 0.03210449220244982, -0.007934570316194822, -0.015991210944946488, -0.03210449220244982, -0.015991210944946488, -0.007934570316194822, 0.023803710948584467, 0.007934570316194822, -0.007934570316194822, -0.007934570316194822, 0.015991210944946488, 0.007934570316194822, -0.03210449220244982, -0.015991210944946488, 0.007934570316194822, 0.015991210944946488, 0.0399169922060878, 0.007934570316194822, 0, 0.015991210944946488, 0.007934570316194822, 0.007934570316194822, -0.007934570316194822, -0.007934570316194822, -0.007934570316194822, -0.007934570316194822, -0.007934570316194822, -0.015991210944946488, -0.007934570316194822, -0.023803710948584467, 0, 0, 0.007934570316194822, 0.015991210944946488, 0, -0.007934570316194822, 0.015991210944946488, 0, -0.007934570316194822, -0.015991210944946488, -0.007934570316194822, 0.023803710948584467, 0, 0.04772949220972578, 0.015991210944946488, 0, -0.03210449220244982, -0.04772949220972578, 0], "type": "scatter", "x": [0, 0.0025000002, 0.0050000004, 0.0075000003, 0.010000001, 0.0125, 0.015000001, 0.0175, 0.020000001, 0.0225, 0.025, 0.027500002, 0.030000001, 0.032500003, 0.035, 0.0375, 0.040000003, 0.0425, 0.045, 0.047500003, 0.05, 0.052500002, 0.055000003, 0.0575, 0.060000002, 0.0625, 0.065000005, 0.0675, 0.07, 0.072500005, 0.075, 0.0775, 0.080000006, 0.0825, 0.085, 0.087500006, 0.09, 0.0925, 0.095000006, 0.097500004, 0.1, 0.10250001, 0.105000004, 0.1075, 0.11000001, 0.112500004, 0.115, 0.11750001, 0.120000005, 0.1225, 0.125, 0.12750001, 0.13000001, 0.13250001, 0.135, 0.1375, 0.14, 0.14250001, 0.14500001, 0.14750001, 0.15, 0.1525, 0.155, 0.15750001, 0.16000001, 0.16250001, 0.165, 0.1675, 0.17, 0.17250001, 0.17500001, 0.17750001, 0.18, 0.1825, 0.185, 0.18750001, 0.19000001, 0.19250001, 0.19500001, 0.1975, 0.2, 0.20250002, 0.20500001, 0.20750001, 0.21000001, 0.2125, 0.215, 0.21750002, 0.22000001, 0.22250001, 0.22500001, 0.2275, 0.23, 0.23250002, 0.23500001, 0.23750001, 0.24000001, 0.2425, 0.245, 0.24750002, 0.25, 0.2525, 0.25500003, 0.25750002, 0.26000002, 0.26250002, 0.26500002, 0.2675, 0.27, 0.2725, 0.275, 0.2775, 0.28, 0.2825, 0.28500003, 0.28750002, 0.29000002, 0.29250002, 0.29500002, 0.2975, 0.3, 0.3025, 0.305, 0.3075, 0.31, 0.3125, 0.31500003, 0.31750003, 0.32000002, 0.32250002, 0.32500002, 0.32750002, 0.33, 0.3325, 0.335, 0.3375, 0.34, 0.34250003, 0.34500003, 0.34750003, 0.35000002, 0.35250002, 0.35500002, 0.35750002, 0.36, 0.3625, 0.365, 0.3675, 0.37, 0.37250003, 0.37500003, 0.37750003, 0.38000003, 0.38250002, 0.38500002, 0.38750002, 0.39000002, 0.3925, 0.395, 0.3975, 0.4, 0.40250003, 0.40500003, 0.40750003, 0.41000003, 0.41250002, 0.41500002, 0.41750002, 0.42000002, 0.4225, 0.425, 0.4275, 0.43, 0.43250003, 0.43500003, 0.43750003, 0.44000003, 0.44250003, 0.44500002, 0.44750002, 0.45000002, 0.45250002, 0.455, 0.4575, 0.46, 0.46250004, 0.46500003, 0.46750003, 0.47000003, 0.47250003, 0.47500002, 0.47750002, 0.48000002, 0.48250002, 0.485, 0.4875, 0.49, 0.49250004, 0.49500003, 0.49750003, 0.5, 0.5025, 0.505, 0.50750005, 0.51000005, 0.51250005, 0.51500005, 0.51750004, 0.52000004, 0.52250004, 0.52500004, 0.52750003, 0.53000003, 0.5325, 0.535, 0.5375, 0.54, 0.5425, 0.545, 0.5475, 0.55, 0.5525, 0.555, 0.5575, 0.56, 0.5625, 0.565, 0.56750005, 0.57000005, 0.57250005, 0.57500005, 0.57750005, 0.58000004, 0.58250004, 0.58500004, 0.58750004, 0.59000003, 0.59250003, 0.595, 0.5975, 0.6, 0.6025, 0.605, 0.6075, 0.61, 0.6125, 0.615, 0.6175, 0.62, 0.6225, 0.625, 0.62750006, 0.63000005, 0.63250005, 0.63500005, 0.63750005, 0.64000005, 0.64250004, 0.64500004, 0.64750004, 0.65000004, 0.65250003, 0.65500003, 0.6575, 0.66, 0.6625, 0.665, 0.6675, 0.67, 0.6725, 0.675, 0.6775, 0.68, 0.6825, 0.68500006, 0.68750006, 0.69000006, 0.69250005, 0.69500005, 0.69750005, 0.70000005, 0.70250005, 0.70500004, 0.70750004, 0.71000004, 0.71250004, 0.71500003, 0.71750003, 0.72, 0.7225, 0.725, 0.7275, 0.73, 0.7325, 0.735, 0.7375, 0.74, 0.7425, 0.74500006, 0.74750006, 0.75000006, 0.75250006, 0.75500005, 0.75750005, 0.76000005, 0.76250005, 0.76500005, 0.76750004, 0.77000004, 0.77250004, 0.77500004, 0.77750003, 0.78000003, 0.7825, 0.785, 0.7875, 0.79, 0.7925, 0.795, 0.7975, 0.8, 0.8025, 0.80500007, 0.80750006, 0.81000006, 0.81250006, 0.81500006, 0.81750005, 0.82000005, 0.82250005, 0.82500005, 0.82750005, 0.83000004, 0.83250004, 0.83500004, 0.83750004, 0.84000003, 0.84250003, 0.845, 0.8475, 0.85, 0.8525, 0.855, 0.8575, 0.86, 0.8625, 0.86500007, 0.86750007, 0.87000006, 0.87250006, 0.87500006, 0.87750006, 0.88000005, 0.88250005, 0.88500005, 0.88750005, 0.89000005, 0.89250004, 0.89500004, 0.89750004, 0.90000004, 0.90250003, 0.90500003, 0.9075, 0.91, 0.9125, 0.915, 0.9175, 0.92, 0.9225, 0.9250001, 0.92750007, 0.93000007, 0.93250006, 0.93500006, 0.93750006, 0.94000006, 0.94250005, 0.94500005, 0.94750005, 0.95000005, 0.95250005, 0.95500004, 0.95750004, 0.96000004, 0.96250004, 0.96500003, 0.96750003, 0.97, 0.9725, 0.975, 0.9775, 0.98, 0.9825001, 0.9850001, 0.9875001, 0.99000007, 0.99250007, 0.99500006, 0.99750006, 1, 1.0025, 1.005, 1.0075, 1.01, 1.0125, 1.0150001, 1.0175, 1.0200001, 1.0225, 1.0250001, 1.0275, 1.0300001, 1.0325, 1.0350001, 1.0375, 1.0400001, 1.0425, 1.0450001, 1.0475, 1.0500001, 1.0525, 1.0550001, 1.0575, 1.0600001, 1.0625, 1.065, 1.0675, 1.07, 1.0725001, 1.075, 1.0775001, 1.08, 1.0825001, 1.085, 1.0875001, 1.09, 1.0925001, 1.095, 1.0975001, 1.1, 1.1025001, 1.105, 1.1075001, 1.11, 1.1125001, 1.115, 1.1175001, 1.12, 1.1225001, 1.125, 1.1275, 1.13, 1.1325, 1.1350001, 1.1375, 1.1400001, 1.1425, 1.1450001, 1.1475, 1.1500001, 1.1525, 1.1550001, 1.1575, 1.1600001, 1.1625, 1.1650001, 1.1675, 1.1700001, 1.1725, 1.1750001, 1.1775, 1.1800001, 1.1825, 1.1850001, 1.1875, 1.19, 1.1925001, 1.195, 1.1975001, 1.2, 1.2025001, 1.205, 1.2075001, 1.21, 1.2125001, 1.215, 1.2175001, 1.22, 1.2225001, 1.225, 1.2275001, 1.23, 1.2325001, 1.235, 1.2375001, 1.24, 1.2425001, 1.245, 1.2475001, 1.25, 1.2525, 1.2550001, 1.2575, 1.2600001, 1.2625, 1.2650001, 1.2675, 1.2700001, 1.2725, 1.2750001, 1.2775, 1.2800001, 1.2825, 1.2850001, 1.2875, 1.2900001, 1.2925, 1.2950001, 1.2975, 1.3000001, 1.3025, 1.3050001, 1.3075, 1.3100001, 1.3125001, 1.315, 1.3175001, 1.32, 1.3225001, 1.325, 1.3275001, 1.33, 1.3325001, 1.335, 1.3375001, 1.34, 1.3425001, 1.345, 1.3475001, 1.35, 1.3525001, 1.355, 1.3575001, 1.36, 1.3625001, 1.365, 1.3675001, 1.3700001, 1.3725001, 1.3750001, 1.3775, 1.3800001, 1.3825, 1.3850001, 1.3875, 1.3900001, 1.3925, 1.3950001, 1.3975, 1.4000001, 1.4025, 1.4050001, 1.4075, 1.4100001, 1.4125, 1.4150001, 1.4175, 1.4200001, 1.4225, 1.4250001, 1.4275, 1.4300001, 1.4325001, 1.4350001, 1.4375001, 1.44, 1.4425001, 1.445, 1.4475001, 1.45, 1.4525001, 1.455, 1.4575001, 1.46, 1.4625001, 1.465, 1.4675001, 1.47, 1.4725001, 1.475, 1.4775001, 1.48, 1.4825001, 1.485, 1.4875001, 1.4900001, 1.4925001, 1.4950001, 1.4975001, 1.5000001, 1.5025, 1.5050001, 1.5075, 1.5100001, 1.5125, 1.5150001, 1.5175, 1.5200001, 1.5225, 1.5250001, 1.5275, 1.5300001, 1.5325, 1.5350001, 1.5375, 1.5400001, 1.5425, 1.5450001, 1.5475, 1.5500001, 1.5525001, 1.5550001, 1.5575001, 1.5600001, 1.5625001, 1.565, 1.5675001, 1.57, 1.5725001, 1.575, 1.5775001, 1.58, 1.5825001, 1.585, 1.5875001, 1.59, 1.5925001, 1.595, 1.5975001, 1.6, 1.6025001, 1.605, 1.6075001, 1.6100001, 1.6125001, 1.6150001, 1.6175001, 1.6200001, 1.6225001, 1.6250001, 1.6275, 1.6300001, 1.6325, 1.6350001, 1.6375, 1.6400001, 1.6425, 1.6450001, 1.6475, 1.6500001, 1.6525, 1.6550001, 1.6575, 1.6600001, 1.6625, 1.6650001, 1.6675001, 1.6700001, 1.6725001, 1.6750001, 1.6775001, 1.6800001, 1.6825001, 1.6850001, 1.6875001, 1.69, 1.6925001, 1.695, 1.6975001, 1.7, 1.7025001, 1.705, 1.7075001, 1.71, 1.7125001, 1.715, 1.7175001, 1.72, 1.7225001, 1.725, 1.7275001, 1.7300001, 1.7325001, 1.7350001, 1.7375001, 1.7400001, 1.7425001, 1.7450001, 1.7475001, 1.7500001, 1.7525, 1.7550001, 1.7575, 1.7600001, 1.7625, 1.7650001, 1.7675, 1.7700001, 1.7725, 1.7750001, 1.7775, 1.7800001, 1.7825, 1.7850001, 1.7875001, 1.7900001, 1.7925001, 1.7950001, 1.7975001, 1.8000001, 1.8025001, 1.8050001, 1.8075001, 1.8100001, 1.8125001, 1.815, 1.8175001, 1.82, 1.8225001, 1.825, 1.8275001, 1.83, 1.8325001, 1.835, 1.8375001, 1.84, 1.8425001, 1.845, 1.8475001, 1.8500001, 1.8525001, 1.8550001, 1.8575001, 1.8600001, 1.8625001, 1.8650001, 1.8675001, 1.8700001, 1.8725001, 1.8750001, 1.8775, 1.8800001, 1.8825, 1.8850001, 1.8875, 1.8900001, 1.8925, 1.8950001, 1.8975, 1.9000001, 1.9025, 1.9050001, 1.9075001, 1.9100001, 1.9125001, 1.9150001, 1.9175001, 1.9200001, 1.9225001, 1.9250001, 1.9275001, 1.9300001, 1.9325001, 1.9350001, 1.9375001, 1.94, 1.9425001, 1.945, 1.9475001, 1.95, 1.9525001, 1.955, 1.9575001, 1.96, 1.9625001, 1.9650002, 1.9675001, 1.9700001, 1.9725001, 1.9750001, 1.9775001, 1.9800001, 1.9825001, 1.9850001, 1.9875001, 1.9900001, 1.9925001, 1.9950001, 1.9975001, 2, 2.0025, 2.005, 2.0075002, 2.01, 2.0125, 2.015, 2.0175002, 2.02, 2.0225, 2.025, 2.0275002, 2.0300002, 2.0325, 2.035, 2.0375001, 2.0400002, 2.0425, 2.045, 2.0475001, 2.0500002, 2.0525, 2.055, 2.0575001, 2.0600002, 2.0625, 2.065, 2.0675, 2.0700002, 2.0725, 2.075, 2.0775, 2.0800002, 2.0825, 2.085, 2.0875, 2.0900002, 2.0925002, 2.095, 2.0975, 2.1000001, 2.1025002, 2.105, 2.1075, 2.1100001, 2.1125002, 2.115, 2.1175, 2.1200001, 2.1225002, 2.125, 2.1275, 2.13, 2.1325002, 2.135, 2.1375, 2.14, 2.1425002, 2.1450002, 2.1475, 2.15, 2.1525002, 2.1550002, 2.1575, 2.16, 2.1625001, 2.1650002, 2.1675, 2.17, 2.1725001, 2.1750002, 2.1775, 2.18, 2.1825001, 2.1850002, 2.1875, 2.19, 2.1925, 2.1950002, 2.1975, 2.2, 2.2025, 2.2050002, 2.2075002, 2.21, 2.2125, 2.2150002, 2.2175002, 2.22, 2.2225, 2.2250001, 2.2275002, 2.23, 2.2325, 2.2350001, 2.2375002, 2.24, 2.2425, 2.2450001, 2.2475002, 2.25, 2.2525, 2.255, 2.2575002, 2.26, 2.2625, 2.265, 2.2675002, 2.2700002, 2.2725, 2.275, 2.2775002, 2.2800002, 2.2825, 2.285, 2.2875001, 2.2900002, 2.2925, 2.295, 2.2975001, 2.3000002, 2.3025, 2.305, 2.3075001, 2.3100002, 2.3125, 2.315, 2.3175, 2.3200002, 2.3225002, 2.325, 2.3275, 2.3300002, 2.3325002, 2.335, 2.3375, 2.3400002, 2.3425002, 2.345, 2.3475, 2.3500001, 2.3525002, 2.355, 2.3575, 2.3600001, 2.3625002, 2.365, 2.3675, 2.3700001, 2.3725002, 2.375, 2.3775, 2.38, 2.3825002, 2.3850002, 2.3875, 2.39, 2.3925002, 2.3950002, 2.3975, 2.4, 2.4025002, 2.4050002, 2.4075, 2.41, 2.4125001, 2.4150002, 2.4175, 2.42, 2.4225001, 2.4250002, 2.4275, 2.43, 2.4325001, 2.4350002, 2.4375, 2.44, 2.4425, 2.4450002, 2.4475002, 2.45, 2.4525, 2.4550002, 2.4575002, 2.46, 2.4625, 2.4650002, 2.4675002, 2.47, 2.4725, 2.4750001, 2.4775002, 2.48, 2.4825, 2.4850001, 2.4875002, 2.49, 2.4925, 2.4950001, 2.4975002, 2.5, 2.5025, 2.505, 2.5075002, 2.5100002, 2.5125, 2.515, 2.5175002, 2.5200002, 2.5225, 2.525, 2.5275002, 2.5300002, 2.5325, 2.535, 2.5375001, 2.5400002, 2.5425, 2.545, 2.5475001, 2.5500002, 2.5525, 2.555, 2.5575001, 2.5600002, 2.5625002, 2.565, 2.5675, 2.5700002, 2.5725002, 2.575, 2.5775, 2.5800002, 2.5825002, 2.585, 2.5875, 2.5900002, 2.5925002, 2.595, 2.5975, 2.6000001, 2.6025002, 2.605, 2.6075, 2.6100001, 2.6125002, 2.615, 2.6175, 2.6200001, 2.6225002, 2.6250002, 2.6275, 2.63, 2.6325002, 2.6350002, 2.6375, 2.64, 2.6425002, 2.6450002, 2.6475, 2.65, 2.6525002, 2.6550002, 2.6575, 2.66, 2.6625001, 2.6650002, 2.6675, 2.67, 2.6725001, 2.6750002, 2.6775, 2.68, 2.6825001, 2.6850002, 2.6875002, 2.69, 2.6925, 2.6950002, 2.6975002, 2.7, 2.7025, 2.7050002, 2.7075002, 2.71, 2.7125, 2.7150002, 2.7175002, 2.72, 2.7225, 2.7250001, 2.7275002, 2.73, 2.7325, 2.7350001, 2.7375002, 2.7400002, 2.7425, 2.7450001, 2.7475002, 2.7500002, 2.7525, 2.755, 2.7575002, 2.7600002, 2.7625, 2.765, 2.7675002, 2.7700002, 2.7725, 2.775, 2.7775002, 2.7800002, 2.7825, 2.785, 2.7875001, 2.7900002, 2.7925, 2.795, 2.7975001, 2.8000002, 2.8025002, 2.805, 2.8075001, 2.8100002, 2.8125002, 2.815, 2.8175, 2.8200002, 2.8225002, 2.825, 2.8275, 2.8300002, 2.8325002, 2.835, 2.8375, 2.8400002, 2.8425002, 2.845, 2.8475, 2.8500001, 2.8525002, 2.855, 2.8575, 2.8600001, 2.8625002, 2.8650002, 2.8675, 2.8700001, 2.8725002, 2.8750002, 2.8775, 2.88, 2.8825002, 2.8850002, 2.8875, 2.89, 2.8925002, 2.8950002, 2.8975, 2.9, 2.9025002, 2.9050002, 2.9075, 2.91, 2.9125001, 2.9150002, 2.9175003, 2.92, 2.9225001, 2.9250002, 2.9275002, 2.93, 2.9325001, 2.9350002, 2.9375002, 2.94, 2.9425, 2.9450002, 2.9475002, 2.95, 2.9525, 2.9550002, 2.9575002, 2.96, 2.9625, 2.9650002, 2.9675002, 2.97, 2.9725, 2.9750001, 2.9775002, 2.9800003, 2.9825, 2.9850001, 2.9875002, 2.9900002, 2.9925, 2.9950001, 2.9975002, 3.0000002, 3.0025, 3.005, 3.0075002, 3.0100002, 3.0125, 3.015, 3.0175002, 3.0200002, 3.0225, 3.025, 3.0275002, 3.0300002, 3.0325, 3.035, 3.0375001, 3.0400002, 3.0425003, 3.045, 3.0475001, 3.0500002, 3.0525002, 3.055, 3.0575001, 3.0600002, 3.0625002, 3.065, 3.0675, 3.0700002, 3.0725002, 3.075, 3.0775, 3.0800002, 3.0825002, 3.085, 3.0875, 3.0900002, 3.0925002, 3.095, 3.0975, 3.1000001, 3.1025002, 3.1050003, 3.1075, 3.1100001, 3.1125002, 3.1150002, 3.1175, 3.1200001, 3.1225002, 3.1250002, 3.1275, 3.13, 3.1325002, 3.1350002, 3.1375, 3.14, 3.1425002, 3.1450002, 3.1475, 3.15, 3.1525002, 3.1550002, 3.1575003, 3.16, 3.1625001, 3.1650002, 3.1675003, 3.17, 3.1725001, 3.1750002, 3.1775002, 3.18, 3.1825001, 3.1850002, 3.1875002, 3.19, 3.1925, 3.1950002, 3.1975002, 3.2, 3.2025, 3.2050002, 3.2075002, 3.21, 3.2125, 3.2150002, 3.2175002, 3.2200003, 3.2225, 3.2250001, 3.2275002, 3.2300003, 3.2325, 3.2350001, 3.2375002, 3.2400002, 3.2425, 3.2450001, 3.2475002, 3.2500002, 3.2525, 3.255, 3.2575002, 3.2600002, 3.2625, 3.265, 3.2675002, 3.2700002, 3.2725, 3.275, 3.2775002, 3.2800002, 3.2825003, 3.285, 3.2875001, 3.2900002, 3.2925003, 3.295, 3.2975001, 3.3000002, 3.3025002, 3.305, 3.3075001, 3.3100002, 3.3125002, 3.315, 3.3175, 3.3200002, 3.3225002, 3.325, 3.3275, 3.3300002, 3.3325002, 3.3350003, 3.3375, 3.3400002, 3.3425002, 3.3450003, 3.3475, 3.3500001, 3.3525002, 3.3550003, 3.3575, 3.3600001, 3.3625002, 3.3650002, 3.3675, 3.3700001, 3.3725002, 3.3750002, 3.3775, 3.38, 3.3825002, 3.3850002, 3.3875, 3.39, 3.3925002, 3.3950002, 3.3975003, 3.4, 3.4025002, 3.4050002, 3.4075003, 3.41, 3.4125001, 3.4150002, 3.4175003, 3.42, 3.4225001, 3.4250002, 3.4275002, 3.43, 3.4325001, 3.4350002, 3.4375002, 3.44, 3.4425, 3.4450002, 3.4475002, 3.45, 3.4525, 3.4550002, 3.4575002, 3.4600003, 3.4625, 3.4650002, 3.4675002, 3.4700003, 3.4725, 3.4750001, 3.4775002, 3.4800003, 3.4825, 3.4850001, 3.4875002, 3.4900002, 3.4925, 3.4950001, 3.4975002, 3.5000002, 3.5025, 3.505, 3.5075002, 3.5100002, 3.5125, 3.515, 3.5175002, 3.5200002, 3.5225003, 3.525, 3.5275002, 3.5300002, 3.5325003, 3.535, 3.5375001, 3.5400002, 3.5425003, 3.545, 3.5475001, 3.5500002, 3.5525002, 3.555, 3.5575001, 3.5600002, 3.5625002, 3.565, 3.5675, 3.5700002, 3.5725002, 3.5750003, 3.5775, 3.5800002, 3.5825002, 3.5850003, 3.5875, 3.5900002, 3.5925002, 3.5950003, 3.5975, 3.6000001, 3.6025002, 3.6050003, 3.6075, 3.6100001, 3.6125002, 3.6150002, 3.6175, 3.6200001, 3.6225002, 3.6250002, 3.6275, 3.63, 3.6325002, 3.6350002, 3.6375003, 3.64, 3.6425002, 3.6450002, 3.6475003, 3.65, 3.6525002, 3.6550002, 3.6575003, 3.66, 3.6625001, 3.6650002, 3.6675003, 3.67, 3.6725001, 3.6750002, 3.6775002, 3.68, 3.6825001, 3.6850002, 3.6875002, 3.69, 3.6925, 3.6950002, 3.6975002, 3.7000003, 3.7025, 3.7050002, 3.7075002, 3.7100003, 3.7125, 3.7150002, 3.7175002, 3.7200003, 3.7225, 3.7250001, 3.7275002, 3.7300003, 3.7325, 3.7350001, 3.7375002, 3.7400002, 3.7425, 3.7450001, 3.7475002, 3.7500002, 3.7525003, 3.755, 3.7575002, 3.7600002, 3.7625003, 3.765, 3.7675002, 3.7700002, 3.7725003, 3.775, 3.7775002, 3.7800002, 3.7825003, 3.785, 3.7875001, 3.7900002, 3.7925003, 3.795, 3.7975001, 3.8000002, 3.8025002, 3.805, 3.8075001, 3.8100002, 3.8125002, 3.8150003, 3.8175, 3.8200002, 3.8225002, 3.8250003, 3.8275, 3.8300002, 3.8325002, 3.8350003, 3.8375, 3.8400002, 3.8425002, 3.8450003, 3.8475, 3.8500001, 3.8525002, 3.8550003, 3.8575, 3.8600001, 3.8625002, 3.8650002, 3.8675, 3.8700001, 3.8725002, 3.8750002, 3.8775003, 3.88, 3.8825002, 3.8850002, 3.8875003, 3.89, 3.8925002, 3.8950002, 3.8975003, 3.9, 3.9025002, 3.9050002, 3.9075003, 3.91, 3.9125001, 3.9150002, 3.9175003, 3.92, 3.9225001, 3.9250002, 3.9275002, 3.9300003, 3.9325001, 3.9350002, 3.9375002, 3.9400003, 3.9425, 3.9450002, 3.9475002, 3.9500003, 3.9525, 3.9550002, 3.9575002, 3.9600003, 3.9625, 3.9650002, 3.9675002, 3.9700003, 3.9725, 3.9750001, 3.9775002, 3.9800003, 3.9825, 3.9850001, 3.9875002, 3.9900002, 3.9925003, 3.9950001, 3.9975002, 4, 4.0025, 4.005, 4.0075, 4.01, 4.0125003, 4.0150003, 4.0175004, 4.02, 4.0225, 4.025, 4.0275, 4.03, 4.0325003, 4.0350003, 4.0375004, 4.04, 4.0425, 4.045, 4.0475, 4.05, 4.0525002, 4.0550003, 4.0575004, 4.0600004, 4.0625, 4.065, 4.0675, 4.07, 4.0725, 4.0750003, 4.0775003, 4.0800004, 4.0825, 4.085, 4.0875, 4.09, 4.0925, 4.0950003, 4.0975003, 4.1000004, 4.1025, 4.105, 4.1075, 4.11, 4.1125, 4.1150002, 4.1175003, 4.1200004, 4.1225004, 4.125, 4.1275, 4.13, 4.1325, 4.135, 4.1375003, 4.1400003, 4.1425004, 4.145, 4.1475, 4.15, 4.1525, 4.155, 4.1575003, 4.1600003, 4.1625004, 4.165, 4.1675, 4.17, 4.1725, 4.175, 4.1775002, 4.1800003, 4.1825004, 4.1850004, 4.1875, 4.19, 4.1925, 4.195, 4.1975, 4.2000003, 4.2025003, 4.2050004, 4.2075, 4.21, 4.2125, 4.215, 4.2175, 4.2200003, 4.2225003, 4.2250004, 4.2275004, 4.23, 4.2325, 4.235, 4.2375, 4.2400002, 4.2425003, 4.2450004, 4.2475004, 4.25, 4.2525, 4.255, 4.2575, 4.26, 4.2625003, 4.2650003, 4.2675004, 4.27, 4.2725, 4.275, 4.2775, 4.28, 4.2825003, 4.2850003, 4.2875004, 4.2900004, 4.2925, 4.295, 4.2975, 4.3, 4.3025002, 4.3050003, 4.3075004, 4.3100004, 4.3125, 4.315, 4.3175, 4.32, 4.3225, 4.3250003, 4.3275003, 4.3300004, 4.3325, 4.335, 4.3375, 4.34, 4.3425, 4.3450003, 4.3475003, 4.3500004, 4.3525004, 4.355, 4.3575, 4.36, 4.3625, 4.3650002, 4.3675003, 4.3700004, 4.3725004, 4.375, 4.3775, 4.38, 4.3825, 4.385, 4.3875003, 4.3900003, 4.3925004, 4.395, 4.3975, 4.4, 4.4025, 4.405, 4.4075003, 4.4100003, 4.4125004, 4.4150004, 4.4175, 4.42, 4.4225, 4.425, 4.4275002, 4.4300003, 4.4325004, 4.4350004, 4.4375, 4.44, 4.4425, 4.445, 4.4475, 4.4500003, 4.4525003, 4.4550004, 4.4575, 4.46, 4.4625, 4.465, 4.4675, 4.4700003, 4.4725003, 4.4750004, 4.4775004, 4.48, 4.4825, 4.485, 4.4875, 4.4900002, 4.4925003, 4.4950004, 4.4975004, 4.5, 4.5025, 4.505, 4.5075, 4.51, 4.5125003, 4.5150003, 4.5175004, 4.52, 4.5225, 4.525, 4.5275, 4.53, 4.5325003, 4.5350003, 4.5375004, 4.5400004, 4.5425, 4.545, 4.5475, 4.55, 4.5525002, 4.5550003, 4.5575004, 4.5600004, 4.5625, 4.565, 4.5675, 4.57, 4.5725, 4.5750003, 4.5775003, 4.5800004, 4.5825, 4.585, 4.5875, 4.59, 4.5925, 4.5950003, 4.5975003, 4.6000004, 4.6025004, 4.605, 4.6075, 4.61, 4.6125, 4.6150002, 4.6175003, 4.6200004, 4.6225004, 4.625, 4.6275, 4.63, 4.6325, 4.635, 4.6375003, 4.6400003, 4.6425004, 4.6450005, 4.6475, 4.65, 4.6525, 4.655, 4.6575003, 4.6600003, 4.6625004, 4.6650004, 4.6675, 4.67, 4.6725, 4.675, 4.6775002, 4.6800003, 4.6825004, 4.6850004, 4.6875, 4.69, 4.6925, 4.695, 4.6975, 4.7000003, 4.7025003, 4.7050004, 4.7075005, 4.71, 4.7125, 4.715, 4.7175, 4.7200003, 4.7225003, 4.7250004, 4.7275004, 4.73, 4.7325, 4.735, 4.7375, 4.7400002, 4.7425003, 4.7450004, 4.7475004, 4.75, 4.7525, 4.755, 4.7575, 4.76, 4.7625003, 4.7650003, 4.7675004, 4.7700005, 4.7725, 4.775, 4.7775, 4.78, 4.7825003, 4.7850003, 4.7875004, 4.7900004, 4.7925, 4.795, 4.7975, 4.8, 4.8025002, 4.8050003, 4.8075004, 4.8100004, 4.8125, 4.815, 4.8175, 4.82, 4.8225, 4.8250003, 4.8275003, 4.8300004, 4.8325005, 4.835, 4.8375, 4.84, 4.8425, 4.8450003, 4.8475003, 4.8500004, 4.8525004, 4.855, 4.8575, 4.86, 4.8625, 4.8650002, 4.8675003, 4.8700004, 4.8725004, 4.875, 4.8775, 4.88, 4.8825, 4.885, 4.8875003, 4.8900003, 4.8925004, 4.8950005, 4.8975, 4.9, 4.9025, 4.905, 4.9075003, 4.9100003, 4.9125004, 4.9150004, 4.9175, 4.92, 4.9225, 4.925, 4.9275002, 4.9300003, 4.9325004, 4.9350004, 4.9375, 4.94, 4.9425, 4.945, 4.9475, 4.9500003, 4.9525003, 4.9550004, 4.9575005, 4.96, 4.9625, 4.965, 4.9675, 4.9700003, 4.9725003, 4.9750004, 4.9775004, 4.98, 4.9825, 4.985, 4.9875, 4.9900002, 4.9925003, 4.9950004, 4.9975004, 5, 5.0025, 5.005, 5.0075, 5.01, 5.0125003, 5.0150003, 5.0175004, 5.0200005, 5.0225, 5.025, 5.0275, 5.03, 5.0325003, 5.0350003, 5.0375004, 5.0400004, 5.0425, 5.045, 5.0475, 5.05, 5.0525002, 5.0550003, 5.0575004, 5.0600004, 5.0625005, 5.065, 5.0675, 5.07, 5.0725, 5.0750003, 5.0775003, 5.0800004, 5.0825005, 5.085, 5.0875, 5.09, 5.0925, 5.0950003, 5.0975003, 5.1000004, 5.1025004, 5.105, 5.1075, 5.11, 5.1125, 5.1150002, 5.1175003, 5.1200004, 5.1225004, 5.1250005, 5.1275, 5.13, 5.1325, 5.135, 5.1375003, 5.1400003, 5.1425004, 5.1450005, 5.1475, 5.15, 5.1525, 5.155, 5.1575003, 5.1600003, 5.1625004, 5.1650004, 5.1675, 5.17, 5.1725, 5.175, 5.1775002, 5.1800003, 5.1825004, 5.1850004, 5.1875005, 5.19, 5.1925, 5.195, 5.1975, 5.2000003, 5.2025003, 5.2050004, 5.2075005, 5.21, 5.2125, 5.215, 5.2175, 5.2200003, 5.2225003, 5.2250004, 5.2275004, 5.23, 5.2325, 5.235, 5.2375, 5.2400002, 5.2425003, 5.2450004, 5.2475004, 5.2500005, 5.2525, 5.255, 5.2575, 5.26, 5.2625003, 5.2650003, 5.2675004, 5.2700005, 5.2725, 5.275, 5.2775, 5.28, 5.2825003, 5.2850003, 5.2875004, 5.2900004, 5.2925, 5.295, 5.2975, 5.3, 5.3025002, 5.3050003, 5.3075004, 5.3100004, 5.3125005, 5.315, 5.3175, 5.32, 5.3225, 5.3250003, 5.3275003, 5.3300004, 5.3325005, 5.335, 5.3375, 5.34, 5.3425, 5.3450003, 5.3475003, 5.3500004, 5.3525004, 5.355, 5.3575, 5.36, 5.3625, 5.3650002, 5.3675003, 5.3700004, 5.3725004, 5.3750005, 5.3775, 5.38, 5.3825, 5.385, 5.3875003, 5.3900003, 5.3925004, 5.3950005, 5.3975, 5.4, 5.4025, 5.405, 5.4075003, 5.4100003, 5.4125004, 5.4150004, 5.4175, 5.42, 5.4225, 5.425, 5.4275002, 5.4300003, 5.4325004, 5.4350004, 5.4375005, 5.44, 5.4425, 5.445, 5.4475, 5.4500003, 5.4525003, 5.4550004, 5.4575005, 5.46, 5.4625, 5.465, 5.4675, 5.4700003, 5.4725003, 5.4750004, 5.4775004, 5.4800005, 5.4825, 5.485, 5.4875, 5.4900002, 5.4925003, 5.4950004, 5.4975004, 5.5000005, 5.5025, 5.505, 5.5075, 5.51, 5.5125003, 5.5150003, 5.5175004, 5.5200005, 5.5225, 5.525, 5.5275, 5.53, 5.5325003, 5.5350003, 5.5375004, 5.5400004, 5.5425005, 5.545, 5.5475, 5.55, 5.5525002, 5.5550003, 5.5575004, 5.5600004, 5.5625005, 5.565, 5.5675, 5.57, 5.5725, 5.5750003, 5.5775003, 5.5800004, 5.5825005, 5.585, 5.5875, 5.59, 5.5925, 5.5950003, 5.5975003, 5.6000004, 5.6025004, 5.6050005, 5.6075, 5.61, 5.6125, 5.6150002, 5.6175003, 5.6200004, 5.6225004, 5.6250005, 5.6275, 5.63, 5.6325, 5.635, 5.6375003, 5.6400003, 5.6425004, 5.6450005, 5.6475, 5.65, 5.6525, 5.655, 5.6575003, 5.6600003, 5.6625004, 5.6650004, 5.6675005, 5.67, 5.6725, 5.675, 5.6775002, 5.6800003, 5.6825004, 5.6850004, 5.6875005, 5.69, 5.6925, 5.695, 5.6975, 5.7000003, 5.7025003, 5.7050004, 5.7075005, 5.71, 5.7125, 5.715, 5.7175, 5.7200003, 5.7225003, 5.7250004, 5.7275004, 5.7300005, 5.7325, 5.735, 5.7375, 5.7400002, 5.7425003, 5.7450004, 5.7475004, 5.7500005, 5.7525, 5.755, 5.7575, 5.76, 5.7625003, 5.7650003, 5.7675004, 5.7700005, 5.7725, 5.775, 5.7775, 5.78, 5.7825003, 5.7850003, 5.7875004, 5.7900004, 5.7925005, 5.795, 5.7975, 5.8, 5.8025002, 5.8050003, 5.8075004, 5.8100004, 5.8125005, 5.815, 5.8175, 5.82, 5.8225, 5.8250003, 5.8275003, 5.8300004, 5.8325005, 5.8350005, 5.8375, 5.84, 5.8425, 5.8450003, 5.8475003, 5.8500004, 5.8525004, 5.8550005, 5.8575, 5.86, 5.8625, 5.8650002, 5.8675003, 5.8700004, 5.8725004, 5.8750005, 5.8775, 5.88, 5.8825, 5.885, 5.8875003, 5.8900003, 5.8925004, 5.8950005, 5.8975005, 5.9, 5.9025, 5.905, 5.9075003, 5.9100003, 5.9125004, 5.9150004, 5.9175005, 5.92, 5.9225, 5.925, 5.9275002, 5.9300003, 5.9325004, 5.9350004, 5.9375005, 5.94, 5.9425, 5.945, 5.9475, 5.9500003, 5.9525003, 5.9550004, 5.9575005, 5.9600005, 5.9625, 5.965, 5.9675, 5.9700003, 5.9725003, 5.9750004, 5.9775004, 5.9800005, 5.9825, 5.985, 5.9875, 5.9900002, 5.9925003, 5.9950004, 5.9975004, 6.0000005, 6.0025, 6.005, 6.0075, 6.01, 6.0125003, 6.0150003, 6.0175004, 6.0200005, 6.0225005, 6.025, 6.0275, 6.03, 6.0325003, 6.0350003, 6.0375004, 6.0400004, 6.0425005, 6.045, 6.0475, 6.05, 6.0525002, 6.0550003, 6.0575004, 6.0600004, 6.0625005, 6.065, 6.0675, 6.07, 6.0725, 6.0750003, 6.0775003, 6.0800004, 6.0825005, 6.0850005, 6.0875, 6.09, 6.0925, 6.0950003, 6.0975003, 6.1000004, 6.1025004, 6.1050005, 6.1075, 6.11, 6.1125, 6.1150002, 6.1175003, 6.1200004, 6.1225004, 6.1250005, 6.1275, 6.13, 6.1325, 6.135, 6.1375003, 6.1400003, 6.1425004, 6.1450005, 6.1475005, 6.15, 6.1525, 6.155, 6.1575003, 6.1600003, 6.1625004, 6.1650004, 6.1675005, 6.17, 6.1725, 6.175, 6.1775002, 6.1800003, 6.1825004, 6.1850004, 6.1875005, 6.19, 6.1925, 6.195, 6.1975, 6.2000003, 6.2025003, 6.2050004, 6.2075005, 6.2100005, 6.2125, 6.215, 6.2175, 6.2200003, 6.2225003, 6.2250004, 6.2275004, 6.2300005, 6.2325, 6.235, 6.2375, 6.2400002, 6.2425003, 6.2450004, 6.2475004, 6.2500005, 6.2525005, 6.255, 6.2575, 6.26, 6.2625003, 6.2650003, 6.2675004, 6.2700005, 6.2725005, 6.275, 6.2775, 6.28, 6.2825003, 6.2850003, 6.2875004, 6.2900004, 6.2925005, 6.295, 6.2975, 6.3, 6.3025002, 6.3050003, 6.3075004, 6.3100004, 6.3125005, 6.3150005, 6.3175, 6.32, 6.3225, 6.3250003, 6.3275003, 6.3300004, 6.3325005, 6.3350005, 6.3375, 6.34, 6.3425, 6.3450003, 6.3475003, 6.3500004, 6.3525004, 6.3550005, 6.3575, 6.36, 6.3625, 6.3650002, 6.3675003, 6.3700004, 6.3725004, 6.3750005, 6.3775005, 6.38, 6.3825, 6.385, 6.3875003, 6.3900003, 6.3925004, 6.3950005, 6.3975005, 6.4, 6.4025, 6.405, 6.4075003, 6.4100003, 6.4125004, 6.4150004, 6.4175005, 6.42, 6.4225, 6.425, 6.4275002, 6.4300003, 6.4325004, 6.4350004, 6.4375005, 6.4400005, 6.4425, 6.445, 6.4475, 6.4500003, 6.4525003, 6.4550004, 6.4575005, 6.4600005, 6.4625, 6.465, 6.4675, 6.4700003, 6.4725003, 6.4750004, 6.4775004, 6.4800005, 6.4825, 6.485, 6.4875, 6.4900002, 6.4925003, 6.4950004, 6.4975004, 6.5000005, 6.5025005, 6.505, 6.5075, 6.51, 6.5125003, 6.5150003, 6.5175004, 6.5200005, 6.5225005, 6.525, 6.5275, 6.53, 6.5325003, 6.5350003, 6.5375004, 6.5400004, 6.5425005, 6.545, 6.5475, 6.55, 6.5525002, 6.5550003, 6.5575004, 6.5600004, 6.5625005, 6.5650005, 6.5675, 6.57, 6.5725, 6.5750003, 6.5775003, 6.5800004, 6.5825005, 6.5850005, 6.5875, 6.59, 6.5925, 6.5950003, 6.5975003, 6.6000004, 6.6025004, 6.6050005, 6.6075, 6.61, 6.6125, 6.6150002, 6.6175003, 6.6200004, 6.6225004, 6.6250005, 6.6275005, 6.63, 6.6325, 6.635, 6.6375003, 6.6400003, 6.6425004, 6.6450005, 6.6475005, 6.65, 6.6525, 6.655, 6.6575003, 6.6600003, 6.6625004, 6.6650004, 6.6675005, 6.6700006, 6.6725, 6.675, 6.6775002, 6.6800003, 6.6825004, 6.6850004, 6.6875005, 6.6900005, 6.6925, 6.695, 6.6975, 6.7000003, 6.7025003, 6.7050004, 6.7075005, 6.7100005, 6.7125, 6.715, 6.7175, 6.7200003, 6.7225003, 6.7250004, 6.7275004, 6.7300005, 6.7325006, 6.735, 6.7375, 6.7400002, 6.7425003, 6.7450004, 6.7475004, 6.7500005, 6.7525005, 6.755, 6.7575, 6.76, 6.7625003, 6.7650003, 6.7675004, 6.7700005, 6.7725005, 6.775, 6.7775, 6.78, 6.7825003, 6.7850003, 6.7875004, 6.7900004, 6.7925005, 6.7950006, 6.7975, 6.8, 6.8025002, 6.8050003, 6.8075004, 6.8100004, 6.8125005, 6.8150005, 6.8175, 6.82, 6.8225, 6.8250003, 6.8275003, 6.8300004, 6.8325005, 6.8350005, 6.8375, 6.84, 6.8425, 6.8450003, 6.8475003, 6.8500004, 6.8525004, 6.8550005, 6.8575006, 6.86, 6.8625, 6.8650002, 6.8675003, 6.8700004, 6.8725004, 6.8750005, 6.8775005, 6.88, 6.8825, 6.885, 6.8875003, 6.8900003, 6.8925004, 6.8950005, 6.8975005, 6.9, 6.9025, 6.905, 6.9075003, 6.9100003, 6.9125004, 6.9150004, 6.9175005, 6.9200006, 6.9225, 6.925, 6.9275002, 6.9300003, 6.9325004, 6.9350004, 6.9375005, 6.9400005, 6.9425, 6.945, 6.9475, 6.9500003, 6.9525003, 6.9550004, 6.9575005, 6.9600005, 6.9625, 6.965, 6.9675, 6.9700003, 6.9725003, 6.9750004, 6.9775004, 6.9800005, 6.9825006, 6.985, 6.9875, 6.9900002, 6.9925003, 6.9950004, 6.9975004, 7.0000005, 7.0025005, 7.005, 7.0075, 7.01, 7.0125003, 7.0150003, 7.0175004, 7.0200005, 7.0225005, 7.025, 7.0275, 7.03, 7.0325003, 7.0350003, 7.0375004, 7.0400004, 7.0425005, 7.0450006, 7.0475, 7.05, 7.0525002, 7.0550003, 7.0575004, 7.0600004, 7.0625005, 7.0650005, 7.0675, 7.07, 7.0725, 7.0750003, 7.0775003, 7.0800004, 7.0825005, 7.0850005, 7.0875006, 7.09, 7.0925, 7.0950003, 7.0975003, 7.1000004, 7.1025004, 7.1050005, 7.1075006, 7.11, 7.1125, 7.1150002, 7.1175003, 7.1200004, 7.1225004, 7.1250005, 7.1275005, 7.13, 7.1325, 7.135, 7.1375003, 7.1400003, 7.1425004, 7.1450005, 7.1475005, 7.1500006, 7.1525, 7.155, 7.1575003, 7.1600003, 7.1625004, 7.1650004, 7.1675005, 7.1700006, 7.1725, 7.175, 7.1775002, 7.1800003, 7.1825004, 7.1850004, 7.1875005, 7.1900005, 7.1925, 7.195, 7.1975, 7.2000003, 7.2025003, 7.2050004, 7.2075005, 7.2100005, 7.2125006, 7.215, 7.2175, 7.2200003, 7.2225003, 7.2250004, 7.2275004, 7.2300005, 7.2325006, 7.235, 7.2375, 7.2400002, 7.2425003, 7.2450004, 7.2475004, 7.2500005, 7.2525005, 7.255, 7.2575, 7.26, 7.2625003, 7.2650003, 7.2675004, 7.2700005, 7.2725005, 7.2750006, 7.2775, 7.28, 7.2825003, 7.2850003, 7.2875004, 7.2900004, 7.2925005, 7.2950006, 7.2975, 7.3, 7.3025002, 7.3050003, 7.3075004, 7.3100004, 7.3125005, 7.3150005, 7.3175, 7.32, 7.3225, 7.3250003, 7.3275003, 7.3300004, 7.3325005, 7.3350005, 7.3375006, 7.34, 7.3425, 7.3450003, 7.3475003, 7.3500004, 7.3525004, 7.3550005, 7.3575006, 7.36, 7.3625, 7.3650002, 7.3675003, 7.3700004, 7.3725004, 7.3750005, 7.3775005, 7.38, 7.3825, 7.385, 7.3875003, 7.3900003, 7.3925004, 7.3950005, 7.3975005, 7.4000006, 7.4025, 7.405, 7.4075003, 7.4100003, 7.4125004, 7.4150004, 7.4175005, 7.4200006, 7.4225, 7.425, 7.4275002, 7.4300003, 7.4325004, 7.4350004, 7.4375005, 7.4400005, 7.4425006, 7.445, 7.4475, 7.4500003, 7.4525003, 7.4550004, 7.4575005, 7.4600005, 7.4625006, 7.465, 7.4675, 7.4700003, 7.4725003, 7.4750004, 7.4775004, 7.4800005, 7.4825006, 7.485, 7.4875, 7.4900002, 7.4925003, 7.4950004, 7.4975004, 7.5000005, 7.5025005, 7.5050006, 7.5075, 7.51, 7.5125003, 7.5150003, 7.5175004, 7.5200005, 7.5225005, 7.5250006, 7.5275, 7.53, 7.5325003, 7.5350003, 7.5375004, 7.5400004, 7.5425005, 7.5450006, 7.5475, 7.55, 7.5525002, 7.5550003, 7.5575004, 7.5600004, 7.5625005, 7.5650005, 7.5675006, 7.57, 7.5725, 7.5750003, 7.5775003, 7.5800004, 7.5825005, 7.5850005, 7.5875006, 7.59, 7.5925, 7.5950003, 7.5975003, 7.6000004, 7.6025004, 7.6050005, 7.6075006, 7.61, 7.6125, 7.6150002, 7.6175003, 7.6200004, 7.6225004, 7.6250005, 7.6275005, 7.6300006, 7.6325, 7.635, 7.6375003, 7.6400003, 7.6425004, 7.6450005, 7.6475005, 7.6500006, 7.6525, 7.655, 7.6575003, 7.6600003, 7.6625004, 7.6650004, 7.6675005, 7.6700006, 7.6725, 7.675, 7.6775002, 7.6800003, 7.6825004, 7.6850004, 7.6875005, 7.6900005, 7.6925006, 7.695, 7.6975, 7.7000003, 7.7025003, 7.7050004, 7.7075005, 7.7100005, 7.7125006, 7.715, 7.7175, 7.7200003, 7.7225003, 7.7250004, 7.7275004, 7.7300005, 7.7325006, 7.735, 7.7375, 7.7400002, 7.7425003, 7.7450004, 7.7475004, 7.7500005, 7.7525005, 7.7550006, 7.7575, 7.76, 7.7625003, 7.7650003, 7.7675004, 7.7700005, 7.7725005, 7.7750006, 7.7775, 7.78, 7.7825003, 7.7850003, 7.7875004, 7.7900004, 7.7925005, 7.7950006, 7.7975, 7.8, 7.8025002, 7.8050003, 7.8075004, 7.8100004, 7.8125005, 7.8150005, 7.8175006, 7.82, 7.8225, 7.8250003, 7.8275003, 7.8300004, 7.8325005, 7.8350005, 7.8375006, 7.84, 7.8425, 7.8450003, 7.8475003, 7.8500004, 7.8525004, 7.8550005, 7.8575006, 7.8600006, 7.8625, 7.8650002, 7.8675003, 7.8700004, 7.8725004, 7.8750005, 7.8775005, 7.8800006, 7.8825, 7.885, 7.8875003, 7.8900003, 7.8925004, 7.8950005, 7.8975005, 7.9000006, 7.9025, 7.905, 7.9075003, 7.9100003, 7.9125004, 7.9150004, 7.9175005, 7.9200006, 7.9225006, 7.925, 7.9275002, 7.9300003, 7.9325004, 7.9350004, 7.9375005, 7.9400005, 7.9425006, 7.945, 7.9475, 7.9500003, 7.9525003, 7.9550004, 7.9575005, 7.9600005, 7.9625006, 7.965, 7.9675, 7.9700003, 7.9725003, 7.9750004, 7.9775004, 7.9800005, 7.9825006, 7.9850006, 7.9875, 7.9900002, 7.9925003, 7.9950004, 7.9975004, 8, 8.002501, 8.005, 8.007501, 8.01, 8.012501, 8.015, 8.0175, 8.02, 8.0225, 8.025001, 8.0275, 8.030001, 8.0325, 8.035001, 8.0375, 8.04, 8.0425005, 8.045, 8.047501, 8.05, 8.052501, 8.055, 8.057501, 8.06, 8.0625, 8.065001, 8.0675, 8.070001, 8.0725, 8.075001, 8.0775, 8.08, 8.0825, 8.085, 8.087501, 8.09, 8.092501, 8.095, 8.097501, 8.1, 8.1025, 8.1050005, 8.1075, 8.110001, 8.1125, 8.115001, 8.1175, 8.120001, 8.1225, 8.125, 8.127501, 8.13, 8.132501, 8.135, 8.137501, 8.14, 8.1425, 8.145, 8.1475, 8.150001, 8.1525, 8.155001, 8.1575, 8.160001, 8.1625, 8.165, 8.1675005, 8.17, 8.172501, 8.175, 8.177501, 8.18, 8.182501, 8.185, 8.1875, 8.190001, 8.1925, 8.195001, 8.1975, 8.200001, 8.2025, 8.205, 8.2075, 8.21, 8.212501, 8.215, 8.217501, 8.22, 8.222501, 8.225, 8.2275, 8.2300005, 8.2325, 8.235001, 8.2375, 8.240001, 8.2425, 8.245001, 8.2475, 8.25, 8.252501, 8.255, 8.257501, 8.26, 8.262501, 8.265, 8.2675, 8.27, 8.2725, 8.275001, 8.2775, 8.280001, 8.2825, 8.285001, 8.2875, 8.29, 8.2925005, 8.295, 8.297501, 8.3, 8.302501, 8.305, 8.307501, 8.31, 8.3125, 8.315001, 8.3175, 8.320001, 8.3225, 8.325001, 8.3275, 8.33, 8.3325, 8.335, 8.337501, 8.34, 8.342501, 8.345, 8.347501, 8.35, 8.3525, 8.3550005, 8.3575, 8.360001, 8.3625, 8.365001, 8.3675, 8.370001, 8.3725, 8.375, 8.377501, 8.38, 8.382501, 8.385, 8.387501, 8.39, 8.3925, 8.395, 8.3975, 8.400001, 8.4025, 8.405001, 8.4075, 8.410001, 8.4125, 8.415, 8.4175005, 8.42, 8.422501, 8.425, 8.427501, 8.43, 8.432501, 8.435, 8.4375, 8.440001, 8.4425, 8.445001, 8.4475, 8.450001, 8.4525, 8.455001, 8.4575, 8.46, 8.462501, 8.465, 8.467501, 8.47, 8.472501, 8.475, 8.4775, 8.4800005, 8.4825, 8.485001, 8.4875, 8.490001, 8.4925, 8.495001, 8.4975, 8.5, 8.502501, 8.505, 8.507501, 8.51, 8.512501, 8.515, 8.517501, 8.52, 8.5225, 8.525001, 8.5275, 8.530001, 8.5325, 8.535001, 8.5375, 8.54, 8.5425005, 8.545, 8.547501, 8.55, 8.552501, 8.555, 8.557501, 8.56, 8.5625, 8.565001, 8.5675, 8.570001, 8.5725, 8.575001, 8.5775, 8.580001, 8.5825, 8.585, 8.587501, 8.59, 8.592501, 8.595, 8.597501, 8.6, 8.6025, 8.6050005, 8.6075, 8.610001, 8.6125, 8.615001, 8.6175, 8.620001, 8.6225, 8.625, 8.627501, 8.63, 8.632501, 8.635, 8.637501, 8.64, 8.642501, 8.645, 8.6475, 8.650001, 8.6525, 8.655001, 8.6575, 8.660001, 8.6625, 8.665, 8.6675005, 8.67, 8.672501, 8.675, 8.677501, 8.68, 8.682501, 8.685, 8.6875, 8.690001, 8.6925, 8.695001, 8.6975, 8.700001, 8.7025, 8.705001, 8.7075, 8.71, 8.712501, 8.715, 8.717501, 8.72, 8.722501, 8.725, 8.7275, 8.7300005, 8.7325, 8.735001, 8.7375, 8.740001, 8.7425, 8.745001, 8.7475, 8.75, 8.752501, 8.755, 8.757501, 8.76, 8.762501, 8.765, 8.767501, 8.77, 8.7725, 8.775001, 8.7775, 8.780001, 8.7825, 8.785001, 8.7875, 8.79, 8.7925005, 8.795, 8.797501, 8.8, 8.802501, 8.805, 8.807501, 8.81, 8.8125, 8.815001, 8.8175, 8.820001, 8.8225, 8.825001, 8.8275, 8.830001, 8.8325, 8.835, 8.837501, 8.84, 8.842501, 8.845, 8.847501, 8.85, 8.8525, 8.8550005, 8.8575, 8.860001, 8.8625, 8.865001, 8.8675, 8.870001, 8.8725, 8.875, 8.877501, 8.88, 8.882501, 8.885, 8.887501, 8.89, 8.892501, 8.895, 8.8975, 8.900001, 8.9025, 8.905001, 8.9075, 8.910001, 8.9125, 8.915, 8.9175005, 8.92, 8.922501, 8.925, 8.927501, 8.93, 8.932501, 8.935, 8.9375, 8.940001, 8.9425, 8.945001, 8.9475, 8.950001, 8.9525, 8.955001, 8.9575, 8.96, 8.962501, 8.965, 8.967501, 8.97, 8.972501, 8.975, 8.9775, 8.9800005, 8.9825, 8.985001, 8.9875, 8.990001, 8.9925, 8.995001, 8.9975, 9, 9.002501, 9.005, 9.007501, 9.01, 9.012501, 9.015, 9.017501, 9.02, 9.0225, 9.025001, 9.0275, 9.030001, 9.0325, 9.035001, 9.0375, 9.04, 9.0425005, 9.045, 9.047501, 9.05, 9.052501, 9.055, 9.057501, 9.06, 9.0625, 9.065001, 9.0675, 9.070001, 9.0725, 9.075001, 9.0775, 9.080001, 9.0825, 9.085, 9.087501, 9.09, 9.092501, 9.095, 9.097501, 9.1, 9.1025, 9.1050005, 9.1075, 9.110001, 9.1125, 9.115001, 9.1175, 9.120001, 9.1225, 9.125, 9.127501, 9.13, 9.132501, 9.135, 9.137501, 9.14, 9.142501, 9.145, 9.1475, 9.150001, 9.1525, 9.155001, 9.1575, 9.160001, 9.1625, 9.165, 9.1675005, 9.17, 9.172501, 9.175, 9.177501, 9.18, 9.182501, 9.185, 9.1875, 9.190001, 9.1925, 9.195001, 9.1975, 9.200001, 9.2025, 9.205001, 9.2075, 9.21, 9.212501, 9.215, 9.217501, 9.22, 9.222501, 9.225, 9.2275, 9.2300005, 9.2325, 9.235001, 9.2375, 9.240001, 9.2425, 9.245001, 9.2475, 9.25, 9.252501, 9.255, 9.257501, 9.26, 9.262501, 9.265, 9.267501, 9.27, 9.2725, 9.275001, 9.2775, 9.280001, 9.2825, 9.285001, 9.2875, 9.290001, 9.2925005, 9.295, 9.297501, 9.3, 9.302501, 9.305, 9.307501, 9.31, 9.3125, 9.315001, 9.3175, 9.320001, 9.3225, 9.325001, 9.3275, 9.330001, 9.3325, 9.335, 9.337501, 9.34, 9.342501, 9.345, 9.347501, 9.35, 9.352501, 9.3550005, 9.3575, 9.360001, 9.3625, 9.365001, 9.3675, 9.370001, 9.3725, 9.375, 9.377501, 9.38, 9.382501, 9.385, 9.387501, 9.39, 9.392501, 9.395, 9.3975, 9.400001, 9.4025, 9.405001, 9.4075, 9.410001, 9.4125, 9.415001, 9.4175005, 9.42, 9.422501, 9.425, 9.427501, 9.43, 9.432501, 9.435, 9.4375, 9.440001, 9.4425, 9.445001, 9.4475, 9.450001, 9.4525, 9.455001, 9.4575, 9.46, 9.462501, 9.465, 9.467501, 9.47, 9.472501, 9.475, 9.477501, 9.4800005, 9.4825, 9.485001, 9.4875, 9.490001, 9.4925, 9.495001, 9.4975, 9.5, 9.502501, 9.505, 9.507501, 9.51, 9.512501, 9.515, 9.517501, 9.52, 9.5225, 9.525001, 9.5275, 9.530001, 9.5325, 9.535001, 9.5375, 9.540001, 9.5425005, 9.545, 9.547501, 9.55, 9.552501, 9.555, 9.557501, 9.56, 9.5625, 9.565001, 9.5675, 9.570001, 9.5725, 9.575001, 9.5775, 9.580001, 9.5825, 9.585, 9.587501, 9.59, 9.592501, 9.595, 9.597501, 9.6, 9.602501, 9.6050005, 9.6075, 9.610001, 9.6125, 9.615001, 9.6175, 9.620001, 9.6225, 9.625, 9.627501, 9.63, 9.632501, 9.635, 9.637501, 9.64, 9.642501, 9.645, 9.6475, 9.650001, 9.6525, 9.655001, 9.6575, 9.660001, 9.6625, 9.665001, 9.6675005, 9.67, 9.672501, 9.675, 9.677501, 9.68, 9.682501, 9.685, 9.6875, 9.690001, 9.6925, 9.695001, 9.6975, 9.700001, 9.7025, 9.705001, 9.7075, 9.71, 9.712501, 9.715, 9.717501, 9.72, 9.722501, 9.725, 9.727501, 9.7300005, 9.7325, 9.735001, 9.7375, 9.740001, 9.7425, 9.745001, 9.7475, 9.75, 9.752501, 9.755, 9.757501, 9.76, 9.762501, 9.765, 9.767501, 9.77, 9.7725, 9.775001, 9.7775, 9.780001, 9.7825, 9.785001, 9.7875, 9.790001, 9.7925005, 9.795, 9.797501, 9.8, 9.802501, 9.805, 9.807501, 9.81, 9.8125, 9.815001, 9.8175, 9.820001, 9.8225, 9.825001, 9.8275, 9.830001, 9.8325, 9.835, 9.837501, 9.84, 9.842501, 9.845, 9.847501, 9.85, 9.852501, 9.8550005, 9.8575, 9.860001, 9.8625, 9.865001, 9.8675, 9.870001, 9.8725, 9.875, 9.877501, 9.88, 9.882501, 9.885, 9.887501, 9.89, 9.892501, 9.895, 9.8975, 9.900001, 9.9025, 9.905001, 9.9075, 9.910001, 9.9125, 9.915001, 9.9175005, 9.92, 9.922501, 9.925, 9.927501, 9.93, 9.932501, 9.935, 9.9375, 9.940001, 9.9425, 9.945001, 9.9475, 9.950001, 9.9525, 9.955001, 9.9575, 9.96, 9.962501, 9.965, 9.967501, 9.97, 9.972501, 9.975, 9.977501, 9.9800005, 9.9825, 9.985001, 9.9875, 9.990001, 9.9925, 9.995001, 9.9975, 10, 10.002501, 10.005, 10.007501, 10.01, 10.012501, 10.015, 10.017501, 10.02, 10.0225, 10.025001, 10.0275, 10.030001, 10.0325, 10.035001, 10.0375, 10.040001, 10.0425005, 10.045, 10.047501, 10.05, 10.052501, 10.055, 10.057501, 10.06, 10.062501, 10.065001, 10.0675, 10.070001, 10.0725, 10.075001, 10.0775, 10.080001, 10.0825, 10.085, 10.087501, 10.09, 10.092501, 10.095, 10.097501, 10.1, 10.102501, 10.1050005, 10.1075, 10.110001, 10.1125, 10.115001, 10.1175, 10.120001, 10.1225, 10.125001, 10.127501, 10.13, 10.132501, 10.135, 10.137501, 10.14, 10.142501, 10.145, 10.1475, 10.150001, 10.1525, 10.155001, 10.1575, 10.160001, 10.1625, 10.165001, 10.1675005, 10.17, 10.172501, 10.175, 10.177501, 10.18, 10.182501, 10.185, 10.187501, 10.190001, 10.1925, 10.195001, 10.1975, 10.200001, 10.2025, 10.205001, 10.2075, 10.21, 10.212501, 10.215, 10.217501, 10.22, 10.222501, 10.225, 10.227501, 10.2300005, 10.2325, 10.235001, 10.2375, 10.240001, 10.2425, 10.245001, 10.2475, 10.250001, 10.252501, 10.255, 10.257501, 10.26, 10.262501, 10.265, 10.267501, 10.27, 10.2725, 10.275001, 10.2775, 10.280001, 10.2825, 10.285001, 10.2875, 10.290001, 10.2925005, 10.295, 10.297501, 10.3, 10.302501, 10.305, 10.307501, 10.31, 10.312501, 10.315001, 10.3175, 10.320001, 10.3225, 10.325001, 10.3275, 10.330001, 10.3325, 10.335, 10.337501, 10.34, 10.342501, 10.345, 10.347501, 10.35, 10.352501, 10.3550005, 10.3575, 10.360001, 10.3625, 10.365001, 10.3675, 10.370001, 10.3725, 10.375001, 10.377501, 10.38, 10.382501, 10.385, 10.387501, 10.39, 10.392501, 10.395, 10.3975, 10.400001, 10.4025, 10.405001, 10.4075, 10.410001, 10.4125, 10.415001, 10.4175005, 10.42, 10.422501, 10.425, 10.427501, 10.43, 10.432501, 10.435, 10.437501, 10.440001, 10.4425, 10.445001, 10.4475, 10.450001, 10.4525, 10.455001, 10.4575, 10.46, 10.462501, 10.465, 10.467501, 10.47, 10.472501, 10.475, 10.477501, 10.4800005, 10.4825, 10.485001, 10.4875, 10.490001, 10.4925, 10.495001, 10.4975, 10.500001, 10.502501, 10.505, 10.507501, 10.51, 10.512501, 10.515, 10.517501, 10.52, 10.5225, 10.525001, 10.5275, 10.530001, 10.5325, 10.535001, 10.5375, 10.540001, 10.5425005, 10.545, 10.547501, 10.55, 10.552501, 10.555, 10.557501, 10.56, 10.562501, 10.565001, 10.5675, 10.570001, 10.5725, 10.575001, 10.5775, 10.580001, 10.5825, 10.585, 10.587501, 10.59, 10.592501, 10.595, 10.597501, 10.6, 10.602501, 10.6050005, 10.6075, 10.610001, 10.6125, 10.615001, 10.6175, 10.620001, 10.6225, 10.625001, 10.627501, 10.63, 10.632501, 10.635, 10.637501, 10.64, 10.642501, 10.645, 10.6475, 10.650001, 10.6525, 10.655001, 10.6575, 10.660001, 10.6625, 10.665001, 10.6675005, 10.67, 10.672501, 10.675, 10.677501, 10.68, 10.682501, 10.685, 10.687501, 10.690001, 10.6925, 10.695001, 10.6975, 10.700001, 10.7025, 10.705001, 10.7075, 10.71, 10.712501, 10.715, 10.717501, 10.72, 10.722501, 10.725, 10.727501, 10.7300005, 10.7325, 10.735001, 10.7375, 10.740001, 10.7425, 10.745001, 10.7475, 10.750001, 10.752501, 10.755, 10.757501, 10.76, 10.762501, 10.765, 10.767501, 10.77, 10.7725, 10.775001, 10.7775, 10.780001, 10.7825, 10.785001, 10.7875, 10.790001, 10.7925005, 10.795, 10.797501, 10.8, 10.802501, 10.805, 10.807501, 10.81, 10.812501, 10.815001, 10.8175, 10.820001, 10.8225, 10.825001, 10.8275, 10.830001, 10.8325, 10.835, 10.837501, 10.84, 10.842501, 10.845, 10.847501, 10.85, 10.852501, 10.8550005, 10.8575, 10.860001, 10.8625, 10.865001, 10.8675, 10.870001, 10.8725, 10.875001, 10.877501, 10.88, 10.882501, 10.885, 10.887501, 10.89, 10.892501, 10.895, 10.897501, 10.900001, 10.9025, 10.905001, 10.9075, 10.910001, 10.9125, 10.915001, 10.9175005, 10.92, 10.922501, 10.925, 10.927501, 10.93, 10.932501, 10.935, 10.937501, 10.940001, 10.9425, 10.945001, 10.9475, 10.950001, 10.9525, 10.955001, 10.9575, 10.960001, 10.962501, 10.965, 10.967501, 10.97, 10.972501, 10.975, 10.977501, 10.9800005, 10.9825, 10.985001, 10.9875, 10.990001, 10.9925, 10.995001, 10.9975, 11.000001, 11.002501, 11.005, 11.007501, 11.01, 11.012501, 11.015, 11.017501, 11.02, 11.022501, 11.025001, 11.0275, 11.030001, 11.0325, 11.035001, 11.0375, 11.040001, 11.0425005, 11.045, 11.047501, 11.05, 11.052501, 11.055, 11.057501, 11.06, 11.062501, 11.065001, 11.0675, 11.070001, 11.0725, 11.075001, 11.0775, 11.080001, 11.0825, 11.085001, 11.087501, 11.09, 11.092501, 11.095, 11.097501, 11.1, 11.102501, 11.1050005, 11.1075, 11.110001, 11.1125, 11.115001, 11.1175, 11.120001, 11.1225, 11.125001, 11.127501, 11.13, 11.132501, 11.135, 11.137501, 11.14, 11.142501, 11.145, 11.147501, 11.150001, 11.1525, 11.155001, 11.1575, 11.160001, 11.1625, 11.165001, 11.1675005, 11.17, 11.172501, 11.175, 11.177501, 11.18, 11.182501, 11.185, 11.187501, 11.190001, 11.1925, 11.195001, 11.1975, 11.200001, 11.2025, 11.205001, 11.2075, 11.210001, 11.212501, 11.215, 11.217501, 11.22, 11.222501, 11.225, 11.227501, 11.2300005, 11.2325, 11.235001, 11.2375, 11.240001, 11.2425, 11.245001, 11.2475, 11.250001, 11.252501, 11.255, 11.257501, 11.26, 11.262501, 11.265, 11.267501, 11.27, 11.272501, 11.275001, 11.2775, 11.280001, 11.2825, 11.285001, 11.2875, 11.290001, 11.2925005, 11.295, 11.297501, 11.3, 11.302501, 11.305, 11.307501, 11.31, 11.312501, 11.315001, 11.3175, 11.320001, 11.3225, 11.325001, 11.3275, 11.330001, 11.3325, 11.335001, 11.337501, 11.34, 11.342501, 11.345, 11.347501, 11.35, 11.352501, 11.3550005, 11.3575, 11.360001, 11.3625, 11.365001, 11.3675, 11.370001, 11.3725, 11.375001, 11.377501, 11.38, 11.382501, 11.385, 11.387501, 11.39, 11.392501, 11.395, 11.397501, 11.400001, 11.4025, 11.405001, 11.4075, 11.410001, 11.4125, 11.415001, 11.4175005, 11.42, 11.422501, 11.425, 11.427501, 11.43, 11.432501, 11.435, 11.437501, 11.440001, 11.4425, 11.445001, 11.4475, 11.450001, 11.4525, 11.455001, 11.4575, 11.460001, 11.462501, 11.465, 11.467501, 11.47, 11.472501, 11.475, 11.477501, 11.4800005, 11.4825, 11.485001, 11.4875, 11.490001, 11.4925, 11.495001, 11.4975, 11.500001, 11.502501, 11.505, 11.507501, 11.51, 11.512501, 11.515, 11.517501, 11.52, 11.522501, 11.525001, 11.5275, 11.530001, 11.5325, 11.535001, 11.5375, 11.540001, 11.5425005, 11.545, 11.547501, 11.55, 11.552501, 11.555, 11.557501, 11.56, 11.562501, 11.565001, 11.5675, 11.570001, 11.5725, 11.575001, 11.5775, 11.580001, 11.5825, 11.585001, 11.587501, 11.59, 11.592501, 11.595, 11.597501, 11.6, 11.602501, 11.6050005, 11.6075, 11.610001, 11.6125, 11.615001, 11.6175, 11.620001, 11.6225, 11.625001, 11.627501, 11.63, 11.632501, 11.635, 11.637501, 11.64, 11.642501, 11.645, 11.647501, 11.650001, 11.6525, 11.655001, 11.6575, 11.660001, 11.6625, 11.665001, 11.6675005, 11.670001, 11.672501, 11.675, 11.677501, 11.68, 11.682501, 11.685, 11.687501, 11.690001, 11.6925, 11.695001, 11.6975, 11.700001, 11.7025, 11.705001, 11.7075, 11.710001, 11.712501, 11.715, 11.717501, 11.72, 11.722501, 11.725, 11.727501, 11.7300005, 11.732501, 11.735001, 11.7375, 11.740001, 11.7425, 11.745001, 11.7475, 11.750001, 11.752501, 11.755, 11.757501, 11.76, 11.762501, 11.765, 11.767501, 11.77, 11.772501, 11.775001, 11.7775, 11.780001, 11.7825, 11.785001, 11.7875, 11.790001, 11.7925005, 11.795001, 11.797501, 11.8, 11.802501, 11.805, 11.807501, 11.81, 11.812501, 11.815001, 11.8175, 11.820001, 11.8225, 11.825001, 11.8275, 11.830001, 11.8325, 11.835001, 11.837501, 11.84, 11.842501, 11.845, 11.847501, 11.85, 11.852501, 11.8550005, 11.857501, 11.860001, 11.8625, 11.865001, 11.8675, 11.870001, 11.8725, 11.875001, 11.877501, 11.88, 11.882501, 11.885, 11.887501, 11.89, 11.892501, 11.895, 11.897501, 11.900001, 11.9025, 11.905001, 11.9075, 11.910001, 11.9125, 11.915001, 11.9175005, 11.920001, 11.922501, 11.925, 11.927501, 11.93, 11.932501, 11.935, 11.937501, 11.940001, 11.9425, 11.945001, 11.9475, 11.950001, 11.9525, 11.955001, 11.9575, 11.960001, 11.962501, 11.965, 11.967501, 11.97, 11.972501, 11.975, 11.977501, 11.9800005, 11.982501, 11.985001, 11.9875, 11.990001, 11.9925, 11.995001, 11.9975, 12.000001, 12.002501, 12.005, 12.007501, 12.01, 12.012501, 12.015, 12.017501, 12.02, 12.022501, 12.025001, 12.0275, 12.030001, 12.0325, 12.035001, 12.0375, 12.040001, 12.0425005, 12.045001, 12.047501, 12.05, 12.052501, 12.055, 12.057501, 12.06, 12.062501, 12.065001, 12.0675, 12.070001, 12.0725, 12.075001, 12.0775, 12.080001, 12.0825, 12.085001, 12.087501, 12.09, 12.092501, 12.095, 12.097501, 12.1, 12.102501, 12.1050005, 12.107501, 12.110001, 12.1125, 12.115001, 12.1175, 12.120001, 12.1225, 12.125001, 12.127501, 12.13, 12.132501, 12.135, 12.137501, 12.14, 12.142501, 12.145, 12.147501, 12.150001, 12.1525, 12.155001, 12.1575, 12.160001, 12.1625, 12.165001, 12.1675005, 12.170001, 12.172501, 12.175, 12.177501, 12.18, 12.182501, 12.185, 12.187501, 12.190001, 12.1925, 12.195001, 12.1975, 12.200001, 12.2025, 12.205001, 12.2075, 12.210001, 12.212501, 12.215, 12.217501, 12.22, 12.222501, 12.225, 12.227501, 12.2300005, 12.232501, 12.235001, 12.2375, 12.240001, 12.2425, 12.245001, 12.2475, 12.250001, 12.252501, 12.255, 12.257501, 12.26, 12.262501, 12.265, 12.267501, 12.27, 12.272501, 12.275001, 12.2775, 12.280001, 12.2825, 12.285001, 12.2875, 12.290001, 12.2925005, 12.295001, 12.297501, 12.3, 12.302501, 12.305, 12.307501, 12.31, 12.312501, 12.315001, 12.3175, 12.320001, 12.3225, 12.325001, 12.3275, 12.330001, 12.3325, 12.335001, 12.337501, 12.34, 12.342501, 12.345, 12.347501, 12.35, 12.352501, 12.3550005, 12.357501, 12.360001, 12.3625, 12.365001, 12.3675, 12.370001, 12.3725, 12.375001, 12.377501, 12.38, 12.382501, 12.385, 12.387501, 12.39, 12.392501, 12.395, 12.397501, 12.400001, 12.4025, 12.405001, 12.4075, 12.410001, 12.4125, 12.415001, 12.4175005, 12.420001, 12.422501, 12.425, 12.427501, 12.43, 12.432501, 12.435, 12.437501, 12.440001, 12.4425, 12.445001, 12.4475, 12.450001, 12.4525, 12.455001, 12.4575, 12.460001, 12.462501, 12.465, 12.467501, 12.47, 12.472501, 12.475, 12.477501, 12.4800005, 12.482501, 12.485001, 12.4875, 12.490001, 12.4925, 12.495001, 12.4975, 12.500001, 12.502501, 12.505001, 12.507501, 12.51, 12.512501, 12.515, 12.517501, 12.52, 12.522501, 12.525001, 12.5275, 12.530001, 12.5325, 12.535001, 12.5375, 12.540001, 12.5425005, 12.545001, 12.547501, 12.55, 12.552501, 12.555, 12.557501, 12.56, 12.562501, 12.565001, 12.567501, 12.570001, 12.5725, 12.575001, 12.5775, 12.580001, 12.5825, 12.585001, 12.587501, 12.59, 12.592501, 12.595, 12.597501, 12.6, 12.602501, 12.6050005, 12.607501, 12.610001, 12.6125, 12.615001, 12.6175, 12.620001, 12.6225, 12.625001, 12.627501, 12.630001, 12.632501, 12.635, 12.637501, 12.64, 12.642501, 12.645, 12.647501, 12.650001, 12.6525, 12.655001, 12.6575, 12.660001, 12.6625, 12.665001, 12.6675005, 12.670001, 12.672501, 12.675, 12.677501, 12.68, 12.682501, 12.685, 12.687501, 12.690001, 12.692501, 12.695001, 12.6975, 12.700001, 12.7025, 12.705001, 12.7075, 12.710001, 12.712501, 12.715, 12.717501, 12.72, 12.722501, 12.725, 12.727501, 12.7300005, 12.732501, 12.735001, 12.7375, 12.740001, 12.7425, 12.745001, 12.7475, 12.750001, 12.752501, 12.755001, 12.757501, 12.76, 12.762501, 12.765, 12.767501, 12.77, 12.772501, 12.775001, 12.7775, 12.780001, 12.7825, 12.785001, 12.7875, 12.790001, 12.7925005, 12.795001, 12.797501, 12.8, 12.802501, 12.805, 12.807501, 12.81, 12.812501, 12.815001, 12.817501, 12.820001, 12.8225, 12.825001, 12.8275, 12.830001, 12.8325, 12.835001, 12.837501, 12.84, 12.842501, 12.845, 12.847501, 12.85, 12.852501, 12.8550005, 12.857501, 12.860001, 12.8625, 12.865001, 12.8675, 12.870001, 12.8725, 12.875001, 12.877501, 12.880001, 12.882501, 12.885, 12.887501, 12.89, 12.892501, 12.895, 12.897501, 12.900001, 12.9025, 12.905001, 12.9075, 12.910001, 12.9125, 12.915001, 12.9175005, 12.920001, 12.922501, 12.925, 12.927501, 12.93, 12.932501, 12.935, 12.937501, 12.940001, 12.942501, 12.945001, 12.9475, 12.950001, 12.9525, 12.955001, 12.9575, 12.960001, 12.962501, 12.965, 12.967501, 12.97, 12.972501, 12.975, 12.977501, 12.9800005, 12.982501, 12.985001, 12.9875, 12.990001, 12.9925, 12.995001, 12.9975, 13.000001, 13.002501, 13.005001, 13.007501, 13.01, 13.012501, 13.015, 13.017501, 13.02, 13.022501, 13.025001, 13.0275, 13.030001, 13.0325, 13.035001, 13.0375, 13.040001, 13.0425005, 13.045001, 13.047501, 13.05, 13.052501, 13.055, 13.057501, 13.06, 13.062501, 13.065001, 13.067501, 13.070001, 13.0725, 13.075001, 13.0775, 13.080001, 13.0825, 13.085001, 13.087501, 13.09, 13.092501, 13.095, 13.097501, 13.1, 13.102501, 13.1050005, 13.107501, 13.110001, 13.1125, 13.115001, 13.1175, 13.120001, 13.1225, 13.125001, 13.127501, 13.130001, 13.132501, 13.135, 13.137501, 13.14, 13.142501, 13.145, 13.147501, 13.150001, 13.1525, 13.155001, 13.1575, 13.160001, 13.1625, 13.165001, 13.1675005, 13.170001, 13.172501, 13.175, 13.177501, 13.18, 13.182501, 13.185, 13.187501, 13.190001, 13.192501, 13.195001, 13.1975, 13.200001, 13.2025, 13.205001, 13.2075, 13.210001, 13.212501, 13.215, 13.217501, 13.22, 13.222501, 13.225, 13.227501, 13.2300005, 13.232501, 13.235001, 13.2375, 13.240001, 13.2425, 13.245001, 13.2475, 13.250001, 13.252501, 13.255001, 13.257501, 13.26, 13.262501, 13.265, 13.267501, 13.27, 13.272501, 13.275001, 13.277501, 13.280001, 13.2825, 13.285001, 13.2875, 13.290001, 13.2925005, 13.295001, 13.297501, 13.3, 13.302501, 13.305, 13.307501, 13.31, 13.312501, 13.315001, 13.317501, 13.320001, 13.3225, 13.325001, 13.3275, 13.330001, 13.3325, 13.335001, 13.337501, 13.340001, 13.342501, 13.345, 13.347501, 13.35, 13.352501, 13.3550005, 13.357501, 13.360001, 13.3625, 13.365001, 13.3675, 13.370001, 13.3725, 13.375001, 13.377501, 13.380001, 13.382501, 13.385, 13.387501, 13.39, 13.392501, 13.395, 13.397501, 13.400001, 13.402501, 13.405001, 13.4075, 13.410001, 13.4125, 13.415001, 13.4175005, 13.420001, 13.422501, 13.425, 13.427501, 13.43, 13.432501, 13.435, 13.437501, 13.440001, 13.442501, 13.445001, 13.4475, 13.450001, 13.4525, 13.455001, 13.4575, 13.460001, 13.462501, 13.465001, 13.467501, 13.47, 13.472501, 13.475, 13.477501, 13.4800005, 13.482501, 13.485001, 13.4875, 13.490001, 13.4925, 13.495001, 13.4975, 13.500001, 13.502501, 13.505001, 13.507501, 13.51, 13.512501, 13.515, 13.517501, 13.52, 13.522501, 13.525001, 13.527501, 13.530001, 13.5325, 13.535001, 13.5375, 13.540001, 13.5425005, 13.545001, 13.547501, 13.55, 13.552501, 13.555, 13.557501, 13.56, 13.562501, 13.565001, 13.567501, 13.570001, 13.5725, 13.575001, 13.5775, 13.580001, 13.5825, 13.585001, 13.587501, 13.590001, 13.592501, 13.595, 13.597501, 13.6, 13.602501, 13.6050005, 13.607501, 13.610001, 13.6125, 13.615001, 13.6175, 13.620001, 13.6225, 13.625001, 13.627501, 13.630001, 13.632501, 13.635, 13.637501, 13.64, 13.642501, 13.645, 13.647501, 13.650001, 13.652501, 13.655001, 13.6575, 13.660001, 13.6625, 13.665001, 13.6675005, 13.670001, 13.672501, 13.675, 13.677501, 13.68, 13.682501, 13.685, 13.687501, 13.690001, 13.692501, 13.695001, 13.6975, 13.700001, 13.7025, 13.705001, 13.7075, 13.710001, 13.712501, 13.715001, 13.717501, 13.72, 13.722501, 13.725, 13.727501, 13.7300005, 13.732501, 13.735001, 13.7375, 13.740001, 13.7425, 13.745001, 13.7475, 13.750001, 13.752501, 13.755001, 13.757501, 13.76, 13.762501, 13.765, 13.767501, 13.77, 13.772501, 13.775001, 13.777501, 13.780001, 13.7825, 13.785001, 13.7875, 13.790001, 13.7925005, 13.795001, 13.797501, 13.8, 13.802501, 13.805, 13.807501, 13.81, 13.812501, 13.815001, 13.817501, 13.820001, 13.8225, 13.825001, 13.8275, 13.830001, 13.8325, 13.835001, 13.837501, 13.840001, 13.842501, 13.845, 13.847501, 13.85, 13.852501, 13.8550005, 13.857501, 13.860001, 13.8625, 13.865001, 13.8675, 13.870001, 13.8725, 13.875001, 13.877501, 13.880001, 13.882501, 13.885, 13.887501, 13.89, 13.892501, 13.895, 13.897501, 13.900001, 13.902501, 13.905001, 13.9075, 13.910001, 13.9125, 13.915001, 13.9175005, 13.920001, 13.922501, 13.925, 13.927501, 13.93, 13.932501, 13.935, 13.937501, 13.940001, 13.942501, 13.945001, 13.9475, 13.950001, 13.9525, 13.955001, 13.9575, 13.960001, 13.962501, 13.965001, 13.967501, 13.97, 13.972501, 13.975, 13.977501, 13.9800005, 13.982501, 13.985001, 13.9875, 13.990001, 13.9925, 13.995001, 13.9975, 14.000001, 14.002501, 14.005001, 14.007501, 14.01, 14.012501, 14.015, 14.017501, 14.02, 14.022501, 14.025001, 14.027501, 14.030001, 14.0325, 14.035001, 14.0375, 14.040001, 14.0425005, 14.045001, 14.047501, 14.05, 14.052501, 14.055, 14.057501, 14.06, 14.062501, 14.065001, 14.067501, 14.070001, 14.0725, 14.075001, 14.0775, 14.080001, 14.0825, 14.085001, 14.087501, 14.090001, 14.092501, 14.095, 14.097501, 14.1, 14.102501, 14.1050005, 14.107501, 14.110001, 14.112501, 14.115001, 14.1175, 14.120001, 14.1225, 14.125001, 14.127501, 14.130001, 14.132501, 14.135, 14.137501, 14.14, 14.142501, 14.145, 14.147501, 14.150001, 14.152501, 14.155001, 14.1575, 14.160001, 14.1625, 14.165001, 14.1675005, 14.170001, 14.172501, 14.175001, 14.177501, 14.18, 14.182501, 14.185, 14.187501, 14.190001, 14.192501, 14.195001, 14.1975, 14.200001, 14.2025, 14.205001, 14.2075, 14.210001, 14.212501, 14.215001, 14.217501, 14.22, 14.222501, 14.225, 14.227501, 14.2300005, 14.232501, 14.235001, 14.237501, 14.240001, 14.2425, 14.245001, 14.2475, 14.250001, 14.252501, 14.255001, 14.257501, 14.26, 14.262501, 14.265, 14.267501, 14.27, 14.272501, 14.275001, 14.277501, 14.280001, 14.2825, 14.285001, 14.2875, 14.290001, 14.2925005, 14.295001, 14.297501, 14.300001, 14.302501, 14.305, 14.307501, 14.31, 14.312501, 14.315001, 14.317501, 14.320001, 14.3225, 14.325001, 14.3275, 14.330001, 14.3325, 14.335001, 14.337501, 14.340001, 14.342501, 14.345, 14.347501, 14.35, 14.352501, 14.3550005, 14.357501, 14.360001, 14.362501, 14.365001, 14.3675, 14.370001, 14.3725, 14.375001, 14.377501, 14.380001, 14.382501, 14.385, 14.387501, 14.39, 14.392501, 14.395, 14.397501, 14.400001, 14.402501, 14.405001, 14.4075, 14.410001, 14.4125, 14.415001, 14.4175005, 14.420001, 14.422501, 14.425001, 14.427501, 14.43, 14.432501, 14.435, 14.437501, 14.440001, 14.442501, 14.445001, 14.4475, 14.450001, 14.4525, 14.455001, 14.4575, 14.460001, 14.462501, 14.465001, 14.467501, 14.47, 14.472501, 14.475, 14.477501, 14.4800005, 14.482501, 14.485001, 14.487501, 14.490001, 14.4925, 14.495001, 14.4975, 14.500001, 14.502501, 14.505001, 14.507501, 14.51, 14.512501, 14.515, 14.517501, 14.52, 14.522501, 14.525001, 14.527501, 14.530001, 14.5325, 14.535001, 14.5375, 14.540001, 14.5425005, 14.545001, 14.547501, 14.550001, 14.552501, 14.555, 14.557501, 14.56, 14.562501, 14.565001, 14.567501, 14.570001, 14.5725, 14.575001, 14.5775, 14.580001, 14.5825, 14.585001, 14.587501, 14.590001, 14.592501, 14.595, 14.597501, 14.6, 14.602501, 14.6050005, 14.607501, 14.610001, 14.612501, 14.615001, 14.6175, 14.620001, 14.6225, 14.625001, 14.627501, 14.630001, 14.632501, 14.635, 14.637501, 14.64, 14.642501, 14.645, 14.647501, 14.650001, 14.652501, 14.655001, 14.6575, 14.660001, 14.6625, 14.665001, 14.6675005, 14.670001, 14.672501, 14.675001, 14.677501, 14.68, 14.682501, 14.685, 14.687501, 14.690001, 14.692501, 14.695001, 14.6975, 14.700001, 14.7025, 14.705001, 14.7075, 14.710001, 14.712501, 14.715001, 14.717501, 14.72, 14.722501, 14.725, 14.727501, 14.7300005, 14.732501, 14.735001, 14.737501, 14.740001, 14.7425, 14.745001, 14.7475, 14.750001, 14.752501, 14.755001, 14.757501, 14.76, 14.762501, 14.765, 14.767501, 14.77, 14.772501, 14.775001, 14.777501, 14.780001, 14.7825, 14.785001, 14.7875, 14.790001, 14.7925005, 14.795001, 14.797501, 14.800001, 14.802501, 14.805, 14.807501, 14.81, 14.812501, 14.815001, 14.817501, 14.820001, 14.8225, 14.825001, 14.8275, 14.830001, 14.8325, 14.835001, 14.837501, 14.840001, 14.842501, 14.845, 14.847501, 14.85, 14.852501, 14.8550005, 14.857501, 14.860001, 14.862501, 14.865001, 14.8675, 14.870001, 14.8725, 14.875001, 14.877501, 14.880001, 14.882501, 14.885001, 14.887501, 14.89, 14.892501, 14.895, 14.897501, 14.900001, 14.902501, 14.905001, 14.9075, 14.910001, 14.9125, 14.915001, 14.9175005, 14.920001, 14.922501, 14.925001, 14.927501, 14.93, 14.932501, 14.935, 14.937501, 14.940001, 14.942501, 14.945001, 14.947501, 14.950001, 14.9525, 14.955001, 14.9575, 14.960001, 14.962501, 14.965001, 14.967501, 14.97, 14.972501, 14.975, 14.977501, 14.9800005, 14.982501, 14.985001, 14.987501, 14.990001, 14.9925, 14.995001, 14.9975, 15.000001, 15.002501, 15.005001, 15.007501, 15.010001, 15.012501, 15.015, 15.017501, 15.02, 15.022501, 15.025001, 15.027501, 15.030001, 15.0325, 15.035001, 15.0375, 15.040001, 15.0425005, 15.045001, 15.047501, 15.050001, 15.052501, 15.055, 15.057501, 15.06, 15.062501, 15.065001, 15.067501, 15.070001, 15.072501, 15.075001, 15.0775, 15.080001, 15.0825, 15.085001, 15.087501, 15.090001, 15.092501, 15.095, 15.097501, 15.1, 15.102501, 15.1050005, 15.107501, 15.110001, 15.112501, 15.115001, 15.1175, 15.120001, 15.1225, 15.125001, 15.127501, 15.130001, 15.132501, 15.135001, 15.137501, 15.14, 15.142501, 15.145, 15.147501, 15.150001, 15.152501, 15.155001, 15.1575, 15.160001, 15.1625, 15.165001, 15.1675005, 15.170001, 15.172501, 15.175001, 15.177501, 15.18, 15.182501, 15.185, 15.187501, 15.190001, 15.192501, 15.195001, 15.197501, 15.200001, 15.2025, 15.205001, 15.2075, 15.210001, 15.212501, 15.215001, 15.217501, 15.22, 15.222501, 15.225, 15.227501, 15.2300005, 15.232501, 15.235001, 15.237501, 15.240001, 15.2425, 15.245001, 15.2475, 15.250001, 15.252501, 15.255001, 15.257501, 15.260001, 15.262501, 15.265, 15.267501, 15.27, 15.272501, 15.275001, 15.277501, 15.280001, 15.2825, 15.285001, 15.2875, 15.290001, 15.2925005, 15.295001, 15.297501, 15.300001, 15.302501, 15.305, 15.307501, 15.31, 15.312501, 15.315001, 15.317501, 15.320001, 15.322501, 15.325001, 15.3275, 15.330001, 15.3325, 15.335001, 15.337501, 15.340001, 15.342501, 15.345, 15.347501, 15.35, 15.352501, 15.3550005, 15.357501, 15.360001, 15.362501, 15.365001, 15.3675, 15.370001, 15.3725, 15.375001, 15.377501, 15.380001, 15.382501, 15.385001, 15.387501, 15.39, 15.392501, 15.395, 15.397501, 15.400001, 15.402501, 15.405001, 15.4075, 15.410001, 15.4125, 15.415001, 15.4175005, 15.420001, 15.422501, 15.425001, 15.427501, 15.43, 15.432501, 15.435, 15.437501, 15.440001, 15.442501, 15.445001, 15.447501, 15.450001, 15.4525, 15.455001, 15.4575, 15.460001, 15.462501, 15.465001, 15.467501, 15.47, 15.472501, 15.475, 15.477501, 15.4800005, 15.482501, 15.485001, 15.487501, 15.490001, 15.4925, 15.495001, 15.4975, 15.500001, 15.502501, 15.505001, 15.507501, 15.510001, 15.512501, 15.515, 15.517501, 15.52, 15.522501, 15.525001, 15.527501, 15.530001, 15.5325, 15.535001, 15.5375, 15.540001, 15.5425005, 15.545001, 15.547501, 15.550001, 15.552501, 15.555, 15.557501, 15.56, 15.562501, 15.565001, 15.567501, 15.570001, 15.572501, 15.575001, 15.5775, 15.580001, 15.5825, 15.585001, 15.587501, 15.590001, 15.592501, 15.595, 15.597501, 15.6, 15.602501, 15.6050005, 15.607501, 15.610001, 15.612501, 15.615001, 15.6175, 15.620001, 15.6225, 15.625001, 15.627501, 15.630001, 15.632501, 15.635001, 15.637501, 15.64, 15.642501, 15.645, 15.647501, 15.650001, 15.652501, 15.655001, 15.6575, 15.660001, 15.6625, 15.665001, 15.6675005, 15.670001, 15.672501, 15.675001, 15.677501, 15.68, 15.682501, 15.685, 15.687501, 15.690001, 15.692501, 15.695001, 15.697501, 15.700001, 15.7025, 15.705001, 15.7075, 15.710001, 15.712501, 15.715001, 15.717501, 15.720001, 15.722501, 15.725, 15.727501, 15.7300005, 15.732501, 15.735001, 15.737501, 15.740001, 15.7425, 15.745001, 15.7475, 15.750001, 15.752501, 15.755001, 15.757501, 15.760001, 15.762501, 15.765, 15.767501, 15.77, 15.772501, 15.775001, 15.777501, 15.780001, 15.782501, 15.785001, 15.7875, 15.790001, 15.7925005, 15.795001, 15.797501, 15.800001, 15.802501, 15.805, 15.807501, 15.81, 15.812501, 15.815001, 15.817501, 15.820001, 15.822501, 15.825001, 15.8275, 15.830001, 15.8325, 15.835001, 15.837501, 15.840001, 15.842501, 15.845001, 15.847501, 15.85, 15.852501, 15.8550005, 15.857501, 15.860001, 15.862501, 15.865001, 15.8675, 15.870001, 15.8725, 15.875001, 15.877501, 15.880001, 15.882501, 15.885001, 15.887501, 15.89, 15.892501, 15.895, 15.897501, 15.900001, 15.902501, 15.905001, 15.907501, 15.910001, 15.9125, 15.915001, 15.9175005, 15.920001, 15.922501, 15.925001, 15.927501, 15.93, 15.932501, 15.935, 15.937501, 15.940001, 15.942501, 15.945001, 15.947501, 15.950001, 15.9525, 15.955001, 15.9575, 15.960001, 15.962501, 15.965001, 15.967501, 15.970001, 15.972501, 15.975, 15.977501, 15.9800005, 15.982501, 15.985001, 15.987501, 15.990001, 15.9925, 15.995001, 15.9975, 16, 16.0025, 16.005001, 16.007502, 16.01, 16.0125, 16.015001, 16.0175, 16.02, 16.022501, 16.025002, 16.0275, 16.03, 16.032501, 16.035, 16.0375, 16.04, 16.042501, 16.045, 16.0475, 16.050001, 16.052502, 16.055, 16.0575, 16.060001, 16.0625, 16.065, 16.067501, 16.070002, 16.0725, 16.075, 16.077501, 16.08, 16.0825, 16.085001, 16.087502, 16.09, 16.0925, 16.095001, 16.0975, 16.1, 16.1025, 16.105001, 16.1075, 16.11, 16.112501, 16.115002, 16.1175, 16.12, 16.122501, 16.125, 16.1275, 16.130001, 16.132502, 16.135, 16.1375, 16.140001, 16.1425, 16.145, 16.147501, 16.150002, 16.1525, 16.155, 16.157501, 16.16, 16.1625, 16.165, 16.167501, 16.17, 16.1725, 16.175001, 16.177502, 16.18, 16.1825, 16.185001, 16.1875, 16.19, 16.192501, 16.195002, 16.1975, 16.2, 16.202501, 16.205, 16.2075, 16.210001, 16.212502, 16.215, 16.2175, 16.220001, 16.2225, 16.225, 16.2275, 16.230001, 16.2325, 16.235, 16.237501, 16.240002, 16.2425, 16.245, 16.247501, 16.25], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 6501, "currentCount": 6501}}}], "config": {"showlegend": true, "xaxis": {"showticklabels": true, "gridwidth": 0.5, "range": [0, 16.25], "domain": [0.09128390201224845, 0.9934383202099738], "mirror": false, "tickangle": 0, "showline": true, "zeroline": false, "tickfont": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "zerolinecolor": "rgba(0, 0, 0, 1)", "anchor": "y", "visible": true, "ticks": "inside", "tickmode": "array", "linecolor": "rgba(0, 0, 0, 1)", "showgrid": true, "title": {"text": "Время (с)", "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}}, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickcolor": "rgb(0, 0, 0)", "type": "linear"}, "paper_bgcolor": "rgba(255, 255, 255, 1.000)", "annotations": [], "height": 400, "margin": {"l": 0, "b": 20, "r": 0, "t": 20}, "plot_bgcolor": "rgba(255, 255, 255, 1.000)", "yaxis": {"showticklabels": true, "gridwidth": 0.5, "range": [-0.30213623060944317, 0.30213623060944317], "domain": [0.07581474190726165, 0.9901574803149606], "mirror": false, "tickangle": 0, "showline": true, "zeroline": false, "tickfont": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "zerolinecolor": "rgba(0, 0, 0, 1)", "anchor": "x", "visible": true, "ticks": "inside", "tickmode": "array", "linecolor": "rgba(0, 0, 0, 1)", "showgrid": true, "title": {"text": "Амплитуда", "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}}, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickcolor": "rgb(0, 0, 0)", "type": "linear"}, "legend": {"yanchor": "auto", "xanchor": "auto", "bordercolor": "rgba(0, 0, 0, 1)", "bgcolor": "rgba(255, 255, 255, 1.000)", "borderwidth": 1, "tracegroupgap": 0, "y": 1, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "title": {"font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}, "text": ""}, "traceorder": "normal", "x": 1}, "width": 634.71875}}
{"id": "82b28331-15aa-4748-8e1d-96a91bb37102", "data": [{"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [4.1970652130637925e-06, 6.160932393689022e-06, 6.034757511048524e-06, 4.27083867880221e-06, 3.299358857420454e-06, 4.324545047406078e-07, 5.172211415847023e-06, 9.86559200281237e-07, 2.073853027200898e-06, 1.2078692974528368e-06, 1.7211159715271644e-06, 2.0221417434660333e-06, 3.682330849119311e-06, 8.182208295092106e-06, 1.43067682243567e-06, 1.7424840325564553e-06, 3.6748772677777994e-06, 5.215518035153101e-06, 5.868662645664573e-06, 7.26738637548644e-06, 4.6659878962607794e-06, 4.7179675770084236e-05, 2.3976481868888597e-05, 7.630759873094871e-06, 1.8536201995345356e-07, 8.936109861042767e-05, 2.524084561623309e-05, 6.660062594938005e-05, 6.115452001944003e-05, 2.5824222419909864e-05, 4.481808914725743e-05, 6.372000176824456e-05, 9.3230779998479e-05, 8.083899018685651e-05, 0.00011606805562522363, 3.3286096951607545e-06, 0.0001551252334095861, 0.00011026550372625307, 0.00012075867549260543, 0.00010225272954403179, 7.414282649046467e-05, 4.14408666804348e-05, 3.1697768407850016e-05, 0.00036913049021581934, 2.0803719663288483e-05, 0.00030427016561805013, 7.121625204229577e-06, 0.00013218937689335832, 1.5332752856164107e-05, 1.5519068736476164e-06, 3.6820770215855863e-06, 9.430014363337508e-05, 0.00010109166322553547, 4.091597434938944e-06, 0.00012162086001838831, 0.00024815763426852045, 0.0002667538522299134, 4.932496649261266e-06, 7.618191242545275e-05, 2.037171732722009e-06, 4.722181880946615e-05, 0.00015275338134402184, 6.890470090166601e-05, 2.774349775967725e-05, 7.4473118831307716e-06, 1.6680730169780415e-06, 4.480635972738405e-05, 7.195528054772604e-06, 3.5116662395063944e-05, 4.986149726899683e-06, 1.1125436073959256e-05, 3.1081867192046595e-05, 3.490762532672365e-06, 6.443090545608385e-06, 1.1694237313544845e-05, 3.2406589754593787e-06, 1.1408421848712613e-06, 4.361013640136655e-06, 1.2655815831513645e-05, 8.994201353952553e-06, 9.146126680682718e-06, 5.370252590288932e-05, 3.7967080479113194e-06, 3.009869678900343e-05, 5.495050095664695e-05, 1.1728799244149255e-05, 2.055182488962818e-05, 2.1692596665656788e-05, 4.636511457745833e-05, 1.533501296425432e-05, 3.597607526677472e-05, 2.7262978123278144e-05, 5.847642396577795e-06, 7.801381909846967e-06, 6.673557059371807e-06, 2.087264638899854e-05, 2.259072270258702e-05, 5.0381104434703735e-06, 2.1295441501310842e-06, 7.451998898525337e-05, 8.122762227986498e-05, 3.251777990544802e-05, 8.491843197477571e-06, 4.419560440161525e-05, 0.00013866682065118721, 1.4331322758642264e-05, 5.040834885908124e-05, 5.0141046835747535e-06, 6.047066888270939e-06, 2.0658426908208933e-05, 3.242707568610762e-05, 3.4452415672117476e-05, 1.8880611840492776e-05, 4.2073697376359177e-05, 2.4303122445223974e-05, 9.175067906439585e-05, 3.373994878670592e-05, 3.4068901485826404e-05, 0.0002441776520390827, 3.213509732847862e-05, 4.783390190919545e-05, 0.00016431397680213584, 3.746737959991566e-05, 4.8397224391216645e-05, 3.864494397150836e-05, 6.318631558751145e-05, 2.8639490788200775e-05, 2.530429884830942e-05, 7.027957119119544e-06, 5.9280407088458295e-05, 6.95121685907908e-05, 2.7506127986052838e-05, 5.093545113998089e-05, 4.5140386006481476e-05, 0.00011410209050086865, 0.00010890082828917182, 0.00017327642190012146, 0.0001063785331957801, 0.00014557637704661647, 0.0001311496638638101, 0.0001377984031260285, 0.00019780329229634252, 3.625581192457051e-05, 0.0001266306227374225, 9.595300414197403e-05, 3.0624948117817455e-05, 6.82728071795496e-05, 1.3578701819277923e-05, 2.3817877251340495e-05, 8.55434887686954e-06, 1.8166639707491205e-05, 1.1715393137019674e-05, 1.1656799073463522e-05, 2.897936325692839e-05, 1.0832212835199009e-06, 1.3590794651022843e-06, 1.3794769755811448e-05, 5.893125512196752e-06, 1.996996644540943e-05, 2.042063530208101e-05, 1.3333133535729899e-05, 5.840246445629223e-06, 8.818961924712372e-06, 7.946928032142281e-06, 2.7090862488133555e-06, 1.183081005093115e-05, 9.297616523780158e-07, 1.907626785859154e-05, 4.30202804127361e-06, 2.2705221778164898e-06, 3.7739773607645517e-06, 5.343122396885165e-06, 1.3069549568173848e-05, 2.1288930757343954e-06, 1.248262861211898e-06, 1.951995968084455e-05, 2.1577190077890833e-06, 4.760689303296716e-06, 9.213413670189911e-06, 3.589615672610228e-05, 1.1419117825050808e-05, 5.041279055020908e-06, 1.767112596918913e-05, 1.1230320404796764e-05, 3.769422360197424e-05, 3.624788707919226e-05, 8.720218105943173e-07, 2.0659476119992876e-06, 2.7341489339463723e-05, 8.347508049765699e-06, 2.958934430008983e-05, 2.9257269830389015e-05, 8.322533447733851e-06, 9.792558874813692e-06, 3.604947428208363e-05, 3.0763116253525114e-05, 2.9251967336892596e-05, 3.2850453357823476e-05, 6.346922264199882e-06, 2.0493306879870946e-05, 1.9835541275094643e-05, 3.141453241436475e-05, 5.263413731745114e-05, 1.6029570340207498e-05, 9.88960211685587e-05, 2.3444322635543164e-05, 0.00010245881372152927, 6.35693829244861e-05, 4.301430162265915e-05, 2.609323413250888e-05, 4.647573008630014e-06, 3.137450745721177e-05, 2.5840570241925806e-05, 9.535040002513624e-05, 1.3750863004996618e-05, 1.554817267178165e-05, 1.8921696366326542e-06, 3.0217255149552598e-05, 1.0682452932963952e-05, 4.295520035139618e-05, 4.6584428076290845e-05, 2.2415702022695087e-05, 5.02813642568252e-06, 3.982191196142908e-07, 4.35541985359152e-05, 1.4209664966897537e-07, 3.981518756506564e-05, 4.184728913662193e-06, 2.1165112444442705e-05, 2.1669247602306834e-05, 5.803957721026763e-05, 9.700057344372639e-06, 4.241560690906277e-06, 3.786098574665858e-05, 3.092026939870146e-05, 4.925454696641738e-05, 9.422382055577457e-05, 1.832230425085168e-05, 1.8271816936288723e-05, 5.1583942287857094e-05, 3.715579153081636e-05, 2.2318995018136514e-05, 1.5545779976257217e-06, 2.9132983646638283e-06, 5.986592572317958e-05, 8.6536799326248e-05, 3.831374810542406e-06, 3.45069917177265e-05, 1.9128956694532687e-05, 4.356916573048498e-05, 3.0068976424272435e-06, 5.981512818843397e-06, 5.096728775752238e-05, 1.4580795054522744e-05, 4.19113694076968e-06, 8.128489903492733e-06, 4.740806678489382e-05, 4.073670608182393e-06, 6.481361300391776e-06, 4.340562341171769e-05, 4.701065605298405e-05, 1.8128089978182694e-05, 8.546768391992376e-06, 3.737716872767368e-06, 3.322735076607667e-05, 1.4424321047187385e-06, 1.0290944049440766e-05, 2.6693086518503797e-05, 5.4310455769742896e-05, 3.602920048968806e-07, 5.96772577913854e-06, 1.0349549628583018e-05, 2.8603675736543124e-05, 6.904435745534698e-05, 3.527447255496971e-05, 9.65407876622815e-06, 1.5657142396777776e-05, 5.275299252877105e-05, 2.3980927772216902e-05, 2.593245029741033e-06, 6.0468419288765835e-05, 3.640937738347129e-05, 1.1504579888572116e-05, 4.3390553080642465e-05, 1.2988323845265742e-05, 8.409535682708727e-06, 1.4983959202145967e-05, 3.0695800695062726e-05, 4.7991997438071734e-05, 3.142888221178737e-05, 2.4104562397983725e-05, 6.605314167263158e-06, 5.244593851410854e-05, 2.283182773216303e-05, 5.998291966736366e-06, 4.905373050534256e-05, 5.290914312528837e-06, 3.162179440075738e-05, 0.00010840407866782323, 2.207739642168151e-05, 2.8487467099017776e-05, 0.00015054503832712544, 9.104227932938207e-05, 4.099458126096064e-05, 8.739889991384306e-05, 2.2643252841075567e-05, 5.292240394228561e-05, 3.1724848426953004e-05, 1.801372283081682e-05, 8.714420669651873e-06, 6.676206891357422e-05, 0.00013928943468410006, 7.773144006161168e-05, 2.7656750911374623e-05, 1.56757422316721e-05, 7.919449591647587e-07, 3.517427299452356e-06, 3.0781856850703182e-06, 2.819558518671744e-05, 4.618646444163696e-05, 2.0399456863577137e-05, 8.431993884806055e-05, 8.079801451312189e-05, 0.00010492413613720549, 2.6582810367966365e-05, 0.0003550347581371702, 0.00028494014269061276, 0.0005613532682237576, 0.00017205623313048746, 0.00020757483641872158, 0.0001061954784280233, 0.00099416122271833, 0.001003644529404087, 0.0006409632938532177, 0.00029117579021784815, 0.0013094537360042757, 0.002007041976194471, 0.005563362710688239, 0.008061511179977604, 0.012396013022512848, 0.022052914292059866, 0.040675814538075804, 0.08723455222342301, 0.1535417262458024, 0.10832391633480927, 0.06621487097308114, 0.1864196870173743, 0.07964977284002103, 0.0667509969471169, 0.10526500158411736, 0.03985826868635411, 0.026416317756090373, 0.028587605272852142, 0.023126739780334592, 0.020084363486973636, 0.013890184051508426, 0.018702072384617702, 0.01574997643904446, 0.012960148405290937, 0.010173127736014836, 0.008982722354628127, 0.007687553118125505, 0.005806389444734328, 0.008328819221020882, 0.004740008263008053, 0.0038491144969786902, 0.007179912848243979, 0.002871620870876082, 0.0020863311460628787, 0.005804516359254985, 0.0014255725798804565, 0.0021927046493525858, 0.0018382058623153123, 0.0031572008326075534, 0.000338405635821919, 0.0010335439149950828, 0.0003803451444579746, 0.00029766198689546586, 0.00010069956366366305, 0.0002541705258833305, 4.547495622656585e-05, 0.0002197253473758319, 6.447851306699616e-05, 8.092133276862531e-05, 3.6156747082263725e-05, 1.2969323333693118e-05, 0.0002522694478914533, 2.306525999174594e-05, 2.9010081514416936e-05, 5.316759257358608e-05, 0.00012737338857522258, 4.469253614571838e-05, 8.871890945532152e-05, 0.00023496769218143878, 9.744234394853661e-05, 1.4900106252440624e-05, 5.454245574294982e-05, 8.111456549257836e-05, 4.6927108228895464e-05, 3.031104500697211e-05, 8.928710248794584e-05, 6.214271126747229e-05, 5.7975718625282224e-06, 5.427555725786405e-05, 1.2549048623195722e-05, 4.7568235735903795e-05, 0.000626284107571712, 7.483143984555753e-05, 0.00018022214562489553, 1.8542167371967722e-05, 0.00010600548012917002, 2.984173615487982e-05, 0.00010983194814564738, 6.231969052667772e-05, 0.00021632170243396487, 3.0145629478693356e-05, 1.8301591575555337e-05, 4.960843570633475e-05, 0.00012863534853904516, 8.311073665095198e-05, 0.000197138485915318, 4.3753149953020046e-05, 0.0003669299231551322, 2.40262060251848e-05, 0.0004154429397439566, 0.00024031393378054207, 1.324058337873105e-07, 2.0497844360017116e-05, 0.00017750837409221136, 5.8863218511160745e-06, 2.2584182179600222e-06, 1.0167162269378169e-05, 1.3152213836333511e-05, 3.612875358853142e-05, 6.312114995528364e-06, 0.00012951130252196726, 7.891006383120677e-06, 7.322561304940182e-05, 0.0007536444619553769, 3.3012013021741815e-05, 9.56044839959469e-05, 0.00038709358357608625, 0.0002133538793900697, 0.00028551150127607627, 0.00025668394131693614, 0.0006052683013595683, 0.00032584246719956177, 0.0007254889630762398, 0.00025075797236307574, 0.0015692145717717317, 0.0009424802015228782, 0.0024474912041622084, 0.0010633085395602162, 0.0011031201687714402, 0.0009711079273607507, 0.0007742861133963109, 0.0006759109758967602, 0.0007386894586843859, 0.0002831547298347839, 0.00014763263205723242, 0.0004931883909255284, 0.0007203307514509213, 0.000495446621069144, 0.0007385402172686488, 0.0004791348275369121, 0.0003735195678535883, 0.000670775654703424, 0.0010050422007953788, 0.0002163472658994595, 0.0008786098487889684, 0.00021086005032295587, 0.00016115299103453516, 0.0004569932167043859, 0.000777742540725147, 9.07698099917995e-05, 0.00028930909784763735, 0.000417412650370147, 0.0003934182954323921, 8.70696157591572e-05, 0.00025004191156912395, 3.19817465075182e-05, 8.433773803355723e-05, 0.00015390513018185705, 4.38688123909009e-05, 2.898496237200638e-05, 4.5185528299097586e-05, 0.000350553424880299, 0.00013272499665188214, 4.815978322860848e-06, 0.0002908339291930097, 5.423551858309229e-05, 6.637582616401006e-05, 0.0009171418449546873, 0.0006259393549731973, 0.00020105635220016825, 0.00042605023710918187, 0.00035644329081061047, 6.059534557204094e-05, 9.88522145326899e-05, 8.718493666711725e-05, 0.00018018513682939566, 0.0003097204071205646, 0.000247210855306652, 1.4628300932425756e-05, 0.0004982224148192445, 0.00020480006270750197, 7.045187869202013e-05, 0.00033420701437651386, 0.0001439626354083694, 0.0002139365163821606, 0.0001005457655410791, 0.00029699113264623035, 0.00025060232112296193, 6.88547512883905e-05, 2.3887623115049776e-05, 9.518213860831379e-05, 5.8125440669927953e-05, 0.0005414042463369993, 3.0166985622959922e-05, 0.00016363439634791481, 3.5196819560550535e-05, 2.964206872210679e-06, 9.89850191624413e-05, 4.741336729698005e-05, 1.3819172382591973e-05, 1.0555093419208761e-05, 0.00010052291149074936, 9.946272758373416e-05, 2.8724186640620536e-05, 3.8785465431935663e-05, 0.00011000442780249331, 1.7401623385894434e-05, 8.40236634857403e-06, 5.350323584406816e-05, 5.098477115051056e-05, 3.144906610770187e-05, 1.019036935125556e-05, 9.152189491272417e-05, 5.2265313023744195e-05, 0.00010494099873114742, 0.0004081522245644906, 1.0176827960237565e-05, 0.0001240041046455776, 0.0001494633418638328, 0.00041624229967671263, 0.0003350133395533767, 0.0001171437639624446, 0.00046169433792162944, 0.00019162798998720334, 5.48997102216257e-05, 3.914475049142655e-06, 0.00018648831458785022, 7.46226265236999e-05, 0.00014909565614023987, 1.692249088020998e-06, 6.780323699995864e-05, 8.919001838319863e-05, 2.116163467015927e-05, 6.494916179156988e-05, 6.62841789014873e-06, 3.397862785842804e-05, 6.342240867563774e-05, 1.538900900857929e-05, 5.7583827093476174e-05, 1.814060864281736e-05, 1.5196098860849372e-06, 3.136499420117376e-05, 0.0001330421264752494, 3.240916991289604e-05, 9.849474134007424e-05, 5.59597759833518e-06, 0.00010144368635532877, 7.330883659731323e-05, 7.541897413646563e-05, 0.00020631478072427985, 0.0002172687854529212, 3.0351341218845566e-05, 3.1224247971859813e-05, 4.186649426875975e-05, 4.197814401614022e-05, 1.3545143981103165e-05, 2.375221668263464e-05, 0.00018659471632864188, 0.0001954654927257861, 1.3281538645713848e-05, 6.077127215588397e-06, 0.00017697912120612206, 9.761007636887177e-05, 8.486660570664722e-05, 0.00023586466487544383, 0.0002575218543237693, 6.974243402557703e-05, 2.3484971331947445e-05, 2.1609977549976094e-06, 4.298789770404691e-06, 3.59819413910857e-05, 4.5810383765689545e-05, 6.954628299687218e-06, 0.0001603877523801596, 5.502127848285598e-05, 0.00010959557201841013, 5.545297649798638e-05, 0.0002451502966196271, 0.00010009401951160237, 0.0004818809062467959, 0.0002752312974998531, 1.0546333183214026e-05, 4.1024238443807734e-05, 6.119534503754771e-05, 0.0003292192297497053, 0.00015357587606201108, 0.0007454228057848237, 2.817303707160378e-05, 0.0005226131690658208, 0.001784014445844239, 0.0020021787376882532, 0.0002515362687567166, 3.652063720445205e-05, 0.00010990690223982356, 7.769483027169321e-06, 4.274992850867932e-05, 6.367391615939971e-05, 1.684179229910929e-05, 0.00023596845232010637, 3.690162066491239e-05, 0.00026462350059491894, 0.00021633342161918087, 2.4714058586051142e-05, 0.00011551739543726031, 0.00012315791334505506, 2.2684611248502766e-05, 0.00026468891582529127, 0.00013299414576801376, 0.00020951228130544402, 0.0001321635610890085, 0.00024743918376604314, 0.0003694783309323414, 0.0003418825204304685, 0.00028026940876543115, 0.00012650078724939936, 0.00025647267797531786, 0.0005167657222921595, 1.7830455963032895e-05, 0.00029598227542587723, 0.00015169130237308094, 0.0009175559404044928, 0.0011040260256132521, 0.0009236738144816647, 0.0017758115604190898, 0.002323379599285802, 0.0008891792547185965, 0.0017190180408264359, 0.0019760381368604404, 0.002226529227299385, 0.0022382608024693303, 0.005669439623133392, 0.0034481507744476454, 0.005166729293078713, 0.0049004664968184284, 0.005536485471516989, 0.006302412740547844, 0.005275532770837398, 0.005655377807927896, 0.00538328732320881, 0.007681796542121576, 0.005538493731587755, 0.00936366374439682, 0.007896070701547733, 0.009319982041369251, 0.011372762698782677, 0.010326369039219777, 0.010383616545167743, 0.009569392299347093, 0.01640586214097706, 0.014960140436754693, 0.014921030629734537, 0.016552178413995932, 0.022620822490534716, 0.027475260428488343, 0.025638132794854974, 0.027282485106955197, 0.02134853171899705, 0.024474281459843945, 0.021105549505654995, 0.013103174974147772, 0.013248388446106492, 0.013253936011713215, 0.013328420064753517, 0.018215880826798377, 0.010340911390640188, 0.02520931809291536, 0.039724196051024126, 0.0333586181498134, 0.03536843342028012, 0.04964526343741657, 0.03228062085980316, 0.035842308762829296, 0.02402105370515931, 0.0470243702282709, 0.020361748098757782, 0.01898906091435218, 0.022024519433609, 0.022278015976328235, 0.011140679026620855, 0.017038724319112738, 0.013395056693109534, 0.012080720629903995, 0.012184880080148931, 0.009667888424265934, 0.0073565457025178095, 0.010245880457107713, 0.0053421912886755275, 0.0060482879187625455, 0.00389828161248804, 0.005040306368677136, 0.0032425879301482825, 0.0032047651617774144, 0.004355221334594512, 0.00311889403044481, 0.0020792293108468723, 0.0026509197237897003, 0.004259164224778973, 0.0021805509656095934, 0.0017530222577804655, 0.0021869836579314727, 0.0014630829172076623, 0.0006245467233417555, 0.0005920402353343248, 0.0034027133620568085, 0.0014872819536067602, 0.0003945895753539583, 0.000385609178268038, 0.00274797132372651, 0.0016833657612824906, 0.0012435597110387042, 0.00034848990465307923, 0.00033280776930379554, 0.001127667445676063, 0.00031860343610852704, 0.0009051456222233587, 0.0007068092131074464, 0.00013503460617316063, 2.5418640237699634e-05, 0.00022415996701957111, 0.0009624889794055378, 6.497236149538603e-05, 0.00014441996378242194, 0.000598483703713265, 0.00011998112454659839, 0.00032969837910143445, 0.00015394491336404386, 0.0001726494154599357, 0.0007398006195783047, 4.1790818703151786e-05, 0.00013648508293963098, 0.0002650164035498667, 0.00032668498149365875, 8.371224290247594e-05, 0.000113710554818999, 1.894328300684424e-05, 0.00013567525037728927, 0.00018056684155655137, 6.608811550114658e-06, 4.565116667182329e-05, 2.7985719359939323e-05, 0.0002592292204552026, 2.232986923034456e-05, 0.00012196234997024007, 6.036840333513662e-05, 0.00030577648503800895, 0.0009078601515385451, 5.120131720901709e-05, 4.455336049957992e-06, 4.641493812833156e-05, 9.527304432105078e-05, 5.729911953577538e-05, 6.577919846193702e-05, 1.5892522670024035e-05, 2.257744525495154e-05, 9.895416668298573e-05, 7.838643603164526e-05, 4.213790480790845e-05, 0.0003139196809433808, 0.00047806738063674813, 9.296370453258285e-05, 0.0004393734261946887, 0.0005700017268749574, 3.3132689044964695e-05, 0.0005424067154194398, 0.0007531216616831041, 0.00019111458242821754, 0.00010231342024955501, 7.828066904652222e-05, 0.00016938714991376116, 0.00013445460004691824, 0.0006215521303844596, 0.0006032304901683194, 0.0001541521017977356, 4.9439099652897935e-06, 8.194474757993794e-05, 0.0010559337059695545, 0.0003934079251090997, 0.00037399570824894773, 0.00022881272622386103, 0.00039230696286783145, 7.212588499176514e-05, 8.961441955662436e-05, 0.0002643590408367985, 0.0005018023048874551, 0.0005694200230677016, 0.00012682254605245855, 6.864197973618916e-06, 7.66892522536103e-05, 9.014017181362652e-05, 0.00011874346528784684, 0.00028447090353276054, 0.0003284232706489436, 0.00036947913508677014, 0.00010353129713096321, 5.4747190404914454e-05, 4.7736653628033424e-05, 8.980809484096316e-05, 0.0005071121007726292, 0.0001210778533664793, 0.0001824364431773569, 7.016327037045305e-05, 1.665656828141485e-05, 0.00022417708911326887, 0.0003049072034318747, 0.00015095552500088338, 0.000537068778478703, 0.0003548349491761544, 1.1869870608595772e-05, 3.262400265281741e-05, 5.794548536102555e-06, 3.2124785922330355e-05, 3.932381465427272e-06, 8.636963465578798e-05, 0.00018720129506536522, 4.671385240612292e-06, 0.00010466422391591746, 0.00018404603792291336, 7.966854247710167e-05, 1.8344478381503623e-05, 0.0003605160475695601, 5.738430472175939e-05, 6.092225363979758e-05, 0.00016135465547788305, 0.0009748771246598644, 4.736506927402709e-05, 0.00040231101208680246, 0.00014153856335276922, 3.92432513732142e-05, 4.552860059475664e-05, 8.926753688938706e-05, 4.1698876145415705e-05, 0.00016677391184935673, 0.00028192327986624596, 8.379720294825934e-05, 4.992684442267016e-05, 6.514035621777468e-05, 0.00016136914369671752, 6.566339288559988e-05, 1.4626839510194135e-05, 2.81972620334135e-05, 7.298515224572667e-05, 0.0006311973202673876, 0.0005415372420594915, 0.00013665643351401408, 0.0002152879460726012, 3.950818116615261e-05, 2.3908657508725128e-05, 0.00013948359967476547, 0.0001062096458112834, 8.450854868460529e-05, 0.00044926062364912636, 0.0003539196033507603, 6.809826417980173e-05, 0.00015630759373309677, 0.0009410312229847154, 0.0001786430145836018, 0.000285266109968709, 0.0003709135100675539, 0.00020117195816778436, 0.00016271325446747401, 0.0002560831846007902, 0.00029108152100552746, 0.000176257966420875, 0.0004342849818028671, 0.0004883314093384758, 0.0008975730631554159, 3.1318714251277936e-06, 0.00011208241755467832, 0.0002394596752318981, 0.0002881354246347846, 0.0002036271523728678, 0.00036117357276293057, 0.000219852639299841, 4.127012878072856e-05, 3.86259380309379e-05, 9.531640727140494e-05, 0.0003407355311449575, 0.00013089220855523186, 5.893217678145679e-05, 0.0003607859806428297, 0.00010868781103517927, 0.0003548744764549975, 7.398834281504641e-05, 5.331330603039525e-05, 5.595259303721241e-06, 0.0006176087808596777, 5.092814060910428e-05, 0.00040592775166889606, 9.909531319909251e-05, 8.032858580409087e-05, 0.0002407253889330356, 5.2552254070746735e-05, 0.00013112540234977625, 0.0006003674054687989, 0.000300955000040576, 9.144590832653218e-05, 4.252804672760801e-06, 0.00014005103109806453, 0.0007644267873731281, 0.00023766467184988763, 2.9972970426610275e-05, 0.00028099243260386515, 8.402110491712702e-05, 0.000233595121565389, 5.728778553700509e-06, 0.0001071097704151948, 0.0005055420725075105, 0.0005285627003398218, 0.001450627310157202, 0.0003933239419652205, 0.00017210715401911163, 0.00027142409334989534, 0.0007292239923499033, 0.00014554913510246735, 1.2721891778635202e-05, 7.073365452672789e-05, 1.254910282973551e-05, 0.0005642834195275481, 6.289296608816752e-05, 0.0005258843183247469, 0.0001460337334683547, 0.00024162411087885532, 0.0004978682402462335, 0.0001918140925267337, 1.5947851233153526e-05, 0.00014833524505033406, 0.00013581752008165243, 6.394080268766689e-05, 0.000269753357295447, 0.0006168961164694841, 0.0007925087237293124, 0.00018119736228933636, 0.0011763368676689253, 0.00024435394375145854, 0.0010931385602831487, 0.0006879598158800798, 0.0010189496926838936, 0.0004984397827833907, 0.0012085659814848933, 0.002420107097653524, 0.0010801862146068873, 0.0019928986879447002, 0.0024088805206067595, 0.001953351601880923, 0.002791694267532965, 0.0060856560918955286, 0.0013506386650976006, 0.006511328316597805, 0.0034589211837357113, 0.0037370983792588807, 0.003769596631060348, 0.004247100946913451, 0.007955660622425791, 0.0062995416400018055, 0.006707030424388, 0.009816961212632183, 0.01370955837145117, 0.01162954945622055, 0.003372824114873073, 0.014708737433800724, 0.01059691679996983, 0.008857323612512576, 0.01934210749436035, 0.008844816843510505, 0.021757970469678825, 0.01342823166174116, 0.010698752293850113, 0.011554634001082063, 0.007588438490075649, 0.015422428165805071, 0.008759721191662514, 0.013104273100776278, 0.006954335317157292, 0.00929501168900025, 0.008907521288897128, 0.008686362141332555, 0.005572317481133087, 0.006217340315468998, 0.009823453529818027, 0.002787290897616546, 0.002547567761095233, 0.0027461858049962038, 0.002794061602755623, 0.0028612450821319537, 0.003126765499099046, 0.0019782201355369664, 0.0006588536787521206, 0.0029351007992759965, 0.00113305600391685, 0.0032688563884037108, 0.0014459178522975623, 0.005001765062304271, 0.002449540175298316, 0.003144480915025504, 0.001150374797077739, 0.0006993116540828416, 0.0013439633061741714, 0.0009051644395876017, 0.0018043421944811738, 0.0033040342061704917, 0.010847247540606016, 0.010562890729463639, 0.04583534850698455, 0.0470026239690123, 0.04952342977856693, 0.11626995126469414, 0.13917352132830962, 0.2156326968537132, 0.2249130962032935, 0.16919529212698733, 0.35968710515117774, 0.2927958752536712, 0.3384525484096141, 0.3569889264309762, 0.4933913148343145, 0.6499644495583187, 0.49607514571174294, 0.5307224586900546, 0.6953762508261401, 0.5133459553405082, 0.4634814710528335, 0.29374237416614535, 0.41588822705589906, 0.2861945458164708, 0.3678108316442461, 0.3496796265801323, 0.3362435027519101, 0.27440343407258566, 0.21166583092927918, 0.2727222951022569, 0.2570042795872733, 0.24317768934582448, 0.18660471025891553, 0.2515365627696522, 0.16058290262430228, 0.21950258205193077, 0.1605266168821286, 0.1373614363097943, 0.13724803070300468, 0.11289301367671786, 0.0988849042478055, 0.09692489546330071, 0.07810613279571256, 0.06319072452430287, 0.06021982263474076, 0.06811771292122434, 0.04480524282937847, 0.029019944617039925, 0.052837370890168336, 0.056926249592714154, 0.04098348281755235, 0.04265939710232136, 0.047957432775315015, 0.043333636889250154, 0.024932374740986838, 0.02973701194999018, 0.03413246903067301, 0.02177846938129083, 0.022522109096079428, 0.026922479046208887, 0.025077928716691383, 0.028966271880147512, 0.005953773256909377, 0.009628308983894485, 0.024076051087661317, 0.009456536725580113, 0.012670278866553785, 0.013094355813643516, 0.02749726884487346, 0.01281513071484881, 0.022768728038871092, 0.011839692166637548, 0.021948780814886708, 0.010591975696073364, 0.011182887576776854, 0.008409224722082956, 0.01066247906875096, 0.006789837096029239, 0.004416228283924316, 0.007773784012934688, 0.005039449476098577, 0.0010607809194688438, 0.00958211387562704, 5.3772692709704064e-05, 0.0025364911546130794, 0.0015074335469204062, 0.0024437740144746664, 0.0016575925804387446, 0.0025787698149253887, 0.0004582849528708214, 0.0017013127563443695, 0.0012827114661868712, 0.0005816349181811764, 0.002526787370162924, 6.0883985410379156e-05, 0.003129844356526186, 0.00117955709208614, 0.0011323170542746233, 0.0003715420216923128, 0.0005067383550220122, 0.001315453664274505, 0.004842566092484131, 0.0012970669602510839, 3.064237254719193e-05, 0.0018817090333081887, 2.251026233793042e-05, 0.0010917448623081968, 0.0006820398675455754, 0.0008304714573204926, 0.0014033700466860226, 0.00021713848656148947, 0.000554992993270636, 0.0004333867975422299, 0.0004460070803509161, 0.0003337830657846124, 0.00038528734630314165, 3.018176186229561e-05, 0.0005131014876922196, 0.0005196874813654775, 0.0005571530662992684, 0.0008815320141662044, 0.0012589128826992633, 0.000549372106911187, 0.00038080222001571595, 0.0014402797824954517, 9.648472796476373e-05, 0.00022437884983964108, 0.0018284438555882733, 0.0018698484174571159, 0.0005265387747833804, 0.0003374422958868977, 7.012183279476947e-05, 0.0005131170050495479, 0.001539822830904512, 0.00013012425387452136, 0.001294316726340363, 0.0006251184697898082, 0.0002840383374058053, 0.0002083002101453994, 0.0009675463855278256, 8.369659429665833e-05, 0.0003218828189410948, 0.000594461844391883, 0.000469570370746915, 6.883845972504238e-05, 0.00014628462820621935, 0.0007374089763775356, 9.438933425282458e-05, 0.0017235052642719942, 0.0004038426388114705, 0.00025482926775454573, 0.0002461325448122845, 4.864425671147317e-05, 0.00470089241774641, 0.0024445257660987286, 0.00022203209904403322, 0.0004496840813951396, 0.0012706893669840956, 5.8502314092112464e-05, 0.0017054408759789733, 0.0004294388384677976, 0.000636361051412224, 0.0013365807523670178, 0.0007649104590778618, 0.001318207824572392, 0.0001093860656922033, 6.043327437183635e-05, 0.0005960382319115511, 0.00010111810129120184, 0.0010228566367901314, 7.731853088396107e-05, 0.0007199343555288654, 0.0005757610799659826, 0.002246735546790255, 0.0014006913816739122, 0.0004636418576301611, 0.0003326813904093467, 0.00022980004847813264, 0.0006232110654887368, 0.0031507768286779592, 0.0008733821621617804, 0.0013432074276291542, 0.0015148611092817262, 0.0005285796110392411, 4.001393709092778e-05, 0.000764304944598637, 0.0005029097299534804, 0.00011851584326815509, 0.0005973871760626185, 0.0019079408579493731, 0.0005913230838563144, 0.00030458299512121684, 0.0002544437735323938, 0.00021128328089868112, 6.723732085485727e-05, 0.0005758048722317092, 0.0017666341070808288, 0.0020885500259589067, 0.0015252907088690352, 6.400057484681385e-05, 0.0002557243799825255, 0.0002722334709547488, 0.0003758971803494884, 0.00025067778857786976, 0.0006205130401055961, 0.002176784423715032, 0.0003460736693338226, 2.6599954236817033e-05, 0.0006778371771996139, 5.245746427722053e-05, 0.0002886699563277512, 6.186744337478611e-05, 6.438428518864455e-05, 0.0001559789372314747, 0.00030915932551532686, 1.9790459651558615e-05, 0.00030550298458305607, 0.0002202894249077717, 0.0002750359640646092, 0.0012151450350873989, 1.675118570001115e-05, 9.696318174923505e-05, 0.00031333113465703094, 0.0002712507770883894, 9.455227684820082e-05, 0.0007527687965010657, 0.00039590964322412295, 0.00028221261478960974, 0.0002743251794054535, 0.0005467325967057191, 0.0002399640857556168, 0.00025618766425572205, 8.208487224993098e-06, 0.0001695970609227029, 0.001295410615915431, 0.000820818099949363, 0.0001619787144918994, 0.0005750443218858887, 0.00017599924448696616, 0.0002802223251578046, 6.468633060079274e-06, 0.0005841021736015141, 0.0008786735309707584, 0.0003658278952530416, 0.0003353897833470993, 0.00015940031362272818, 0.0003917446419544636, 0.00015289975894381845, 0.00015728621693885766, 0.00015640500192585968, 7.749626340015195e-06, 6.558897017680824e-05, 0.0005288597439089795, 0.0007761337757825026, 0.00018294088803258774, 0.00011506356188552877, 0.0003609852080945095, 0.00048440368406384626, 8.539614650767805e-05, 0.00014241391343745925, 0.00034706467040020796, 0.0006763804115149334, 0.0006331950412719738, 0.0022309827834488577, 0.00164591471635883, 0.0008312149671213516, 0.0005328876748980793, 0.0002611987946502789, 0.00025620620474093794, 0.00035971267906768206, 4.044949827524251e-05, 8.23979097043487e-05, 0.00019047175876188183, 0.0004304909108956799, 0.00018337358880512648, 0.000692159035663271, 0.00011812891337158468, 2.239302540335063e-05, 0.0001306432201332406, 0.00046211341069210267, 0.00013354403146676448, 0.0004942406922523005, 0.000655041654894158, 0.0007484141469568912, 0.0019791006870787833, 0.00035141051420491706, 0.0004979650920229618, 0.000250967404567492, 0.0003204944355964411, 0.0007638257563652769, 0.0016839180745431472, 0.0006666105889012076, 0.0007771368773253535, 0.0015088384464073215, 0.0024485647064108455, 0.0013514181034607298, 0.0006667804489477402, 0.0006339554044632307, 0.0017813669997390278, 0.000981882938632067, 0.000821094729414462, 1.1619494813217649e-05, 0.0006086009501126675, 0.00038315484037642543, 3.360798274604768e-05, 0.00012414860568330283, 0.0008057429873090994, 0.0002534597656512001, 0.0007155772812499045, 2.96333842750112e-05, 0.00012327094902165792, 0.0013333586357233216, 3.6373673401849405e-05, 0.00021025729062256894, 0.0002785090874440488, 0.00038851350150737344, 0.000894207143308147, 0.0002235760219482766, 0.0006722944814626395, 0.0012391786144847377, 0.0016990962428849634, 0.0017343349032016423, 0.00019453252955832384, 0.002248213531338737, 0.00015087720620414236, 0.00033622114566789923, 0.0006304616407455188, 0.0011165460484527541, 8.223043730704876e-05, 0.0004535538575914304, 0.0008601671387204021, 0.0021435127335422692, 0.0016800184239893182, 0.003161959632194616, 0.00023056077184937718, 0.0007502948389746201, 0.0015488352950400932, 0.0030239915237138737, 0.003305349367842579, 0.0018029800628814106, 0.0019408960117269646, 0.0013281391230169414, 0.0021920008636231577, 0.011898939044065207, 0.004861893023843453, 0.006839670561473271, 0.021898561281767343, 0.025595327627004512, 0.02494454242585753, 0.036827051344952004, 0.03949450995907163, 0.0319965950692877, 0.037856130682709134, 0.05568480246845397, 0.0666475185717152, 0.06510788517829014, 0.061280947636788145, 0.05704030818306247, 0.06389172853505093, 0.05300658319719572, 0.048408135559389505, 0.06699519451775474, 0.0742580508065844, 0.08223835869607958, 0.07063541451129716, 0.08405530256895317, 0.07608817985157033, 0.06075462669374397, 0.03624756404698834, 0.04504928804995866, 0.04777288050911215, 0.04833722892133733, 0.044406320020479256, 0.03151813625528785, 0.04371665315055372, 0.0202231601355755, 0.028954604252943033, 0.02923855980182168, 0.03219635690613998, 0.017257326124924526, 0.023586151121958443, 0.02789129818021418, 0.026135295262189846, 0.02378568429797303, 0.022764156767680448, 0.019122957992136733, 0.019859235445610367, 0.01790151753295588, 0.016788815159475383, 0.012470529596360554, 0.01312565983278196, 0.010888581096292465, 0.007191657206157867, 0.01113713265186367, 0.014585525286910525, 0.00496978153957437, 0.005938747633119432, 0.00836962552142962, 0.001952482695379419, 0.004576856997262741, 0.0055510461856602775, 0.005294728552287124, 0.0009521444080243939, 0.005106392476656737, 0.00451911152561182, 0.001442515623948096, 0.0042364992142410775, 0.0025681669454435813, 0.003931883554924581, 0.0032412445390602464, 0.0033209615582218905, 0.0016338171481392826, 0.001934678408894087, 0.0029918488144648134, 0.00045735601553031544, 0.0019262053098245547, 0.0007413201358975381, 0.0007441411670170894, 0.0003422922947958411, 0.001349878051092121, 0.0016992312125602375, 0.0006659994208998997, 0.0006029869526830708, 0.0009902302818117696, 0.0011894251417587163, 0.0007503366802962133, 0.0015567234557773803, 0.00020958487948134842, 0.0014895607579715909, 0.0013085755809408668, 0.00164807964602969, 0.000718039254407384, 0.0008343422469415558, 0.0007632817798699791, 0.0005246219698870829, 0.00025696243662678736, 0.00022545116286980252, 0.002554853144031243, 0.0006773835547267516, 3.814704105248331e-05, 0.0004406075710905388, 0.00037414022699450915, 4.8348274186593174e-05, 0.00061093730189078, 0.0004236523397250406, 0.0006640880082232326, 0.00036031259362000835, 0.0001960769177617331, 0.0004832854907488469, 0.001313474232605825, 8.222370087083831e-05, 0.000348553559887135, 0.0007691852086636946, 8.286938390447721e-05, 0.0007523919732160626, 0.0004732320929640148, 6.57881050246903e-05, 0.0003021415653042592, 0.0008619177207537708, 0.00014619112051566477, 0.00035167873057111686, 0.0001346488951176863, 0.000866095526959396, 0.000332356099197972, 0.0004942020181994111, 0.0005518164651778377, 0.00032219094374080526, 0.001711113760193633, 0.00042068981831037234, 0.0006377807451044262, 7.45749466092264e-05, 0.00029110786282026205, 8.698596783258309e-05, 0.00032400710813101555, 0.00036275171529285964, 0.0007973064988774081, 0.0029965586215046055, 0.0002205359910730677, 0.002135486222094539, 0.00040997144534621815, 0.0004160857771544541, 0.0015941030259224666, 0.0011777313971173603, 0.00028367470567142167, 0.00024044149009948268, 0.002047759677791177, 0.0006508466963639135, 0.00027455698910834375, 8.526125582884569e-05, 0.0007944068429894923, 0.0005813691294750989, 0.0011075297655294694, 0.0006857710011996499, 0.0006825161199609112, 0.00022447324019719792, 0.001619974873362028, 0.0006738598862959076, 0.0009283286277985491, 0.0010249955119931262, 0.000941495423886992, 3.3766266576392527e-05, 0.0002767306072808295, 0.00016730176371449414, 2.0993536304705097e-05, 0.0009187980709079927, 0.0005926520906811148, 0.00021009025365089704, 0.00013649209272741157, 0.0002876028405960458, 0.0006685001807532822, 0.0003262168124703521, 0.00014916578388648086, 0.0009175184739274462, 0.001595055491263691, 0.00013534195876409172, 0.00018812955024055246, 1.9284546206696694e-05, 0.00011870831214126614, 3.627652799935049e-06, 0.00014127492448822037, 0.00011127791688547116, 3.705341737016e-05, 6.20568965276589e-06, 0.0001339882467803442, 0.00025614486771348617, 0.0001437763515840442, 0.0006415984597883231, 0.0001318751123129277, 0.00012073102816720028, 0.00018298450191145244, 2.125098309986914e-05, 1.948155143774548e-05, 0.00012079463471075202, 0.0005676321008830852, 0.001855263398525105, 0.0003423624048551465, 6.036472112702366e-05, 0.00015891147540133462, 1.3219937873217958e-05, 0.00032350709740604943, 0.00021330886175400233, 0.0014542441595292918, 0.0001044080408380608, 0.0003105073341342344, 0.0009658287263965823, 0.0002308883392308867, 0.0007077394923177783, 0.000505942431755794, 0.0002681851786557008, 0.00012557922127674978, 0.0021685596357085913, 0.00023993981851664953, 0.00011532554960838177, 0.00027782246749607993, 0.0006589229657140414, 0.0002574413737149423, 0.00019361061214340675, 0.000668712025096772, 7.393064344902738e-05, 0.0003953019710156956, 0.00018441759253488957, 0.0009493406695527867, 0.0007948229337502841, 0.00044377506517755626, 0.0004484866910839519, 0.0001827494597487338, 2.282406086206355e-05, 3.128759908258698e-05, 0.00034267499887245876, 0.001013294979931792, 0.0003776528624498401, 0.00012131220384675251, 0.0005331195809944954, 0.0006547302589904993, 0.00025544010594583886, 4.050868395947635e-05, 0.00030166690582731357, 0.000377245347949496, 0.00037642607468370027, 0.0008939227197822982, 0.00027514052946430904, 8.312304955179552e-05, 7.583542366598346e-05, 1.0208787007446076e-05, 0.0001360442113107407, 0.00011473876601368198, 0.0003022069039850165, 0.00011649276692525924, 0.0004853495827525104, 0.0004098858801331924, 0.000449394378185486, 6.673858549453386e-06, 0.00020798866721382256, 0.0001729911426527307, 0.00028689706014036094, 0.0005281897701415652, 0.0011793224631324597, 0.00012792467358901314, 1.361378231681725e-05, 0.00047822578439571335, 0.00022165154876580716, 0.0002014189404551331, 0.0012208907068591674, 0.0013487319344079923, 0.00036542537895841755, 0.00010341675717216907, 0.0003789954744607178, 0.0002741000719309, 0.0007102896207773907, 0.0006355472075464599, 0.00106401045328999, 0.0005599970072670915, 0.00045654830205826315, 0.0002926173028949238, 0.00024317780930007739, 0.00012237264138118854, 0.0008477061723077636, 0.0007888938716435837, 0.0003211310553572054, 0.0003952239529677822, 0.0001715961360636472, 0.00040666909246232617, 3.893901394782334e-05, 0.0010124283745611173, 0.00029879583097689144, 0.00044641693750417503, 0.000862877646229455, 5.6845204474360724e-05, 0.00038957044931757945, 0.0008182170084142732, 0.00015062071219807234, 0.00015814457428598116, 0.0006498144389143427, 0.0005730489132405324, 0.0003278031262795543, 8.235801418117946e-05, 0.000493049286132415, 0.00011406048540362051, 0.00043115151578847536, 8.137408703097764e-05, 4.457439669071637e-05, 0.0003929490170039115, 5.3743116938575695e-05, 0.0005991362992053841, 6.670264559164925e-06, 0.00053160216550225, 9.672290355099035e-06, 0.00037239068773182955, 0.00017665351705694146, 0.00029169823687930893, 2.1775725675572158e-05, 7.428903097172614e-05, 0.00014688658943684709, 0.00013659728342770957, 0.00019156989048594247, 0.00024144177384101105, 2.63168715121754e-05, 0.0003975620153713091, 0.0001439959806013449, 6.352758919457443e-05, 0.0001476950836981617, 0.0011805776037886332, 4.35037919504301e-06, 0.00031817690990437465, 1.3276181918172086e-05, 0.00011568382236067329, 0.000350396298442358, 9.225454020890148e-05, 0.0002504926168618076, 0.00010555458015124145, 1.540446850663121e-05, 0.00015688127417043336, 1.1402332896512889e-05, 0.0001329442950309443, 0.00017612907843671694, 0.0005726177781773175, 0.00039827054148944887, 0.0009668401869661694, 0.00027418788142600153, 0.0003673143375732312, 0.0007395733460680494, 0.0011212479965866159, 0.002334483769026565, 0.0006837493229502414, 0.00038949160798783494, 0.0020601097713145488, 0.0007291795028870682, 8.002176822284287e-05, 0.002132922135565022, 0.003964298482644217, 0.0007342266065845635, 0.0002665319897309859, 0.0014561650467319587, 0.0023247912456103507, 0.00103582410447752, 0.000938305634955717, 0.0035785584494746406, 0.0033346235398972863, 0.0014083774393352916, 0.0005393527489451058, 0.00118652206777579, 0.007827568598303462, 0.00783582443583911, 0.0022608050597789794, 0.0038536481899642395, 0.007419706157076273, 0.006683056758548378, 0.005027381504871358, 0.007173715192059659, 0.005015420373246311, 0.00501504750016793, 0.006160061888940371, 0.009786472796534568, 0.00759249912973064, 0.008829728547386092, 0.007542474588441179, 0.0057594066534731505, 0.003939468730336865, 0.004819130899889544, 0.004204914711737605, 0.0036378405212280844, 0.003451303490048248, 0.0071270412514480574, 0.003530726812961788, 0.00599878593687756, 0.005198652389718404, 0.0029854121743601377, 0.0025737449788081055, 0.0035266608986234504, 0.0031673183642917076, 0.0032852988356252377, 0.0038799604492098746, 0.006124937316635954, 0.004198425500873273, 0.0041494512175075365, 0.00398662466914923, 0.003308612889803841, 0.008756523039390231, 0.004467196527191131, 0.001446855798988959, 0.001069485035245778, 0.002442804533088468, 0.00058989127397298, 0.0017977231079918813, 0.0007453910676110665, 0.0016906425535270218, 0.0007445906329083729, 0.0012611088898350387, 0.0011545528731142986, 0.0006609200812897631, 0.0005816062931024042, 0.00026151298539555274, 0.00027162404998585485, 0.0009360818291966578, 0.0001776248831963139, 0.0005999317473496528, 0.0009234219051603001, 0.0005516089842041294, 0.001549347939896904, 0.00037573627133312664, 0.0009243376932038212, 0.0007171557620567164, 0.0005658067178619855, 0.0003260891731418799, 0.0006611515799942607, 0.0003936249469988462, 0.0004343240407197715, 0.00023373638329840494, 0.0005408583768163069, 0.0003273235812206849, 0.0002984576996183893, 2.6528227024287882e-05, 0.000980530345300041, 0.0004096966374857467, 1.4298113199642727e-05, 0.0008006021354821032, 0.0002148314476616954, 0.00015274456816028392, 0.00046317464159165075, 0.00022731541455002773, 8.394004604389104e-05, 0.0001782115031108223, 0.0003346294793056537, 0.00010801905815300853, 0.00014200996158487107, 0.0002377898048452948, 3.1704039607034246e-05, 0.0003026186545912123, 0.0001786801685903523, 0.0003152085121142415, 0.0003878533683953927, 0.0001568145261530589, 4.8214037369408135e-05, 2.2036543508812897e-05, 0.0003596447739424699, 6.230694004635972e-06, 0.00017496402742898974, 0.00011838608588142026, 8.70026673554965e-05, 9.32193956758237e-05, 0.0005114958292884919, 0.00014627790903715994, 0.00010669390104575556, 6.969220513999699e-05, 5.762485035550935e-05, 0.00020602492766266732, 0.0007330777349222582, 0.0003817635265927823, 5.702477414924318e-05, 0.0001501985884647663, 0.00030572823265500053, 5.2321899188074276e-05, 0.00016881151180304858, 3.546097181413167e-05, 0.00017983728349332738, 7.983473436783933e-07, 4.794949080041924e-05, 0.0004871690276252186, 0.00025895781363705414, 1.5575642565220714e-05, 8.404143764923169e-05, 6.853985677801971e-05, 5.628101280938007e-06, 5.066350860784787e-05, 0.00014646763685623063, 9.814770337992878e-06, 0.0002548510168126428, 0.0005116307010196566, 0.0001205209593816465, 0.0003759382633351244, 0.0002611081602004603, 0.00017982476042988825, 6.561603149612207e-05, 0.0002409018990310329, 0.00041828514044392614, 9.985905147199701e-05, 2.0434356378576397e-05, 0.00012646889919489776, 2.6032740962574586e-05, 0.0001978928966596956, 0.000112757102803454, 0.00021080153108966087, 0.0004737649799094066, 0.00026649424770291866, 5.207276481814652e-05, 2.6527042420176802e-05, 0.00020302020296571115, 3.505546607256971e-05, 4.633777251112722e-06, 2.7366664548408915e-05, 0.00021599193483741276, 0.0007756418313369743, 0.000980002963707433, 0.0002437962597491486, 9.516368194855126e-05, 9.038535068804034e-05, 0.0004354469639882475, 0.00017167046710875878, 9.70378445933561e-06, 0.0006288866182118224, 3.1083718952604096e-05, 2.2648607738637763e-05, 7.292018735622541e-05, 0.00010593352882641142, 9.906299679062348e-05, 2.8751132889561205e-05, 2.5129668634869236e-05, 4.4009682194187816e-05, 0.000504604875659719, 0.00018698869559668002, 0.0002623320209501754, 3.9449607915885594e-05, 0.0001968532298120615, 0.0002026372030038336, 0.00014153897479777036, 0.0001870771879484299, 0.0005707614186096988, 0.0007047875459535972, 0.00047828110017770743, 6.15987087634956e-05, 0.0006615916883892805, 0.0005909169421874742, 0.00040747580571554064, 5.803878796334251e-05, 5.568487152028081e-05, 0.0002997139069591432, 0.0001391341324127712, 6.379916374802803e-05, 0.0001652379058409269, 0.00012519565894731873, 0.00026780227413556964, 0.0001999574350776351, 0.00012286989778258588, 0.0006526759489782029, 1.3178224404416978e-06, 0.00027214047805441813, 0.00011403178022401436, 6.888642402659784e-05, 3.331395557400414e-05, 0.00023226530067905625, 0.0002731585660850721, 7.31513894816995e-05, 0.0003321211298401296, 0.0004719995714523397, 0.00016731087262306443, 0.0001884088492989909, 0.00020717497475517238, 0.0003875051597809782, 4.87978823259505e-05, 4.394895490649891e-05, 0.00010038784310314688, 5.761893656770459e-05, 9.405107229584115e-05, 0.0001876325150821673, 0.0002504969962334417, 4.8028159359503026e-05, 0.0002863359799139818, 0.000271059593782654, 0.0003371319210065454, 1.5211890876826017e-05, 1.5356943597687027e-05, 4.1548591277775727e-05, 0.00012276316858842473, 0.00015873787600974862, 3.769938147768314e-05, 8.971813235905481e-05, 0.0001623852938723747, 0.00023905403760287645, 4.351669894807266e-05, 0.0003963783841618228, 1.70813883372889e-05, 6.188001691739211e-05, 4.6823055088218996e-05, 0.00015561173846477322, 9.733040515707135e-05, 0.0001612809473861566, 2.5508590158383073e-05, 5.212291974703463e-05, 4.64099009953534e-05, 0.0001389334149104728, 0.00046145630703465395, 0.0007649320713308513, 0.0004465227667060962, 0.0004907243114512458, 0.0005249599802365334, 8.740225076703289e-05, 7.026821762713573e-05, 6.876678871428037e-05, 0.0005301179210764092, 0.0010330189390240455, 0.00011862613812153339, 0.0014507806623652781, 0.000567413804017401, 0.0005015248522132951, 0.0003512774821415302, 0.00013789992161930458, 3.9889369511978135e-05, 4.1441466810540715e-05, 1.1108857429595936e-05, 4.8903533286433794e-05, 2.425012933103294e-05, 0.00018887533350746448, 0.00035646321818423734, 0.0007927730956396327, 3.173141454446529e-05, 4.3627694798991115e-05, 0.00019464744745208355, 0.00013676497469408274, 0.0002488405039462153, 0.00010708324138032182, 0.00042667613294790574, 5.9433227424225995e-05, 6.244706336813744e-06, 0.00010013025427566654, 3.199698383697089e-06, 0.0003383401335622155, 0.0002888968638808578, 6.903138700151536e-05, 1.0813834235010947e-05, 0.00023706194951226558, 0.000530012327530502, 0.000273445450923712, 0.0001759421315942847, 9.367725172199354e-05, 7.631655225057507e-05, 7.842498911412233e-05, 4.690024385263299e-05, 8.991296766653657e-05, 0.00013144309282697952, 0.00011310640370966232, 0.00026751609464037776, 8.332237204014547e-06, 7.048784001332374e-05, 0.00024617494116805256, 4.368969652797802e-05, 4.7651919539934914e-05, 2.35469942451296e-05, 0.0005340109857028363, 0.0005431649233215795, 2.210181043198335e-05, 3.571196663535766e-05, 0.00016024022210534063, 8.090975171178565e-05, 3.383465382161151e-05, 5.30079154577258e-05, 0.00022849076921051945, 0.0001788019990373462, 8.622454382717134e-05, 1.57403671383964e-05, 0.0001422029073683367, 8.855284310795182e-05, 0.0001004057460652373, 1.7548962615063866e-06, 0.0005599217726169197, 0.00033288210166218003, 2.8579236383205363e-05, 2.9364429382098194e-05, 8.09730575333029e-05, 2.2164321056832788e-05, 0.00010764794702899294, 0.00010651266659315966, 5.976099763267635e-05, 0.00011464937038123338, 6.526467229089669e-05, 0.00031649948582114577, 0.00035370100859700646, 0.00023919250522005806, 0.00012551432306003062, 0.00044804530559729665, 1.5090092165921186e-05, 0.0006822434383731731, 0.0003073999295608561, 9.654959293971542e-05, 0.00014827804610028863, 0.00014018166819766356, 0.0004720277919208297, 6.0409604816624454e-05, 0.0001702789453983724, 0.0006696913160047345, 5.279062556588126e-05, 0.0003967685275765471, 0.00013264879837383302, 0.0004429688953713822, 0.0002358106205788831, 0.00038790843784642975, 0.0008072862683952834, 0.0002588046464653272, 0.0010833182428922137, 0.0009112485209661765, 0.0006011823807806218, 0.0024754384520806988, 0.0009952621171011595, 0.0013562204943672054, 0.002656426582136552, 0.002066540948469964, 0.0028374076164346756, 0.0019325215853807866, 0.0029146823838281204, 0.0013732740010001427, 0.0018291011071878017, 0.0010160042525876173, 0.0005443761610676668, 0.0005274313447457964, 0.0008490369114597872, 0.0007596453300202017, 0.000432679804330823, 0.0010178502979509825, 0.0008104196586054406, 0.0021606744159069196, 0.000314359855805815, 0.001512374000132329, 0.0012171261782945209, 0.0017203110860442503, 0.001189146086874173, 0.0009750683120344286, 0.0006814032967755939, 0.0025451202943296324, 0.0006407096852254732, 0.001019511746846667, 0.0009754819669618544, 0.0017099954979832505, 0.0009090089365964834, 0.0010354879028993153, 0.0010233222668553368, 0.0004433155324999713, 0.0019223040870564939, 0.0004948890283418012, 0.001976772876112823, 0.0011787638792340562, 0.00038541085788442727, 0.000586711449571923, 0.0017665159528032698, 0.0004990572756526757, 0.0014907601058752613, 0.0005214940586254964, 0.0010481029056093427, 0.000464848886346547, 0.00045679959704409925, 6.604957803395e-05, 0.0001656253457045882, 8.219504587485786e-05, 0.00044241820282820197, 0.00024953173695580665, 0.0001240233539608494, 2.8088504274224797e-05, 0.00010432554325001516, 0.0006248120689535655, 0.00012080863059516098, 0.0008307126747252486, 0.0005888301338758425, 0.00020324642513862182, 0.000498233047510706, 5.716166400508712e-06, 0.0002839977868281637, 0.00017666213444537108, 0.0006100038076645627, 1.691876475417236e-05, 0.0003550105613051761, 0.0012019667098831588, 0.000413183844130836, 0.00018319060317519928, 2.9344865190661955e-05, 0.00033377641719574744, 4.0868061692390544e-05, 6.33917033546894e-05, 0.00027638731629674233, 0.00023010380705606006, 1.081377580659701e-05, 4.1702041723371375e-05, 0.00016045694632234827, 0.00017025547372353193, 0.0004197395077294212, 5.879474429135778e-07, 5.9680348365676785e-05, 0.0001406131835085103, 2.5938722185876752e-05, 2.3348829109329648e-05, 5.3495504055470494e-05, 9.346431851988108e-05, 0.0007021033163965354, 1.3591729801013573e-05, 0.00033721186837885534, 0.00023254991880632966, 9.261701856824805e-06, 0.0002117875259437745, 0.00021195664827132463, 5.371917469510276e-05, 4.312412388205623e-05, 1.1192548968447901e-05, 0.0006351019718837615, 2.8861789408834776e-05, 0.00013995434671601242, 0.00013720339228223466, 7.788453640550288e-05, 5.6704397764222145e-05, 0.00021827934352747365, 0.00011266046449405915, 0.00010563066688371438, 0.0002816892715963042, 9.18606858032696e-05, 9.056644370826594e-05, 0.0005514247766380375, 0.00033769632996830226, 2.158915440811055e-05, 0.00035377617633302607, 0.00037986371542245037, 0.00022486739666554694, 1.6162483513578817e-05, 6.061691306518593e-05, 0.0006007515794837368, 0.00014504270187317325, 7.533203796731788e-05, 0.00010722715813547235, 0.00011881570710844682, 0.0002634572572124938, 0.00033934957920374873, 0.00013630778344554968, 0.00014048006277367922, 0.000391940051359652, 1.8277942519529137e-05, 4.749307039905136e-05, 8.4275291202901e-06, 3.697158953392094e-05, 0.00012089964533361407, 5.2400779876201215e-05, 0.00028596466138764446, 0.00016555016753315766, 8.07323649503436e-06, 1.847608311486678e-05, 3.5496339335914125e-05, 0.00022025864421925187, 4.7446231374850776e-05, 3.883919074153781e-05, 0.00043733563721542893, 3.4974820941987296e-05, 0.0002816716640374185, 4.8369356785003164e-05, 0.00026614290129979535, 0.00035879851970814394, 0.00025366264418599034, 0.00011920614502182712, 0.00028499199316733836, 1.4323855137029433e-05, 3.2774753183041606e-05, 8.467196573378509e-05, 0.0001364012458665564, 0.000467495617137921, 0.00024515374571187817, 1.0409682154341873e-06, 0.0003649505405602148, 0.0002463263142076505, 0.0001818368461366828, 0.00017868726749215803, 0.0006421518101554027, 0.00034094995957921904, 0.00016733351845767879, 0.00021795182320629854, 4.0950420671721144e-05, 6.145991132780422e-05, 8.55658346595553e-06, 2.2585401887842173e-05, 3.652840347324638e-05, 4.2410031591515125e-05, 0.00019731559081671184, 0.00011170867655020074, 2.7164603959766052e-05, 0.00011781928787278174, 3.8288624714828314e-06, 8.986527974654751e-05, 0.00032806094909813106, 1.5273357252811966e-05, 8.542113881569049e-05, 1.6261564374516294e-05, 0.00010104163508096637, 6.603224020267166e-05, 4.418709395624492e-05, 6.60681191423845e-05, 2.0617583987962303e-05, 8.122077534529595e-05, 2.499503089117938e-05, 4.3312822194856884e-05, 0.0002626935313100031, 1.32980175470215e-05, 3.601991155037807e-05, 8.188576274293987e-05, 6.007126273716863e-05, 9.78743822913092e-05, 8.167861113166357e-05, 1.1511075089668949e-06, 0.00013967865200224, 0.00011584527489498935, 5.415428671691682e-06, 4.114446390716217e-06, 6.107295903655753e-05, 4.3322406646032077e-05, 1.0178684830542145e-05, 3.000810047382376e-06, 5.652577800151803e-05, 2.232535317214179e-05, 2.3465917569200084e-05, 0.00012797794707624649, 5.375070658329376e-05, 6.8161037812986e-05, 3.337420415024676e-05, 6.855635634506734e-05, 0.00011885487699015062, 0.00012871226583593536, 0.0001939862997261092, 1.052485714840089e-06, 4.297491281885535e-05, 0.00012633412509203843, 3.661514008466196e-05, 1.4630896267106066e-05, 0.00015646760560696367, 2.9276344179109714e-05, 2.6895650716168285e-05, 2.2074926659464036e-05, 2.1608779570538772e-05, 0.00023834080085008625, 0.00017413286522041814, 3.4002309714922644e-05, 0.0005733506025266291, 0.00019128203156490285, 0.00023534540978026842, 4.648631556440085e-05, 0.00030313767572710197, 0.0001712326711083649, 1.476239625421782e-05, 4.8583327967231144e-05, 8.395411168778255e-06, 0.00013387301058687216, 8.598589050711225e-05, 1.5438466948674046e-05, 0.00027473905259969367, 0.00010072826521176266, 8.951889164794057e-05, 2.1948984617015112e-05, 2.6674212662640372e-05, 0.00021593558065875014, 0.00018427664322845426, 8.364363657640224e-05, 0.00016760156370848738, 4.421018852315393e-07, 0.00013759597247466643, 9.611143459623768e-06, 0.00013418605658304593, 8.50153798879823e-05, 4.521477960569281e-05, 1.1463877640632347e-05, 7.147197806980109e-05, 7.986973938485996e-05, 2.0401501543724303e-05, 1.0432168924217887e-05, 4.2969353977497624e-05, 0.0001245246105606621, 4.662618297922361e-06, 4.2641083804971366e-05, 5.419860658458026e-05, 5.8046499857897606e-05, 0.0001151404670836132, 0.0003945031631164982, 9.619067920297522e-05, 5.642237404347557e-05, 0.0003864887972730286, 0.00014588685165803966, 5.178063529682579e-05, 0.00019386068324124374, 2.6334748802284066e-05, 6.507256567040408e-05, 0.0004366588612883934, 0.0002965061004603071, 0.00010066803556144935, 0.00013894405214164265, 9.228719073191138e-06, 0.0001626349617539769, 0.00019462081954575966, 9.10617739577149e-05, 0.00013975288846281014, 3.575028000768004e-05, 4.81153958405576e-05, 0.00031557271056853215, 0.00012000985165992861, 0.00011742081694903068, 9.538710435991757e-05, 3.156228189318191e-05, 1.706112636085419e-05, 4.3882330649472806e-05, 0.00029847504869277993, 5.699489922793399e-05, 0.00015387969870764547, 6.318778873548541e-06, 0.00013576773532195688, 3.177245007288221e-05, 8.453108372186453e-05, 4.622191406353434e-05, 7.6002974853352e-05, 2.4285236031644742e-05, 0.0003118838603551418, 0.0003588931542837171, 1.2801236972704367e-05, 5.793038693553152e-06, 8.096231166319746e-07, 0.000159646979288144, 0.00010826055356148536, 2.8830206505912024e-05, 0.0003900920225084543, 4.984972204899377e-05, 0.00010083160811159195, 0.0003092647528128384, 1.5064178596840985e-06, 7.606081641146743e-06, 0.00023454462399434496, 1.5870019523117124e-05, 0.00033017993174935725, 5.329362515361671e-05, 0.0006103687340406116, 6.531966588473577e-05, 0.00010680808699502103, 0.0005239353679019583, 0.0002599217795739094, 0.0006273508239782975, 0.0007721940953903612, 0.00037960575436148, 4.284388455514997e-05, 9.313929454067972e-05, 0.0010089908837660492, 0.0005540224529736008, 0.00042744933988162544, 0.000255225576639043, 0.0003155405916319871, 0.00021163882510878232, 0.0007339759986528062, 0.0008137133500750849, 0.0008577803847595316, 0.00172655242399236, 0.00038639108488562705, 0.0005930054535059412, 0.0003902559626653702, 0.0013903888624457825, 0.0010219161984551526, 0.0007122215510925435, 0.0008918833885404126, 0.0006121608547072453, 0.0020390784319186646, 0.0008724254863852468, 0.0016784961048634227, 0.0008342511118171731, 0.0013419966097129254, 0.0004516748683711222, 0.0009369443202190512, 0.0007746335669203245, 0.0005846072066857185, 0.0007325850034843027, 0.0005195342799309482, 0.00031748127482468606, 0.0010253365255779897, 0.0011460839583692052, 0.0004542564305742404, 0.0005414060559587148, 0.00039360447403072996, 0.0008010976934751627, 0.0002319073370936148, 0.0007008012726626589, 0.0005271287080333613, 0.00044447400983727074, 0.00021917738356902757, 5.2024863465337746e-05, 0.00015878550527572574, 0.00030534665762760495, 0.00026690035256611913, 0.0005771029365566039, 0.0005502980687250683, 0.00011744986416203848, 0.0004515696669533616, 4.667994443010737e-05, 7.734175572065672e-05, 8.073808647470424e-05, 3.157243792921951e-06, 0.00013251717363868155, 0.000347552591242016, 0.00016705205232793381, 0.00045344178735782744, 0.00045430871937489895, 0.00048565048621764624, 0.00012141334915958715, 0.0002465147216383928, 2.295065830076752e-06, 6.587080912275372e-05, 0.0005945440585386619, 1.7568958586211332e-05, 5.1008744237337784e-05, 7.6230924153216e-05, 5.865943048422285e-05, 7.294359034731569e-05, 5.903342076479721e-06, 9.975227230083489e-05, 8.026096675192017e-05, 0.000472090444459582, 0.00029062204508321487, 7.579242805533045e-05, 0.00015627085623225108, 5.202438171088659e-06, 0.00016668769366663455, 3.870856542422694e-05, 0.00041376435928353424, 5.0436326703240934e-05, 0.00019285666911073956, 5.3180097653687595e-06, 0.0001148970829613229, 2.906461705166158e-05, 2.1659540862434284e-05, 0.00015101880040716378, 2.4340323974995813e-06, 0.00010251410191767496, 0.00014641196049795463, 0.0002331601027382111, 8.902994120122231e-05, 0.00026066579256039805, 0.00011928712040681035, 7.156158149615381e-06, 0.0002765453077627861, 2.8246224111026896e-05, 0.0001856764242369302, 0.0003844837439701017, 4.841186299252408e-05, 4.031692280433684e-05, 0.00028172613461899574, 6.173732827297081e-05, 0.00027532381473279404, 2.6803494124544657e-05, 1.845532590108762e-05, 5.795829921440225e-05, 0.00015507008287165728, 1.4917501126261582e-05, 0.00012727468658467982, 0.00017623324200450902, 0.00011021357576274364, 7.033814270639862e-06, 0.00020573157876152155, 7.771192316149793e-05, 2.423009030294876e-05, 0.00012177016895141678, 0.00027107462028596555, 3.5585928829634387e-05, 1.9363240720756517e-05, 0.0002726867020787523, 8.4495830547274e-05, 5.087704853811198e-05, 3.276404838920866e-05, 4.366009346059136e-05, 0.00011945331144259049, 1.7517733893307052e-05, 3.9550795188436324e-05, 4.6819577573044154e-05, 2.885705556338063e-05, 4.252605637477511e-05, 8.043180355136963e-05, 0.0001297709754014078, 1.8515687199338017e-05, 9.070084285584e-05, 0.00012694040024490065, 7.3761827178586285e-06, 6.406109070313207e-05, 0.00013180545165778705, 0.00015818165024395573, 1.3333592777497028e-05, 8.735407866973444e-05, 0.00011817058859375199, 4.7050853352541433e-05, 0.00010708086934563728, 0.00016253582199132765, 0.0001790209660257443, 2.7884880765605966e-05, 0.00018893941723650135, 0.0005170281135788704, 9.736209830141382e-05, 0.00010298803298659068, 4.851834306949296e-06, 8.577121201589884e-05, 0.00029935323522868444, 3.860068801543767e-05, 0.0001444102403930701, 4.3675949434564074e-05, 3.236239599904656e-05, 5.322761538899385e-07, 1.8054072706567475e-05, 0.00013794885788167847, 3.551091256309241e-05, 0.00010019181318635959, 1.3286201530810036e-05, 8.5065540630874e-05, 0.0001535518434008013, 7.523804843460875e-05, 0.00018941850201809824, 0.0001216969410688432, 1.3064091212671653e-05, 0.00026087615219634635, 7.527802169738366e-05, 5.679314876243193e-05, 4.1316718586442075e-06, 4.6230393895109146e-05, 2.572865860758122e-05, 0.00012910788313686553, 2.4779322619886e-05, 9.998177064380622e-05, 9.32410066421231e-06, 6.72491359409743e-05, 3.5789698576830266e-05, 0.0001023778007254437, 0.00022944107190121425, 5.354790240190627e-05, 0.00045139106990213507, 0.00039824967874487664, 5.739756616921065e-06, 2.044631167431726e-05, 9.663146733578639e-05, 3.9540656900812166e-05, 5.416189514397571e-05, 9.089910662125071e-05, 5.420607295518447e-06, 0.00015020743470359484, 0.00011002988448981983, 1.5130338880625078e-05, 3.0886462935210404e-05, 0.00014303359048736212, 0.00016659294839319443, 4.316795174898799e-06, 0.00021112377953703696, 0.000353366254251337, 0.00017006173362696478, 0.0004067781749225427, 8.916551920625571e-05, 0.00048723126194829446, 8.69800356380844e-06, 0.0003791604088674938, 9.74931950853055e-05, 4.279653551445671e-05, 0.00035229446237287844, 0.0002559528826382535, 0.00021878868830982437, 5.368398511520215e-05, 5.223873285646129e-05, 8.454689296036243e-05, 4.163246318326523e-05, 1.95045824259228e-05, 2.6340421597174532e-05, 0.00016256262993961625, 0.00016376894196173125, 2.5650460812802935e-05, 0.00024733644137490116, 0.0003032466623590471, 0.0001706966804562148, 0.0006183046452823493, 0.0003952941271418233, 0.0006500253294678352, 7.568549127118066e-05, 0.00012133560314733654, 1.8339204522964057e-05, 4.227473325497923e-06, 0.00026994249364513753, 0.00013380058281764747, 2.517746198321404e-06, 3.4950089884924254e-05, 3.1086402068910805e-06, 6.742042039829914e-05, 4.901218296133617e-05, 2.2560031951484956e-05, 0.00023575219439561458, 0.00013518916082219039, 2.2211101505259316e-06, 1.1533506568834475e-05, 0.00026563164134121224, 1.4480788898611061e-05, 0.00013472779874247997, 9.898662053494417e-05, 3.792101897088533e-05, 1.4398622713815525e-05, 9.895487241015576e-05, 0.0001592004910346553, 0.0006040102410358149, 0.00015446058708648737, 3.7153988048820266e-05, 0.00018019724696907152, 7.73162096317231e-05, 5.427661931488138e-05, 0.00011836534888705002, 2.480856536302415e-05, 3.7316240906063855e-05, 0.0001620654650199479, 5.215567380114806e-06, 6.319861079996094e-05, 5.3748286952028546e-05, 0.00019577391579673784, 4.7079691054184736e-05, 6.562823832947995e-05, 4.2176732640500375e-05, 0.00014589640138038343, 0.000135568418661033, 0.00017796997056260033, 0.00018434992084479562, 3.568529079370177e-05, 0.00019830344607126393, 5.745342124070636e-05, 3.663359682896641e-05, 2.262125791148132e-05, 3.386382579316436e-05, 0.00012642589725904264, 0.00010794046402717889, 0.000100313205367649, 1.8153885194390915e-07, 2.3640091316658073e-05, 4.645876111529366e-05, 1.1653389980276018e-05, 7.421190966113937e-05, 3.967562816545265e-05, 0.00011730382656950908, 0.000192593586185619, 8.315273548373433e-05, 4.0352534022019716e-05, 1.2829723265135198e-05, 0.00023876337679647628, 1.8180857484189775e-05, 2.487423143720222e-05, 0.00013136943254845338, 1.0415833728813373e-05, 6.807716359736622e-05, 0.0002408279979716759, 0.0005018975528766269, 7.284543137121506e-05, 5.8222150967130696e-05, 3.883974476467934e-05, 1.830475641443787e-05, 2.1502481363990274e-06, 0.00013051971498171937, 0.00016600616939992766, 2.1324171769018698e-05, 0.0001928097456828384, 1.438423094119545e-05, 3.0318550272093442e-05, 1.2581892241168602e-06, 4.239422293025484e-05, 7.593497570874944e-05, 4.8852039851685604e-05, 8.17637726643313e-05, 0.00016341102425953435, 3.174956479122976e-05, 9.37047469997215e-05, 2.370221625541351e-06, 0.0001973975415187609, 0.00013763560692854607, 1.709289841414367e-05, 7.956547381974654e-05, 0.00010203551959590785, 2.0581635181930502e-05, 1.5257659560911654e-05, 0.00032069052434167484, 5.7896840069204496e-05, 0.00030439785061775725, 0.00028419694930943007, 0.000332735024517235, 3.241726577186695e-05, 0.0001046369577122699, 0.0001712842740749297, 0.000565513922369879, 0.0002690894273093891, 7.743251082834516e-05, 0.00017788630668044456, 2.2922032922311895e-05, 0.00018130771147625136, 2.063766327657512e-05, 0.00011105824830743824, 0.0003073984491647906, 1.9815384854473813e-05, 0.00014282258490883664, 0.00017335188519705853, 9.947759552710901e-05, 0.000896654394672566, 0.00044789800505675, 0.0006291345587621133, 0.000336640650452278, 0.0002720301554138572, 0.0006834939953012519, 0.0007152441041698333, 0.00011576340192039192, 0.00019551235450741334, 0.00015194879674949394, 0.0005401375709363578, 0.00027150807262081903, 0.0007212408410087023, 0.0002743036693734328, 0.00026711973270905084, 0.00013599999270813597, 0.0008075599220291836, 0.0012566927887902816, 0.0005808383230625063, 0.0003311999303551212, 0.00042814350716931747, 0.0008717251432457472, 0.00012963288164876096, 0.0009463559464010963, 0.00013184675381820946, 0.00022346423311006436, 0.00025074783795038996, 1.2896329295619708e-05, 0.0003089791955498942, 0.0003791399121128946, 2.5755524095745833e-05, 9.160079061725285e-05, 0.00012415691673206967, 0.00030501284120235654, 0.0005412170776651137, 0.00021385971268782515, 7.319984821724281e-05, 0.0003515630404798629, 0.00012717762233588125, 2.2781564777652855e-05, 0.0001491987213615023, 3.885143990571826e-05, 0.00019665221346790604, 0.00010554525274695673, 8.424779457074962e-05, 2.456799354131905e-05, 7.621580932662582e-05, 0.00044152340110411404, 6.109427868367907e-05, 7.221506936577006e-05, 9.433286164791768e-05, 0.0003019703656723284, 0.00029602565082504707, 0.0005090422558459876, 2.4303173189293985e-05, 0.0001246420795488596, 8.979668713814339e-05, 8.473299652637215e-05, 1.7860096601826905e-05, 0.00018927124136480601, 0.00042754151869907103, 6.259098449883671e-05, 4.7081275745258026e-05, 0.0002506538522077891, 0.00011183348174723063, 4.472821786884057e-05, 3.269441145904752e-06, 5.67028361529963e-05, 9.522704645086933e-05, 4.032555873608304e-05, 5.1921561646515855e-05, 4.45432860764468e-05, 0.0002472135287143763, 0.00025513127725708076, 2.272707953563725e-05, 4.4145192260062754e-05, 7.912788644225569e-05, 0.00010712637430659007, 8.092201560806353e-05, 0.00028486214616753417, 4.378806115090713e-05, 0.00026317772655813914, 4.602158160768762e-05, 5.015342480122934e-05, 9.327157557807199e-05, 0.00013441503079748173, 0.00016894577764206287, 3.7722411856795815e-05, 0.0002510178240835592, 0.0003091355848205971, 1.8726579405739153e-05, 1.832050865873307e-05, 6.147233742518645e-05, 0.0003565101240343565, 6.2789275056875e-05, 4.553191985851393e-05, 1.652224121906067e-05, 5.823224502807437e-07, 6.970206654330868e-05, 3.204546424028257e-05, 4.1948878673434e-05, 4.2883931862867025e-05, 0.00017038403562917812, 0.00019202744790925707, 7.899332715051506e-05, 4.326726040635217e-05, 0.0001021498711487234, 9.403083949307772e-05, 8.722807662884337e-05, 5.533578721236255e-06, 6.721859603962197e-05, 3.1821961685644664e-05, 0.00016366062912378146, 0.00019061884150247893, 9.319352680215375e-05, 8.89986390101984e-05, 0.00012063652815964626, 0.0002339901964897961, 0.00010314504388748496, 7.243978886457013e-05, 6.063725493420637e-05, 0.00010904603419958527, 3.803463061374592e-05, 5.239971546779646e-05, 3.981561988116174e-05, 5.5234946564119465e-05, 2.662328183457353e-05, 8.823190713237635e-05, 4.876095514242594e-05, 8.993307322225223e-05, 0.00015294515518220918, 2.5398817264160223e-05, 0.0002694107847009539, 1.5873115190034518e-05, 3.887430189041568e-05, 1.91004262912444e-06, 0.00015779931328317812, 3.829948161614023e-06, 9.885718810759277e-05, 8.272266849382358e-05, 2.079601035052836e-05, 0.00017959821000521574, 5.471220831767021e-05, 0.0002037533063701811, 0.0001491464546351754, 7.150709471286549e-05, 3.6777540232608857e-06, 8.781317733578606e-06, 9.07696144911098e-06, 5.458243038849055e-05, 8.716937569984055e-05, 0.00028541698892086233, 9.632551763238376e-05, 1.4173874653655114e-05, 4.3518484997486974e-05, 7.051282393235656e-05, 0.00010968049788917652, 0.0001851945584893208, 5.961389674227062e-05, 4.3384872013306625e-05, 0.00016132421832022636, 3.1315138682795825e-05, 0.00032660411325484065, 0.0003058491741733841, 0.00019982291188901113, 4.875746898528522e-05, 2.4729144031280202e-05, 7.042478915145767e-05, 0.00012096392920065304, 7.236102337930384e-05, 3.2906233278533385e-05, 0.00020579846835199758, 4.30983602208265e-05, 2.2772682316176126e-05, 4.376737948284274e-05, 8.354833637603836e-05, 0.00017359986613866313, 0.00013338035687995625, 1.8962914579114416e-05, 0.0001269799316166587, 6.657573294926994e-05, 0.00010719298217351862, 2.904578583646221e-05, 2.21356163852001e-05, 0.00010001358656005909, 3.349392386858471e-05, 0.00016675091077367836, 5.746328466317183e-05, 9.546148429833634e-05, 7.723434883247442e-05, 0.0001438049229366286, 8.536923358919271e-05, 6.9653267110790596e-06, 0.00035455030610898936, 0.0001584423366909454, 0.00010506939488384277, 0.0001655935138574606, 1.1961995517063839e-05, 6.663656455127833e-06, 9.643456709450844e-05, 2.5229989705694255e-05, 0.0001243450543817871, 6.244165666595614e-05, 0.00031145106560427865, 2.3103224717475733e-05, 5.155059223399547e-05, 0.0001032668225658023, 9.00476841716702e-05, 0.00010530315184775538, 4.50303373382842e-05, 2.3312354987786853e-05, 0.00014719933642075864, 0.00013079307084378936, 0.0004237332785293256, 7.615264736782875e-05, 2.8750066895637275e-05, 7.808354464035779e-05, 1.8088529642653117e-05, 6.339980091420615e-05, 4.733013150166761e-05, 9.78613958097945e-05, 5.516417316602268e-05, 0.00025546022945619124, 0.0002057755877038761, 7.959889998536111e-06, 0.00015215304765109198, 2.1283338746012922e-05, 5.401203914150021e-06, 3.808314052245816e-05, 9.336311536780776e-05, 2.2921859060371903e-07, 8.386900492695306e-05, 1.239221954921335e-05, 6.688965482460322e-05, 9.227103383900248e-05, 1.459184448624627e-05, 2.1703397545879963e-05, 2.1015984670678773e-05, 8.931334385083679e-05, 4.693854477476411e-05, 5.044307936864649e-05, 2.236430317337626e-05, 7.66731724467478e-05, 4.2672457877509116e-05, 6.175301018559412e-05, 5.8431748860096665e-05, 9.57717166790023e-05, 1.1602331870756318e-05, 7.607589767452343e-05, 0.00018267991274995913, 3.896212815384036e-05, 9.030343200515815e-05, 0.00010409601439833719, 0.00016334614662350842, 6.745637123449188e-05, 0.00017162940760082334, 8.47135894220615e-05, 0.00014920169346646707, 2.6076489946129794e-06, 0.00018910492914527176, 5.39986851145729e-05, 3.7728718309654516e-05, 1.8627798613205825e-05, 1.3990243563289198e-05, 2.0245262457481357e-05, 3.3161363520940295e-05, 4.971197378679432e-05, 9.712223294717659e-05, 1.5302119405792925e-05, 5.31926568075931e-05, 7.403614363266e-05, 3.214931565892503e-05, 3.1078333500676114e-05, 3.424699325469945e-05, 7.190613335537329e-05, 0.00011728422590073178, 3.69800110719131e-05, 7.37543320307855e-05, 1.641370252707856e-05, 3.956403123783943e-05, 2.156666864209931e-05, 3.068257210190439e-05, 0.00033988563656659317, 2.805368029372109e-05, 0.0001234269624950978, 2.6428004232828655e-05, 2.8627975515953436e-05, 5.079003090168423e-05, 0.00015060865154984732, 1.2928841166227224e-05, 0.00016725018543386195, 6.173591333910787e-05, 0.00010818825522453549, 2.9590558087699023e-05, 0.00020418997320277742, 0.00019475412778376865, 9.359805088100927e-06, 2.3825135738322347e-07, 1.3936032417603468e-05, 3.521858207173915e-05, 0.0001147228638629964, 8.123313820245936e-05, 0.0001214115576870062, 0.00017312471649716607, 9.712421530131057e-05, 0.00017288226262028065, 0.00028766391373739885, 0.0001406081047111053, 2.626523321310854e-05, 0.000195156737507203, 6.52462798401856e-05, 0.00011984801972353496, 2.731842153797498e-05, 0.0001382322870122422, 2.753368380398843e-05, 3.0324849763936642e-05, 7.775536255227148e-05, 3.7874909249167085e-05, 0.00021766948332292945, 3.867742006615689e-06, 0.0003940146508917393, 4.0126554263817516e-05, 0.0002597268587388033, 1.793058642202772e-05, 4.6881051524911176e-05, 2.7231251205816545e-05, 2.7416813034549705e-05, 6.457022006768182e-06, 1.0121475687888636e-05, 7.777920346531645e-06, 9.696982652316484e-06, 8.404241135070361e-06, 3.6786460729132454e-05, 5.089661292794594e-05, 7.179960376465347e-05, 3.459921298106831e-05, 2.583848018057004e-05, 6.0602761207716773e-05, 6.807110786260804e-05, 2.780062852108273e-05, 5.8962658224901744e-05, 0.0001536487358191441, 6.965236364017508e-05, 5.76730892657006e-05, 0.00023095775948326277, 6.901379240452818e-05, 2.0593593504021154e-05, 4.5591820745148464e-05, 2.818143372263017e-05, 0.00011410638318853003, 2.0511033808406657e-05, 6.603047215889656e-05, 7.624093188516955e-05, 7.306907502548172e-05, 0.00013126234341033244, 0.0002993764331899419, 0.00048309291643309344, 1.480010461938415e-05, 0.00016565996979679926, 0.00022659036337961032, 0.00013421531985471807, 0.00018217007589557772, 6.918240492137433e-05, 0.0007044006381728978, 0.0003121185424308699, 0.00011932653510589047, 0.00018585468855004969, 0.0003694481589149045, 2.976607717122199e-05, 0.0001514729498849972, 2.434690691393953e-05, 0.000389208142572412, 0.0003061593697941418, 3.291250814165346e-05, 8.032824277842919e-05, 0.00015635561931286244, 0.00011791644011214597, 2.4473877367359453e-05, 0.00011062191180044294, 0.00011875908838653643, 1.9539347258817896e-05, 7.979337827212143e-05, 0.00015010387921821032, 1.4161972191405153e-05, 0.00041119745796492946, 1.3186850316870598e-05, 0.00023716581571063536, 3.419577265788964e-05, 2.861468680565879e-05, 0.00010859823803730308, 0.00014654962938002964, 0.0001690527843892255, 8.691479952123108e-05, 1.6764215490106068e-06, 8.959645489964152e-05, 3.3163607527615726e-05, 3.531460488631954e-05, 0.00013937252159553648, 0.0002626397258747972, 3.46563550288047e-05, 2.217281975232224e-05, 2.1542939959433084e-05, 2.3952502493235092e-05, 1.4652911070073002e-06, 1.6514843700874188e-05, 1.2231231135854573e-05, 4.2264719818179116e-05, 0.00013637849515741213, 7.652713784256736e-05, 0.00010137430965585714, 2.4055891059922377e-05, 1.3154060543125514e-05, 4.7020245906924584e-05, 0.0004264227787229572, 0.00018704191766237611, 4.91870360286447e-05, 7.916242010756568e-05, 0.00010023791741310288, 0.00010266172040953641, 5.332403661702165e-05, 0.0001854544902323784, 9.244963528237127e-05, 0.00019136182082064724, 0.00021610531915396193, 0.00010863795195368813, 0.00010087764468599377, 0.00025271175498653485, 7.29962137010487e-05, 2.3560692943094474e-05, 3.485554518750357e-05, 0.0001255890424781155, 0.00010800412106475103, 9.358742807790554e-05, 0.00025105983975350527, 3.702174074837598e-05, 0.00020898311890120715, 0.00039032444207989065, 4.897343207129856e-05, 2.83344990247105e-05, 9.750998499727331e-05, 0.00011675962807714289, 8.867830248017328e-05, 5.3604962510457747e-05, 3.6823722223548574e-05, 6.833016620782871e-05, 0.00023016809601003046, 0.0002117442463406363, 4.1114821144469146e-05, 0.00016514132298481296, 7.420156799529281e-05, 2.7722620848696407e-05, 2.9255991029522176e-05, 3.577778765936605e-05, 0.0001663357660489412, 6.121538171235542e-05, 8.492635368761887e-06, 9.678611809272549e-05, 2.360417885029794e-05, 4.9237466513415974e-05, 0.000105952218982198, 2.1945840945105334e-05, 1.4418000012561692e-05, 0.0001413128276048593, 0.00010271227585396313, 1.0549421410996503e-05, 0.00011328453696000422, 1.5704533337117387e-05, 5.3160996534840676e-05, 0.00013797279391162366, 1.1511327332013715e-05, 2.3098819593415618e-05, 4.718188298390723e-05, 0.00036623874755644336, 6.073013570944368e-05, 0.00023342503020981503, 0.0003780448727936031, 7.79541878919286e-05, 2.5595675592701314e-05, 1.0010802846294214e-05, 3.995215794939779e-05, 0.00018671837629337897, 3.281198382270859e-05, 0.00011429940999448809, 0.00018572459433106409, 6.912282648667873e-05, 1.4539513236101631e-05, 1.0870159151563013e-05, 5.899904101186755e-05, 5.690058430394612e-05, 1.7916046105025758e-05, 0.00013886633252275927, 4.9601160092413354e-05, 2.3696106572418586e-06, 2.4859935196171233e-05, 2.0450334859874034e-05, 4.787181770777768e-05, 0.00012102983100784568, 9.442977631616119e-05, 7.851019246143277e-06, 2.4616586040295034e-05, 3.479987968535466e-05, 8.841960775995806e-05, 7.113579397949584e-05, 9.213233092927546e-05, 3.622903275195016e-05, 5.481393887804208e-05, 2.0058823462131186e-05, 2.2834918075692917e-05, 2.8345107964055296e-05, 3.6562409954999547e-05, 9.64105907102475e-05, 9.701912550740413e-05, 2.884240176903794e-05, 2.6499735162821188e-05, 8.089636629055521e-05, 0.0001559962945805252, 0.00016556391469318738, 7.500170372704175e-05, 2.9920096825121916e-06, 9.334197654150341e-06, 3.339252187911216e-05, 3.280587053097148e-06, 1.2759761263799005e-05, 6.991271331024536e-05, 5.617012008658377e-05, 6.026944690102811e-06, 0.0005435039996073216, 0.00010837963470139981, 0.00011174336023021448, 1.7713154090784208e-05, 0.00010034240194582537, 2.5494131226027274e-05, 1.3003559895215207e-05, 8.561158600821624e-05, 5.382946624232761e-06, 0.00026121090779748015, 0.00023718821239599968, 0.00015866612757612579, 5.963040822252327e-05, 5.254308469289919e-05, 0.00016167931936652386, 7.56299993634005e-06, 6.064345084304023e-06, 0.00010781183326431489, 4.5309678797518836e-06, 0.00016518244130702428, 2.8217120159269698e-05, 7.359025250994007e-05, 6.16947192195839e-05, 3.695694959140135e-05, 6.811305735197446e-05, 0.00011128785295344615, 3.7529766535040316e-05, 2.547419698344191e-05, 4.4863216053018004e-06, 1.0205745485881593e-05, 4.523379925092667e-05, 3.093707686340255e-05, 3.541297106746132e-05, 3.522595758470117e-05, 2.8059343151738053e-05, 6.492784325331125e-05, 8.412441019497335e-05, 9.211541793193672e-06, 0.00014232270448927604, 9.888750456660389e-05, 7.79711516912398e-05, 6.801411596140021e-05, 3.266469371602139e-05, 1.7844891257262972e-05, 5.881096916567092e-05, 8.367497676432598e-06, 2.120055826868362e-05, 6.399548255735044e-05, 3.579826749945745e-05, 5.628911940271356e-05, 1.9461341856954303e-05, 8.578562846915837e-05, 4.901568174047287e-05, 4.679015218179731e-05, 7.653807617023095e-05, 4.087219993464769e-06, 7.200884961895267e-05, 5.484390179281752e-05, 9.747170032189598e-05, 0.00017984358600684996, 7.258150285181076e-05, 0.0002828915713841154, 0.0001081504968209247, 1.8205825969371117e-06, 6.530043449192149e-05, 7.426086899845895e-05, 5.511403954738992e-05, 7.764437994896836e-05, 3.0034286998631675e-05, 1.2286528493210202e-05, 4.9633409335971e-06, 2.816042497777923e-05, 2.9929976543893558e-05, 2.8353451321101166e-05, 5.422804590652289e-05, 4.376948088188742e-05, 1.8058444907491015e-05, 3.01205539188754e-05, 0.0003096333840178397, 0.0002367049800152404, 7.709526657966907e-05, 0.00034581335675865467, 7.906292960975894e-06, 7.206875260272714e-05, 0.000211630289887627, 8.780628850673095e-05, 6.4774355283037e-05, 9.519076098015765e-05, 0.0002650349551806123, 3.771495382183008e-05, 0.00046467677246141164, 9.01889060038464e-05, 2.2339490033161873e-05, 3.2289600450460245e-06, 0.00010298553788825228, 8.840576410098845e-05, 5.334545266798829e-05, 4.368140071467632e-05, 8.530714543973579e-06, 3.569698142558327e-05, 9.976595492850505e-05, 1.2131793729830027e-05, 0.00039679670461197986, 1.4270573337264118e-05, 0.00023836079436535275, 4.388067143460463e-05, 5.0962120628201287e-05, 0.0004091183134601282, 9.9202414952293e-05, 7.740625989276155e-05, 7.1918532737460284e-06, 4.660490768126547e-05, 4.5329258202753834e-05, 3.3812684302868775e-06, 1.255590809923023e-05, 9.923054539284297e-05, 0.00026493508126055785, 0.0001957249649948597, 0.00035419017635463304, 0.00013103623791436037, 5.474421004194503e-05, 0.00010045324745096534, 9.686268439683084e-05, 3.1011776112881575e-05, 9.308217022592737e-06, 0.000125518581567627, 4.6521105903889584e-05, 2.8895206121120576e-05, 0.0001897866257649731, 2.9278667873537555e-05, 0.00014289515580770054, 7.592068548741483e-05, 2.298924745502012e-05, 8.15229482636804e-05, 0.00020385132889130577, 2.2869807793806056e-05, 0.00020195694225969826, 6.323494164145888e-05, 0.00012260441821812157, 4.469124793933312e-05, 1.549272477179056e-05, 1.7105451260312288e-06, 0.00012295935966787988, 0.00010675411414122432, 0.0006086855751035048, 0.0002643860809609788, 0.00010205567332605023, 0.0002156800852691263, 6.669210276955178e-05, 4.1669988737433104e-05, 2.1820595982609033e-05, 4.0356208334734383e-05, 2.350571931198504e-05, 4.952495018971993e-05, 0.00010531076385373946, 3.5112326766129887e-05, 2.1903592145455692e-05, 8.11729749356829e-05, 1.4207103902588515e-05, 3.606774420112513e-05, 0.00014289390903308945, 6.930976337898604e-05, 2.132247842531277e-05, 7.293889342827785e-05, 1.82235897520713e-05, 0.00012191410058770746, 6.662202542238882e-05, 5.6366749628020515e-05, 0.0002942402524218863, 0.0002531744374265374, 0.0001256494954065473, 8.752219628302e-05, 0.00024082688969049614, 5.3712782134545555e-05, 3.180370678646382e-05, 0.00011420577672289876, 0.00014661457593232024, 1.883427985680318e-05, 0.00048563465654359, 0.00033526981847696884, 5.482353141709858e-05, 5.520685633298858e-05, 3.254706133916128e-05, 8.422058128603514e-05, 1.3341040848300252e-05, 2.0730438335612954e-05, 7.517877995520493e-05, 0.00011387740286191742, 5.2137214894725094e-05, 0.000143965190394933, 3.92865217357376e-05, 0.00018394530531476238, 0.00020928380145870314, 3.92778591226762e-05, 0.00018611904170041357, 0.0002162561663468337, 2.4899531154524802e-05, 1.3079305306982933e-05, 5.656636121712679e-06, 8.034155442232795e-05, 0.00015610323240210623, 0.0002478638233795905, 8.672423494385477e-05, 0.00010088875730581097, 2.5864499692517427e-05, 0.00017061124221116766, 1.8862903158297204e-06, 0.00015004492699421777, 0.00010419385055210047, 4.910553454590573e-06, 6.683737035782727e-06, 5.4454722545245e-05, 3.534023814346788e-05, 8.678085507845546e-05, 9.206001196498085e-05, 0.0001560281799785282, 4.1055864079377324e-05, 5.20561221023851e-05, 6.273953455792386e-05, 4.50237343614513e-05, 1.4085662701863935e-05, 1.5691508648225718e-05, 3.9054698384258914e-05, 2.4579577348527127e-05, 7.815625262882236e-05, 6.727145171988219e-06, 9.731363663117929e-05, 0.00010181177472552689, 0.00011685798427098149, 1.3043267535502326e-05, 3.040804634094341e-05, 6.532368486811092e-05, 3.219858132481276e-05, 0.00010196421939891442, 0.0001153345662902828, 0.0001532504230182156, 0.00018599489594986937, 8.367404806971992e-05, 9.902869058718398e-05, 6.18063325519151e-06, 7.351659806549993e-07, 4.0922635750208004e-05, 1.5440511397165254e-05, 9.556909984096496e-05, 1.0135554252245364e-05, 0.00011436052988202645, 0.00011249152079169181, 0.00010803471691897106, 5.2942138235079656e-05, 1.7930276916425953e-05, 0.00017632390800382137, 4.232976090511507e-05, 1.724641877453176e-05, 4.4197400826582466e-05, 2.3923813534367414e-06, 6.386029462621308e-06, 9.991261372476949e-06, 8.019051651827635e-05, 7.706202682452629e-05, 0.00011268736500596068, 0.00011274655591952589, 6.966219402714851e-06, 1.4293819125843931e-05, 0.00017651816765043872, 1.155846029362758e-06, 1.3756812175461706e-05, 0.00034473264397806385, 3.491168294560641e-05, 0.0001764206235710224, 5.388945046540885e-05, 1.9710770982143097e-05, 6.055977029647242e-05, 3.8405820484085806e-05, 0.00019976580105641838, 5.116873718830021e-05, 6.603070136805928e-05, 6.063376283179288e-05, 1.9349195784155466e-05, 2.2133535496610853e-05, 2.3010759447942513e-05, 7.626613873306748e-06, 0.00011355632310579496, 9.164312216014134e-06, 0.0002789721595938309, 0.0004783072938636651, 2.400732897662946e-05, 1.1195845232031578e-05, 9.011209335949087e-05, 8.098192691093503e-05, 0.00012795039477743494, 3.507448096383487e-05, 0.00012514165839034016, 2.2304884545474507e-05, 3.3812819006047606e-05, 0.00011025390693396688, 0.00010464360498021606, 1.3068320779907624e-05, 0.0001911756422904468, 8.439376825395103e-05, 6.373390900532923e-05, 7.280302157626679e-05, 2.768199413615668e-05, 0.00011955503878028759, 1.045285300000538e-05, 8.019737251681638e-05, 0.00024817606317824217, 0.0002612002325255499, 5.348021848394809e-05, 4.307053779478024e-05, 3.655317214936236e-05, 0.00010232911726143986, 3.822564694527805e-05, 8.079300825371798e-05, 2.9401225540829355e-05, 9.338202793868288e-06, 1.656445327963146e-05, 4.779115883685139e-05, 5.1160127802935876e-05, 4.65251161754441e-05, 1.8923651914566433e-05, 9.281162902777891e-06, 9.902151907435633e-05, 4.201957371131137e-05, 6.369739368899809e-05, 5.5574478198361057e-05, 4.6893229676624744e-05, 0.00016417843787739562, 7.806149541703972e-06, 0.0001088450011523006, 9.440499708688666e-05, 7.08779890563952e-05, 4.734505270855874e-05, 0.000376015259985994, 1.9142263940829744e-05, 0.00010040511402624598, 5.324640807800678e-05, 5.645192447584044e-05, 3.9376131294340855e-05, 7.119044507470418e-07, 0.00016061816035251036, 8.714495463215092e-05, 5.494402960269697e-05, 0.00020295261081643091, 0.00010690412044426734, 7.083681486134066e-05, 2.449444056035875e-05, 2.2676554353844226e-05, 0.00010142136099278624, 3.7684767117274212e-06, 4.232695750346077e-05, 0.00021557537421562701, 0.00011397022207239419, 1.5519479747701138e-05, 5.1910461223214565e-05, 0.00018503616718832506, 8.785784796794133e-05, 0.00014929081623519155, 0.00010229833645063709, 3.4295997981729445e-05, 4.4929718033653954e-05, 1.7042223953433384e-08, 1.778974721530526e-05, 7.593279497353752e-05, 0.00015554529935508457, 0.00012663900737361388, 1.379786904063975e-05, 1.3389427759496032e-05, 0.00013722383804055412, 1.8148648701528715e-05, 3.146455473461481e-05, 2.371250284421437e-05, 0.00021692460255497945, 0.0001344304628298634, 5.7204311156614326e-05, 0.00045495104824882674, 0.00016194299203305088, 0.0001408823233919698, 8.635589238397636e-05, 1.825890411135377e-05, 8.215670669935954e-05, 0.00011254563669935128, 0.00010054876383161759, 0.00019840322068320895, 5.579529018234855e-05, 1.0886511850370567e-05, 8.62245935486314e-05, 0.00012021760203813444, 5.245191327808229e-05, 2.3842401004579795e-05, 6.023166933766232e-05, 3.477752863796368e-05, 3.4875400436126654e-05, 1.6496847594540404e-05, 5.8953115872482083e-05, 3.4909428144891536e-05, 4.6895415404424825e-05, 0.00014215771182201693, 4.5882508710411176e-05, 2.6350427883791035e-05, 0.0001094214832641409, 3.735040512217274e-05, 0.00026481328638925706, 0.00019685282618396135, 0.0001396680303033001, 2.2473213617661872e-05, 0.0001488325054726704, 7.130375967761708e-06, 0.00016166843777625227, 1.1485892608613943e-05, 0.00024429132866835457, 6.48578833175992e-06, 3.509725368522041e-05, 3.457952625933307e-05, 2.3869056299686377e-05, 0.00019671649201636853, 5.648334080505747e-06, 7.810808616481093e-05, 0.00011560393291123355, 6.919676227434783e-05, 2.1911296294282696e-05, 3.161141694666893e-05, 1.3763271591244247e-05, 8.325155730550186e-05, 1.0078898859227932e-05, 3.656525237209905e-05, 6.173375010900764e-05, 2.092935157607414e-05, 0.00020334887179650327, 5.750885189806147e-05, 6.748016621724424e-05, 6.091267234403471e-05, 7.74570761094491e-05, 4.214491082979916e-05, 0.00011629263048476005, 4.0350855539808646e-05, 0.00026763857028726885, 0.00011010196529834323, 3.098632894243143e-05, 3.6428187770750857e-05, 5.128700635588629e-05, 0.0002019207307090543, 0.00011031256721033312, 4.378382217669274e-05, 3.4823568470461915e-05, 8.619593851467286e-05, 2.3645259720898957e-05, 3.057628237455914e-05, 5.724242464435086e-05, 0.00013042262682110304, 7.179240552841332e-06, 3.466750445093071e-05, 1.9366973975162925e-05, 2.0253992250127397e-05, 7.2001046266522945e-06, 2.7596041572695788e-06, 6.262569076574941e-06, 0.00018677763289991708, 0.0003884929679827531, 0.00017911252443847424, 3.0360494796259728e-05, 0.0003883984901884444, 4.203290069486743e-05, 6.2423724882702e-06, 3.257724916128231e-05, 5.80746570169975e-05, 3.8463479747991436e-05, 0.00012577905151884362, 0.000375044715955481, 7.114338249257714e-05, 1.179161575134801e-05, 0.00016019340167228288, 1.1868675474601948e-05, 7.329922042742682e-05, 3.530332343386798e-05, 9.794885184267796e-05, 0.00018262642099379294, 0.0003275594374767558, 0.00025589783177314894, 6.334466514415993e-05, 0.00012720061746782926, 7.91657978623676e-05, 2.4640056692360304e-05, 4.914850184061637e-05, 5.9432428331865205e-05, 0.00016830460638373848, 5.473184411815979e-05, 0.0003233121376731431, 5.174234251903344e-05, 0.00012574556085162027, 2.7973331628284517e-05, 0.0001177177161184497, 0.00010896949904449004, 0.00020801422226781862, 7.067071925898503e-05, 0.00016440583204298134, 0.00013129234159614439, 7.240785770315912e-05, 2.5869885113210558e-05, 7.573068157582727e-05, 0.0001222012032534935, 2.218313570754097e-06, 5.5952887061152874e-05, 8.721754761319081e-05, 8.597634916281618e-06, 0.00011071454570233918, 5.537097014033915e-05, 5.645219738350858e-05, 0.00010063000292138536, 0.0004096467596097771, 1.0538569749991172e-05, 8.783215070809988e-05, 7.256429039834797e-06, 7.423421367709083e-05, 0.00036619527010154024, 6.159839936225379e-05, 4.9750616495064115e-05, 8.400166772129224e-05, 0.0001122258387683997, 0.00020319388077270624, 2.010383502730211e-06, 0.00013553065551690177, 0.0002976308359701117, 0.00012049217001222747, 2.1335169653151487e-05, 0.00011978974273847383, 0.0002445636584741533, 5.216445821776269e-05, 0.00017519011157644294, 7.445596449628223e-05, 6.073736317732821e-06, 0.00012293972064259543, 6.180537168399957e-05, 5.531947523347804e-05, 8.846776447210243e-05, 4.934965744349829e-06, 0.0001821259513983013, 9.43603449182261e-05, 8.773850150873042e-06, 3.81671234118527e-05, 7.539837545825024e-07, 3.806507044679838e-05, 0.00016173202572249785, 4.8623004684914266e-05, 0.00010024386701951962, 5.194224478523697e-05, 4.742232522764828e-06, 0.0001922076651461287, 0.000130250488898219, 0.00022859451308708986, 0.0001584982380425173, 9.589811985500055e-05, 3.0283921375161356e-05, 3.1914715851055977e-05, 0.00012707352849596588, 1.9173960997267936e-05, 6.088317490737184e-05, 9.477879520105745e-06, 2.7102540430427693e-05, 0.00010984688429861107, 5.234051480261971e-06, 7.919294821605008e-05, 1.6146078929228487e-05, 6.684491478942864e-06, 0.00010762584406221495, 4.300034875185256e-05, 2.2505999206014267e-06, 3.01683554174583e-05, 3.7879120320931086e-06, 7.242902859726652e-06, 0.0002741769358872306, 0.00043929076533443613, 2.1508349605228434e-06, 0.00016885864395808082, 0.00018581369646805015, 0.00010038228593315994, 0.0001452563047146004, 6.35572581406502e-05, 4.513851807545743e-05, 0.0001272961673266147, 1.037159407482932e-05, 0.00022233677520475852, 7.378713370128038e-05, 2.7696365877160485e-05, 0.00011940759479253279, 6.137422049666497e-05, 1.4658016815809913e-05, 0.00017316549694609967, 4.92300549880908e-05, 0.00010060851606234815, 6.597198181944619e-05, 9.932503846741467e-05, 0.00015254178800376626, 0.00011302740878951882, 6.273264865682134e-05, 2.0771409754498417e-05, 2.003722168890017e-05, 8.456442822943421e-05, 0.0001631745366773403, 3.7045955253149987e-06, 2.6028442921800767e-05, 4.788518483215058e-05, 7.098516824286002e-05, 1.8290520576488972e-05, 6.574688736351716e-05, 0.00010029503553406396, 3.9156889187068454e-05, 8.324391574213626e-05, 3.252572542660692e-05, 3.1589575085846645e-05, 6.402056119769755e-05, 0.00028570757178916377, 1.9729959992156475e-05, 2.951208182845614e-05, 0.00017115760075131432, 1.6653731189135682e-05, 8.998675382957384e-05, 0.00016713921503923733, 0.00015167927720093597, 0.00010186202040845067, 1.339701165819697e-05, 4.639285275496683e-05, 0.00017608581542894635, 4.2144459723201684e-06, 0.00010952627458565977, 3.0146679637168212e-05, 5.029913726435484e-05, 8.436170903778758e-05, 3.6041201165007127e-05, 1.9581093802331934e-05, 2.264695709881745e-05, 8.760884011201124e-05, 0.00016033166705585434, 6.30489388388682e-05, 5.78705791519548e-05, 1.590496682279353e-05, 4.516927041119094e-05, 0.0001520055285720871, 7.001448669944634e-05, 1.6383129559843975e-05, 6.9629419466018e-05, 2.879491646399209e-06, 0.00012532553192933863, 6.585062245228928e-06, 7.842807976438104e-05, 3.0172080371644017e-05, 3.185692078733429e-05, 3.570217769230902e-05, 2.049223273104081e-05, 0.00010569490648975046, 4.948209792587684e-05, 0.0001269273988414219, 0.00014305463666379792, 0.00014484387785189978, 0.0001275441554511874, 0.00011236748356970806, 9.454780423759289e-05, 4.345738252932491e-05, 7.160384039373522e-05, 0.000127357108774676, 6.264055302020931e-05, 1.0041739636171052e-05, 4.325472138985675e-05, 0.00014589563663758258, 4.841523073271497e-05, 7.178803333100095e-05, 0.00015385822699356716, 4.219598780918826e-05, 3.8670981491723386e-05, 2.117056299615963e-05, 5.909383548609517e-05, 9.558055211783939e-05, 0.00010598171962998348, 0.00012165901806459883, 4.575176668013048e-06, 8.321603481591987e-05, 0.00015628360160556778, 3.672705001761133e-05, 0.00023222551604590443, 0.00016304118178770186, 3.770519937559402e-05, 0.0003097075809397148, 0.00017969539980071462, 1.0988653125336302e-05, 5.25727522235203e-05, 3.058779465436434e-05, 4.076283333191153e-05, 6.552950464928088e-05, 3.4296887695737153e-05, 0.00013879145175811692, 3.2724993049626e-05, 0.0006439833416590198, 9.543775998376783e-05, 0.0002489258948887754, 0.00014597457687120014, 6.706333896289278e-06, 5.049843756053156e-05, 0.00011008916148635861, 1.7019251255561178e-05, 7.55504539357785e-05, 1.8820452459730465e-05, 1.0951228268009245e-05, 3.9497593938038466e-05, 0.0003970502510375172, 0.00019734417638724068, 2.141826416220655e-05, 1.747570522363828e-05, 4.771994403375216e-05, 1.5788948032850748e-06, 0.0003001258566806442, 0.0001737892294174214, 0.00017799075424762082, 0.0003032097121361679, 0.0001737993409205451, 6.562009391688593e-05, 4.62544159586491e-05, 6.880103205605159e-05, 0.00016839201521123086, 0.00024708983398188955, 7.044713003918043e-05, 0.000245635974930184, 8.943192055072018e-05, 0.00026059934690320313, 9.875939653652112e-05, 6.734245301004208e-05, 7.201732280823109e-05, 0.0001052358948121038, 9.411003066274817e-05, 1.06702881219519e-05, 0.0001659303832603736, 7.15747316888492e-05, 4.250114251472292e-05, 3.960378241102893e-05, 0.0005888930912104571, 6.579572042819245e-05, 9.86775328682026e-05, 0.00011014381901528214, 1.2129929543674614e-05, 0.00044835711131260673, 0.0005832830624643082, 0.00015265798250290553, 0.0001285446996711594, 4.427122937180726e-05, 0.0001469799795086619, 0.00017039896051572654, 0.00017937649590908902, 0.0001253454545393396, 2.1091118360839537e-05, 5.13692162412562e-06, 0.00013549812655521293, 9.653499164579505e-05, 0.00020995258072649859, 9.378685635335353e-05, 3.057015258676885e-06, 9.354694948391715e-05, 9.415523380859794e-06, 7.633813296450248e-06, 0.00020417988804820124, 6.705518215796887e-05, 0.0001247234956595245, 1.3481441603755383e-05, 0.0001115401243038445, 0.00014398332651455132, 2.2747237884271967e-05, 0.00020381631368541543, 0.00020101952743373157, 8.921342589817906e-05, 2.436817950202584e-05, 0.00033234777234863257, 4.489202903709171e-05, 1.3159635230003551e-05, 0.00025541424166248747, 5.755402154330156e-05, 5.5789548376419134e-05, 0.00017103050958850921, 9.85376647634814e-05, 3.3106348208086e-05, 0.00010900546701079923, 7.27005885951947e-05, 6.720533850961603e-05, 0.0001230401464141163, 0.00028978789180379635, 0.00020610181580139905, 0.00026891854603869244, 4.125349398481901e-05, 5.661881734734028e-06, 0.00036037448087100426, 5.286836961930679e-05, 0.00047151028820031774, 0.00016487326519106556, 0.00018439981729147638, 0.00023330512506948664, 6.381873306106376e-05, 6.41593307155542e-05, 3.6974851022199104e-05, 0.0003783474755511426, 3.686718682533171e-05, 9.228788209691742e-05, 0.00019597930686624684, 9.522308660538323e-05, 9.752870020109137e-06, 0.00017297062445230664, 3.11572610803734e-05, 0.00013793583063353152, 0.00018401960621391102, 8.230011859038915e-06, 0.00015110267674901207, 4.1539768335756336e-05, 0.00033962942056490407, 0.0001609871396652543], "type": "scatter", "x": [0, 0.048828125, 0.09765625, 0.14648438, 0.1953125, 0.24414062, 0.29296875, 0.34179688, 0.390625, 0.43945312, 0.48828125, 0.5371094, 0.5859375, 0.6347656, 0.68359375, 0.7324219, 0.78125, 0.8300781, 0.87890625, 0.9277344, 0.9765625, 1.0253906, 1.0742188, 1.1230469, 1.171875, 1.2207031, 1.2695312, 1.3183594, 1.3671875, 1.4160156, 1.4648438, 1.5136719, 1.5625, 1.6113281, 1.6601562, 1.7089844, 1.7578125, 1.8066406, 1.8554688, 1.9042969, 1.953125, 2.0019531, 2.0507812, 2.0996094, 2.1484375, 2.1972656, 2.2460938, 2.2949219, 2.34375, 2.3925781, 2.4414062, 2.4902344, 2.5390625, 2.5878906, 2.6367188, 2.6855469, 2.734375, 2.7832031, 2.8320312, 2.8808594, 2.9296875, 2.9785156, 3.0273438, 3.0761719, 3.125, 3.1738281, 3.2226562, 3.2714844, 3.3203125, 3.3691406, 3.4179688, 3.4667969, 3.515625, 3.5644531, 3.6132812, 3.6621094, 3.7109375, 3.7597656, 3.8085938, 3.8574219, 3.90625, 3.9550781, 4.0039062, 4.0527344, 4.1015625, 4.1503906, 4.1992188, 4.248047, 4.296875, 4.345703, 4.3945312, 4.4433594, 4.4921875, 4.5410156, 4.5898438, 4.638672, 4.6875, 4.736328, 4.7851562, 4.8339844, 4.8828125, 4.9316406, 4.9804688, 5.029297, 5.078125, 5.126953, 5.1757812, 5.2246094, 5.2734375, 5.3222656, 5.3710938, 5.419922, 5.46875, 5.517578, 5.5664062, 5.6152344, 5.6640625, 5.7128906, 5.7617188, 5.810547, 5.859375, 5.908203, 5.9570312, 6.0058594, 6.0546875, 6.1035156, 6.1523438, 6.201172, 6.25, 6.298828, 6.3476562, 6.3964844, 6.4453125, 6.4941406, 6.5429688, 6.591797, 6.640625, 6.689453, 6.7382812, 6.7871094, 6.8359375, 6.8847656, 6.9335938, 6.982422, 7.03125, 7.080078, 7.1289062, 7.1777344, 7.2265625, 7.2753906, 7.3242188, 7.373047, 7.421875, 7.470703, 7.5195312, 7.5683594, 7.6171875, 7.6660156, 7.7148438, 7.763672, 7.8125, 7.861328, 7.9101562, 7.9589844, 8.0078125, 8.056641, 8.105469, 8.154297, 8.203125, 8.251953, 8.300781, 8.349609, 8.3984375, 8.447266, 8.496094, 8.544922, 8.59375, 8.642578, 8.691406, 8.740234, 8.7890625, 8.837891, 8.886719, 8.935547, 8.984375, 9.033203, 9.082031, 9.130859, 9.1796875, 9.228516, 9.277344, 9.326172, 9.375, 9.423828, 9.472656, 9.521484, 9.5703125, 9.619141, 9.667969, 9.716797, 9.765625, 9.814453, 9.863281, 9.912109, 9.9609375, 10.009766, 10.058594, 10.107422, 10.15625, 10.205078, 10.253906, 10.302734, 10.3515625, 10.400391, 10.449219, 10.498047, 10.546875, 10.595703, 10.644531, 10.693359, 10.7421875, 10.791016, 10.839844, 10.888672, 10.9375, 10.986328, 11.035156, 11.083984, 11.1328125, 11.181641, 11.230469, 11.279297, 11.328125, 11.376953, 11.425781, 11.474609, 11.5234375, 11.572266, 11.621094, 11.669922, 11.71875, 11.767578, 11.816406, 11.865234, 11.9140625, 11.962891, 12.011719, 12.060547, 12.109375, 12.158203, 12.207031, 12.255859, 12.3046875, 12.353516, 12.402344, 12.451172, 12.5, 12.548828, 12.597656, 12.646484, 12.6953125, 12.744141, 12.792969, 12.841797, 12.890625, 12.939453, 12.988281, 13.037109, 13.0859375, 13.134766, 13.183594, 13.232422, 13.28125, 13.330078, 13.378906, 13.427734, 13.4765625, 13.525391, 13.574219, 13.623047, 13.671875, 13.720703, 13.769531, 13.818359, 13.8671875, 13.916016, 13.964844, 14.013672, 14.0625, 14.111328, 14.160156, 14.208984, 14.2578125, 14.306641, 14.355469, 14.404297, 14.453125, 14.501953, 14.550781, 14.599609, 14.6484375, 14.697266, 14.746094, 14.794922, 14.84375, 14.892578, 14.941406, 14.990234, 15.0390625, 15.087891, 15.136719, 15.185547, 15.234375, 15.283203, 15.332031, 15.380859, 15.4296875, 15.478516, 15.527344, 15.576172, 15.625, 15.673828, 15.722656, 15.771484, 15.8203125, 15.869141, 15.917969, 15.966797, 16.015625, 16.064453, 16.113281, 16.16211, 16.210938, 16.259766, 16.308594, 16.357422, 16.40625, 16.455078, 16.503906, 16.552734, 16.601562, 16.65039, 16.699219, 16.748047, 16.796875, 16.845703, 16.894531, 16.94336, 16.992188, 17.041016, 17.089844, 17.138672, 17.1875, 17.236328, 17.285156, 17.333984, 17.382812, 17.43164, 17.480469, 17.529297, 17.578125, 17.626953, 17.675781, 17.72461, 17.773438, 17.822266, 17.871094, 17.919922, 17.96875, 18.017578, 18.066406, 18.115234, 18.164062, 18.21289, 18.261719, 18.310547, 18.359375, 18.408203, 18.457031, 18.50586, 18.554688, 18.603516, 18.652344, 18.701172, 18.75, 18.798828, 18.847656, 18.896484, 18.945312, 18.99414, 19.042969, 19.091797, 19.140625, 19.189453, 19.238281, 19.28711, 19.335938, 19.384766, 19.433594, 19.482422, 19.53125, 19.580078, 19.628906, 19.677734, 19.726562, 19.77539, 19.824219, 19.873047, 19.921875, 19.970703, 20.019531, 20.06836, 20.117188, 20.166016, 20.214844, 20.263672, 20.3125, 20.361328, 20.410156, 20.458984, 20.507812, 20.55664, 20.605469, 20.654297, 20.703125, 20.751953, 20.800781, 20.84961, 20.898438, 20.947266, 20.996094, 21.044922, 21.09375, 21.142578, 21.191406, 21.240234, 21.289062, 21.33789, 21.386719, 21.435547, 21.484375, 21.533203, 21.582031, 21.63086, 21.679688, 21.728516, 21.777344, 21.826172, 21.875, 21.923828, 21.972656, 22.021484, 22.070312, 22.11914, 22.167969, 22.216797, 22.265625, 22.314453, 22.363281, 22.41211, 22.460938, 22.509766, 22.558594, 22.607422, 22.65625, 22.705078, 22.753906, 22.802734, 22.851562, 22.90039, 22.949219, 22.998047, 23.046875, 23.095703, 23.144531, 23.19336, 23.242188, 23.291016, 23.339844, 23.388672, 23.4375, 23.486328, 23.535156, 23.583984, 23.632812, 23.68164, 23.730469, 23.779297, 23.828125, 23.876953, 23.925781, 23.97461, 24.023438, 24.072266, 24.121094, 24.169922, 24.21875, 24.267578, 24.316406, 24.365234, 24.414062, 24.46289, 24.511719, 24.560547, 24.609375, 24.658203, 24.707031, 24.75586, 24.804688, 24.853516, 24.902344, 24.951172, 25, 25.048828, 25.097656, 25.146484, 25.195312, 25.24414, 25.292969, 25.341797, 25.390625, 25.439453, 25.488281, 25.53711, 25.585938, 25.634766, 25.683594, 25.732422, 25.78125, 25.830078, 25.878906, 25.927734, 25.976562, 26.02539, 26.074219, 26.123047, 26.171875, 26.220703, 26.269531, 26.31836, 26.367188, 26.416016, 26.464844, 26.513672, 26.5625, 26.611328, 26.660156, 26.708984, 26.757812, 26.80664, 26.855469, 26.904297, 26.953125, 27.001953, 27.050781, 27.09961, 27.148438, 27.197266, 27.246094, 27.294922, 27.34375, 27.392578, 27.441406, 27.490234, 27.539062, 27.58789, 27.636719, 27.685547, 27.734375, 27.783203, 27.832031, 27.88086, 27.929688, 27.978516, 28.027344, 28.076172, 28.125, 28.173828, 28.222656, 28.271484, 28.320312, 28.36914, 28.417969, 28.466797, 28.515625, 28.564453, 28.613281, 28.66211, 28.710938, 28.759766, 28.808594, 28.857422, 28.90625, 28.955078, 29.003906, 29.052734, 29.101562, 29.15039, 29.199219, 29.248047, 29.296875, 29.345703, 29.394531, 29.44336, 29.492188, 29.541016, 29.589844, 29.638672, 29.6875, 29.736328, 29.785156, 29.833984, 29.882812, 29.93164, 29.980469, 30.029297, 30.078125, 30.126953, 30.175781, 30.22461, 30.273438, 30.322266, 30.371094, 30.419922, 30.46875, 30.517578, 30.566406, 30.615234, 30.664062, 30.71289, 30.761719, 30.810547, 30.859375, 30.908203, 30.957031, 31.00586, 31.054688, 31.103516, 31.152344, 31.201172, 31.25, 31.298828, 31.347656, 31.396484, 31.445312, 31.49414, 31.542969, 31.591797, 31.640625, 31.689453, 31.738281, 31.78711, 31.835938, 31.884766, 31.933594, 31.982422, 32.03125, 32.08008, 32.128906, 32.177734, 32.226562, 32.27539, 32.32422, 32.373047, 32.421875, 32.470703, 32.51953, 32.56836, 32.617188, 32.666016, 32.714844, 32.76367, 32.8125, 32.86133, 32.910156, 32.958984, 33.007812, 33.05664, 33.10547, 33.154297, 33.203125, 33.251953, 33.30078, 33.34961, 33.398438, 33.447266, 33.496094, 33.54492, 33.59375, 33.64258, 33.691406, 33.740234, 33.789062, 33.83789, 33.88672, 33.935547, 33.984375, 34.033203, 34.08203, 34.13086, 34.179688, 34.228516, 34.277344, 34.32617, 34.375, 34.42383, 34.472656, 34.521484, 34.570312, 34.61914, 34.66797, 34.716797, 34.765625, 34.814453, 34.86328, 34.91211, 34.960938, 35.009766, 35.058594, 35.10742, 35.15625, 35.20508, 35.253906, 35.302734, 35.351562, 35.40039, 35.44922, 35.498047, 35.546875, 35.595703, 35.64453, 35.69336, 35.742188, 35.791016, 35.839844, 35.88867, 35.9375, 35.98633, 36.035156, 36.083984, 36.132812, 36.18164, 36.23047, 36.279297, 36.328125, 36.376953, 36.42578, 36.47461, 36.523438, 36.572266, 36.621094, 36.66992, 36.71875, 36.76758, 36.816406, 36.865234, 36.914062, 36.96289, 37.01172, 37.060547, 37.109375, 37.158203, 37.20703, 37.25586, 37.304688, 37.353516, 37.402344, 37.45117, 37.5, 37.54883, 37.597656, 37.646484, 37.695312, 37.74414, 37.79297, 37.841797, 37.890625, 37.939453, 37.98828, 38.03711, 38.085938, 38.134766, 38.183594, 38.23242, 38.28125, 38.33008, 38.378906, 38.427734, 38.476562, 38.52539, 38.57422, 38.623047, 38.671875, 38.720703, 38.76953, 38.81836, 38.867188, 38.916016, 38.964844, 39.01367, 39.0625, 39.11133, 39.160156, 39.208984, 39.257812, 39.30664, 39.35547, 39.404297, 39.453125, 39.501953, 39.55078, 39.59961, 39.648438, 39.697266, 39.746094, 39.79492, 39.84375, 39.89258, 39.941406, 39.990234, 40.039062, 40.08789, 40.13672, 40.185547, 40.234375, 40.283203, 40.33203, 40.38086, 40.429688, 40.478516, 40.527344, 40.57617, 40.625, 40.67383, 40.722656, 40.771484, 40.820312, 40.86914, 40.91797, 40.966797, 41.015625, 41.064453, 41.11328, 41.16211, 41.210938, 41.259766, 41.308594, 41.35742, 41.40625, 41.45508, 41.503906, 41.552734, 41.601562, 41.65039, 41.69922, 41.748047, 41.796875, 41.845703, 41.89453, 41.94336, 41.992188, 42.041016, 42.089844, 42.13867, 42.1875, 42.23633, 42.285156, 42.333984, 42.382812, 42.43164, 42.48047, 42.529297, 42.578125, 42.626953, 42.67578, 42.72461, 42.773438, 42.822266, 42.871094, 42.91992, 42.96875, 43.01758, 43.066406, 43.115234, 43.164062, 43.21289, 43.26172, 43.310547, 43.359375, 43.408203, 43.45703, 43.50586, 43.554688, 43.603516, 43.652344, 43.70117, 43.75, 43.79883, 43.847656, 43.896484, 43.945312, 43.99414, 44.04297, 44.091797, 44.140625, 44.189453, 44.23828, 44.28711, 44.335938, 44.384766, 44.433594, 44.48242, 44.53125, 44.58008, 44.628906, 44.677734, 44.726562, 44.77539, 44.82422, 44.873047, 44.921875, 44.970703, 45.01953, 45.06836, 45.117188, 45.166016, 45.214844, 45.26367, 45.3125, 45.36133, 45.410156, 45.458984, 45.507812, 45.55664, 45.60547, 45.654297, 45.703125, 45.751953, 45.80078, 45.84961, 45.898438, 45.947266, 45.996094, 46.04492, 46.09375, 46.14258, 46.191406, 46.240234, 46.289062, 46.33789, 46.38672, 46.435547, 46.484375, 46.533203, 46.58203, 46.63086, 46.679688, 46.728516, 46.777344, 46.82617, 46.875, 46.92383, 46.972656, 47.021484, 47.070312, 47.11914, 47.16797, 47.216797, 47.265625, 47.314453, 47.36328, 47.41211, 47.460938, 47.509766, 47.558594, 47.60742, 47.65625, 47.70508, 47.753906, 47.802734, 47.851562, 47.90039, 47.94922, 47.998047, 48.046875, 48.095703, 48.14453, 48.19336, 48.242188, 48.291016, 48.339844, 48.38867, 48.4375, 48.48633, 48.535156, 48.583984, 48.632812, 48.68164, 48.73047, 48.779297, 48.828125, 48.876953, 48.92578, 48.97461, 49.023438, 49.072266, 49.121094, 49.16992, 49.21875, 49.26758, 49.316406, 49.365234, 49.414062, 49.46289, 49.51172, 49.560547, 49.609375, 49.658203, 49.70703, 49.75586, 49.804688, 49.853516, 49.902344, 49.95117, 50, 50.04883, 50.097656, 50.146484, 50.195312, 50.24414, 50.29297, 50.341797, 50.390625, 50.439453, 50.48828, 50.53711, 50.585938, 50.634766, 50.683594, 50.73242, 50.78125, 50.83008, 50.878906, 50.927734, 50.976562, 51.02539, 51.07422, 51.123047, 51.171875, 51.220703, 51.26953, 51.31836, 51.367188, 51.416016, 51.464844, 51.51367, 51.5625, 51.61133, 51.660156, 51.708984, 51.757812, 51.80664, 51.85547, 51.904297, 51.953125, 52.001953, 52.05078, 52.09961, 52.148438, 52.197266, 52.246094, 52.29492, 52.34375, 52.39258, 52.441406, 52.490234, 52.539062, 52.58789, 52.63672, 52.685547, 52.734375, 52.783203, 52.83203, 52.88086, 52.929688, 52.978516, 53.027344, 53.07617, 53.125, 53.17383, 53.222656, 53.271484, 53.320312, 53.36914, 53.41797, 53.466797, 53.515625, 53.564453, 53.61328, 53.66211, 53.710938, 53.759766, 53.808594, 53.85742, 53.90625, 53.95508, 54.003906, 54.052734, 54.101562, 54.15039, 54.19922, 54.248047, 54.296875, 54.345703, 54.39453, 54.44336, 54.492188, 54.541016, 54.589844, 54.63867, 54.6875, 54.73633, 54.785156, 54.833984, 54.882812, 54.93164, 54.98047, 55.029297, 55.078125, 55.126953, 55.17578, 55.22461, 55.273438, 55.322266, 55.371094, 55.41992, 55.46875, 55.51758, 55.566406, 55.615234, 55.664062, 55.71289, 55.76172, 55.810547, 55.859375, 55.908203, 55.95703, 56.00586, 56.054688, 56.103516, 56.152344, 56.20117, 56.25, 56.29883, 56.347656, 56.396484, 56.445312, 56.49414, 56.54297, 56.591797, 56.640625, 56.689453, 56.73828, 56.78711, 56.835938, 56.884766, 56.933594, 56.98242, 57.03125, 57.08008, 57.128906, 57.177734, 57.226562, 57.27539, 57.32422, 57.373047, 57.421875, 57.470703, 57.51953, 57.56836, 57.617188, 57.666016, 57.714844, 57.76367, 57.8125, 57.86133, 57.910156, 57.958984, 58.007812, 58.05664, 58.10547, 58.154297, 58.203125, 58.251953, 58.30078, 58.34961, 58.398438, 58.447266, 58.496094, 58.54492, 58.59375, 58.64258, 58.691406, 58.740234, 58.789062, 58.83789, 58.88672, 58.935547, 58.984375, 59.033203, 59.08203, 59.13086, 59.179688, 59.228516, 59.277344, 59.32617, 59.375, 59.42383, 59.472656, 59.521484, 59.570312, 59.61914, 59.66797, 59.716797, 59.765625, 59.814453, 59.86328, 59.91211, 59.960938, 60.009766, 60.058594, 60.10742, 60.15625, 60.20508, 60.253906, 60.302734, 60.351562, 60.40039, 60.44922, 60.498047, 60.546875, 60.595703, 60.64453, 60.69336, 60.742188, 60.791016, 60.839844, 60.88867, 60.9375, 60.98633, 61.035156, 61.083984, 61.132812, 61.18164, 61.23047, 61.279297, 61.328125, 61.376953, 61.42578, 61.47461, 61.523438, 61.572266, 61.621094, 61.66992, 61.71875, 61.76758, 61.816406, 61.865234, 61.914062, 61.96289, 62.01172, 62.060547, 62.109375, 62.158203, 62.20703, 62.25586, 62.304688, 62.353516, 62.402344, 62.45117, 62.5, 62.54883, 62.597656, 62.646484, 62.695312, 62.74414, 62.79297, 62.841797, 62.890625, 62.939453, 62.98828, 63.03711, 63.085938, 63.134766, 63.183594, 63.23242, 63.28125, 63.33008, 63.378906, 63.427734, 63.476562, 63.52539, 63.57422, 63.623047, 63.671875, 63.720703, 63.76953, 63.81836, 63.867188, 63.916016, 63.964844, 64.01367, 64.0625, 64.11133, 64.16016, 64.208984, 64.25781, 64.30664, 64.35547, 64.4043, 64.453125, 64.50195, 64.55078, 64.59961, 64.64844, 64.697266, 64.74609, 64.79492, 64.84375, 64.89258, 64.94141, 64.990234, 65.03906, 65.08789, 65.13672, 65.18555, 65.234375, 65.2832, 65.33203, 65.38086, 65.42969, 65.478516, 65.52734, 65.57617, 65.625, 65.67383, 65.72266, 65.771484, 65.82031, 65.86914, 65.91797, 65.9668, 66.015625, 66.06445, 66.11328, 66.16211, 66.21094, 66.259766, 66.30859, 66.35742, 66.40625, 66.45508, 66.50391, 66.552734, 66.60156, 66.65039, 66.69922, 66.74805, 66.796875, 66.8457, 66.89453, 66.94336, 66.99219, 67.041016, 67.08984, 67.13867, 67.1875, 67.23633, 67.28516, 67.333984, 67.38281, 67.43164, 67.48047, 67.5293, 67.578125, 67.62695, 67.67578, 67.72461, 67.77344, 67.822266, 67.87109, 67.91992, 67.96875, 68.01758, 68.06641, 68.115234, 68.16406, 68.21289, 68.26172, 68.31055, 68.359375, 68.4082, 68.45703, 68.50586, 68.55469, 68.603516, 68.65234, 68.70117, 68.75, 68.79883, 68.84766, 68.896484, 68.94531, 68.99414, 69.04297, 69.0918, 69.140625, 69.18945, 69.23828, 69.28711, 69.33594, 69.384766, 69.43359, 69.48242, 69.53125, 69.58008, 69.62891, 69.677734, 69.72656, 69.77539, 69.82422, 69.87305, 69.921875, 69.9707, 70.01953, 70.06836, 70.11719, 70.166016, 70.21484, 70.26367, 70.3125, 70.36133, 70.41016, 70.458984, 70.50781, 70.55664, 70.60547, 70.6543, 70.703125, 70.75195, 70.80078, 70.84961, 70.89844, 70.947266, 70.99609, 71.04492, 71.09375, 71.14258, 71.19141, 71.240234, 71.28906, 71.33789, 71.38672, 71.43555, 71.484375, 71.5332, 71.58203, 71.63086, 71.67969, 71.728516, 71.77734, 71.82617, 71.875, 71.92383, 71.97266, 72.021484, 72.07031, 72.11914, 72.16797, 72.2168, 72.265625, 72.31445, 72.36328, 72.41211, 72.46094, 72.509766, 72.55859, 72.60742, 72.65625, 72.70508, 72.75391, 72.802734, 72.85156, 72.90039, 72.94922, 72.99805, 73.046875, 73.0957, 73.14453, 73.19336, 73.24219, 73.291016, 73.33984, 73.38867, 73.4375, 73.48633, 73.53516, 73.583984, 73.63281, 73.68164, 73.73047, 73.7793, 73.828125, 73.87695, 73.92578, 73.97461, 74.02344, 74.072266, 74.12109, 74.16992, 74.21875, 74.26758, 74.31641, 74.365234, 74.41406, 74.46289, 74.51172, 74.56055, 74.609375, 74.6582, 74.70703, 74.75586, 74.80469, 74.853516, 74.90234, 74.95117, 75, 75.04883, 75.09766, 75.146484, 75.19531, 75.24414, 75.29297, 75.3418, 75.390625, 75.43945, 75.48828, 75.53711, 75.58594, 75.634766, 75.68359, 75.73242, 75.78125, 75.83008, 75.87891, 75.927734, 75.97656, 76.02539, 76.07422, 76.12305, 76.171875, 76.2207, 76.26953, 76.31836, 76.36719, 76.416016, 76.46484, 76.51367, 76.5625, 76.61133, 76.66016, 76.708984, 76.75781, 76.80664, 76.85547, 76.9043, 76.953125, 77.00195, 77.05078, 77.09961, 77.14844, 77.197266, 77.24609, 77.29492, 77.34375, 77.39258, 77.44141, 77.490234, 77.53906, 77.58789, 77.63672, 77.68555, 77.734375, 77.7832, 77.83203, 77.88086, 77.92969, 77.978516, 78.02734, 78.07617, 78.125, 78.17383, 78.22266, 78.271484, 78.32031, 78.36914, 78.41797, 78.4668, 78.515625, 78.56445, 78.61328, 78.66211, 78.71094, 78.759766, 78.80859, 78.85742, 78.90625, 78.95508, 79.00391, 79.052734, 79.10156, 79.15039, 79.19922, 79.24805, 79.296875, 79.3457, 79.39453, 79.44336, 79.49219, 79.541016, 79.58984, 79.63867, 79.6875, 79.73633, 79.78516, 79.833984, 79.88281, 79.93164, 79.98047, 80.0293, 80.078125, 80.12695, 80.17578, 80.22461, 80.27344, 80.322266, 80.37109, 80.41992, 80.46875, 80.51758, 80.56641, 80.615234, 80.66406, 80.71289, 80.76172, 80.81055, 80.859375, 80.9082, 80.95703, 81.00586, 81.05469, 81.103516, 81.15234, 81.20117, 81.25, 81.29883, 81.34766, 81.396484, 81.44531, 81.49414, 81.54297, 81.5918, 81.640625, 81.68945, 81.73828, 81.78711, 81.83594, 81.884766, 81.93359, 81.98242, 82.03125, 82.08008, 82.12891, 82.177734, 82.22656, 82.27539, 82.32422, 82.37305, 82.421875, 82.4707, 82.51953, 82.56836, 82.61719, 82.666016, 82.71484, 82.76367, 82.8125, 82.86133, 82.91016, 82.958984, 83.00781, 83.05664, 83.10547, 83.1543, 83.203125, 83.25195, 83.30078, 83.34961, 83.39844, 83.447266, 83.49609, 83.54492, 83.59375, 83.64258, 83.69141, 83.740234, 83.78906, 83.83789, 83.88672, 83.93555, 83.984375, 84.0332, 84.08203, 84.13086, 84.17969, 84.228516, 84.27734, 84.32617, 84.375, 84.42383, 84.47266, 84.521484, 84.57031, 84.61914, 84.66797, 84.7168, 84.765625, 84.81445, 84.86328, 84.91211, 84.96094, 85.009766, 85.05859, 85.10742, 85.15625, 85.20508, 85.25391, 85.302734, 85.35156, 85.40039, 85.44922, 85.49805, 85.546875, 85.5957, 85.64453, 85.69336, 85.74219, 85.791016, 85.83984, 85.88867, 85.9375, 85.98633, 86.03516, 86.083984, 86.13281, 86.18164, 86.23047, 86.2793, 86.328125, 86.37695, 86.42578, 86.47461, 86.52344, 86.572266, 86.62109, 86.66992, 86.71875, 86.76758, 86.81641, 86.865234, 86.91406, 86.96289, 87.01172, 87.06055, 87.109375, 87.1582, 87.20703, 87.25586, 87.30469, 87.353516, 87.40234, 87.45117, 87.5, 87.54883, 87.59766, 87.646484, 87.69531, 87.74414, 87.79297, 87.8418, 87.890625, 87.93945, 87.98828, 88.03711, 88.08594, 88.134766, 88.18359, 88.23242, 88.28125, 88.33008, 88.37891, 88.427734, 88.47656, 88.52539, 88.57422, 88.62305, 88.671875, 88.7207, 88.76953, 88.81836, 88.86719, 88.916016, 88.96484, 89.01367, 89.0625, 89.11133, 89.16016, 89.208984, 89.25781, 89.30664, 89.35547, 89.4043, 89.453125, 89.50195, 89.55078, 89.59961, 89.64844, 89.697266, 89.74609, 89.79492, 89.84375, 89.89258, 89.94141, 89.990234, 90.03906, 90.08789, 90.13672, 90.18555, 90.234375, 90.2832, 90.33203, 90.38086, 90.42969, 90.478516, 90.52734, 90.57617, 90.625, 90.67383, 90.72266, 90.771484, 90.82031, 90.86914, 90.91797, 90.9668, 91.015625, 91.06445, 91.11328, 91.16211, 91.21094, 91.259766, 91.30859, 91.35742, 91.40625, 91.45508, 91.50391, 91.552734, 91.60156, 91.65039, 91.69922, 91.74805, 91.796875, 91.8457, 91.89453, 91.94336, 91.99219, 92.041016, 92.08984, 92.13867, 92.1875, 92.23633, 92.28516, 92.333984, 92.38281, 92.43164, 92.48047, 92.5293, 92.578125, 92.62695, 92.67578, 92.72461, 92.77344, 92.822266, 92.87109, 92.91992, 92.96875, 93.01758, 93.06641, 93.115234, 93.16406, 93.21289, 93.26172, 93.31055, 93.359375, 93.4082, 93.45703, 93.50586, 93.55469, 93.603516, 93.65234, 93.70117, 93.75, 93.79883, 93.84766, 93.896484, 93.94531, 93.99414, 94.04297, 94.0918, 94.140625, 94.18945, 94.23828, 94.28711, 94.33594, 94.384766, 94.43359, 94.48242, 94.53125, 94.58008, 94.62891, 94.677734, 94.72656, 94.77539, 94.82422, 94.87305, 94.921875, 94.9707, 95.01953, 95.06836, 95.11719, 95.166016, 95.21484, 95.26367, 95.3125, 95.36133, 95.41016, 95.458984, 95.50781, 95.55664, 95.60547, 95.6543, 95.703125, 95.75195, 95.80078, 95.84961, 95.89844, 95.947266, 95.99609, 96.04492, 96.09375, 96.14258, 96.19141, 96.240234, 96.28906, 96.33789, 96.38672, 96.43555, 96.484375, 96.5332, 96.58203, 96.63086, 96.67969, 96.728516, 96.77734, 96.82617, 96.875, 96.92383, 96.97266, 97.021484, 97.07031, 97.11914, 97.16797, 97.2168, 97.265625, 97.31445, 97.36328, 97.41211, 97.46094, 97.509766, 97.55859, 97.60742, 97.65625, 97.70508, 97.75391, 97.802734, 97.85156, 97.90039, 97.94922, 97.99805, 98.046875, 98.0957, 98.14453, 98.19336, 98.24219, 98.291016, 98.33984, 98.38867, 98.4375, 98.48633, 98.53516, 98.583984, 98.63281, 98.68164, 98.73047, 98.7793, 98.828125, 98.87695, 98.92578, 98.97461, 99.02344, 99.072266, 99.12109, 99.16992, 99.21875, 99.26758, 99.31641, 99.365234, 99.41406, 99.46289, 99.51172, 99.56055, 99.609375, 99.6582, 99.70703, 99.75586, 99.80469, 99.853516, 99.90234, 99.95117, 100, 100.04883, 100.09766, 100.146484, 100.19531, 100.24414, 100.29297, 100.3418, 100.390625, 100.43945, 100.48828, 100.53711, 100.58594, 100.634766, 100.68359, 100.73242, 100.78125, 100.83008, 100.87891, 100.927734, 100.97656, 101.02539, 101.07422, 101.12305, 101.171875, 101.2207, 101.26953, 101.31836, 101.36719, 101.416016, 101.46484, 101.51367, 101.5625, 101.61133, 101.66016, 101.708984, 101.75781, 101.80664, 101.85547, 101.9043, 101.953125, 102.00195, 102.05078, 102.09961, 102.14844, 102.197266, 102.24609, 102.29492, 102.34375, 102.39258, 102.44141, 102.490234, 102.53906, 102.58789, 102.63672, 102.68555, 102.734375, 102.7832, 102.83203, 102.88086, 102.92969, 102.978516, 103.02734, 103.07617, 103.125, 103.17383, 103.22266, 103.271484, 103.32031, 103.36914, 103.41797, 103.4668, 103.515625, 103.56445, 103.61328, 103.66211, 103.71094, 103.759766, 103.80859, 103.85742, 103.90625, 103.95508, 104.00391, 104.052734, 104.10156, 104.15039, 104.19922, 104.24805, 104.296875, 104.3457, 104.39453, 104.44336, 104.49219, 104.541016, 104.58984, 104.63867, 104.6875, 104.73633, 104.78516, 104.833984, 104.88281, 104.93164, 104.98047, 105.0293, 105.078125, 105.12695, 105.17578, 105.22461, 105.27344, 105.322266, 105.37109, 105.41992, 105.46875, 105.51758, 105.56641, 105.615234, 105.66406, 105.71289, 105.76172, 105.81055, 105.859375, 105.9082, 105.95703, 106.00586, 106.05469, 106.103516, 106.15234, 106.20117, 106.25, 106.29883, 106.34766, 106.396484, 106.44531, 106.49414, 106.54297, 106.5918, 106.640625, 106.68945, 106.73828, 106.78711, 106.83594, 106.884766, 106.93359, 106.98242, 107.03125, 107.08008, 107.12891, 107.177734, 107.22656, 107.27539, 107.32422, 107.37305, 107.421875, 107.4707, 107.51953, 107.56836, 107.61719, 107.666016, 107.71484, 107.76367, 107.8125, 107.86133, 107.91016, 107.958984, 108.00781, 108.05664, 108.10547, 108.1543, 108.203125, 108.25195, 108.30078, 108.34961, 108.39844, 108.447266, 108.49609, 108.54492, 108.59375, 108.64258, 108.69141, 108.740234, 108.78906, 108.83789, 108.88672, 108.93555, 108.984375, 109.0332, 109.08203, 109.13086, 109.17969, 109.228516, 109.27734, 109.32617, 109.375, 109.42383, 109.47266, 109.521484, 109.57031, 109.61914, 109.66797, 109.7168, 109.765625, 109.81445, 109.86328, 109.91211, 109.96094, 110.009766, 110.05859, 110.10742, 110.15625, 110.20508, 110.25391, 110.302734, 110.35156, 110.40039, 110.44922, 110.49805, 110.546875, 110.5957, 110.64453, 110.69336, 110.74219, 110.791016, 110.83984, 110.88867, 110.9375, 110.98633, 111.03516, 111.083984, 111.13281, 111.18164, 111.23047, 111.2793, 111.328125, 111.37695, 111.42578, 111.47461, 111.52344, 111.572266, 111.62109, 111.66992, 111.71875, 111.76758, 111.81641, 111.865234, 111.91406, 111.96289, 112.01172, 112.06055, 112.109375, 112.1582, 112.20703, 112.25586, 112.30469, 112.353516, 112.40234, 112.45117, 112.5, 112.54883, 112.59766, 112.646484, 112.69531, 112.74414, 112.79297, 112.8418, 112.890625, 112.93945, 112.98828, 113.03711, 113.08594, 113.134766, 113.18359, 113.23242, 113.28125, 113.33008, 113.37891, 113.427734, 113.47656, 113.52539, 113.57422, 113.62305, 113.671875, 113.7207, 113.76953, 113.81836, 113.86719, 113.916016, 113.96484, 114.01367, 114.0625, 114.11133, 114.16016, 114.208984, 114.25781, 114.30664, 114.35547, 114.4043, 114.453125, 114.50195, 114.55078, 114.59961, 114.64844, 114.697266, 114.74609, 114.79492, 114.84375, 114.89258, 114.94141, 114.990234, 115.03906, 115.08789, 115.13672, 115.18555, 115.234375, 115.2832, 115.33203, 115.38086, 115.42969, 115.478516, 115.52734, 115.57617, 115.625, 115.67383, 115.72266, 115.771484, 115.82031, 115.86914, 115.91797, 115.9668, 116.015625, 116.06445, 116.11328, 116.16211, 116.21094, 116.259766, 116.30859, 116.35742, 116.40625, 116.45508, 116.50391, 116.552734, 116.60156, 116.65039, 116.69922, 116.74805, 116.796875, 116.8457, 116.89453, 116.94336, 116.99219, 117.041016, 117.08984, 117.13867, 117.1875, 117.23633, 117.28516, 117.333984, 117.38281, 117.43164, 117.48047, 117.5293, 117.578125, 117.62695, 117.67578, 117.72461, 117.77344, 117.822266, 117.87109, 117.91992, 117.96875, 118.01758, 118.06641, 118.115234, 118.16406, 118.21289, 118.26172, 118.31055, 118.359375, 118.4082, 118.45703, 118.50586, 118.55469, 118.603516, 118.65234, 118.70117, 118.75, 118.79883, 118.84766, 118.896484, 118.94531, 118.99414, 119.04297, 119.0918, 119.140625, 119.18945, 119.23828, 119.28711, 119.33594, 119.384766, 119.43359, 119.48242, 119.53125, 119.58008, 119.62891, 119.677734, 119.72656, 119.77539, 119.82422, 119.87305, 119.921875, 119.9707, 120.01953, 120.06836, 120.11719, 120.166016, 120.21484, 120.26367, 120.3125, 120.36133, 120.41016, 120.458984, 120.50781, 120.55664, 120.60547, 120.6543, 120.703125, 120.75195, 120.80078, 120.84961, 120.89844, 120.947266, 120.99609, 121.04492, 121.09375, 121.14258, 121.19141, 121.240234, 121.28906, 121.33789, 121.38672, 121.43555, 121.484375, 121.5332, 121.58203, 121.63086, 121.67969, 121.728516, 121.77734, 121.82617, 121.875, 121.92383, 121.97266, 122.021484, 122.07031, 122.11914, 122.16797, 122.2168, 122.265625, 122.31445, 122.36328, 122.41211, 122.46094, 122.509766, 122.55859, 122.60742, 122.65625, 122.70508, 122.75391, 122.802734, 122.85156, 122.90039, 122.94922, 122.99805, 123.046875, 123.0957, 123.14453, 123.19336, 123.24219, 123.291016, 123.33984, 123.38867, 123.4375, 123.48633, 123.53516, 123.583984, 123.63281, 123.68164, 123.73047, 123.7793, 123.828125, 123.87695, 123.92578, 123.97461, 124.02344, 124.072266, 124.12109, 124.16992, 124.21875, 124.26758, 124.31641, 124.365234, 124.41406, 124.46289, 124.51172, 124.56055, 124.609375, 124.6582, 124.70703, 124.75586, 124.80469, 124.853516, 124.90234, 124.95117, 125, 125.04883, 125.09766, 125.146484, 125.19531, 125.24414, 125.29297, 125.3418, 125.390625, 125.43945, 125.48828, 125.53711, 125.58594, 125.634766, 125.68359, 125.73242, 125.78125, 125.83008, 125.87891, 125.927734, 125.97656, 126.02539, 126.07422, 126.12305, 126.171875, 126.2207, 126.26953, 126.31836, 126.36719, 126.416016, 126.46484, 126.51367, 126.5625, 126.61133, 126.66016, 126.708984, 126.75781, 126.80664, 126.85547, 126.9043, 126.953125, 127.00195, 127.05078, 127.09961, 127.14844, 127.197266, 127.24609, 127.29492, 127.34375, 127.39258, 127.44141, 127.490234, 127.53906, 127.58789, 127.63672, 127.68555, 127.734375, 127.7832, 127.83203, 127.88086, 127.92969, 127.978516, 128.02734, 128.07617, 128.125, 128.17383, 128.22266, 128.27148, 128.32031, 128.36914, 128.41797, 128.4668, 128.51562, 128.56445, 128.61328, 128.66211, 128.71094, 128.75977, 128.8086, 128.85742, 128.90625, 128.95508, 129.0039, 129.05273, 129.10156, 129.15039, 129.19922, 129.24805, 129.29688, 129.3457, 129.39453, 129.44336, 129.49219, 129.54102, 129.58984, 129.63867, 129.6875, 129.73633, 129.78516, 129.83398, 129.88281, 129.93164, 129.98047, 130.0293, 130.07812, 130.12695, 130.17578, 130.22461, 130.27344, 130.32227, 130.3711, 130.41992, 130.46875, 130.51758, 130.5664, 130.61523, 130.66406, 130.71289, 130.76172, 130.81055, 130.85938, 130.9082, 130.95703, 131.00586, 131.05469, 131.10352, 131.15234, 131.20117, 131.25, 131.29883, 131.34766, 131.39648, 131.44531, 131.49414, 131.54297, 131.5918, 131.64062, 131.68945, 131.73828, 131.78711, 131.83594, 131.88477, 131.9336, 131.98242, 132.03125, 132.08008, 132.1289, 132.17773, 132.22656, 132.27539, 132.32422, 132.37305, 132.42188, 132.4707, 132.51953, 132.56836, 132.61719, 132.66602, 132.71484, 132.76367, 132.8125, 132.86133, 132.91016, 132.95898, 133.00781, 133.05664, 133.10547, 133.1543, 133.20312, 133.25195, 133.30078, 133.34961, 133.39844, 133.44727, 133.4961, 133.54492, 133.59375, 133.64258, 133.6914, 133.74023, 133.78906, 133.83789, 133.88672, 133.93555, 133.98438, 134.0332, 134.08203, 134.13086, 134.17969, 134.22852, 134.27734, 134.32617, 134.375, 134.42383, 134.47266, 134.52148, 134.57031, 134.61914, 134.66797, 134.7168, 134.76562, 134.81445, 134.86328, 134.91211, 134.96094, 135.00977, 135.0586, 135.10742, 135.15625, 135.20508, 135.2539, 135.30273, 135.35156, 135.40039, 135.44922, 135.49805, 135.54688, 135.5957, 135.64453, 135.69336, 135.74219, 135.79102, 135.83984, 135.88867, 135.9375, 135.98633, 136.03516, 136.08398, 136.13281, 136.18164, 136.23047, 136.2793, 136.32812, 136.37695, 136.42578, 136.47461, 136.52344, 136.57227, 136.6211, 136.66992, 136.71875, 136.76758, 136.8164, 136.86523, 136.91406, 136.96289, 137.01172, 137.06055, 137.10938, 137.1582, 137.20703, 137.25586, 137.30469, 137.35352, 137.40234, 137.45117, 137.5, 137.54883, 137.59766, 137.64648, 137.69531, 137.74414, 137.79297, 137.8418, 137.89062, 137.93945, 137.98828, 138.03711, 138.08594, 138.13477, 138.1836, 138.23242, 138.28125, 138.33008, 138.3789, 138.42773, 138.47656, 138.52539, 138.57422, 138.62305, 138.67188, 138.7207, 138.76953, 138.81836, 138.86719, 138.91602, 138.96484, 139.01367, 139.0625, 139.11133, 139.16016, 139.20898, 139.25781, 139.30664, 139.35547, 139.4043, 139.45312, 139.50195, 139.55078, 139.59961, 139.64844, 139.69727, 139.7461, 139.79492, 139.84375, 139.89258, 139.9414, 139.99023, 140.03906, 140.08789, 140.13672, 140.18555, 140.23438, 140.2832, 140.33203, 140.38086, 140.42969, 140.47852, 140.52734, 140.57617, 140.625, 140.67383, 140.72266, 140.77148, 140.82031, 140.86914, 140.91797, 140.9668, 141.01562, 141.06445, 141.11328, 141.16211, 141.21094, 141.25977, 141.3086, 141.35742, 141.40625, 141.45508, 141.5039, 141.55273, 141.60156, 141.65039, 141.69922, 141.74805, 141.79688, 141.8457, 141.89453, 141.94336, 141.99219, 142.04102, 142.08984, 142.13867, 142.1875, 142.23633, 142.28516, 142.33398, 142.38281, 142.43164, 142.48047, 142.5293, 142.57812, 142.62695, 142.67578, 142.72461, 142.77344, 142.82227, 142.8711, 142.91992, 142.96875, 143.01758, 143.0664, 143.11523, 143.16406, 143.21289, 143.26172, 143.31055, 143.35938, 143.4082, 143.45703, 143.50586, 143.55469, 143.60352, 143.65234, 143.70117, 143.75, 143.79883, 143.84766, 143.89648, 143.94531, 143.99414, 144.04297, 144.0918, 144.14062, 144.18945, 144.23828, 144.28711, 144.33594, 144.38477, 144.4336, 144.48242, 144.53125, 144.58008, 144.6289, 144.67773, 144.72656, 144.77539, 144.82422, 144.87305, 144.92188, 144.9707, 145.01953, 145.06836, 145.11719, 145.16602, 145.21484, 145.26367, 145.3125, 145.36133, 145.41016, 145.45898, 145.50781, 145.55664, 145.60547, 145.6543, 145.70312, 145.75195, 145.80078, 145.84961, 145.89844, 145.94727, 145.9961, 146.04492, 146.09375, 146.14258, 146.1914, 146.24023, 146.28906, 146.33789, 146.38672, 146.43555, 146.48438, 146.5332, 146.58203, 146.63086, 146.67969, 146.72852, 146.77734, 146.82617, 146.875, 146.92383, 146.97266, 147.02148, 147.07031, 147.11914, 147.16797, 147.2168, 147.26562, 147.31445, 147.36328, 147.41211, 147.46094, 147.50977, 147.5586, 147.60742, 147.65625, 147.70508, 147.7539, 147.80273, 147.85156, 147.90039, 147.94922, 147.99805, 148.04688, 148.0957, 148.14453, 148.19336, 148.24219, 148.29102, 148.33984, 148.38867, 148.4375, 148.48633, 148.53516, 148.58398, 148.63281, 148.68164, 148.73047, 148.7793, 148.82812, 148.87695, 148.92578, 148.97461, 149.02344, 149.07227, 149.1211, 149.16992, 149.21875, 149.26758, 149.3164, 149.36523, 149.41406, 149.46289, 149.51172, 149.56055, 149.60938, 149.6582, 149.70703, 149.75586, 149.80469, 149.85352, 149.90234, 149.95117, 150, 150.04883, 150.09766, 150.14648, 150.19531, 150.24414, 150.29297, 150.3418, 150.39062, 150.43945, 150.48828, 150.53711, 150.58594, 150.63477, 150.6836, 150.73242, 150.78125, 150.83008, 150.8789, 150.92773, 150.97656, 151.02539, 151.07422, 151.12305, 151.17188, 151.2207, 151.26953, 151.31836, 151.36719, 151.41602, 151.46484, 151.51367, 151.5625, 151.61133, 151.66016, 151.70898, 151.75781, 151.80664, 151.85547, 151.9043, 151.95312, 152.00195, 152.05078, 152.09961, 152.14844, 152.19727, 152.2461, 152.29492, 152.34375, 152.39258, 152.4414, 152.49023, 152.53906, 152.58789, 152.63672, 152.68555, 152.73438, 152.7832, 152.83203, 152.88086, 152.92969, 152.97852, 153.02734, 153.07617, 153.125, 153.17383, 153.22266, 153.27148, 153.32031, 153.36914, 153.41797, 153.4668, 153.51562, 153.56445, 153.61328, 153.66211, 153.71094, 153.75977, 153.8086, 153.85742, 153.90625, 153.95508, 154.0039, 154.05273, 154.10156, 154.15039, 154.19922, 154.24805, 154.29688, 154.3457, 154.39453, 154.44336, 154.49219, 154.54102, 154.58984, 154.63867, 154.6875, 154.73633, 154.78516, 154.83398, 154.88281, 154.93164, 154.98047, 155.0293, 155.07812, 155.12695, 155.17578, 155.22461, 155.27344, 155.32227, 155.3711, 155.41992, 155.46875, 155.51758, 155.5664, 155.61523, 155.66406, 155.71289, 155.76172, 155.81055, 155.85938, 155.9082, 155.95703, 156.00586, 156.05469, 156.10352, 156.15234, 156.20117, 156.25, 156.29883, 156.34766, 156.39648, 156.44531, 156.49414, 156.54297, 156.5918, 156.64062, 156.68945, 156.73828, 156.78711, 156.83594, 156.88477, 156.9336, 156.98242, 157.03125, 157.08008, 157.1289, 157.17773, 157.22656, 157.27539, 157.32422, 157.37305, 157.42188, 157.4707, 157.51953, 157.56836, 157.61719, 157.66602, 157.71484, 157.76367, 157.8125, 157.86133, 157.91016, 157.95898, 158.00781, 158.05664, 158.10547, 158.1543, 158.20312, 158.25195, 158.30078, 158.34961, 158.39844, 158.44727, 158.4961, 158.54492, 158.59375, 158.64258, 158.6914, 158.74023, 158.78906, 158.83789, 158.88672, 158.93555, 158.98438, 159.0332, 159.08203, 159.13086, 159.17969, 159.22852, 159.27734, 159.32617, 159.375, 159.42383, 159.47266, 159.52148, 159.57031, 159.61914, 159.66797, 159.7168, 159.76562, 159.81445, 159.86328, 159.91211, 159.96094, 160.00977, 160.0586, 160.10742, 160.15625, 160.20508, 160.2539, 160.30273, 160.35156, 160.40039, 160.44922, 160.49805, 160.54688, 160.5957, 160.64453, 160.69336, 160.74219, 160.79102, 160.83984, 160.88867, 160.9375, 160.98633, 161.03516, 161.08398, 161.13281, 161.18164, 161.23047, 161.2793, 161.32812, 161.37695, 161.42578, 161.47461, 161.52344, 161.57227, 161.6211, 161.66992, 161.71875, 161.76758, 161.8164, 161.86523, 161.91406, 161.96289, 162.01172, 162.06055, 162.10938, 162.1582, 162.20703, 162.25586, 162.30469, 162.35352, 162.40234, 162.45117, 162.5, 162.54883, 162.59766, 162.64648, 162.69531, 162.74414, 162.79297, 162.8418, 162.89062, 162.93945, 162.98828, 163.03711, 163.08594, 163.13477, 163.1836, 163.23242, 163.28125, 163.33008, 163.3789, 163.42773, 163.47656, 163.52539, 163.57422, 163.62305, 163.67188, 163.7207, 163.76953, 163.81836, 163.86719, 163.91602, 163.96484, 164.01367, 164.0625, 164.11133, 164.16016, 164.20898, 164.25781, 164.30664, 164.35547, 164.4043, 164.45312, 164.50195, 164.55078, 164.59961, 164.64844, 164.69727, 164.7461, 164.79492, 164.84375, 164.89258, 164.9414, 164.99023, 165.03906, 165.08789, 165.13672, 165.18555, 165.23438, 165.2832, 165.33203, 165.38086, 165.42969, 165.47852, 165.52734, 165.57617, 165.625, 165.67383, 165.72266, 165.77148, 165.82031, 165.86914, 165.91797, 165.9668, 166.01562, 166.06445, 166.11328, 166.16211, 166.21094, 166.25977, 166.3086, 166.35742, 166.40625, 166.45508, 166.5039, 166.55273, 166.60156, 166.65039, 166.69922, 166.74805, 166.79688, 166.8457, 166.89453, 166.94336, 166.99219, 167.04102, 167.08984, 167.13867, 167.1875, 167.23633, 167.28516, 167.33398, 167.38281, 167.43164, 167.48047, 167.5293, 167.57812, 167.62695, 167.67578, 167.72461, 167.77344, 167.82227, 167.8711, 167.91992, 167.96875, 168.01758, 168.0664, 168.11523, 168.16406, 168.21289, 168.26172, 168.31055, 168.35938, 168.4082, 168.45703, 168.50586, 168.55469, 168.60352, 168.65234, 168.70117, 168.75, 168.79883, 168.84766, 168.89648, 168.94531, 168.99414, 169.04297, 169.0918, 169.14062, 169.18945, 169.23828, 169.28711, 169.33594, 169.38477, 169.4336, 169.48242, 169.53125, 169.58008, 169.6289, 169.67773, 169.72656, 169.77539, 169.82422, 169.87305, 169.92188, 169.9707, 170.01953, 170.06836, 170.11719, 170.16602, 170.21484, 170.26367, 170.3125, 170.36133, 170.41016, 170.45898, 170.50781, 170.55664, 170.60547, 170.6543, 170.70312, 170.75195, 170.80078, 170.84961, 170.89844, 170.94727, 170.9961, 171.04492, 171.09375, 171.14258, 171.1914, 171.24023, 171.28906, 171.33789, 171.38672, 171.43555, 171.48438, 171.5332, 171.58203, 171.63086, 171.67969, 171.72852, 171.77734, 171.82617, 171.875, 171.92383, 171.97266, 172.02148, 172.07031, 172.11914, 172.16797, 172.2168, 172.26562, 172.31445, 172.36328, 172.41211, 172.46094, 172.50977, 172.5586, 172.60742, 172.65625, 172.70508, 172.7539, 172.80273, 172.85156, 172.90039, 172.94922, 172.99805, 173.04688, 173.0957, 173.14453, 173.19336, 173.24219, 173.29102, 173.33984, 173.38867, 173.4375, 173.48633, 173.53516, 173.58398, 173.63281, 173.68164, 173.73047, 173.7793, 173.82812, 173.87695, 173.92578, 173.97461, 174.02344, 174.07227, 174.1211, 174.16992, 174.21875, 174.26758, 174.3164, 174.36523, 174.41406, 174.46289, 174.51172, 174.56055, 174.60938, 174.6582, 174.70703, 174.75586, 174.80469, 174.85352, 174.90234, 174.95117, 175, 175.04883, 175.09766, 175.14648, 175.19531, 175.24414, 175.29297, 175.3418, 175.39062, 175.43945, 175.48828, 175.53711, 175.58594, 175.63477, 175.6836, 175.73242, 175.78125, 175.83008, 175.8789, 175.92773, 175.97656, 176.02539, 176.07422, 176.12305, 176.17188, 176.2207, 176.26953, 176.31836, 176.36719, 176.41602, 176.46484, 176.51367, 176.5625, 176.61133, 176.66016, 176.70898, 176.75781, 176.80664, 176.85547, 176.9043, 176.95312, 177.00195, 177.05078, 177.09961, 177.14844, 177.19727, 177.2461, 177.29492, 177.34375, 177.39258, 177.4414, 177.49023, 177.53906, 177.58789, 177.63672, 177.68555, 177.73438, 177.7832, 177.83203, 177.88086, 177.92969, 177.97852, 178.02734, 178.07617, 178.125, 178.17383, 178.22266, 178.27148, 178.32031, 178.36914, 178.41797, 178.4668, 178.51562, 178.56445, 178.61328, 178.66211, 178.71094, 178.75977, 178.8086, 178.85742, 178.90625, 178.95508, 179.0039, 179.05273, 179.10156, 179.15039, 179.19922, 179.24805, 179.29688, 179.3457, 179.39453, 179.44336, 179.49219, 179.54102, 179.58984, 179.63867, 179.6875, 179.73633, 179.78516, 179.83398, 179.88281, 179.93164, 179.98047, 180.0293, 180.07812, 180.12695, 180.17578, 180.22461, 180.27344, 180.32227, 180.3711, 180.41992, 180.46875, 180.51758, 180.5664, 180.61523, 180.66406, 180.71289, 180.76172, 180.81055, 180.85938, 180.9082, 180.95703, 181.00586, 181.05469, 181.10352, 181.15234, 181.20117, 181.25, 181.29883, 181.34766, 181.39648, 181.44531, 181.49414, 181.54297, 181.5918, 181.64062, 181.68945, 181.73828, 181.78711, 181.83594, 181.88477, 181.9336, 181.98242, 182.03125, 182.08008, 182.1289, 182.17773, 182.22656, 182.27539, 182.32422, 182.37305, 182.42188, 182.4707, 182.51953, 182.56836, 182.61719, 182.66602, 182.71484, 182.76367, 182.8125, 182.86133, 182.91016, 182.95898, 183.00781, 183.05664, 183.10547, 183.1543, 183.20312, 183.25195, 183.30078, 183.34961, 183.39844, 183.44727, 183.4961, 183.54492, 183.59375, 183.64258, 183.6914, 183.74023, 183.78906, 183.83789, 183.88672, 183.93555, 183.98438, 184.0332, 184.08203, 184.13086, 184.17969, 184.22852, 184.27734, 184.32617, 184.375, 184.42383, 184.47266, 184.52148, 184.57031, 184.61914, 184.66797, 184.7168, 184.76562, 184.81445, 184.86328, 184.91211, 184.96094, 185.00977, 185.0586, 185.10742, 185.15625, 185.20508, 185.2539, 185.30273, 185.35156, 185.40039, 185.44922, 185.49805, 185.54688, 185.5957, 185.64453, 185.69336, 185.74219, 185.79102, 185.83984, 185.88867, 185.9375, 185.98633, 186.03516, 186.08398, 186.13281, 186.18164, 186.23047, 186.2793, 186.32812, 186.37695, 186.42578, 186.47461, 186.52344, 186.57227, 186.6211, 186.66992, 186.71875, 186.76758, 186.8164, 186.86523, 186.91406, 186.96289, 187.01172, 187.06055, 187.10938, 187.1582, 187.20703, 187.25586, 187.30469, 187.35352, 187.40234, 187.45117, 187.5, 187.54883, 187.59766, 187.64648, 187.69531, 187.74414, 187.79297, 187.8418, 187.89062, 187.93945, 187.98828, 188.03711, 188.08594, 188.13477, 188.1836, 188.23242, 188.28125, 188.33008, 188.3789, 188.42773, 188.47656, 188.52539, 188.57422, 188.62305, 188.67188, 188.7207, 188.76953, 188.81836, 188.86719, 188.91602, 188.96484, 189.01367, 189.0625, 189.11133, 189.16016, 189.20898, 189.25781, 189.30664, 189.35547, 189.4043, 189.45312, 189.50195, 189.55078, 189.59961, 189.64844, 189.69727, 189.7461, 189.79492, 189.84375, 189.89258, 189.9414, 189.99023, 190.03906, 190.08789, 190.13672, 190.18555, 190.23438, 190.2832, 190.33203, 190.38086, 190.42969, 190.47852, 190.52734, 190.57617, 190.625, 190.67383, 190.72266, 190.77148, 190.82031, 190.86914, 190.91797, 190.9668, 191.01562, 191.06445, 191.11328, 191.16211, 191.21094, 191.25977, 191.3086, 191.35742, 191.40625, 191.45508, 191.5039, 191.55273, 191.60156, 191.65039, 191.69922, 191.74805, 191.79688, 191.8457, 191.89453, 191.94336, 191.99219, 192.04102, 192.08984, 192.13867, 192.1875, 192.23633, 192.28516, 192.33398, 192.38281, 192.43164, 192.48047, 192.5293, 192.57812, 192.62695, 192.67578, 192.72461, 192.77344, 192.82227, 192.8711, 192.91992, 192.96875, 193.01758, 193.0664, 193.11523, 193.16406, 193.21289, 193.26172, 193.31055, 193.35938, 193.4082, 193.45703, 193.50586, 193.55469, 193.60352, 193.65234, 193.70117, 193.75, 193.79883, 193.84766, 193.89648, 193.94531, 193.99414, 194.04297, 194.0918, 194.14062, 194.18945, 194.23828, 194.28711, 194.33594, 194.38477, 194.4336, 194.48242, 194.53125, 194.58008, 194.6289, 194.67773, 194.72656, 194.77539, 194.82422, 194.87305, 194.92188, 194.9707, 195.01953, 195.06836, 195.11719, 195.16602, 195.21484, 195.26367, 195.3125, 195.36133, 195.41016, 195.45898, 195.50781, 195.55664, 195.60547, 195.6543, 195.70312, 195.75195, 195.80078, 195.84961, 195.89844, 195.94727, 195.9961, 196.04492, 196.09375, 196.14258, 196.1914, 196.24023, 196.28906, 196.33789, 196.38672, 196.43555, 196.48438, 196.5332, 196.58203, 196.63086, 196.67969, 196.72852, 196.77734, 196.82617, 196.875, 196.92383, 196.97266, 197.02148, 197.07031, 197.11914, 197.16797, 197.2168, 197.26562, 197.31445, 197.36328, 197.41211, 197.46094, 197.50977, 197.5586, 197.60742, 197.65625, 197.70508, 197.7539, 197.80273, 197.85156, 197.90039, 197.94922, 197.99805, 198.04688, 198.0957, 198.14453, 198.19336, 198.24219, 198.29102, 198.33984, 198.38867, 198.4375, 198.48633, 198.53516, 198.58398, 198.63281, 198.68164, 198.73047, 198.7793, 198.82812, 198.87695, 198.92578, 198.97461, 199.02344, 199.07227, 199.1211, 199.16992, 199.21875, 199.26758, 199.3164, 199.36523, 199.41406, 199.46289, 199.51172, 199.56055, 199.60938, 199.6582, 199.70703, 199.75586, 199.80469, 199.85352, 199.90234, 199.95117], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 4096, "currentCount": 4096}}}], "config": {"showlegend": false, "xaxis": {"showticklabels": true, "gridwidth": 0.5, "range": [-5.99853515625, 205.94970703125], "domain": [0.07646908719743364, 0.9934383202099737], "mirror": false, "tickangle": 0, "showline": true, "zeroline": false, "tickfont": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "zerolinecolor": "rgba(0, 0, 0, 1)", "anchor": "y", "visible": true, "ticks": "inside", "tickmode": "array", "linecolor": "rgba(0, 0, 0, 1)", "showgrid": true, "title": {"text": "Частота (Гц)", "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}}, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickcolor": "rgb(0, 0, 0)", "type": "linear"}, "paper_bgcolor": "rgba(255, 255, 255, 1.000)", "annotations": [], "height": 400, "margin": {"l": 0, "b": 20, "r": 0, "t": 20}, "plot_bgcolor": "rgba(255, 255, 255, 1.000)", "yaxis": {"showticklabels": true, "gridwidth": 0.5, "range": [-0.02086126997129356, 0.7162375378396576], "domain": [0.07581474190726165, 0.9901574803149606], "mirror": false, "tickangle": 0, "showline": true, "zeroline": false, "tickfont": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "zerolinecolor": "rgba(0, 0, 0, 1)", "anchor": "x", "visible": true, "ticks": "inside", "tickmode": "array", "linecolor": "rgba(0, 0, 0, 1)", "showgrid": true, "title": {"text": "Мощность", "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}}, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickcolor": "rgb(0, 0, 0)", "type": "linear"}, "width": 634.71875}}
{"id": "180a95d9-9d71-4028-a6bb-4b94a6b6b942", "data": [{"showlegend": true, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "octagon", "color": "rgba(255, 255, 255, 1.000)", "line": {"color": "rgba(0, 154, 250, 1.000)", "width": 1}, "size": 10}, "zmax": null, "y": [4.8960835385969403e-14, 8.944066974452509e-14, 1.222373059023625e-13, 9.620642474832926e-14, 3.086380275781141e-14, 4.271574971572196e-14, 2.962659106138484e-14, 5.100801230464406e-15, 3.395541490590861e-14, 8.607657412851896e-14, 49.99999999999998, 1.2189892959984723e-13, 4.3705636379548554e-14, 5.1424467381721954e-14, 7.2010972304509e-14, 4.949356865444378e-14, 5.4337360127682225e-14, 6.320923881037875e-14, 1.239086984347704e-13, 4.599042125076381e-14, 1.9226878417458127e-14, 4.2013753402932886e-14, 3.3335549367989955e-14, 2.3668000859586513e-14, 2.923065060657977e-14, 1.3592474032782042e-14, 2.569076093086809e-14, 7.524477476291995e-14, 5.80758014904686e-14, 2.8036186363214064e-14, 4.2818710596273105e-14, 8.40353623434232e-14, 1.5751607370517994e-13, 3.314146672904995e-14, 1.0013111296053159e-13, 49.999999999999986, 9.06511297094135e-14, 8.671857493968007e-14, 1.2083120439957957e-14, 7.01778385835079e-14, 2.645281389311551e-14, 4.577408791923526e-14, 2.4968325564774387e-14, 6.668389306126098e-14, 2.9295530491489957e-14, 3.8263897345803626e-14, 6.66118258111162e-16, 8.656556062128631e-14, 1.4415675994224477e-13, 7.54244020316147e-14, 5.340172748447003e-14, 7.542440203161472e-14, 1.4415675994224475e-13, 8.656556062128631e-14, 6.661182581111618e-16, 3.7356323980498535e-14, 2.929553049148996e-14, 6.668389306126096e-14, 2.4968325564774374e-14, 4.577408791923526e-14, 2.645281389311551e-14, 7.01778385835079e-14, 1.2083120439957962e-14, 8.671857493968007e-14, 9.065112970941349e-14, 49.999999999999986, 1.0013111296053159e-13, 3.314146672904995e-14, 1.5751607370517997e-13, 8.403536234342321e-14, 4.2818710596273105e-14, 2.8036186363214064e-14, 5.80758014904686e-14, 7.524477476291994e-14, 2.56907609308681e-14, 1.5888218580782548e-14, 2.923065060657977e-14, 2.3668000859586506e-14, 3.333554936798997e-14, 4.2013753402932886e-14, 1.9226878417458127e-14, 4.599042125076381e-14, 1.239086984347704e-13, 6.320923881037875e-14, 5.4337360127682206e-14, 4.850990609037977e-14, 7.201097230450901e-14, 5.142446738172195e-14, 4.3705636379548554e-14, 1.2189892959984726e-13, 49.99999999999998, 8.607657412851894e-14, 3.3955414905908615e-14, 5.100801230464413e-15, 2.9626591061384837e-14, 5.0208270293673386e-14, 3.0863802757811413e-14, 9.620642474832925e-14, 1.222373059023625e-13, 8.944066974452509e-14], "type": "scatter", "x": [-50, -49, -48, -47, -46, -45, -44, -43, -42, -41, -40, -39, -38, -37, -36, -35, -34, -33, -32, -31, -30, -29, -28, -27, -26, -25, -24, -23, -22, -21, -20, -19, -18, -17, -16, -15, -14, -13, -12, -11, -10, -9, -8, -7, -6, -5, -4, -3, -2, -1, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 100, "currentCount": 100}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 4.8960835385969403e-14], "type": "scatter", "x": [-50, -50], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 8.944066974452509e-14], "type": "scatter", "x": [-49, -49], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.222373059023625e-13], "type": "scatter", "x": [-48, -48], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 9.620642474832926e-14], "type": "scatter", "x": [-47, -47], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 3.086380275781141e-14], "type": "scatter", "x": [-46, -46], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 4.271574971572196e-14], "type": "scatter", "x": [-45, -45], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.962659106138484e-14], "type": "scatter", "x": [-44, -44], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 5.100801230464406e-15], "type": "scatter", "x": [-43, -43], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 3.395541490590861e-14], "type": "scatter", "x": [-42, -42], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 8.607657412851896e-14], "type": "scatter", "x": [-41, -41], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 49.99999999999998], "type": "scatter", "x": [-40, -40], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.2189892959984723e-13], "type": "scatter", "x": [-39, -39], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 4.3705636379548554e-14], "type": "scatter", "x": [-38, -38], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 5.1424467381721954e-14], "type": "scatter", "x": [-37, -37], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 7.2010972304509e-14], "type": "scatter", "x": [-36, -36], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 4.949356865444378e-14], "type": "scatter", "x": [-35, -35], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 5.4337360127682225e-14], "type": "scatter", "x": [-34, -34], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 6.320923881037875e-14], "type": "scatter", "x": [-33, -33], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.239086984347704e-13], "type": "scatter", "x": [-32, -32], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 4.599042125076381e-14], "type": "scatter", "x": [-31, -31], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.9226878417458127e-14], "type": "scatter", "x": [-30, -30], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 4.2013753402932886e-14], "type": "scatter", "x": [-29, -29], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 3.3335549367989955e-14], "type": "scatter", "x": [-28, -28], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.3668000859586513e-14], "type": "scatter", "x": [-27, -27], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.923065060657977e-14], "type": "scatter", "x": [-26, -26], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.3592474032782042e-14], "type": "scatter", "x": [-25, -25], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.569076093086809e-14], "type": "scatter", "x": [-24, -24], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 7.524477476291995e-14], "type": "scatter", "x": [-23, -23], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 5.80758014904686e-14], "type": "scatter", "x": [-22, -22], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.8036186363214064e-14], "type": "scatter", "x": [-21, -21], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 4.2818710596273105e-14], "type": "scatter", "x": [-20, -20], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 8.40353623434232e-14], "type": "scatter", "x": [-19, -19], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.5751607370517994e-13], "type": "scatter", "x": [-18, -18], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 3.314146672904995e-14], "type": "scatter", "x": [-17, -17], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.0013111296053159e-13], "type": "scatter", "x": [-16, -16], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 49.999999999999986], "type": "scatter", "x": [-15, -15], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 9.06511297094135e-14], "type": "scatter", "x": [-14, -14], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 8.671857493968007e-14], "type": "scatter", "x": [-13, -13], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.2083120439957957e-14], "type": "scatter", "x": [-12, -12], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 7.01778385835079e-14], "type": "scatter", "x": [-11, -11], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.645281389311551e-14], "type": "scatter", "x": [-10, -10], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 4.577408791923526e-14], "type": "scatter", "x": [-9, -9], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.4968325564774387e-14], "type": "scatter", "x": [-8, -8], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 6.668389306126098e-14], "type": "scatter", "x": [-7, -7], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.9295530491489957e-14], "type": "scatter", "x": [-6, -6], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 3.8263897345803626e-14], "type": "scatter", "x": [-5, -5], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 6.66118258111162e-16], "type": "scatter", "x": [-4, -4], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 8.656556062128631e-14], "type": "scatter", "x": [-3, -3], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.4415675994224477e-13], "type": "scatter", "x": [-2, -2], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 7.54244020316147e-14], "type": "scatter", "x": [-1, -1], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 5.340172748447003e-14], "type": "scatter", "x": [0, 0], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 7.542440203161472e-14], "type": "scatter", "x": [1, 1], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.4415675994224475e-13], "type": "scatter", "x": [2, 2], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 8.656556062128631e-14], "type": "scatter", "x": [3, 3], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 6.661182581111618e-16], "type": "scatter", "x": [4, 4], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 3.7356323980498535e-14], "type": "scatter", "x": [5, 5], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.929553049148996e-14], "type": "scatter", "x": [6, 6], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 6.668389306126096e-14], "type": "scatter", "x": [7, 7], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.4968325564774374e-14], "type": "scatter", "x": [8, 8], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 4.577408791923526e-14], "type": "scatter", "x": [9, 9], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.645281389311551e-14], "type": "scatter", "x": [10, 10], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 7.01778385835079e-14], "type": "scatter", "x": [11, 11], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.2083120439957962e-14], "type": "scatter", "x": [12, 12], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 8.671857493968007e-14], "type": "scatter", "x": [13, 13], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 9.065112970941349e-14], "type": "scatter", "x": [14, 14], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 49.999999999999986], "type": "scatter", "x": [15, 15], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.0013111296053159e-13], "type": "scatter", "x": [16, 16], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 3.314146672904995e-14], "type": "scatter", "x": [17, 17], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.5751607370517997e-13], "type": "scatter", "x": [18, 18], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 8.403536234342321e-14], "type": "scatter", "x": [19, 19], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 4.2818710596273105e-14], "type": "scatter", "x": [20, 20], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.8036186363214064e-14], "type": "scatter", "x": [21, 21], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 5.80758014904686e-14], "type": "scatter", "x": [22, 22], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 7.524477476291994e-14], "type": "scatter", "x": [23, 23], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.56907609308681e-14], "type": "scatter", "x": [24, 24], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.5888218580782548e-14], "type": "scatter", "x": [25, 25], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.923065060657977e-14], "type": "scatter", "x": [26, 26], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.3668000859586506e-14], "type": "scatter", "x": [27, 27], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 3.333554936798997e-14], "type": "scatter", "x": [28, 28], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 4.2013753402932886e-14], "type": "scatter", "x": [29, 29], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.9226878417458127e-14], "type": "scatter", "x": [30, 30], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 4.599042125076381e-14], "type": "scatter", "x": [31, 31], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.239086984347704e-13], "type": "scatter", "x": [32, 32], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 6.320923881037875e-14], "type": "scatter", "x": [33, 33], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 5.4337360127682206e-14], "type": "scatter", "x": [34, 34], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 4.850990609037977e-14], "type": "scatter", "x": [35, 35], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 7.201097230450901e-14], "type": "scatter", "x": [36, 36], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 5.142446738172195e-14], "type": "scatter", "x": [37, 37], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 4.3705636379548554e-14], "type": "scatter", "x": [38, 38], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.2189892959984726e-13], "type": "scatter", "x": [39, 39], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 49.99999999999998], "type": "scatter", "x": [40, 40], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 8.607657412851894e-14], "type": "scatter", "x": [41, 41], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 3.3955414905908615e-14], "type": "scatter", "x": [42, 42], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 5.100801230464413e-15], "type": "scatter", "x": [43, 43], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 2.9626591061384837e-14], "type": "scatter", "x": [44, 44], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 5.0208270293673386e-14], "type": "scatter", "x": [45, 45], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 3.0863802757811413e-14], "type": "scatter", "x": [46, 46], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 9.620642474832925e-14], "type": "scatter", "x": [47, 47], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 1.222373059023625e-13], "type": "scatter", "x": [48, 48], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 8.944066974452509e-14], "type": "scatter", "x": [49, 49], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}], "config": {"showlegend": true, "xaxis": {"showticklabels": true, "gridwidth": 0.5, "range": [-52.970000000000006, 51.970000000000006], "domain": [0.061654272382618835, 0.9934383202099737], "mirror": false, "tickangle": 0, "showline": true, "zeroline": false, "tickfont": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "zerolinecolor": "rgba(0, 0, 0, 1)", "anchor": "y", "visible": true, "ticks": "inside", "tickmode": "array", "linecolor": "rgba(0, 0, 0, 1)", "showgrid": true, "title": {"text": "Частота (Гц)", "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}}, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickcolor": "rgb(0, 0, 0)", "type": "linear"}, "paper_bgcolor": "rgba(255, 255, 255, 1.000)", "annotations": [], "height": 400, "margin": {"l": 0, "b": 20, "r": 0, "t": 20}, "plot_bgcolor": "rgba(255, 255, 255, 1.000)", "yaxis": {"showticklabels": true, "gridwidth": 0.5, "range": [-1.5, 51.499999999999986], "domain": [0.07581474190726165, 0.9901574803149606], "mirror": false, "tickangle": 0, "showline": true, "zeroline": false, "tickfont": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "zerolinecolor": "rgba(0, 0, 0, 1)", "anchor": "x", "visible": true, "ticks": "inside", "tickmode": "array", "linecolor": "rgba(0, 0, 0, 1)", "showgrid": true, "title": {"text": "|y|", "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}}, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickcolor": "rgb(0, 0, 0)", "type": "linear"}, "legend": {"yanchor": "auto", "xanchor": "auto", "bordercolor": "rgba(0, 0, 0, 1)", "bgcolor": "rgba(255, 255, 255, 1.000)", "borderwidth": 1, "tracegroupgap": 0, "y": 1, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "title": {"font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}, "text": ""}, "traceorder": "normal", "x": 1}, "width": 634.71875}}
{"id": "a76f69f3-884b-450e-8012-f479da33288a", "data": [{"showlegend": true, "mode": "markers", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "marker": {"symbol": "octagon", "color": "rgba(255, 255, 255, 1.000)", "line": {"color": "rgba(0, 154, 250, 1.000)", "width": 1}, "size": 10}, "zmax": null, "y": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.4999999999999984, 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.25000000000000155, 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.25000000000000155, 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.4999999999999984, 0, 0, 0, 0, 0, 0, 0, 0, 0], "type": "scatter", "x": [-50, -49, -48, -47, -46, -45, -44, -43, -42, -41, -40, -39, -38, -37, -36, -35, -34, -33, -32, -31, -30, -29, -28, -27, -26, -25, -24, -23, -22, -21, -20, -19, -18, -17, -16, -15, -14, -13, -12, -11, -10, -9, -8, -7, -6, -5, -4, -3, -2, -1, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 100, "currentCount": 100}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 0], "type": "scatter", "x": [-50, -50], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 0], "type": "scatter", "x": [-49, -49], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 0], "type": "scatter", "x": [-48, -48], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 0], "type": "scatter", "x": [-47, -47], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 0], "type": "scatter", "x": [-46, -46], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 0], "type": "scatter", "x": [-45, -45], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 0], "type": "scatter", "x": [-44, -44], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 0], "type": "scatter", "x": [-43, -43], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 0], "type": "scatter", "x": [-42, -42], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 0], "type": "scatter", "x": [-41, -41], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -0.4999999999999984], "type": "scatter", "x": [-40, -40], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 0], "type": "scatter", "x": [-39, -39], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 0], "type": "scatter", "x": [-38, -38], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 0], "type": "scatter", "x": [-37, -37], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 0], "type": "scatter", "x": [-36, -36], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 0], "type": "scatter", "x": [-35, -35], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 0], "type": "scatter", "x": [-34, -34], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 0], "type": "scatter", "x": [-33, -33], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 0], "type": "scatter", "x": [-32, -32], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 0], "type": "scatter", "x": [-31, -31], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 0], "type": "scatter", "x": [-30, -30], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 0], "type": "scatter", "x": [-29, -29], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 0], "type": "scatter", "x": [-28, -28], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 0], "type": "scatter", "x": [-27, -27], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 0], "type": "scatter", "x": [-26, -26], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 0], "type": "scatter", "x": [-25, -25], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 0], "type": "scatter", "x": [-24, -24], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 0], "type": "scatter", "x": [-23, -23], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 0], "type": "scatter", "x": [-22, -22], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 0], "type": "scatter", "x": [-21, -21], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 0], "type": "scatter", "x": [-20, -20], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 0], "type": "scatter", "x": [-19, -19], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 0], "type": "scatter", "x": [-18, -18], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 0], "type": "scatter", "x": [-17, -17], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 0], "type": "scatter", "x": [-16, -16], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 0.25000000000000155], "type": "scatter", "x": [-15, -15], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 0], "type": "scatter", "x": [-14, -14], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 0], "type": "scatter", "x": [-13, -13], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 0], "type": "scatter", "x": [-12, -12], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 0], "type": "scatter", "x": [-11, -11], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 0], "type": "scatter", "x": [-10, -10], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 0], "type": "scatter", "x": [-9, -9], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 0], "type": "scatter", "x": [-8, -8], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 0], "type": "scatter", "x": [-7, -7], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 0], "type": "scatter", "x": [-6, -6], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 0], "type": "scatter", "x": [-5, -5], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 0], "type": "scatter", "x": [-4, -4], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 0], "type": "scatter", "x": [-3, -3], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 0], "type": "scatter", "x": [-2, -2], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 0], "type": "scatter", "x": [-1, -1], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 0], "type": "scatter", "x": [0, 0], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 0], "type": "scatter", "x": [1, 1], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 0], "type": "scatter", "x": [2, 2], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 0], "type": "scatter", "x": [3, 3], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 0], "type": "scatter", "x": [4, 4], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 0], "type": "scatter", "x": [5, 5], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 0], "type": "scatter", "x": [6, 6], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 0], "type": "scatter", "x": [7, 7], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 0], "type": "scatter", "x": [8, 8], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 0], "type": "scatter", "x": [9, 9], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 0], "type": "scatter", "x": [10, 10], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 0], "type": "scatter", "x": [11, 11], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 0], "type": "scatter", "x": [12, 12], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 0], "type": "scatter", "x": [13, 13], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 0], "type": "scatter", "x": [14, 14], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, -0.25000000000000155], "type": "scatter", "x": [15, 15], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 0], "type": "scatter", "x": [16, 16], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 0], "type": "scatter", "x": [17, 17], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 0], "type": "scatter", "x": [18, 18], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 0], "type": "scatter", "x": [19, 19], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 0], "type": "scatter", "x": [20, 20], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 0], "type": "scatter", "x": [21, 21], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 0], "type": "scatter", "x": [22, 22], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 0], "type": "scatter", "x": [23, 23], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 0], "type": "scatter", "x": [24, 24], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 0], "type": "scatter", "x": [25, 25], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 0], "type": "scatter", "x": [26, 26], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 0], "type": "scatter", "x": [27, 27], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 0], "type": "scatter", "x": [28, 28], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 0], "type": "scatter", "x": [29, 29], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 0], "type": "scatter", "x": [30, 30], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 0], "type": "scatter", "x": [31, 31], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 0], "type": "scatter", "x": [32, 32], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 0], "type": "scatter", "x": [33, 33], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 0], "type": "scatter", "x": [34, 34], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 0], "type": "scatter", "x": [35, 35], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 0], "type": "scatter", "x": [36, 36], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 0], "type": "scatter", "x": [37, 37], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 0], "type": "scatter", "x": [38, 38], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 0], "type": "scatter", "x": [39, 39], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 0.4999999999999984], "type": "scatter", "x": [40, 40], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 0], "type": "scatter", "x": [41, 41], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 0], "type": "scatter", "x": [42, 42], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 0], "type": "scatter", "x": [43, 43], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 0], "type": "scatter", "x": [44, 44], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 0], "type": "scatter", "x": [45, 45], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 0], "type": "scatter", "x": [46, 46], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 0], "type": "scatter", "x": [47, 47], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 0], "type": "scatter", "x": [48, 48], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}, {"showlegend": false, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "y1", "zmin": null, "yaxis": "y", "legendgroup": "y1", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 0], "type": "scatter", "x": [49, 49], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 2, "currentCount": 2}}}], "config": {"showlegend": true, "xaxis": {"showticklabels": true, "gridwidth": 0.5, "range": [-52.970000000000006, 51.970000000000006], "domain": [0.09128390201224845, 0.9934383202099738], "mirror": false, "tickangle": 0, "showline": true, "zeroline": false, "tickfont": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "zerolinecolor": "rgba(0, 0, 0, 1)", "anchor": "y", "visible": true, "ticks": "inside", "tickmode": "array", "linecolor": "rgba(0, 0, 0, 1)", "showgrid": true, "title": {"text": "Частота (Гц)", "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}}, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickcolor": "rgb(0, 0, 0)", "type": "linear"}, "paper_bgcolor": "rgba(255, 255, 255, 1.000)", "annotations": [], "height": 400, "margin": {"l": 0, "b": 20, "r": 0, "t": 20}, "plot_bgcolor": "rgba(255, 255, 255, 1.000)", "yaxis": {"showticklabels": true, "gridwidth": 0.5, "range": [-0.5299999999999984, 0.5299999999999984], "domain": [0.07581474190726165, 0.9901574803149606], "mirror": false, "tickangle": 0, "showline": true, "zeroline": false, "tickfont": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "zerolinecolor": "rgba(0, 0, 0, 1)", "anchor": "x", "visible": true, "ticks": "inside", "tickmode": "array", "linecolor": "rgba(0, 0, 0, 1)", "showgrid": true, "title": {"text": "Фаза / π", "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}}, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickcolor": "rgb(0, 0, 0)", "type": "linear"}, "legend": {"yanchor": "auto", "xanchor": "auto", "bordercolor": "rgba(0, 0, 0, 1)", "bgcolor": "rgba(255, 255, 255, 1.000)", "borderwidth": 1, "tracegroupgap": 0, "y": 1, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "title": {"font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}, "text": ""}, "traceorder": "normal", "x": 1}, "width": 634.71875}}