{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# PyCaret 2 NLP Example\n",
"This notebook is created using PyCaret 2.0. Last updated : 28-07-2020"
]
},
{
"cell_type": "code",
"execution_count": 1,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"pycaret-nightly-0.39\n"
]
}
],
"source": [
"# check version\n",
"from pycaret.utils import version\n",
"version()"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# 1. Loading Dataset"
]
},
{
"cell_type": "code",
"execution_count": 2,
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"
\n",
"\n",
"
\n",
" \n",
" \n",
" | \n",
" country | \n",
" en | \n",
" gender | \n",
" loan_amount | \n",
" nonpayment | \n",
" sector | \n",
" status | \n",
"
\n",
" \n",
" \n",
" \n",
" 0 | \n",
" Dominican Republic | \n",
" \"Banco Esperanza\" is a group of 10 women looki... | \n",
" F | \n",
" 1225 | \n",
" partner | \n",
" Retail | \n",
" 0 | \n",
"
\n",
" \n",
" 1 | \n",
" Dominican Republic | \n",
" \"Caminemos Hacia Adelante\" or \"Walking Forward... | \n",
" F | \n",
" 1975 | \n",
" lender | \n",
" Clothing | \n",
" 0 | \n",
"
\n",
" \n",
" 2 | \n",
" Dominican Republic | \n",
" \"Creciendo Por La Union\" is a group of 10 peop... | \n",
" F | \n",
" 2175 | \n",
" partner | \n",
" Clothing | \n",
" 0 | \n",
"
\n",
" \n",
" 3 | \n",
" Dominican Republic | \n",
" \"Cristo Vive\" (\"Christ lives\" is a group of 10... | \n",
" F | \n",
" 1425 | \n",
" partner | \n",
" Clothing | \n",
" 0 | \n",
"
\n",
" \n",
" 4 | \n",
" Dominican Republic | \n",
" \"Cristo Vive\" is a large group of 35 people, 2... | \n",
" F | \n",
" 4025 | \n",
" partner | \n",
" Food | \n",
" 0 | \n",
"
\n",
" \n",
"
\n",
"
"
],
"text/plain": [
" country en \\\n",
"0 Dominican Republic \"Banco Esperanza\" is a group of 10 women looki... \n",
"1 Dominican Republic \"Caminemos Hacia Adelante\" or \"Walking Forward... \n",
"2 Dominican Republic \"Creciendo Por La Union\" is a group of 10 peop... \n",
"3 Dominican Republic \"Cristo Vive\" (\"Christ lives\" is a group of 10... \n",
"4 Dominican Republic \"Cristo Vive\" is a large group of 35 people, 2... \n",
"\n",
" gender loan_amount nonpayment sector status \n",
"0 F 1225 partner Retail 0 \n",
"1 F 1975 lender Clothing 0 \n",
"2 F 2175 partner Clothing 0 \n",
"3 F 1425 partner Clothing 0 \n",
"4 F 4025 partner Food 0 "
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"from pycaret.datasets import get_data\n",
"data = get_data('kiva')"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# 2. Initialize Setup"
]
},
{
"cell_type": "code",
"execution_count": 3,
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
" Description | Value |
\n",
" \n",
" session_id | \n",
" 123 | \n",
"
\n",
" \n",
" Documents | \n",
" 6818 | \n",
"
\n",
" \n",
" Vocab Size | \n",
" 10671 | \n",
"
\n",
" \n",
" Custom Stopwords | \n",
" False | \n",
"
\n",
"
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"from pycaret.nlp import *\n",
"nlp1 = setup(data, target = 'en', session_id=123, log_experiment=True, log_plots = True, experiment_name='kiva1')"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# 3. Create Model"
]
},
{
"cell_type": "code",
"execution_count": 4,
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"\n",
"\n",
"
\n",
" \n",
" \n",
" | \n",
" Name | \n",
" Reference | \n",
"
\n",
" \n",
" ID | \n",
" | \n",
" | \n",
"
\n",
" \n",
" \n",
" \n",
" lda | \n",
" Latent Dirichlet Allocation | \n",
" gensim/models/ldamodel | \n",
"
\n",
" \n",
" lsi | \n",
" Latent Semantic Indexing | \n",
" gensim/models/lsimodel | \n",
"
\n",
" \n",
" hdp | \n",
" Hierarchical Dirichlet Process | \n",
" gensim/models/hdpmodel | \n",
"
\n",
" \n",
" rp | \n",
" Random Projections | \n",
" gensim/models/rpmodel | \n",
"
\n",
" \n",
" nmf | \n",
" Non-Negative Matrix Factorization | \n",
" sklearn.decomposition.NMF | \n",
"
\n",
" \n",
"
\n",
"
"
],
"text/plain": [
" Name Reference\n",
"ID \n",
"lda Latent Dirichlet Allocation gensim/models/ldamodel\n",
"lsi Latent Semantic Indexing gensim/models/lsimodel\n",
"hdp Hierarchical Dirichlet Process gensim/models/hdpmodel\n",
"rp Random Projections gensim/models/rpmodel\n",
"nmf Non-Negative Matrix Factorization sklearn.decomposition.NMF"
]
},
"execution_count": 4,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"models()"
]
},
{
"cell_type": "code",
"execution_count": 5,
"metadata": {},
"outputs": [],
"source": [
"lda = create_model('lda')"
]
},
{
"cell_type": "code",
"execution_count": 6,
"metadata": {},
"outputs": [],
"source": [
"nmf = create_model('nmf', num_topics = 6)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# 4. Assign Labels"
]
},
{
"cell_type": "code",
"execution_count": 7,
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"\n",
"\n",
"
\n",
" \n",
" \n",
" | \n",
" country | \n",
" en | \n",
" gender | \n",
" loan_amount | \n",
" nonpayment | \n",
" sector | \n",
" status | \n",
" Topic_0 | \n",
" Topic_1 | \n",
" Topic_2 | \n",
" Topic_3 | \n",
" Dominant_Topic | \n",
" Perc_Dominant_Topic | \n",
"
\n",
" \n",
" \n",
" \n",
" 0 | \n",
" Dominican Republic | \n",
" group woman look receive small loan take small... | \n",
" F | \n",
" 1225 | \n",
" partner | \n",
" Retail | \n",
" 0 | \n",
" 0.443424 | \n",
" 0.170630 | \n",
" 0.001865 | \n",
" 0.384082 | \n",
" Topic 0 | \n",
" 0.44 | \n",
"
\n",
" \n",
" 1 | \n",
" Dominican Republic | \n",
" walk forward group entrepreneur seek second lo... | \n",
" F | \n",
" 1975 | \n",
" lender | \n",
" Clothing | \n",
" 0 | \n",
" 0.335674 | \n",
" 0.416064 | \n",
" 0.001612 | \n",
" 0.246650 | \n",
" Topic 1 | \n",
" 0.42 | \n",
"
\n",
" \n",
" 2 | \n",
" Dominican Republic | \n",
" group people hope start business group look re... | \n",
" F | \n",
" 2175 | \n",
" partner | \n",
" Clothing | \n",
" 0 | \n",
" 0.568597 | \n",
" 0.153035 | \n",
" 0.002369 | \n",
" 0.275999 | \n",
" Topic 0 | \n",
" 0.57 | \n",
"
\n",
" \n",
" 3 | \n",
" Dominican Republic | \n",
" live group woman look receive first loan young... | \n",
" F | \n",
" 1425 | \n",
" partner | \n",
" Clothing | \n",
" 0 | \n",
" 0.285612 | \n",
" 0.225983 | \n",
" 0.001858 | \n",
" 0.486547 | \n",
" Topic 3 | \n",
" 0.49 | \n",
"
\n",
" \n",
" 4 | \n",
" Dominican Republic | \n",
" vive large group people hope take loan many se... | \n",
" F | \n",
" 4025 | \n",
" partner | \n",
" Food | \n",
" 0 | \n",
" 0.383666 | \n",
" 0.345023 | \n",
" 0.001839 | \n",
" 0.269472 | \n",
" Topic 0 | \n",
" 0.38 | \n",
"
\n",
" \n",
"
\n",
"
"
],
"text/plain": [
" country en \\\n",
"0 Dominican Republic group woman look receive small loan take small... \n",
"1 Dominican Republic walk forward group entrepreneur seek second lo... \n",
"2 Dominican Republic group people hope start business group look re... \n",
"3 Dominican Republic live group woman look receive first loan young... \n",
"4 Dominican Republic vive large group people hope take loan many se... \n",
"\n",
" gender loan_amount nonpayment sector status Topic_0 Topic_1 \\\n",
"0 F 1225 partner Retail 0 0.443424 0.170630 \n",
"1 F 1975 lender Clothing 0 0.335674 0.416064 \n",
"2 F 2175 partner Clothing 0 0.568597 0.153035 \n",
"3 F 1425 partner Clothing 0 0.285612 0.225983 \n",
"4 F 4025 partner Food 0 0.383666 0.345023 \n",
"\n",
" Topic_2 Topic_3 Dominant_Topic Perc_Dominant_Topic \n",
"0 0.001865 0.384082 Topic 0 0.44 \n",
"1 0.001612 0.246650 Topic 1 0.42 \n",
"2 0.002369 0.275999 Topic 0 0.57 \n",
"3 0.001858 0.486547 Topic 3 0.49 \n",
"4 0.001839 0.269472 Topic 0 0.38 "
]
},
"execution_count": 7,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"lda_results = assign_model(lda)\n",
"lda_results.head()"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# 5. Analyze Model"
]
},
{
"cell_type": "code",
"execution_count": 8,
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
" \n",
" "
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"application/vnd.plotly.v1+json": {
"config": {
"linkText": "Export to plot.ly",
"plotlyServerURL": "https://plot.ly",
"showLink": true
},
"data": [
{
"marker": {
"color": "rgba(255, 153, 51, 0.6)",
"line": {
"color": "rgba(255, 153, 51, 1.0)",
"width": 1
}
},
"name": "count",
"orientation": "v",
"text": "",
"type": "bar",
"x": [
"business",
"loan",
"sell",
"child",
"year",
"buy",
"family",
"community",
"old",
"live",
"small",
"clothing",
"woman",
"entrepreneur",
"school",
"work",
"start",
"purchase",
"good",
"use",
"support",
"income",
"make",
"product",
"customer",
"husband",
"help",
"new",
"hope",
"also",
"able",
"request",
"mother",
"clothe",
"increase",
"well",
"order",
"operate",
"want",
"expand",
"hard",
"money",
"say",
"people",
"group",
"pay",
"store",
"need",
"stock",
"would",
"go",
"provide",
"time",
"shoe",
"run",
"plan",
"education",
"young",
"get",
"keep",
"improve",
"add",
"explain",
"ago",
"allow",
"earn",
"life",
"single",
"client",
"grow",
"age",
"home",
"receive",
"continue",
"take",
"capital",
"enough",
"currently",
"offer",
"profit",
"month",
"member",
"shop",
"item",
"inventory",
"high",
"daughter",
"invest",
"hair",
"house",
"marry",
"beauty",
"attend",
"sale",
"rent",
"son",
"neighborhood",
"man",
"large",
"salon"
],
"y": [
3135,
2451,
1806,
1717,
1593,
1060,
1021,
953,
883,
865,
846,
816,
785,
758,
746,
741,
737,
693,
692,
680,
667,
648,
646,
610,
609,
606,
604,
601,
592,
589,
584,
574,
565,
548,
520,
514,
491,
468,
462,
450,
449,
432,
432,
423,
413,
412,
398,
396,
386,
385,
385,
373,
370,
358,
354,
354,
344,
333,
326,
307,
299,
296,
292,
288,
273,
259,
258,
255,
255,
250,
248,
246,
240,
239,
238,
236,
235,
233,
225,
225,
224,
218,
210,
210,
206,
204,
203,
203,
201,
194,
194,
193,
192,
190,
190,
183,
181,
180,
177,
177
]
}
],
"layout": {
"legend": {
"bgcolor": "#F5F6F9",
"font": {
"color": "#4D5663"
}
},
"paper_bgcolor": "#F5F6F9",
"plot_bgcolor": "#F5F6F9",
"template": {
"data": {
"bar": [
{
"error_x": {
"color": "#2a3f5f"
},
"error_y": {
"color": "#2a3f5f"
},
"marker": {
"line": {
"color": "#E5ECF6",
"width": 0.5
}
},
"type": "bar"
}
],
"barpolar": [
{
"marker": {
"line": {
"color": "#E5ECF6",
"width": 0.5
}
},
"type": "barpolar"
}
],
"carpet": [
{
"aaxis": {
"endlinecolor": "#2a3f5f",
"gridcolor": "white",
"linecolor": "white",
"minorgridcolor": "white",
"startlinecolor": "#2a3f5f"
},
"baxis": {
"endlinecolor": "#2a3f5f",
"gridcolor": "white",
"linecolor": "white",
"minorgridcolor": "white",
"startlinecolor": "#2a3f5f"
},
"type": "carpet"
}
],
"choropleth": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"type": "choropleth"
}
],
"contour": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"colorscale": [
[
0,
"#0d0887"
],
[
0.1111111111111111,
"#46039f"
],
[
0.2222222222222222,
"#7201a8"
],
[
0.3333333333333333,
"#9c179e"
],
[
0.4444444444444444,
"#bd3786"
],
[
0.5555555555555556,
"#d8576b"
],
[
0.6666666666666666,
"#ed7953"
],
[
0.7777777777777778,
"#fb9f3a"
],
[
0.8888888888888888,
"#fdca26"
],
[
1,
"#f0f921"
]
],
"type": "contour"
}
],
"contourcarpet": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"type": "contourcarpet"
}
],
"heatmap": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"colorscale": [
[
0,
"#0d0887"
],
[
0.1111111111111111,
"#46039f"
],
[
0.2222222222222222,
"#7201a8"
],
[
0.3333333333333333,
"#9c179e"
],
[
0.4444444444444444,
"#bd3786"
],
[
0.5555555555555556,
"#d8576b"
],
[
0.6666666666666666,
"#ed7953"
],
[
0.7777777777777778,
"#fb9f3a"
],
[
0.8888888888888888,
"#fdca26"
],
[
1,
"#f0f921"
]
],
"type": "heatmap"
}
],
"heatmapgl": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"colorscale": [
[
0,
"#0d0887"
],
[
0.1111111111111111,
"#46039f"
],
[
0.2222222222222222,
"#7201a8"
],
[
0.3333333333333333,
"#9c179e"
],
[
0.4444444444444444,
"#bd3786"
],
[
0.5555555555555556,
"#d8576b"
],
[
0.6666666666666666,
"#ed7953"
],
[
0.7777777777777778,
"#fb9f3a"
],
[
0.8888888888888888,
"#fdca26"
],
[
1,
"#f0f921"
]
],
"type": "heatmapgl"
}
],
"histogram": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "histogram"
}
],
"histogram2d": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"colorscale": [
[
0,
"#0d0887"
],
[
0.1111111111111111,
"#46039f"
],
[
0.2222222222222222,
"#7201a8"
],
[
0.3333333333333333,
"#9c179e"
],
[
0.4444444444444444,
"#bd3786"
],
[
0.5555555555555556,
"#d8576b"
],
[
0.6666666666666666,
"#ed7953"
],
[
0.7777777777777778,
"#fb9f3a"
],
[
0.8888888888888888,
"#fdca26"
],
[
1,
"#f0f921"
]
],
"type": "histogram2d"
}
],
"histogram2dcontour": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"colorscale": [
[
0,
"#0d0887"
],
[
0.1111111111111111,
"#46039f"
],
[
0.2222222222222222,
"#7201a8"
],
[
0.3333333333333333,
"#9c179e"
],
[
0.4444444444444444,
"#bd3786"
],
[
0.5555555555555556,
"#d8576b"
],
[
0.6666666666666666,
"#ed7953"
],
[
0.7777777777777778,
"#fb9f3a"
],
[
0.8888888888888888,
"#fdca26"
],
[
1,
"#f0f921"
]
],
"type": "histogram2dcontour"
}
],
"mesh3d": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"type": "mesh3d"
}
],
"parcoords": [
{
"line": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "parcoords"
}
],
"pie": [
{
"automargin": true,
"type": "pie"
}
],
"scatter": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scatter"
}
],
"scatter3d": [
{
"line": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scatter3d"
}
],
"scattercarpet": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scattercarpet"
}
],
"scattergeo": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scattergeo"
}
],
"scattergl": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scattergl"
}
],
"scattermapbox": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scattermapbox"
}
],
"scatterpolar": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scatterpolar"
}
],
"scatterpolargl": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scatterpolargl"
}
],
"scatterternary": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scatterternary"
}
],
"surface": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"colorscale": [
[
0,
"#0d0887"
],
[
0.1111111111111111,
"#46039f"
],
[
0.2222222222222222,
"#7201a8"
],
[
0.3333333333333333,
"#9c179e"
],
[
0.4444444444444444,
"#bd3786"
],
[
0.5555555555555556,
"#d8576b"
],
[
0.6666666666666666,
"#ed7953"
],
[
0.7777777777777778,
"#fb9f3a"
],
[
0.8888888888888888,
"#fdca26"
],
[
1,
"#f0f921"
]
],
"type": "surface"
}
],
"table": [
{
"cells": {
"fill": {
"color": "#EBF0F8"
},
"line": {
"color": "white"
}
},
"header": {
"fill": {
"color": "#C8D4E3"
},
"line": {
"color": "white"
}
},
"type": "table"
}
]
},
"layout": {
"annotationdefaults": {
"arrowcolor": "#2a3f5f",
"arrowhead": 0,
"arrowwidth": 1
},
"coloraxis": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"colorscale": {
"diverging": [
[
0,
"#8e0152"
],
[
0.1,
"#c51b7d"
],
[
0.2,
"#de77ae"
],
[
0.3,
"#f1b6da"
],
[
0.4,
"#fde0ef"
],
[
0.5,
"#f7f7f7"
],
[
0.6,
"#e6f5d0"
],
[
0.7,
"#b8e186"
],
[
0.8,
"#7fbc41"
],
[
0.9,
"#4d9221"
],
[
1,
"#276419"
]
],
"sequential": [
[
0,
"#0d0887"
],
[
0.1111111111111111,
"#46039f"
],
[
0.2222222222222222,
"#7201a8"
],
[
0.3333333333333333,
"#9c179e"
],
[
0.4444444444444444,
"#bd3786"
],
[
0.5555555555555556,
"#d8576b"
],
[
0.6666666666666666,
"#ed7953"
],
[
0.7777777777777778,
"#fb9f3a"
],
[
0.8888888888888888,
"#fdca26"
],
[
1,
"#f0f921"
]
],
"sequentialminus": [
[
0,
"#0d0887"
],
[
0.1111111111111111,
"#46039f"
],
[
0.2222222222222222,
"#7201a8"
],
[
0.3333333333333333,
"#9c179e"
],
[
0.4444444444444444,
"#bd3786"
],
[
0.5555555555555556,
"#d8576b"
],
[
0.6666666666666666,
"#ed7953"
],
[
0.7777777777777778,
"#fb9f3a"
],
[
0.8888888888888888,
"#fdca26"
],
[
1,
"#f0f921"
]
]
},
"colorway": [
"#636efa",
"#EF553B",
"#00cc96",
"#ab63fa",
"#FFA15A",
"#19d3f3",
"#FF6692",
"#B6E880",
"#FF97FF",
"#FECB52"
],
"font": {
"color": "#2a3f5f"
},
"geo": {
"bgcolor": "white",
"lakecolor": "white",
"landcolor": "#E5ECF6",
"showlakes": true,
"showland": true,
"subunitcolor": "white"
},
"hoverlabel": {
"align": "left"
},
"hovermode": "closest",
"mapbox": {
"style": "light"
},
"paper_bgcolor": "white",
"plot_bgcolor": "#E5ECF6",
"polar": {
"angularaxis": {
"gridcolor": "white",
"linecolor": "white",
"ticks": ""
},
"bgcolor": "#E5ECF6",
"radialaxis": {
"gridcolor": "white",
"linecolor": "white",
"ticks": ""
}
},
"scene": {
"xaxis": {
"backgroundcolor": "#E5ECF6",
"gridcolor": "white",
"gridwidth": 2,
"linecolor": "white",
"showbackground": true,
"ticks": "",
"zerolinecolor": "white"
},
"yaxis": {
"backgroundcolor": "#E5ECF6",
"gridcolor": "white",
"gridwidth": 2,
"linecolor": "white",
"showbackground": true,
"ticks": "",
"zerolinecolor": "white"
},
"zaxis": {
"backgroundcolor": "#E5ECF6",
"gridcolor": "white",
"gridwidth": 2,
"linecolor": "white",
"showbackground": true,
"ticks": "",
"zerolinecolor": "white"
}
},
"shapedefaults": {
"line": {
"color": "#2a3f5f"
}
},
"ternary": {
"aaxis": {
"gridcolor": "white",
"linecolor": "white",
"ticks": ""
},
"baxis": {
"gridcolor": "white",
"linecolor": "white",
"ticks": ""
},
"bgcolor": "#E5ECF6",
"caxis": {
"gridcolor": "white",
"linecolor": "white",
"ticks": ""
}
},
"title": {
"x": 0.05
},
"xaxis": {
"automargin": true,
"gridcolor": "white",
"linecolor": "white",
"ticks": "",
"title": {
"standoff": 15
},
"zerolinecolor": "white",
"zerolinewidth": 2
},
"yaxis": {
"automargin": true,
"gridcolor": "white",
"linecolor": "white",
"ticks": "",
"title": {
"standoff": 15
},
"zerolinecolor": "white",
"zerolinewidth": 2
}
}
},
"title": {
"font": {
"color": "#4D5663"
},
"text": "Topic 0: Top 100 words after removing stop words"
},
"xaxis": {
"gridcolor": "#E1E5ED",
"linecolor": "black",
"showgrid": true,
"tickfont": {
"color": "#4D5663"
},
"title": {
"font": {
"color": "#4D5663"
},
"text": ""
},
"zerolinecolor": "#E1E5ED"
},
"yaxis": {
"gridcolor": "#E1E5ED",
"linecolor": "black",
"showgrid": true,
"tickfont": {
"color": "#4D5663"
},
"title": {
"font": {
"color": "#4D5663"
},
"text": "Count"
},
"zerolinecolor": "#E1E5ED"
}
}
},
"text/html": [
"\n",
" \n",
" \n",
"
\n",
" \n",
"
"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"plot_model(lda)"
]
},
{
"cell_type": "code",
"execution_count": 14,
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
" \n",
" "
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"application/vnd.plotly.v1+json": {
"config": {
"linkText": "Export to plot.ly",
"plotlyServerURL": "https://plot.ly",
"showLink": true
},
"data": [
{
"marker": {
"color": "rgba(255, 153, 51, 0.6)",
"line": {
"color": "rgba(255, 153, 51, 1.0)",
"width": 1
}
},
"name": "count",
"orientation": "v",
"text": "",
"type": "bar",
"x": [
"year old",
"request loan",
"expand business",
"loan buy",
"small business",
"start business",
"year ago",
"sell clothing",
"mother child",
"use loan",
"business sell",
"hope business",
"work hard",
"loan purchase",
"business year",
"support family",
"single mother",
"would like",
"beauty product",
"operate business",
"hard work",
"increase income",
"marry child",
"start small",
"operate small",
"sell clothe",
"repay loan",
"support child",
"run business",
"loan risk_willing_accept_additional",
"plan use",
"risk_making loan",
"many_communities_remain loan",
"risk_willing_accept_additional risk_making",
"business allow",
"enough money",
"attend school",
"receive loan",
"child age",
"old single",
"child live",
"buy clothing",
"disclaimer_due_recent_event many_communities_remain",
"school fee",
"add stock",
"run small",
"buy new",
"good education",
"child school",
"provide family",
"old marry",
"old woman",
"second loan",
"woman live",
"first loan",
"husband child",
"live child",
"make business",
"old mother",
"proud mother",
"grocery store",
"buy good",
"start sell",
"customer need",
"training_educational_programs_information microfinance_ecuador_services_please",
"woman community",
"go school",
"business training_educational_programs_information",
"loan help",
"make live",
"microfinance_ecuador_services_please mifex_org_www_mifex",
"mifex_org_www_mifex org",
"people community",
"earn live",
"loan together",
"clothing bulk",
"month ago",
"business selling",
"attract new",
"husband work",
"sell good",
"last year",
"add new",
"income family",
"business able",
"business successful",
"take loan",
"child attend",
"business help",
"also sell",
"therefore request",
"live community",
"pay school",
"live husband",
"entrepreneur hope",
"order increase",
"loan expand",
"small store",
"old child",
"high school"
],
"y": [
659,
415,
289,
284,
241,
225,
215,
199,
198,
196,
167,
167,
158,
152,
151,
151,
151,
145,
132,
130,
129,
129,
129,
127,
124,
124,
109,
108,
106,
103,
103,
103,
103,
103,
102,
101,
93,
92,
92,
89,
86,
84,
84,
83,
83,
82,
81,
80,
80,
75,
75,
74,
73,
73,
72,
72,
71,
71,
71,
71,
70,
69,
69,
69,
68,
67,
67,
65,
65,
65,
64,
64,
64,
64,
62,
62,
62,
61,
61,
60,
60,
60,
60,
59,
58,
58,
56,
55,
55,
55,
54,
54,
54,
54,
54,
54,
53,
52,
52,
52
]
}
],
"layout": {
"legend": {
"bgcolor": "#F5F6F9",
"font": {
"color": "#4D5663"
}
},
"paper_bgcolor": "#F5F6F9",
"plot_bgcolor": "#F5F6F9",
"template": {
"data": {
"bar": [
{
"error_x": {
"color": "#2a3f5f"
},
"error_y": {
"color": "#2a3f5f"
},
"marker": {
"line": {
"color": "#E5ECF6",
"width": 0.5
}
},
"type": "bar"
}
],
"barpolar": [
{
"marker": {
"line": {
"color": "#E5ECF6",
"width": 0.5
}
},
"type": "barpolar"
}
],
"carpet": [
{
"aaxis": {
"endlinecolor": "#2a3f5f",
"gridcolor": "white",
"linecolor": "white",
"minorgridcolor": "white",
"startlinecolor": "#2a3f5f"
},
"baxis": {
"endlinecolor": "#2a3f5f",
"gridcolor": "white",
"linecolor": "white",
"minorgridcolor": "white",
"startlinecolor": "#2a3f5f"
},
"type": "carpet"
}
],
"choropleth": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"type": "choropleth"
}
],
"contour": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"colorscale": [
[
0,
"#0d0887"
],
[
0.1111111111111111,
"#46039f"
],
[
0.2222222222222222,
"#7201a8"
],
[
0.3333333333333333,
"#9c179e"
],
[
0.4444444444444444,
"#bd3786"
],
[
0.5555555555555556,
"#d8576b"
],
[
0.6666666666666666,
"#ed7953"
],
[
0.7777777777777778,
"#fb9f3a"
],
[
0.8888888888888888,
"#fdca26"
],
[
1,
"#f0f921"
]
],
"type": "contour"
}
],
"contourcarpet": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"type": "contourcarpet"
}
],
"heatmap": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"colorscale": [
[
0,
"#0d0887"
],
[
0.1111111111111111,
"#46039f"
],
[
0.2222222222222222,
"#7201a8"
],
[
0.3333333333333333,
"#9c179e"
],
[
0.4444444444444444,
"#bd3786"
],
[
0.5555555555555556,
"#d8576b"
],
[
0.6666666666666666,
"#ed7953"
],
[
0.7777777777777778,
"#fb9f3a"
],
[
0.8888888888888888,
"#fdca26"
],
[
1,
"#f0f921"
]
],
"type": "heatmap"
}
],
"heatmapgl": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"colorscale": [
[
0,
"#0d0887"
],
[
0.1111111111111111,
"#46039f"
],
[
0.2222222222222222,
"#7201a8"
],
[
0.3333333333333333,
"#9c179e"
],
[
0.4444444444444444,
"#bd3786"
],
[
0.5555555555555556,
"#d8576b"
],
[
0.6666666666666666,
"#ed7953"
],
[
0.7777777777777778,
"#fb9f3a"
],
[
0.8888888888888888,
"#fdca26"
],
[
1,
"#f0f921"
]
],
"type": "heatmapgl"
}
],
"histogram": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "histogram"
}
],
"histogram2d": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"colorscale": [
[
0,
"#0d0887"
],
[
0.1111111111111111,
"#46039f"
],
[
0.2222222222222222,
"#7201a8"
],
[
0.3333333333333333,
"#9c179e"
],
[
0.4444444444444444,
"#bd3786"
],
[
0.5555555555555556,
"#d8576b"
],
[
0.6666666666666666,
"#ed7953"
],
[
0.7777777777777778,
"#fb9f3a"
],
[
0.8888888888888888,
"#fdca26"
],
[
1,
"#f0f921"
]
],
"type": "histogram2d"
}
],
"histogram2dcontour": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"colorscale": [
[
0,
"#0d0887"
],
[
0.1111111111111111,
"#46039f"
],
[
0.2222222222222222,
"#7201a8"
],
[
0.3333333333333333,
"#9c179e"
],
[
0.4444444444444444,
"#bd3786"
],
[
0.5555555555555556,
"#d8576b"
],
[
0.6666666666666666,
"#ed7953"
],
[
0.7777777777777778,
"#fb9f3a"
],
[
0.8888888888888888,
"#fdca26"
],
[
1,
"#f0f921"
]
],
"type": "histogram2dcontour"
}
],
"mesh3d": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"type": "mesh3d"
}
],
"parcoords": [
{
"line": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "parcoords"
}
],
"pie": [
{
"automargin": true,
"type": "pie"
}
],
"scatter": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scatter"
}
],
"scatter3d": [
{
"line": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scatter3d"
}
],
"scattercarpet": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scattercarpet"
}
],
"scattergeo": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scattergeo"
}
],
"scattergl": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scattergl"
}
],
"scattermapbox": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scattermapbox"
}
],
"scatterpolar": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scatterpolar"
}
],
"scatterpolargl": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scatterpolargl"
}
],
"scatterternary": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scatterternary"
}
],
"surface": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"colorscale": [
[
0,
"#0d0887"
],
[
0.1111111111111111,
"#46039f"
],
[
0.2222222222222222,
"#7201a8"
],
[
0.3333333333333333,
"#9c179e"
],
[
0.4444444444444444,
"#bd3786"
],
[
0.5555555555555556,
"#d8576b"
],
[
0.6666666666666666,
"#ed7953"
],
[
0.7777777777777778,
"#fb9f3a"
],
[
0.8888888888888888,
"#fdca26"
],
[
1,
"#f0f921"
]
],
"type": "surface"
}
],
"table": [
{
"cells": {
"fill": {
"color": "#EBF0F8"
},
"line": {
"color": "white"
}
},
"header": {
"fill": {
"color": "#C8D4E3"
},
"line": {
"color": "white"
}
},
"type": "table"
}
]
},
"layout": {
"annotationdefaults": {
"arrowcolor": "#2a3f5f",
"arrowhead": 0,
"arrowwidth": 1
},
"coloraxis": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"colorscale": {
"diverging": [
[
0,
"#8e0152"
],
[
0.1,
"#c51b7d"
],
[
0.2,
"#de77ae"
],
[
0.3,
"#f1b6da"
],
[
0.4,
"#fde0ef"
],
[
0.5,
"#f7f7f7"
],
[
0.6,
"#e6f5d0"
],
[
0.7,
"#b8e186"
],
[
0.8,
"#7fbc41"
],
[
0.9,
"#4d9221"
],
[
1,
"#276419"
]
],
"sequential": [
[
0,
"#0d0887"
],
[
0.1111111111111111,
"#46039f"
],
[
0.2222222222222222,
"#7201a8"
],
[
0.3333333333333333,
"#9c179e"
],
[
0.4444444444444444,
"#bd3786"
],
[
0.5555555555555556,
"#d8576b"
],
[
0.6666666666666666,
"#ed7953"
],
[
0.7777777777777778,
"#fb9f3a"
],
[
0.8888888888888888,
"#fdca26"
],
[
1,
"#f0f921"
]
],
"sequentialminus": [
[
0,
"#0d0887"
],
[
0.1111111111111111,
"#46039f"
],
[
0.2222222222222222,
"#7201a8"
],
[
0.3333333333333333,
"#9c179e"
],
[
0.4444444444444444,
"#bd3786"
],
[
0.5555555555555556,
"#d8576b"
],
[
0.6666666666666666,
"#ed7953"
],
[
0.7777777777777778,
"#fb9f3a"
],
[
0.8888888888888888,
"#fdca26"
],
[
1,
"#f0f921"
]
]
},
"colorway": [
"#636efa",
"#EF553B",
"#00cc96",
"#ab63fa",
"#FFA15A",
"#19d3f3",
"#FF6692",
"#B6E880",
"#FF97FF",
"#FECB52"
],
"font": {
"color": "#2a3f5f"
},
"geo": {
"bgcolor": "white",
"lakecolor": "white",
"landcolor": "#E5ECF6",
"showlakes": true,
"showland": true,
"subunitcolor": "white"
},
"hoverlabel": {
"align": "left"
},
"hovermode": "closest",
"mapbox": {
"style": "light"
},
"paper_bgcolor": "white",
"plot_bgcolor": "#E5ECF6",
"polar": {
"angularaxis": {
"gridcolor": "white",
"linecolor": "white",
"ticks": ""
},
"bgcolor": "#E5ECF6",
"radialaxis": {
"gridcolor": "white",
"linecolor": "white",
"ticks": ""
}
},
"scene": {
"xaxis": {
"backgroundcolor": "#E5ECF6",
"gridcolor": "white",
"gridwidth": 2,
"linecolor": "white",
"showbackground": true,
"ticks": "",
"zerolinecolor": "white"
},
"yaxis": {
"backgroundcolor": "#E5ECF6",
"gridcolor": "white",
"gridwidth": 2,
"linecolor": "white",
"showbackground": true,
"ticks": "",
"zerolinecolor": "white"
},
"zaxis": {
"backgroundcolor": "#E5ECF6",
"gridcolor": "white",
"gridwidth": 2,
"linecolor": "white",
"showbackground": true,
"ticks": "",
"zerolinecolor": "white"
}
},
"shapedefaults": {
"line": {
"color": "#2a3f5f"
}
},
"ternary": {
"aaxis": {
"gridcolor": "white",
"linecolor": "white",
"ticks": ""
},
"baxis": {
"gridcolor": "white",
"linecolor": "white",
"ticks": ""
},
"bgcolor": "#E5ECF6",
"caxis": {
"gridcolor": "white",
"linecolor": "white",
"ticks": ""
}
},
"title": {
"x": 0.05
},
"xaxis": {
"automargin": true,
"gridcolor": "white",
"linecolor": "white",
"ticks": "",
"title": {
"standoff": 15
},
"zerolinecolor": "white",
"zerolinewidth": 2
},
"yaxis": {
"automargin": true,
"gridcolor": "white",
"linecolor": "white",
"ticks": "",
"title": {
"standoff": 15
},
"zerolinecolor": "white",
"zerolinewidth": 2
}
}
},
"title": {
"font": {
"color": "#4D5663"
},
"text": "Topic 0: Top 100 bigrams after removing stop words"
},
"xaxis": {
"gridcolor": "#E1E5ED",
"linecolor": "black",
"showgrid": true,
"tickfont": {
"color": "#4D5663"
},
"title": {
"font": {
"color": "#4D5663"
},
"text": ""
},
"zerolinecolor": "#E1E5ED"
},
"yaxis": {
"gridcolor": "#E1E5ED",
"linecolor": "black",
"showgrid": true,
"tickfont": {
"color": "#4D5663"
},
"title": {
"font": {
"color": "#4D5663"
},
"text": "Count"
},
"zerolinecolor": "#E1E5ED"
}
}
},
"text/html": [
"\n",
" \n",
" \n",
"
\n",
" \n",
"
"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"plot_model(lda, plot = 'bigram')"
]
},
{
"cell_type": "code",
"execution_count": 15,
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
" \n",
" "
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"application/vnd.plotly.v1+json": {
"config": {
"plotlyServerURL": "https://plot.ly"
},
"data": [
{
"hovertemplate": "Dominant_Topic=Topic 0
0=%{x}
1=%{y}
2=%{z}",
"legendgroup": "Topic 0",
"marker": {
"color": "#636efa",
"opacity": 0.7,
"symbol": "circle"
},
"mode": "markers",
"name": "Topic 0",
"scene": "scene",
"showlegend": true,
"type": "scatter3d",
"x": [
16.595439910888672,
5.145115852355957,
-12.466286659240723,
-3.8541617393493652,
-0.3120221495628357,
16.47825813293457,
4.655796051025391,
4.563195705413818,
-0.3741532266139984,
-12.975743293762207,
-8.396430969238281,
4.232903957366943,
-7.577964782714844,
5.7745819091796875,
14.462666511535645,
-4.594424247741699,
-9.155817985534668,
-6.13486909866333,
2.7368369102478027,
-0.6387239694595337,
-4.889614105224609,
-11.150932312011719,
2.2813167572021484,
-4.776876449584961,
-0.4660402834415436,
-0.47603994607925415,
-6.918000221252441,
-5.819336891174316,
14.368995666503906,
7.72613525390625,
-6.650099754333496,
-8.856061935424805,
1.9696871042251587,
-0.21074941754341125,
-5.819275856018066,
-11.4144926071167,
0.9856781363487244,
-10.89576530456543,
1.4440582990646362,
-6.8229546546936035,
-9.97859001159668,
-5.970274925231934,
3.6852762699127197,
4.733493804931641,
10.418229103088379,
-8.427484512329102,
-12.242279052734375,
0.5885111093521118,
-2.37642240524292,
6.9676127433776855,
-7.452221870422363,
3.965193033218384,
-11.486331939697266,
2.4348137378692627,
4.055622577667236,
2.7716078758239746,
4.321136951446533,
-6.9931254386901855,
-8.990813255310059,
12.946891784667969,
-1.156823754310608,
-9.159062385559082,
12.849684715270996,
-2.6008715629577637,
-5.3269805908203125,
1.6495836973190308,
1.0663172006607056,
2.3562467098236084,
-4.9705119132995605,
-3.1477248668670654,
-0.3901362121105194,
-6.318826198577881,
-5.800037860870361,
-7.430701732635498,
6.965178489685059,
3.7055232524871826,
5.644230365753174,
2.165058135986328,
-4.396826267242432,
-5.668209552764893,
-2.3360917568206787,
-5.4781317710876465,
-8.87818431854248,
4.9849395751953125,
-2.4625794887542725,
-10.76195240020752,
-0.08696899563074112,
-1.8764315843582153,
-2.6571927070617676,
-2.483147621154785,
-14.334267616271973,
-3.7980716228485107,
6.967233657836914,
-11.896947860717773,
-13.29904842376709,
-6.24144983291626,
-9.44058895111084,
-10.335269927978516,
-2.032545804977417,
9.143510818481445,
13.119577407836914,
4.471343040466309,
4.576564788818359,
-5.774596214294434,
-6.987396717071533,
-3.462120294570923,
15.457656860351562,
-0.6764494180679321,
-7.924173355102539,
-0.9480882287025452,
-0.2774891257286072,
-5.741797924041748,
-6.612063407897949,
4.875232219696045,
2.7493386268615723,
-2.4185500144958496,
0.5983814001083374,
1.1619619131088257,
2.2940621376037598,
2.489945650100708,
-7.344547748565674,
-6.106742858886719,
15.068389892578125,
8.159833908081055,
1.5844961404800415,
1.2029799222946167,
-5.934110641479492,
16.026058197021484,
-6.342024803161621,
-7.3692803382873535,
3.539940595626831,
-3.726249933242798,
13.578423500061035,
-8.104804039001465,
4.566971778869629,
-6.512581825256348,
8.563922882080078,
10.467522621154785,
12.964448928833008,
-4.885501861572266,
-4.144380569458008,
0.15577679872512817,
7.0398430824279785,
-6.0937981605529785,
-0.20403139293193817,
-2.1383416652679443,
7.574733257293701,
-12.585040092468262,
3.0238494873046875,
5.819982051849365,
-1.2079108953475952,
-4.75876522064209,
-0.07028751075267792,
-11.374994277954102,
-0.24140550196170807,
-4.106602191925049,
-2.3844716548919678,
-11.592222213745117,
5.614957332611084,
-2.248758316040039,
-6.029374599456787,
-4.7749152183532715,
16.25430679321289,
-11.247145652770996,
-4.883100986480713,
-4.2555832862854,
-10.68294620513916,
-8.119714736938477,
-0.024485217407345772,
13.832147598266602,
3.684654951095581,
-8.765275001525879,
-6.361919403076172,
0.4363032877445221,
-8.86672592163086,
7.0243425369262695,
-5.556980133056641,
-7.279855728149414,
14.830700874328613,
-2.369903087615967,
1.464905023574829,
3.219236135482788,
-11.00167465209961,
1.6206902265548706,
-8.679624557495117,
0.22500085830688477,
-2.5084540843963623,
1.623932957649231,
-2.219881057739258,
-7.838560104370117,
1.4631575345993042,
-3.9034030437469482,
3.256340503692627,
-9.245429039001465,
-1.6263093948364258,
6.888617038726807,
-7.606617450714111,
-3.2400598526000977,
0.3194386661052704,
0.756418764591217,
3.482896089553833,
6.918430328369141,
13.426698684692383,
-11.47541618347168,
-8.594549179077148,
7.941000461578369,
-4.684323310852051,
-0.38493505120277405,
-11.426159858703613,
-8.461572647094727,
-12.748188972473145,
2.144484758377075,
-11.179728507995605,
-11.14006519317627,
3.465172529220581,
-3.253073215484619,
-12.27180290222168,
13.233194351196289,
4.790182590484619,
3.3835227489471436,
-4.651316165924072,
-11.376304626464844,
7.072085380554199,
0.5996605157852173,
-5.532912731170654,
-3.2673983573913574,
-8.816922187805176,
14.879921913146973,
-3.46108341217041,
2.008547306060791,
12.303122520446777,
-1.563964605331421,
2.4522151947021484,
-5.674728870391846,
4.070427894592285,
-1.2270641326904297,
-7.702270030975342,
7.3184814453125,
-6.6215128898620605,
-5.583301544189453,
-2.80051851272583,
4.608824253082275,
-2.9945228099823,
-0.5111789107322693,
-2.279468536376953,
4.412353992462158,
3.302788496017456,
-5.975155353546143,
-1.5082027912139893,
-1.822169542312622,
-9.597175598144531,
-5.631819248199463,
-1.8583836555480957,
-6.2656731605529785,
-8.908612251281738,
-3.9930951595306396,
-3.5352909564971924,
13.58701229095459,
-2.1675493717193604,
-5.825225830078125,
2.483827829360962,
4.629907131195068,
4.868706703186035,
-4.732542991638184,
2.6290688514709473,
-3.6152150630950928,
-6.744243621826172,
-0.252902626991272,
-12.221539497375488,
-9.64855670928955,
11.400678634643555,
-0.14525216817855835,
1.74900221824646,
-7.924877166748047,
-0.25781747698783875,
-2.2969014644622803,
-4.525209426879883,
-3.6793978214263916,
-5.3303399085998535,
-1.2653546333312988,
-9.946553230285645,
3.258044481277466,
-6.47567081451416,
-5.306464195251465,
4.634940147399902,
-6.479568958282471,
-2.5940332412719727,
-10.21053409576416,
13.22545051574707,
0.0461047925055027,
-7.085596084594727,
12.413491249084473,
-1.8109155893325806,
-6.040655136108398,
10.842979431152344,
15.255918502807617,
-10.717789649963379,
3.2867612838745117,
-6.936245441436768,
10.85281753540039,
-2.011658191680908,
-1.2816106081008911,
-10.422657012939453,
-10.42265796661377,
-6.749590873718262,
-2.0462894439697266,
-0.2119637280702591,
4.244884967803955,
15.254481315612793,
1.7837824821472168,
-8.982359886169434,
7.329919815063477,
-12.918277740478516,
4.485287666320801,
4.287317276000977,
-6.365196228027344,
-0.3093778192996979,
-4.924925327301025,
-2.681617259979248,
12.334840774536133,
-8.670412063598633,
-4.516656398773193,
-10.990830421447754,
2.821270704269409,
-2.550058364868164,
3.2327287197113037,
7.63689661026001,
-3.4926962852478027,
-1.048815369606018,
4.948841094970703,
3.0786614418029785,
4.395920276641846,
-12.09218978881836,
-5.7158942222595215,
-4.6679277420043945,
1.822632908821106,
0.5465444326400757,
4.243495941162109,
8.275218963623047,
-0.15974846482276917,
1.2126972675323486,
-4.590640544891357,
-10.958264350891113,
7.843717098236084,
5.03599214553833,
-12.820178985595703,
-1.490683913230896,
-9.182022094726562,
-4.585971832275391,
-0.06647410988807678,
12.933563232421875,
-2.408355474472046,
3.4139859676361084,
-1.0823240280151367,
3.7674148082733154,
-4.485783576965332,
9.763126373291016,
6.734627723693848,
-6.984920501708984,
-4.16923713684082,
-9.81484603881836,
9.604723930358887,
-8.737311363220215,
-2.3594768047332764,
-3.986175298690796,
4.92733907699585,
15.451108932495117,
15.107495307922363,
-9.324490547180176,
-7.124570369720459,
15.96401309967041,
-8.526915550231934,
3.380728244781494,
-1.4349474906921387,
4.516194820404053,
11.07351016998291,
-2.1167075634002686,
-10.228687286376953,
-3.109243154525757,
0.27419453859329224,
-6.8514299392700195,
-1.0569732189178467,
-9.216032028198242,
-7.048250198364258,
-6.6182475090026855,
-4.650899410247803,
-2.3652517795562744,
-1.5225831270217896,
-12.657320976257324,
4.903630256652832,
14.093877792358398,
2.7439119815826416,
-0.362040251493454,
7.727121829986572,
-3.939378499984741,
-3.3388142585754395,
-0.20343346893787384,
-4.026312351226807,
-3.9764246940612793,
10.088542938232422,
-9.87572193145752,
-6.1931633949279785,
6.268890857696533,
-3.1295368671417236,
2.7794582843780518,
2.329540491104126,
-1.7852675914764404,
-6.645172595977783,
2.4915072917938232,
2.328531503677368,
-4.531744003295898,
0.028953593224287033,
13.03166389465332,
-7.660968780517578,
-9.275537490844727,
-5.088085174560547,
7.097878932952881,
-10.891098976135254,
-6.523261547088623,
-0.5101777911186218,
0.33805394172668457,
-4.089479923248291,
10.119531631469727,
-10.880486488342285,
3.189030408859253,
-11.762983322143555,
-2.4046144485473633,
4.324565887451172,
-5.16438102722168,
0.8267204165458679,
0.5950658321380615,
-11.034767150878906,
-9.941513061523438,
-8.692251205444336,
2.3968474864959717,
-2.661789894104004,
-6.2823638916015625,
-6.472472190856934,
-4.498153209686279,
12.307635307312012,
0.29384860396385193,
-0.10938439518213272,
6.145028591156006,
-10.892322540283203,
-4.061075687408447,
-0.7034732699394226,
-1.2467492818832397,
15.1295747756958,
-7.7906575202941895,
10.989686012268066,
-3.6105334758758545,
-4.947867393493652,
-3.72831392288208,
-13.67129898071289,
-3.2825536727905273,
13.13494873046875,
2.399819850921631,
6.4872355461120605,
8.425667762756348,
1.6132134199142456,
1.4588122367858887,
5.360889911651611,
2.7405271530151367,
3.6519038677215576,
-3.928196907043457,
3.756108283996582,
14.692251205444336,
-6.927392959594727,
1.07473886013031,
-8.559544563293457,
-8.864477157592773,
-12.927593231201172,
-13.478730201721191,
-8.628179550170898,
-11.034160614013672,
15.206413269042969,
-6.164860248565674,
13.315579414367676,
13.330342292785645,
-4.019998073577881,
-6.9417524337768555,
-3.1864776611328125,
14.764701843261719,
-2.989691972732544,
9.906610488891602,
8.184622764587402,
4.077085018157959,
-2.6643564701080322,
15.432439804077148,
-8.095392227172852,
12.298233032226562,
15.039545059204102,
-8.747383117675781,
7.439221382141113,
-7.653630256652832,
-10.386857986450195,
6.907612323760986,
3.735128402709961,
6.190353870391846,
-8.133030891418457,
6.089468479156494,
15.050032615661621,
-2.3896892070770264,
5.222358226776123,
4.70842170715332,
6.342731475830078,
12.936880111694336,
0.35128962993621826,
5.786820411682129,
14.682539939880371,
-8.587827682495117,
-12.339953422546387,
8.380049705505371,
12.678601264953613,
-0.4995448589324951,
-8.123971939086914,
-3.190476179122925,
2.871645450592041,
-11.905622482299805,
2.5742321014404297,
12.679048538208008,
7.344140529632568,
-4.0651774406433105,
-4.7503461837768555,
-9.258428573608398,
-0.24096277356147766,
-13.401687622070312,
0.61472487449646,
-2.045789957046509,
1.2570720911026,
3.1131932735443115,
-4.970882415771484,
6.8738508224487305,
-8.974111557006836,
-5.259907245635986,
-10.596007347106934,
-2.254373788833618,
-6.601846694946289,
-4.146162509918213,
-9.084053039550781,
2.014547824859619,
4.9796953201293945,
-12.510702133178711,
7.412421703338623,
0.9972618818283081,
-7.431975364685059,
-9.437870979309082,
-0.8715401887893677,
-11.934181213378906,
-4.310844898223877,
1.7257781028747559,
1.8544172048568726,
2.4988808631896973,
-1.5304547548294067,
-5.451549530029297,
-7.601692199707031,
-0.6104702949523926,
4.558903217315674,
-5.091491222381592,
-6.922855377197266,
0.7070879936218262,
2.690646171569824,
-2.6098735332489014,
11.018898963928223,
-6.936535835266113,
-6.961988925933838,
-13.012985229492188,
4.310405731201172,
6.189181327819824,
-5.557774066925049,
-8.964150428771973,
-2.36376953125,
-7.77100944519043,
-10.815253257751465,
1.8536931276321411,
-11.008564949035645,
-8.698929786682129,
-0.651397705078125,
-7.566959857940674,
4.200369834899902,
0.6234014630317688,
-10.062426567077637,
-5.044238567352295,
0.33827972412109375,
-13.316128730773926,
-7.283448219299316,
2.766679048538208,
4.599085807800293,
-7.4586501121521,
1.4714686870574951,
4.708406448364258,
5.22226095199585,
5.586782932281494,
3.1897354125976562,
-10.808478355407715,
-2.2643957138061523,
-2.8812789916992188,
-0.10926031321287155,
-13.45736026763916,
2.4932827949523926,
4.034292697906494,
-3.6251492500305176,
14.007922172546387,
-2.9691059589385986,
-6.735915184020996,
-1.6868788003921509,
-7.937946319580078,
-9.317985534667969,
7.591933250427246,
7.925686359405518,
-1.9808354377746582,
-9.003713607788086,
15.490924835205078,
7.9800262451171875,
-6.805935382843018,
-5.058764934539795,
-11.652900695800781,
5.380676746368408,
-0.22771817445755005,
-9.406821250915527,
0.4474170207977295,
-5.505850791931152,
-0.18595454096794128,
-1.8146982192993164,
4.38564395904541,
8.591144561767578,
-10.565081596374512,
-11.632973670959473,
6.813274383544922,
-4.029353141784668,
3.2031514644622803,
-4.763669013977051,
-3.9290409088134766,
-1.494446039199829,
3.9292688369750977,
-7.577510833740234,
4.8911919593811035,
-0.14575301110744476,
-1.3020097017288208,
3.1836397647857666,
-10.338587760925293,
-5.152486324310303,
5.049014568328857,
-3.1430578231811523,
4.174344062805176,
8.037277221679688,
-7.462314128875732,
-13.512430191040039,
-3.5692176818847656,
-5.3801679611206055,
-7.6673736572265625,
4.505998611450195,
-7.533578395843506,
-11.613923072814941,
1.910342812538147,
9.261333465576172,
7.387235641479492,
-1.2432719469070435,
0.24199245870113373,
8.854372024536133,
8.074734687805176,
4.36314058303833,
6.054868698120117,
-4.773955345153809,
2.1226589679718018,
-6.224850177764893,
13.173439025878906,
-6.217916965484619,
1.2127081155776978,
7.947563648223877,
5.335215091705322,
1.849631667137146,
3.5640227794647217,
0.28990092873573303,
-7.571202278137207,
-11.64081859588623,
2.650993824005127,
14.206347465515137,
5.630209445953369,
-5.51472806930542,
-6.54654598236084,
14.429459571838379,
3.7215616703033447,
7.864680767059326,
-8.750353813171387,
-11.316314697265625,
-0.5333537459373474,
-4.335178375244141,
7.3860297203063965,
-10.771403312683105,
3.767589569091797,
14.941937446594238,
3.958737373352051,
-4.5994744300842285,
-9.105897903442383,
-8.046119689941406,
11.688372611999512,
-9.94570541381836,
12.700848579406738,
-3.8680050373077393,
12.441664695739746,
13.215193748474121,
3.8710827827453613,
-1.6370474100112915,
12.443140029907227,
-6.544326305389404,
6.224730491638184,
1.3613381385803223,
12.855304718017578,
0.25291937589645386,
2.4195117950439453,
-3.45869517326355,
15.418858528137207,
-11.042276382446289,
2.688852071762085,
-6.276308536529541,
15.602972030639648,
12.727631568908691,
-0.3360166549682617,
7.251502513885498,
-5.686546325683594,
-4.850890636444092,
-8.548324584960938,
-2.1986382007598877,
0.9437696933746338,
-6.560669898986816,
0.6564216613769531,
-3.40140438079834,
-3.2222001552581787,
-6.732322692871094,
13.571712493896484,
-1.243566870689392,
-4.7809739112854,
-8.885730743408203,
-2.093843936920166,
-5.970461845397949,
4.939612865447998,
-6.367676258087158,
-12.19058895111084,
-10.512136459350586,
1.5380700826644897,
2.8321096897125244,
5.542896747589111,
-1.739547848701477,
-2.426753282546997,
3.6014978885650635,
-7.818583011627197,
-2.8128178119659424,
11.144126892089844,
2.4726195335388184,
14.503438949584961,
-4.93784761428833,
-4.802412986755371,
-0.3759181499481201,
8.460055351257324,
5.137872695922852,
-2.0275542736053467,
0.1281179040670395,
1.3108758926391602,
-0.538242518901825,
3.0957133769989014,
-9.983839988708496,
15.521081924438477,
-3.567439317703247,
-3.2822768688201904,
-2.6541171073913574,
9.7615327835083,
-0.5715073943138123,
-8.807456016540527,
4.534565448760986,
-0.16361817717552185,
-4.824559688568115,
2.5073273181915283,
-3.6077842712402344,
-9.83991813659668,
13.886496543884277,
3.6531522274017334,
-0.1724778264760971,
-6.721188068389893,
3.8183257579803467,
15.140020370483398,
-4.440064430236816,
1.9408659934997559,
0.36917728185653687,
-1.6812196969985962,
-9.448403358459473,
-4.258419513702393,
5.425967693328857,
4.095706939697266,
-8.62325382232666,
-4.753324508666992,
-4.887674331665039,
3.1557726860046387,
13.849306106567383,
2.2402615547180176,
-3.399562358856201,
-6.318741321563721,
-4.134842872619629,
-3.8196327686309814,
-9.356319427490234,
5.6417951583862305,
2.3707399368286133,
14.30835247039795,
-8.549169540405273,
3.4731271266937256,
6.4363179206848145,
1.7396687269210815,
7.696203708648682,
-0.6627523303031921,
-1.6116429567337036,
3.1437056064605713,
8.821946144104004,
-13.811057090759277,
0.7866988182067871,
-9.646871566772461,
2.812558889389038,
-14.508594512939453,
-4.826774597167969,
-4.486697196960449,
1.7121316194534302,
-3.008033275604248,
4.899008750915527,
-4.0195417404174805,
-1.3927934169769287,
4.94187068939209,
-7.037941932678223,
7.797390460968018,
-8.51781177520752,
7.129302024841309,
-2.5012853145599365,
3.85054349899292,
4.169047832489014,
-2.3302619457244873,
10.568559646606445,
14.258899688720703,
-10.298433303833008,
-2.6099777221679688,
5.6460676193237305,
1.2446600198745728,
5.266425132751465,
-3.853429079055786,
-2.4576034545898438,
-0.8990482687950134,
2.6188888549804688,
-8.237272262573242,
7.070802688598633,
2.8572957515716553,
-12.518596649169922,
-9.075448036193848,
-5.042224884033203,
-4.83082914352417,
-13.256568908691406,
13.328717231750488,
1.4358457326889038,
-12.555313110351562,
0.4290687143802643,
8.750312805175781,
5.724595069885254,
-0.4264397621154785,
-9.875178337097168,
-10.147522926330566,
-4.660629749298096,
-0.061554908752441406,
6.248887538909912,
2.51798152923584,
-9.214214324951172,
-11.603840827941895,
5.380760192871094,
11.284112930297852,
-12.836037635803223,
-3.224968194961548,
-6.010532379150391,
2.658872127532959,
-6.246311664581299,
3.2567219734191895,
-4.559051513671875,
7.686395645141602,
14.43482494354248,
-10.889864921569824,
1.418170690536499,
-10.949912071228027,
-7.23518705368042,
-1.6613752841949463,
5.160717010498047,
4.092267990112305,
-9.395326614379883,
-6.45813512802124,
0.7635414004325867,
2.465993881225586,
5.469605445861816,
0.8367480039596558,
7.661128044128418,
-3.6724472045898438,
6.721362590789795,
-9.449087142944336,
4.503339767456055,
2.4388818740844727,
7.0849738121032715,
3.7924258708953857,
8.768454551696777,
8.885096549987793,
5.792293548583984,
5.208340167999268,
-4.424078464508057,
-2.5534615516662598,
-1.9289628267288208,
-6.913407802581787,
7.167795658111572,
8.534553527832031,
7.614572525024414,
-0.7712748646736145,
9.843476295471191,
-13.390686988830566,
1.142871379852295,
-1.5537058115005493,
-2.655447244644165,
3.9040729999542236,
4.871075630187988,
-8.65785026550293,
-1.339672327041626,
12.773935317993164,
0.5217759013175964,
5.75913143157959,
-6.631145477294922,
3.424940824508667,
-2.7586612701416016,
-2.6744866371154785,
-0.5681784152984619,
2.2714827060699463,
6.279621601104736,
4.667671203613281,
14.492255210876465,
0.6528031229972839,
5.190239906311035,
13.14630126953125,
16.189144134521484,
-8.367745399475098,
4.058446407318115,
4.848043441772461,
-3.5048623085021973,
5.220816135406494,
5.055227279663086,
-0.17406943440437317,
-2.285109519958496,
-1.8557004928588867,
4.912283420562744,
-6.1987786293029785,
-8.644941329956055,
-9.640013694763184,
-7.029677391052246,
12.896389961242676,
2.918208360671997,
-11.679203987121582,
15.446564674377441,
0.416556179523468,
4.094377040863037,
-6.413680076599121,
1.0326064825057983,
-8.145133018493652,
3.6458740234375,
-0.18800076842308044,
0.9812899827957153,
-6.264953136444092,
3.068613290786743,
-4.8492021560668945,
0.8286858201026917,
-1.323225736618042,
0.2846934497356415,
2.516430377960205,
15.44289493560791,
-10.624773979187012,
-2.185134172439575,
7.4467926025390625,
2.741699695587158,
2.0812244415283203,
-10.59512710571289,
-7.5633111000061035,
-6.6421003341674805,
-9.059439659118652,
-3.878079652786255,
-11.191651344299316,
11.395869255065918,
4.298463821411133,
-5.328597068786621,
-3.134059190750122,
7.273403644561768,
4.666774272918701,
0.7167975902557373,
-8.714932441711426,
-11.199073791503906,
-5.483177185058594,
5.775103569030762,
-2.387690544128418,
-1.3452672958374023,
8.251526832580566,
-5.492847919464111,
4.408276081085205,
-1.9524290561676025,
-9.062796592712402,
3.389075994491577,
-1.1350826025009155,
-7.358215808868408,
-4.479842662811279,
-14.949505805969238,
-1.7671972513198853,
-3.9327635765075684,
7.234222412109375,
-4.325446128845215,
-4.139658451080322,
-4.261608600616455,
2.7260279655456543,
0.45425763726234436,
3.4107625484466553,
-12.544670104980469,
11.516145706176758,
-1.4079772233963013,
-2.8944473266601562,
5.238033771514893,
-5.682480812072754,
9.703006744384766,
11.368870735168457,
-7.679128170013428,
2.8961193561553955,
-0.24083584547042847,
-8.536294937133789,
8.319623947143555,
5.183898448944092,
2.979583740234375,
3.3529179096221924,
-1.6877251863479614,
-10.18761157989502,
-0.48373231291770935,
8.819765090942383,
3.8742105960845947,
-0.5971126556396484,
5.229991436004639,
12.665596961975098,
-0.15459951758384705,
3.6649656295776367,
13.489628791809082,
-2.674356460571289,
3.5785274505615234,
-8.570186614990234,
11.558633804321289,
6.223771095275879,
-1.2224475145339966,
5.120491027832031,
4.8736467361450195,
2.474942207336426,
-4.57064962387085,
4.438521385192871,
2.8032007217407227,
3.931952714920044,
4.378607749938965,
-5.438888072967529,
5.618043899536133,
1.6714093685150146,
-1.0205073356628418,
2.5481834411621094,
0.17250628769397736,
-4.421195983886719,
1.218039870262146,
-11.706900596618652,
-7.777771472930908,
-0.807610273361206,
3.68025803565979,
2.4799039363861084,
9.588107109069824,
-0.10504533350467682,
5.313436031341553,
-4.365696907043457,
4.788938999176025,
4.019626617431641,
-0.40688878297805786,
-6.248869895935059,
0.21919600665569305,
-8.324564933776855,
0.104359932243824,
13.81965446472168,
-1.6788907051086426,
-11.496598243713379,
-0.7652162313461304,
-4.044875144958496,
-7.45117712020874,
1.9464493989944458,
1.3940460681915283,
-3.767853021621704,
-0.10132355988025665,
-10.436009407043457,
14.902844429016113,
4.719598293304443,
-4.630573749542236,
-7.331909656524658,
0.35933324694633484,
-10.789283752441406,
-1.159663200378418,
-0.15419870615005493,
-6.7756547927856445,
15.308456420898438,
0.9718084335327148,
-3.937096357345581,
-7.899636745452881,
0.8181138038635254,
-6.112357139587402,
-5.693658828735352,
0.44809669256210327,
-3.1309711933135986,
-9.50574779510498,
-4.518187046051025,
-1.9600083827972412,
4.386251926422119,
15.226960182189941,
-4.13869047164917,
-8.069242477416992,
5.9815874099731445,
7.595605373382568,
3.205131769180298,
6.943241596221924,
-12.614130020141602,
6.84931755065918,
3.9700629711151123,
-3.9843251705169678,
-5.843860149383545,
-10.926651000976562,
-4.554422378540039,
2.087489366531372,
3.300171136856079,
13.49924087524414,
-0.8053046464920044,
7.198892116546631,
6.583433628082275,
-1.257832407951355,
-1.912828803062439,
-8.330544471740723,
-4.31353235244751,
-10.55036735534668,
-3.973660707473755,
-0.07567216455936432,
-4.4451494216918945,
-10.720747947692871,
1.8654667139053345,
-4.419313430786133,
-2.046546697616577,
3.1576807498931885,
-2.238065719604492,
-8.53006649017334,
-1.260042667388916,
-8.582194328308105,
-11.383914947509766,
-5.011230945587158,
4.317667484283447,
-2.6163222789764404,
-3.396399736404419,
-7.924887180328369,
-8.144391059875488,
5.2626495361328125,
11.393518447875977,
-0.5724908709526062,
-6.5495381355285645,
-0.3176913261413574,
5.551935195922852,
15.255276679992676,
6.837542533874512,
-6.767677307128906,
10.643555641174316,
-8.621378898620605,
8.830157279968262,
-5.660876274108887,
3.5166430473327637,
-8.326050758361816,
12.973655700683594,
13.779208183288574,
-10.496857643127441,
-9.046908378601074,
1.7601741552352905,
3.628509521484375,
-13.453051567077637,
3.1583738327026367,
-9.960545539855957,
5.805263042449951,
9.958151817321777,
-1.7202363014221191,
-6.253901481628418,
-8.27586841583252,
10.37142276763916,
0.3117130994796753,
2.3912758827209473,
-6.627788066864014,
-6.472213268280029,
-4.893874645233154,
-10.946063995361328,
-5.0711445808410645,
-7.256258010864258,
-8.616937637329102,
7.818941116333008,
-9.560619354248047,
3.7935540676116943,
15.888955116271973,
0.15538974106311798,
7.098002910614014,
2.1241066455841064,
8.606283187866211,
2.0956060886383057,
-11.790051460266113,
-8.609847068786621,
-8.288433074951172,
5.0327467918396,
2.6728060245513916,
9.793601036071777,
-4.229645252227783,
4.257749080657959,
2.174082040786743,
-0.3631127178668976,
2.029513120651245,
-1.2184123992919922,
7.381795883178711,
5.027331829071045,
3.876978874206543,
1.8466877937316895,
1.426425814628601,
4.353596210479736,
5.684569358825684,
5.719028472900391,
-6.364889621734619,
-7.735406875610352,
-10.614180564880371,
-1.8809605836868286,
-6.182719707489014,
-11.240458488464355,
6.573224067687988,
-4.463070392608643,
-5.641672611236572,
-5.1798272132873535,
-5.516410827636719,
0.3581084907054901,
15.070709228515625,
2.1484129428863525,
7.3735504150390625,
-10.491498947143555,
-5.593010425567627,
12.893598556518555,
-0.0335722342133522,
0.1319037824869156,
14.53928279876709,
-13.80301284790039,
-10.904525756835938,
-9.995429039001465,
15.336390495300293,
-13.251480102539062,
2.3244667053222656,
-12.976079940795898,
-9.0282564163208,
-1.3431340456008911,
0.9077455997467041,
-4.568493843078613,
-7.965606689453125,
-7.6153483390808105,
-12.272500991821289,
0.8846900463104248,
0.3415675759315491,
8.320828437805176,
-2.0229971408843994,
-2.787747859954834,
6.981831073760986,
8.781571388244629,
-2.939837694168091,
-3.963986396789551,
6.599315166473389,
4.374002456665039,
4.744234085083008,
-8.974427223205566,
3.2406744956970215,
2.4813859462738037,
5.493853569030762,
1.970600962638855,
-8.440842628479004,
6.4303202629089355,
6.780280113220215,
-3.06487774848938,
14.494275093078613,
-5.635740280151367,
-1.6982522010803223,
0.3576124608516693,
3.3993124961853027,
-9.419869422912598,
-10.05016040802002,
-4.471102714538574,
-4.5355706214904785,
-0.06423676013946533,
-9.667444229125977,
3.012972831726074,
-6.139490127563477,
-11.587700843811035,
3.0334699153900146,
-9.716772079467773,
6.489872932434082,
3.533134937286377,
-2.059314250946045,
-6.4218549728393555,
-6.751124382019043,
10.547593116760254,
13.806201934814453,
1.430405855178833,
5.828418731689453,
2.847287893295288,
-5.115473747253418,
-3.7016499042510986,
8.218306541442871,
-12.213683128356934,
-4.142564296722412,
8.056214332580566,
3.101893186569214,
-10.155741691589355,
6.604701995849609,
-3.677201509475708,
4.094305992126465,
-10.644166946411133,
7.0743327140808105,
3.1570749282836914,
5.700026035308838,
-3.258666515350342,
-1.0383280515670776,
-10.593412399291992,
-11.257068634033203,
-0.38811030983924866,
-5.929861545562744,
-9.024334907531738,
13.009332656860352,
-5.349279403686523,
8.092162132263184,
-6.385378360748291,
3.990898370742798,
13.66512393951416,
-2.5627684593200684,
-12.720396041870117,
-4.188350200653076,
13.29887580871582,
2.225956439971924,
9.862211227416992,
5.064130783081055,
-6.668076515197754,
-1.1934856176376343,
-3.659947633743286,
7.037959575653076,
1.9389662742614746,
-2.519411087036133,
-3.4067296981811523,
14.905058860778809,
-1.2715063095092773,
15.262542724609375,
-0.4766346216201782,
13.69372844696045,
-1.1986329555511475,
8.03121280670166,
-5.317254543304443,
-6.616686820983887,
-13.47713565826416,
-9.022985458374023,
0.8540941476821899,
5.030761241912842,
-0.14203323423862457,
-2.944979667663574,
-3.5372743606567383,
13.695486068725586,
-0.22110684216022491,
14.625690460205078,
-7.948704719543457,
-6.23776388168335,
-3.0748488903045654,
-8.456168174743652,
15.573403358459473,
13.285816192626953,
-7.292119979858398,
-12.526503562927246,
-6.56572151184082,
-4.3648271560668945,
-8.379714012145996,
-9.668614387512207,
-9.931612968444824,
7.99404239654541,
-6.455204963684082,
-9.916601181030273,
-2.7127952575683594,
-3.5206871032714844,
0.28026440739631653,
4.280725002288818,
2.0458016395568848,
1.5960348844528198,
-11.730230331420898,
-3.7828664779663086,
-11.251206398010254,
3.6616129875183105,
14.108007431030273,
5.021066665649414,
-5.029788017272949,
-12.455806732177734,
-0.5548943281173706,
-10.977395057678223,
-14.641411781311035,
-4.637406826019287,
-2.35774564743042,
-3.861553430557251,
7.285698890686035,
-0.5070421695709229,
-12.891899108886719,
-3.445211887359619,
-5.41372013092041,
13.504230499267578,
1.1942873001098633,
-9.49653148651123,
-10.22686767578125,
-8.644513130187988,
-13.165060043334961,
4.537851333618164,
-4.17372989654541,
-0.3361125886440277,
14.19736385345459,
2.4747798442840576,
-4.250697612762451,
-10.9673433303833,
-0.7407926917076111,
-5.3786725997924805,
-0.21781694889068604,
-4.329198360443115,
-5.894343376159668,
-5.651072978973389,
1.2255780696868896,
-2.6836235523223877,
-10.79763126373291,
2.0610244274139404,
-2.3809423446655273,
2.1985223293304443,
-11.508028984069824,
-1.7226170301437378,
-0.473893940448761,
-5.47797155380249,
-5.672029495239258,
-4.21521520614624,
-2.852919340133667,
4.805955410003662,
3.900306463241577,
-9.273242950439453,
-8.436112403869629,
-6.301302909851074,
4.176680564880371,
-11.370870590209961,
-4.704662799835205,
11.79764461517334,
-7.171405792236328,
6.475320339202881,
12.804461479187012,
-8.613383293151855,
-2.3030383586883545,
6.996462345123291,
2.538135528564453,
-0.08727111667394638,
-5.760072231292725,
-12.192682266235352,
-10.855100631713867,
-4.742106914520264,
-9.92063045501709,
3.4309582710266113,
4.2610392570495605,
-4.249881267547607,
5.395012378692627,
5.841184616088867,
-9.467961311340332,
-8.929519653320312,
2.7007064819335938,
3.0911314487457275,
14.825139045715332,
-1.9469313621520996,
2.3813369274139404,
-4.796685695648193,
10.836882591247559,
-7.168789386749268,
-6.938630104064941,
-0.31792524456977844,
5.036180019378662,
8.607168197631836,
-0.47173556685447693,
5.3851799964904785,
-8.536861419677734,
-3.089510202407837,
9.954106330871582,
-8.315383911132812,
-2.5534582138061523,
-7.866876602172852,
-12.328485488891602,
2.9035794734954834,
-2.5439274311065674,
1.999532699584961,
-3.4822139739990234,
-0.19526073336601257,
-6.168313503265381,
4.215172290802002,
-3.2097928524017334,
13.130881309509277,
-4.586559772491455,
-5.110575199127197,
2.5730860233306885,
14.524262428283691,
-10.426010131835938,
-6.4351630210876465,
-6.818012237548828,
8.237496376037598,
3.886338472366333,
-4.237549304962158,
7.381069183349609,
-6.027871608734131,
-14.839527130126953,
-13.300677299499512,
0.5592561364173889,
-8.633423805236816,
-8.938953399658203,
-12.521484375,
-9.841912269592285,
-7.171628475189209,
-5.965921878814697,
-5.2584967613220215,
3.6399004459381104,
-0.3444737493991852,
7.974363327026367,
1.7395817041397095,
10.523763656616211,
8.278255462646484,
7.575022220611572,
-0.7081261873245239,
-5.266005516052246,
-2.0577898025512695,
5.0613837242126465,
1.8279880285263062,
-0.15882046520709991,
2.150306463241577,
15.443460464477539,
-2.7716405391693115,
2.1257495880126953,
-11.98401927947998,
-3.9824790954589844,
-4.089911937713623,
3.2687437534332275,
-7.245835781097412,
-5.813608169555664,
-3.5550200939178467,
-12.869649887084961,
11.811567306518555
],
"y": [
16.536283493041992,
16.085466384887695,
16.70976448059082,
11.872713088989258,
16.56321144104004,
16.57233238220215,
18.147476196289062,
14.765142440795898,
18.42041015625,
16.30697250366211,
18.57304573059082,
17.6983642578125,
16.135526657104492,
17.289587020874023,
16.014123916625977,
19.761333465576172,
18.62067985534668,
19.26017951965332,
11.744190216064453,
19.35268211364746,
8.41496753692627,
17.556081771850586,
15.754192352294922,
14.388099670410156,
11.598586082458496,
6.583728313446045,
18.65374755859375,
18.826997756958008,
11.382637023925781,
17.006685256958008,
16.39214324951172,
17.701818466186523,
4.452061176300049,
12.062223434448242,
19.761425018310547,
17.049076080322266,
14.237574577331543,
17.435544967651367,
4.299728870391846,
16.65138816833496,
17.839038848876953,
10.912510871887207,
11.299626350402832,
17.794126510620117,
15.624922752380371,
19.0085506439209,
16.864089965820312,
6.305266857147217,
8.613287925720215,
17.21570587158203,
16.183103561401367,
16.4833984375,
17.32076072692871,
18.452795028686523,
17.75704002380371,
15.741594314575195,
16.947032928466797,
18.94414710998535,
18.194692611694336,
11.604961395263672,
9.881677627563477,
18.630786895751953,
11.728017807006836,
15.350313186645508,
9.468474388122559,
4.475922584533691,
18.478275299072266,
10.401901245117188,
19.791973114013672,
19.708026885986328,
15.640008926391602,
19.007356643676758,
19.768192291259766,
19.170429229736328,
18.233118057250977,
6.407482624053955,
16.785911560058594,
5.776341915130615,
16.578529357910156,
8.895267486572266,
19.52994728088379,
10.807012557983398,
15.244734764099121,
3.707996368408203,
18.457847595214844,
17.80241584777832,
14.088850975036621,
17.97040367126465,
11.949349403381348,
6.320679664611816,
14.390192985534668,
17.977968215942383,
18.248844146728516,
17.012027740478516,
16.091875076293945,
18.289051055908203,
18.163082122802734,
15.772148132324219,
9.597260475158691,
11.213693618774414,
12.49416446685791,
3.6643075942993164,
17.176794052124023,
19.572078704833984,
12.087316513061523,
19.80878257751465,
16.754587173461914,
17.62763023376465,
19.179702758789062,
13.866945266723633,
19.11747932434082,
19.717914581298828,
19.144386291503906,
16.292003631591797,
15.254541397094727,
17.368358612060547,
15.328906059265137,
15.03592300415039,
5.480474472045898,
9.447493553161621,
18.48573875427246,
17.843490600585938,
11.190422058105469,
14.040099143981934,
18.180482864379883,
14.856330871582031,
19.764820098876953,
16.83893394470215,
16.72758674621582,
18.267253875732422,
11.388750076293945,
14.892885208129883,
12.12313461303711,
19.127002716064453,
11.178731918334961,
18.104787826538086,
16.724435806274414,
10.313779830932617,
11.489232063293457,
14.285975456237793,
11.96579647064209,
19.219484329223633,
16.948530197143555,
11.55676555633545,
11.804359436035156,
19.666500091552734,
17.322389602661133,
16.5059814453125,
15.650375366210938,
17.13751220703125,
14.389704704284668,
13.933355331420898,
7.60892391204834,
17.417659759521484,
16.789751052856445,
12.41994571685791,
19.51026725769043,
17.28168296813965,
17.83560562133789,
19.291410446166992,
16.76919937133789,
14.136246681213379,
16.617298126220703,
17.462783813476562,
18.004304885864258,
13.567276000976562,
17.499324798583984,
13.702220916748047,
18.814546585083008,
15.462457656860352,
17.232900619506836,
17.102811813354492,
11.302057266235352,
15.033936500549316,
16.75436782836914,
17.242536544799805,
17.925519943237305,
19.25784683227539,
16.620216369628906,
17.470638275146484,
17.456382751464844,
18.865131378173828,
17.63503646850586,
17.58579444885254,
18.8948974609375,
17.150989532470703,
15.449955940246582,
19.06598663330078,
6.853741645812988,
12.687965393066406,
15.148306846618652,
18.950429916381836,
4.15635347366333,
14.18039321899414,
6.343050956726074,
13.880766868591309,
15.863619804382324,
12.47914981842041,
18.820396423339844,
4.447330474853516,
15.159369468688965,
18.254079818725586,
12.343456268310547,
16.914897918701172,
18.869930267333984,
16.997434616088867,
9.931148529052734,
18.34225082397461,
17.19851303100586,
15.993156433105469,
16.514564514160156,
8.993498802185059,
17.36765480041504,
17.002723693847656,
16.388134002685547,
17.68301773071289,
16.83672523498535,
12.397211074829102,
6.848940372467041,
11.60810375213623,
17.765539169311523,
17.11199378967285,
13.845603942871094,
14.335999488830566,
13.744711875915527,
16.62863540649414,
18.8275203704834,
10.871705055236816,
19.8212833404541,
17.334800720214844,
13.809395790100098,
19.407745361328125,
9.671565055847168,
19.384201049804688,
8.76431655883789,
18.684741973876953,
12.60168743133545,
13.433177947998047,
17.755592346191406,
19.66156005859375,
19.74144172668457,
3.8078854084014893,
9.106853485107422,
12.03112506866455,
12.654462814331055,
16.77478790283203,
15.278911590576172,
19.454456329345703,
6.829662322998047,
19.215682983398438,
14.903080940246582,
10.442302703857422,
18.821056365966797,
18.937957763671875,
18.125595092773438,
11.749648094177246,
10.142956733703613,
15.956952095031738,
9.744044303894043,
11.671102523803711,
15.496622085571289,
15.380579948425293,
3.722033739089966,
17.63368034362793,
7.717172622680664,
19.848100662231445,
19.365652084350586,
18.546039581298828,
16.656658172607422,
18.377090454101562,
14.795110702514648,
11.274328231811523,
12.5451078414917,
19.089597702026367,
6.720627784729004,
6.210546970367432,
8.575825691223145,
17.96656608581543,
19.816553115844727,
5.373917579650879,
16.817562103271484,
8.63830280303955,
19.35132598876953,
13.844765663146973,
18.297266006469727,
18.081117630004883,
17.661298751831055,
17.72076988220215,
16.207508087158203,
7.012289047241211,
16.388614654541016,
11.567377090454102,
18.54990577697754,
14.720172882080078,
15.535991668701172,
8.65199089050293,
17.507083892822266,
18.854820251464844,
19.09886360168457,
11.07437801361084,
19.632144927978516,
6.185530185699463,
16.28392791748047,
16.283912658691406,
15.33712387084961,
10.040891647338867,
19.335535049438477,
4.1858811378479,
10.714573860168457,
18.34296226501465,
18.681787490844727,
13.328927993774414,
15.92566204071045,
14.506786346435547,
5.049673557281494,
19.07050895690918,
18.860136032104492,
14.419404029846191,
17.39520263671875,
13.346240043640137,
13.5800199508667,
18.7415714263916,
17.463909149169922,
15.546594619750977,
16.36948013305664,
15.435099601745605,
14.672929763793945,
19.86734390258789,
17.17745590209961,
15.76998519897461,
8.144680976867676,
6.601531505584717,
16.70970344543457,
17.965999603271484,
14.980327606201172,
18.102859497070312,
16.904550552368164,
6.513521671295166,
16.439786911010742,
16.86775016784668,
17.623016357421875,
15.048131942749023,
17.644046783447266,
17.752330780029297,
17.98272132873535,
16.306190490722656,
5.508934497833252,
14.339725494384766,
19.63767433166504,
17.430326461791992,
16.24895477294922,
16.876678466796875,
10.53352165222168,
12.356451988220215,
18.071155548095703,
15.17202377319336,
16.291288375854492,
16.67997932434082,
15.387428283691406,
19.15106964111328,
16.098379135131836,
16.453027725219727,
13.894410133361816,
19.011899948120117,
10.347268104553223,
17.765073776245117,
9.75674057006836,
10.920875549316406,
14.696821212768555,
15.736942291259766,
16.815902709960938,
17.284704208374023,
15.646129608154297,
18.709976196289062,
16.40619659423828,
10.806206703186035,
9.48535442352295,
15.157943725585938,
19.6949462890625,
16.136215209960938,
17.794605255126953,
18.55213737487793,
16.516550064086914,
15.971174240112305,
14.467582702636719,
18.211271286010742,
17.163043975830078,
17.852258682250977,
16.539222717285156,
3.638559103012085,
16.663143157958984,
6.961008071899414,
12.54818344116211,
14.061914443969727,
18.04562759399414,
12.358613014221191,
7.14681339263916,
8.170263290405273,
20.200162887573242,
15.496973991394043,
17.189361572265625,
19.42902183532715,
2.2589197158813477,
9.395792961120605,
10.738499641418457,
18.994089126586914,
18.284526824951172,
19.04498291015625,
10.830578804016113,
11.407145500183105,
12.29401683807373,
7.938514232635498,
16.268342971801758,
18.33696746826172,
15.959918975830078,
9.775395393371582,
3.199852705001831,
16.36126708984375,
17.498891830444336,
18.59252166748047,
15.016036987304688,
18.190732955932617,
10.385181427001953,
17.453018188476562,
17.488954544067383,
16.900671005249023,
19.587785720825195,
17.558578491210938,
14.564730644226074,
4.487517833709717,
4.750522136688232,
17.257511138916016,
17.980844497680664,
18.81619644165039,
9.763309478759766,
8.740726470947266,
19.059520721435547,
17.41431427001953,
13.908305168151855,
13.695292472839355,
17.425212860107422,
6.134064197540283,
16.43506622314453,
16.693655014038086,
19.82976722717285,
11.519170761108398,
6.903724670410156,
16.795061111450195,
13.71188735961914,
15.540536880493164,
16.351219177246094,
15.201044082641602,
19.740955352783203,
15.323308944702148,
16.219852447509766,
9.075960159301758,
9.987011909484863,
18.33385467529297,
16.876737594604492,
19.097448348999023,
16.48160171508789,
16.36710548400879,
10.576247215270996,
17.875539779663086,
19.140357971191406,
8.324377059936523,
10.455068588256836,
19.524993896484375,
18.08456039428711,
18.380481719970703,
18.774776458740234,
16.365079879760742,
15.40155029296875,
18.896255493164062,
17.64577293395996,
11.040263175964355,
19.685354232788086,
16.149858474731445,
16.15755844116211,
17.78000831604004,
14.878368377685547,
19.687908172607422,
16.583620071411133,
19.50664520263672,
11.54338550567627,
17.828245162963867,
18.692520141601562,
17.309192657470703,
9.490615844726562,
15.68071174621582,
13.799113273620605,
10.660894393920898,
16.58510398864746,
13.536821365356445,
18.871442794799805,
17.296092987060547,
17.565797805786133,
18.450729370117188,
16.671031951904297,
19.13487434387207,
18.373323440551758,
10.49508285522461,
18.34609031677246,
14.82423210144043,
17.043437957763672,
18.361099243164062,
12.663894653320312,
18.234094619750977,
1.2965071201324463,
16.50574493408203,
18.9416446685791,
15.342628479003906,
17.18109893798828,
12.884932518005371,
16.483938217163086,
12.932066917419434,
19.62403678894043,
18.80074691772461,
17.004528045654297,
16.931488037109375,
12.884758949279785,
17.404830932617188,
17.65005874633789,
10.917413711547852,
17.954553604125977,
19.003122329711914,
15.406970024108887,
18.967544555664062,
19.566617965698242,
18.135982513427734,
15.382529258728027,
19.74790382385254,
17.214622497558594,
18.248727798461914,
19.577669143676758,
17.140104293823242,
10.679076194763184,
18.76380157470703,
8.152907371520996,
18.325130462646484,
17.790937423706055,
7.055798053741455,
16.57749366760254,
12.90477466583252,
17.988924026489258,
18.02153205871582,
18.491079330444336,
5.043944358825684,
17.057022094726562,
17.733394622802734,
14.698010444641113,
18.311141967773438,
5.999120235443115,
12.647354125976562,
13.009799003601074,
12.516436576843262,
14.038551330566406,
7.377083778381348,
19.6668643951416,
19.528167724609375,
14.826051712036133,
4.449459552764893,
15.874773979187012,
10.963455200195312,
18.452945709228516,
16.83261489868164,
16.223899841308594,
16.762847900390625,
1.5279895067214966,
9.074527740478516,
16.5327205657959,
12.545373916625977,
19.1328182220459,
17.75791358947754,
17.78588104248047,
17.634788513183594,
18.462886810302734,
19.40513038635254,
18.435007095336914,
6.066206455230713,
14.694644927978516,
14.622514724731445,
8.069892883300781,
19.13376235961914,
15.902750968933105,
17.193864822387695,
18.777557373046875,
18.25275421142578,
13.266042709350586,
17.57962417602539,
17.044580459594727,
14.825322151184082,
1.3556560277938843,
17.780363082885742,
17.7738094329834,
12.310461044311523,
15.596114158630371,
10.964154243469238,
15.606853485107422,
14.52664852142334,
18.664838790893555,
19.78950309753418,
10.349432945251465,
19.774423599243164,
18.899822235107422,
17.520944595336914,
19.120075225830078,
18.536521911621094,
13.156229972839355,
17.364028930664062,
18.74854850769043,
16.73340606689453,
9.51222038269043,
14.250970840454102,
17.933517456054688,
19.60224723815918,
16.851398468017578,
14.272252082824707,
19.33609390258789,
16.899381637573242,
12.28139877319336,
16.287799835205078,
14.019434928894043,
18.689861297607422,
17.508777618408203,
13.77640151977539,
17.88437843322754,
15.710000038146973,
16.379194259643555,
19.812725067138672,
14.943092346191406,
19.688892364501953,
19.78261375427246,
17.631242752075195,
18.660005569458008,
18.940494537353516,
18.511930465698242,
19.321430206298828,
16.791778564453125,
18.73352813720703,
17.69816780090332,
19.373661041259766,
18.52507209777832,
18.133085250854492,
15.472203254699707,
17.859262466430664,
19.28826141357422,
15.026756286621094,
18.14594841003418,
19.561920166015625,
19.082149505615234,
18.221410751342773,
19.139698028564453,
17.255495071411133,
18.24547576904297,
14.70590591430664,
18.126819610595703,
19.06820297241211,
15.992016792297363,
16.71202850341797,
17.876441955566406,
17.130891799926758,
1.8783533573150635,
19.56201934814453,
15.38425350189209,
19.068883895874023,
12.590394020080566,
19.08351707458496,
18.494810104370117,
17.329463958740234,
18.488121032714844,
17.555768966674805,
15.288643836975098,
18.811073303222656,
19.23065757751465,
17.161537170410156,
18.473838806152344,
10.184584617614746,
1.0634829998016357,
19.486608505249023,
16.89876365661621,
16.54885482788086,
14.749696731567383,
17.961109161376953,
18.45583152770996,
17.33870506286621,
16.228092193603516,
17.67757225036621,
3.3125743865966797,
17.762535095214844,
18.167245864868164,
16.57001495361328,
18.71303939819336,
19.735647201538086,
18.014572143554688,
19.00569725036621,
15.783637046813965,
14.664543151855469,
13.23701286315918,
16.507158279418945,
13.369638442993164,
12.911428451538086,
18.516254425048828,
17.279399871826172,
13.367231369018555,
16.9000244140625,
16.64895248413086,
17.53679656982422,
13.04975414276123,
5.733270645141602,
17.907835006713867,
18.73101043701172,
9.194774627685547,
17.50902557373047,
15.978433609008789,
19.397706985473633,
16.733144760131836,
12.22614860534668,
16.61655616760254,
17.187822341918945,
19.592905044555664,
19.310327529907227,
18.942827224731445,
18.113433837890625,
17.370922088623047,
9.980183601379395,
18.745134353637695,
11.834558486938477,
9.49506950378418,
19.479339599609375,
16.314598083496094,
17.459548950195312,
16.583595275878906,
18.545108795166016,
16.127532958984375,
19.73569679260254,
16.894777297973633,
16.975095748901367,
16.88562774658203,
16.17599868774414,
16.295888900756836,
18.7906436920166,
17.75255012512207,
19.575122833251953,
19.6822509765625,
18.537168502807617,
15.824663162231445,
19.310447692871094,
15.047012329101562,
11.020208358764648,
11.170313835144043,
19.830718994140625,
19.731605529785156,
15.53625202178955,
15.689902305603027,
16.067607879638672,
19.479398727416992,
12.11137866973877,
18.48733139038086,
14.388189315795898,
8.152379989624023,
17.79311752319336,
9.38840103149414,
16.228282928466797,
15.394760131835938,
12.125478744506836,
14.918113708496094,
19.055727005004883,
16.963138580322266,
11.337520599365234,
16.55458641052246,
8.054553985595703,
5.767836570739746,
8.714860916137695,
17.356563568115234,
16.430997848510742,
18.774473190307617,
14.84496784210205,
14.088144302368164,
7.295341968536377,
16.66898536682129,
16.045621871948242,
17.870052337646484,
18.652801513671875,
9.787891387939453,
18.291419982910156,
19.735164642333984,
17.947460174560547,
4.452174186706543,
13.803298950195312,
16.16243553161621,
8.469415664672852,
12.508196830749512,
15.734734535217285,
18.967355728149414,
16.334121704101562,
16.852224349975586,
13.222936630249023,
17.86507797241211,
14.852334976196289,
17.41763687133789,
5.242979049682617,
9.866792678833008,
18.875452041625977,
11.772479057312012,
16.511837005615234,
4.426202774047852,
17.22654914855957,
6.877330303192139,
5.245329856872559,
7.7363362312316895,
13.864839553833008,
14.932711601257324,
18.917726516723633,
18.136333465576172,
8.42458438873291,
14.180156707763672,
17.94816780090332,
10.494267463684082,
15.357224464416504,
15.304824829101562,
1.7912507057189941,
19.812816619873047,
5.859798431396484,
7.29307222366333,
11.421440124511719,
17.920551300048828,
18.855911254882812,
16.308876037597656,
19.541515350341797,
2.1711082458496094,
6.467305660247803,
17.479467391967773,
10.61845874786377,
10.936885833740234,
16.90242576599121,
6.053375244140625,
16.69216537475586,
17.950618743896484,
18.535869598388672,
11.795814514160156,
15.310185432434082,
17.299577713012695,
6.008733749389648,
19.00764274597168,
17.364856719970703,
3.8979907035827637,
16.61166763305664,
18.653369903564453,
15.395955085754395,
17.92181396484375,
15.6409273147583,
10.471903800964355,
15.056351661682129,
16.626657485961914,
12.509056091308594,
13.788620948791504,
16.138713836669922,
19.10670280456543,
17.30147933959961,
16.772207260131836,
19.48894691467285,
18.868568420410156,
2.049499273300171,
3.9316258430480957,
15.968342781066895,
17.252962112426758,
18.510204315185547,
14.751757621765137,
16.443742752075195,
8.930333137512207,
10.12264633178711,
18.806350708007812,
10.175262451171875,
6.748668670654297,
19.775829315185547,
17.144582748413086,
16.03874969482422,
16.21445655822754,
17.753631591796875,
17.41193389892578,
16.151004791259766,
17.091691970825195,
16.546701431274414,
17.70568084716797,
17.097270965576172,
18.257169723510742,
4.515403747558594,
14.116493225097656,
18.444536209106445,
15.298134803771973,
18.034950256347656,
19.765628814697266,
17.128732681274414,
14.888993263244629,
18.074474334716797,
17.77118682861328,
17.48980712890625,
18.760332107543945,
16.792964935302734,
13.991985321044922,
1.4749939441680908,
15.174312591552734,
19.86675262451172,
15.842659950256348,
9.95433521270752,
19.526386260986328,
3.2125918865203857,
13.810943603515625,
18.049701690673828,
19.017349243164062,
14.997034072875977,
15.463404655456543,
17.65522575378418,
19.568201065063477,
18.766475677490234,
8.383984565734863,
8.096685409545898,
18.34519386291504,
9.863425254821777,
16.449180603027344,
16.32015037536621,
1.3970149755477905,
19.60687828063965,
17.557706832885742,
15.9425630569458,
19.743301391601562,
19.19801902770996,
15.306778907775879,
16.39244270324707,
10.377243041992188,
11.266404151916504,
18.74698257446289,
15.144859313964844,
9.308863639831543,
16.73866081237793,
18.344682693481445,
7.750366687774658,
11.402936935424805,
17.923383712768555,
7.073902130126953,
15.578829765319824,
14.711345672607422,
19.532197952270508,
19.2503604888916,
11.495080947875977,
17.72871971130371,
18.78129768371582,
18.380638122558594,
18.480649948120117,
16.315908432006836,
18.733915328979492,
16.82081413269043,
9.785218238830566,
17.07070541381836,
17.745264053344727,
18.866262435913086,
18.029247283935547,
18.112211227416992,
18.795738220214844,
10.977011680603027,
15.496371269226074,
18.365671157836914,
17.8814640045166,
15.117348670959473,
18.596233367919922,
17.591562271118164,
14.832481384277344,
10.361553192138672,
9.804877281188965,
16.830406188964844,
18.08631706237793,
13.49084758758545,
18.612808227539062,
10.325766563415527,
15.917708396911621,
19.22992706298828,
18.883981704711914,
14.931380271911621,
10.680742263793945,
17.49694061279297,
15.627568244934082,
4.065988540649414,
15.072998046875,
18.13408851623535,
17.198410034179688,
17.06080436706543,
14.794548988342285,
18.841835021972656,
17.213428497314453,
19.64287567138672,
18.402620315551758,
12.89748477935791,
5.198765277862549,
13.420324325561523,
19.825931549072266,
9.850975036621094,
8.215289115905762,
18.66705322265625,
15.801572799682617,
16.93614959716797,
13.59896469116211,
17.073453903198242,
13.488619804382324,
12.089998245239258,
15.286663055419922,
3.391566514968872,
17.01712417602539,
11.359801292419434,
16.991849899291992,
15.528515815734863,
7.006874084472656,
16.843061447143555,
16.608779907226562,
14.695547103881836,
5.739019393920898,
19.65639877319336,
18.41167640686035,
19.369853973388672,
15.026009559631348,
14.769491195678711,
16.133163452148438,
17.671096801757812,
11.198171615600586,
18.863298416137695,
14.66588306427002,
17.902355194091797,
4.217263698577881,
15.89926815032959,
7.982682228088379,
17.75523567199707,
17.614038467407227,
14.413002967834473,
11.830699920654297,
14.292014122009277,
14.988276481628418,
12.01292896270752,
19.316160202026367,
10.778471946716309,
9.951558113098145,
15.366568565368652,
18.35030174255371,
18.847013473510742,
14.885767936706543,
16.158653259277344,
17.43549919128418,
15.72373104095459,
3.7091891765594482,
4.089231491088867,
16.087921142578125,
2.0097854137420654,
3.8821871280670166,
6.344094753265381,
17.983064651489258,
10.587126731872559,
17.5313777923584,
18.024900436401367,
19.23399543762207,
11.46121883392334,
19.241945266723633,
12.40255069732666,
15.710616111755371,
17.21269416809082,
19.2287540435791,
4.873317241668701,
3.467405319213867,
5.601504325866699,
14.529293060302734,
14.867831230163574,
18.26583480834961,
11.477629661560059,
3.7859530448913574,
18.285709381103516,
7.687901973724365,
10.797592163085938,
10.424309730529785,
19.041751861572266,
19.20370864868164,
15.88109016418457,
10.147513389587402,
17.29583740234375,
7.954409599304199,
12.087796211242676,
15.960591316223145,
18.387081146240234,
10.232670783996582,
19.511449813842773,
7.71969747543335,
16.53955078125,
10.979774475097656,
3.793856382369995,
19.79373550415039,
19.272531509399414,
5.960640907287598,
16.47226905822754,
19.41320037841797,
16.389162063598633,
18.627870559692383,
8.945636749267578,
17.325302124023438,
8.302738189697266,
12.874127388000488,
17.82196044921875,
15.687763214111328,
9.737632751464844,
18.94157600402832,
8.478232383728027,
17.107053756713867,
17.570056915283203,
17.490137100219727,
18.35521697998047,
10.408326148986816,
19.424518585205078,
13.294346809387207,
17.013917922973633,
17.32731056213379,
15.440855026245117,
2.914147138595581,
16.518827438354492,
2.77919602394104,
11.467253684997559,
19.82676887512207,
16.666696548461914,
16.558685302734375,
17.639738082885742,
17.366165161132812,
15.225199699401855,
10.486039161682129,
18.06173324584961,
3.134387493133545,
2.243241310119629,
9.723611831665039,
17.254459381103516,
13.717291831970215,
19.761295318603516,
15.736907005310059,
17.8104190826416,
13.953920364379883,
19.860807418823242,
16.757123947143555,
17.445083618164062,
17.695842742919922,
17.94637680053711,
11.966444969177246,
6.879058837890625,
13.350010871887207,
19.517621994018555,
18.852651596069336,
17.261037826538086,
19.506393432617188,
16.170101165771484,
19.72553253173828,
18.505659103393555,
15.877726554870605,
19.12936019897461,
17.52512550354004,
15.319466590881348,
17.229938507080078,
18.099519729614258,
13.616011619567871,
15.500972747802734,
8.662443161010742,
17.26924705505371,
19.08869743347168,
14.976059913635254,
18.91043472290039,
13.909525871276855,
15.188605308532715,
7.62640905380249,
13.412647247314453,
12.45394229888916,
11.623638153076172,
17.902097702026367,
18.6705322265625,
18.335914611816406,
15.257652282714844,
15.394729614257812,
3.7748193740844727,
17.087238311767578,
18.403928756713867,
15.45227336883545,
5.818376064300537,
9.712728500366211,
18.99427032470703,
15.896383285522461,
18.833961486816406,
4.325564861297607,
19.511722564697266,
19.569656372070312,
18.80942153930664,
17.686037063598633,
19.806995391845703,
19.16551399230957,
18.855440139770508,
17.940492630004883,
17.198162078857422,
3.518026113510132,
16.819917678833008,
19.10529327392578,
17.232036590576172,
19.041309356689453,
17.052608489990234,
9.807438850402832,
16.94835662841797,
13.474906921386719,
15.230264663696289,
18.490318298339844,
18.41664695739746,
15.194689750671387,
15.184751510620117,
5.046345233917236,
18.005462646484375,
16.447153091430664,
19.00705909729004,
19.211441040039062,
18.129528045654297,
15.55339527130127,
6.535437107086182,
17.07488250732422,
17.149831771850586,
16.943845748901367,
2.0183043479919434,
15.254853248596191,
12.203943252563477,
12.967061996459961,
17.520132064819336,
19.59033203125,
19.715103149414062,
17.292699813842773,
17.202190399169922,
8.156694412231445,
17.855852127075195,
19.10675621032715,
11.151789665222168,
12.223272323608398,
16.670228958129883,
9.945290565490723,
17.24315643310547,
15.865357398986816,
11.143760681152344,
11.500442504882812,
5.832057476043701,
19.258785247802734,
16.53890609741211,
14.717171669006348,
17.610509872436523,
18.213726043701172,
10.519378662109375,
15.713500022888184,
6.029973030090332,
15.803297996520996,
18.22382164001465,
5.217558860778809,
10.184865951538086,
16.736289978027344,
19.024734497070312,
19.204627990722656,
16.84010124206543,
10.328370094299316,
18.801986694335938,
17.15957260131836,
19.49649429321289,
16.803451538085938,
17.574644088745117,
14.342427253723145,
16.140239715576172,
19.851465225219727,
16.5338191986084,
18.455005645751953,
18.455638885498047,
18.192398071289062,
11.860869407653809,
14.99135971069336,
14.240851402282715,
15.299073219299316,
18.867265701293945,
16.470874786376953,
2.619629383087158,
15.735084533691406,
11.218344688415527,
19.503999710083008,
18.562511444091797,
6.457521915435791,
10.727927207946777,
14.857007026672363,
17.752084732055664,
17.881702423095703,
16.150440216064453,
18.993932723999023,
18.363975524902344,
11.679512977600098,
11.264001846313477,
17.145036697387695,
3.7567431926727295,
17.970064163208008,
16.298669815063477,
3.533043146133423,
8.172285079956055,
19.370807647705078,
18.760469436645508,
10.886283874511719,
16.399547576904297,
18.53206443786621,
16.425392150878906,
18.842453002929688,
14.88879108428955,
16.545955657958984,
13.842037200927734,
16.86976432800293,
15.45002269744873,
17.22830581665039,
15.321172714233398,
17.524612426757812,
16.25897216796875,
19.695327758789062,
16.394676208496094,
16.871994018554688,
3.023578643798828,
16.812158584594727,
16.924123764038086,
16.393098831176758,
19.472564697265625,
17.759246826171875,
16.53289794921875,
19.30272674560547,
19.179227828979492,
18.12245750427246,
11.367164611816406,
8.461796760559082,
16.734561920166016,
19.663841247558594,
7.645745277404785,
9.806557655334473,
7.92609167098999,
16.527435302734375,
11.474935531616211,
16.32068634033203,
19.017723083496094,
15.717094421386719,
14.68531322479248,
10.547146797180176,
12.547327041625977,
8.510045051574707,
18.178972244262695,
4.19524621963501,
7.492782115936279,
19.83317756652832,
11.187667846679688,
17.63520050048828,
10.6716947555542,
16.32442855834961,
15.458711624145508,
17.279096603393555,
13.910246849060059,
8.811454772949219,
14.158888816833496,
15.3204345703125,
18.334089279174805,
18.59906768798828,
16.208127975463867,
7.675070285797119,
7.892470359802246,
19.87002182006836,
16.452972412109375,
4.5502424240112305,
10.425731658935547,
16.359619140625,
18.79216766357422,
16.07598304748535,
15.80531120300293,
16.6508731842041,
12.841139793395996,
16.14179229736328,
16.49761962890625,
16.05126190185547,
17.98021125793457,
19.02601432800293,
18.013113021850586,
16.78176498413086,
17.913679122924805,
19.398700714111328,
16.97901153564453,
15.932111740112305,
17.846529006958008,
11.371862411499023,
5.927362442016602,
4.460235118865967,
18.40337371826172,
17.17580223083496,
19.7711238861084,
16.53814697265625,
8.462132453918457,
11.173395156860352,
11.352971076965332,
8.242995262145996,
16.113521575927734,
5.756622791290283,
17.616241455078125,
13.847311973571777,
13.570337295532227,
6.438867092132568,
19.703479766845703,
17.32184600830078,
12.294754028320312,
15.852510452270508,
19.84415626525879,
15.665862083435059,
15.941847801208496,
11.608583450317383,
15.939764976501465,
15.355844497680664,
16.449222564697266,
16.137142181396484,
16.22662925720215,
15.416126251220703,
12.328461647033691,
16.488117218017578,
17.76763153076172,
17.958982467651367,
17.65808868408203,
5.819947719573975,
19.414377212524414,
13.843645095825195,
16.65542221069336,
16.682889938354492,
19.5893611907959,
19.105609893798828,
6.459825038909912,
17.44917869567871,
8.548824310302734,
17.08860206604004,
8.133529663085938,
17.322492599487305,
5.701634883880615,
17.768789291381836,
16.90386962890625,
17.876008987426758,
11.63465690612793,
19.491270065307617,
7.150845527648926,
9.837502479553223,
18.566553115844727,
18.43159294128418,
19.663135528564453,
11.032052993774414,
17.299161911010742,
17.47429847717285,
14.396210670471191,
19.237424850463867,
17.186506271362305,
16.444477081298828,
16.11998176574707,
17.436763763427734,
18.236520767211914,
3.9461913108825684,
6.14090633392334,
11.694499015808105,
16.60485076904297,
17.713560104370117,
13.789716720581055,
17.945632934570312,
15.61751651763916,
18.37026023864746,
11.259649276733398,
17.08869743347168,
15.639330863952637,
14.93604850769043,
18.77821922302246,
9.869345664978027,
16.02707290649414,
16.511829376220703,
19.55973243713379,
18.995126724243164,
15.26680850982666,
10.607332229614258,
12.20576000213623,
18.459304809570312,
19.344186782836914,
7.306112766265869,
14.046424865722656,
7.025300025939941,
16.335933685302734,
18.76601219177246,
19.614398956298828,
15.313239097595215,
16.137405395507812,
15.084020614624023,
16.3795166015625,
15.370894432067871,
15.075336456298828,
19.572593688964844,
4.473968505859375,
12.307618141174316,
14.920245170593262,
19.37373924255371,
6.382823467254639,
16.408340454101562,
15.870394706726074,
19.451549530029297,
15.7051362991333,
11.270025253295898,
11.343958854675293,
16.525712966918945,
9.900670051574707,
16.12682342529297,
17.807432174682617,
18.308216094970703,
19.802745819091797,
3.353817939758301,
18.18446159362793,
13.681930541992188,
15.246308326721191,
4.406215190887451,
18.828784942626953,
16.643463134765625,
16.5035343170166,
17.802001953125,
19.186986923217773,
11.23559856414795,
7.945455551147461,
18.771587371826172,
17.529870986938477,
17.89223861694336,
17.77501678466797,
10.314075469970703,
14.131041526794434,
17.15945816040039,
17.66767692565918,
19.349641799926758,
17.448877334594727,
18.50606346130371,
14.772863388061523,
7.584019660949707,
8.586374282836914,
9.753011703491211,
15.420707702636719,
5.399405002593994,
17.014734268188477,
8.203400611877441,
10.558065414428711,
3.843703508377075,
12.202033042907715,
9.095856666564941,
18.760129928588867,
16.413646697998047,
14.894140243530273
],
"z": [
2.3798365592956543,
8.33678913116455,
1.3210251331329346,
15.186038970947266,
-5.248720645904541,
2.4173858165740967,
-1.3549333810806274,
-4.476786136627197,
6.606548309326172,
-0.8257551193237305,
5.588451385498047,
5.583641052246094,
11.848950386047363,
-2.4814000129699707,
0.37378862500190735,
5.808573246002197,
-0.2789250612258911,
-4.171328067779541,
13.6356201171875,
0.30154821276664734,
16.82637596130371,
1.6734614372253418,
9.555078506469727,
13.818709373474121,
14.537640571594238,
17.794034957885742,
8.033416748046875,
6.6456298828125,
-5.271749973297119,
-2.048166513442993,
12.021777153015137,
7.889040470123291,
18.564224243164062,
14.157184600830078,
4.453747749328613,
-4.376063346862793,
11.932019233703613,
4.140964508056641,
18.70512580871582,
11.679354667663574,
4.962608814239502,
15.542743682861328,
13.742490768432617,
-2.040811777114868,
-0.9756125807762146,
1.600705623626709,
1.5221320390701294,
17.895343780517578,
16.596195220947266,
5.8367486000061035,
11.882152557373047,
-3.8268027305603027,
-0.17089234292507172,
4.450522422790527,
5.512095928192139,
9.359468460083008,
-3.2507543563842773,
-4.814772605895996,
-5.454975605010986,
-3.029500722885132,
14.866601943969727,
-1.0613185167312622,
-2.9064688682556152,
12.741875648498535,
16.319469451904297,
18.594989776611328,
5.358859062194824,
14.794835090637207,
5.65684175491333,
0.21081393957138062,
-6.144615650177002,
-4.837371826171875,
2.78373122215271,
-0.3634582757949829,
2.0476861000061035,
17.204736709594727,
-0.2937054932117462,
17.86522102355957,
-7.386383056640625,
16.57462501525879,
-0.6191580295562744,
15.66015911102295,
11.516661643981934,
18.4912052154541,
7.10183572769165,
1.7970690727233887,
12.568526268005371,
8.79916763305664,
14.92648696899414,
17.91251564025879,
-4.244025230407715,
9.938560485839844,
2.3930468559265137,
-2.3157382011413574,
-0.46350014209747314,
9.222738265991211,
4.989744186401367,
9.16195011138916,
15.959196090698242,
-2.403001546859741,
-3.4946882724761963,
18.594491958618164,
6.563626289367676,
0.32024529576301575,
14.596650123596191,
1.3341777324676514,
2.5076804161071777,
8.625901222229004,
1.2710520029067993,
13.125602722167969,
-0.904845654964447,
1.9760442972183228,
-4.441430568695068,
-3.574073553085327,
10.112983703613281,
10.390471458435059,
10.99514389038086,
11.051471710205078,
17.99462890625,
15.45938777923584,
8.005017280578613,
10.154128074645996,
-7.260653972625732,
-3.18622088432312,
-3.3358559608459473,
11.226421356201172,
3.313743829727173,
2.84613299369812,
-7.651512622833252,
8.50230884552002,
13.710005760192871,
-4.310637950897217,
-4.055728912353516,
2.806975841522217,
13.579325675964355,
9.44812297821045,
-1.7823799848556519,
-1.9971424341201782,
-2.9668948650360107,
13.878692626953125,
15.150813102722168,
0.16037078201770782,
-2.4234445095062256,
15.167855262756348,
14.317543029785156,
1.8524645566940308,
-1.764839768409729,
-2.038830518722534,
4.525352954864502,
6.354231834411621,
12.866087913513184,
14.10875415802002,
17.1299991607666,
2.265123128890991,
-5.01328182220459,
14.901212692260742,
4.851721286773682,
2.187310218811035,
4.845737457275391,
-1.7073121070861816,
-1.5422918796539307,
13.982569694519043,
2.440075635910034,
2.63226056098938,
10.050951957702637,
14.31033706665039,
-4.624185562133789,
12.957998275756836,
-1.8731755018234253,
3.0203499794006348,
5.716742515563965,
9.41948413848877,
15.247465133666992,
11.417067527770996,
9.921222686767578,
5.746927261352539,
10.159462928771973,
-3.548234224319458,
2.0010502338409424,
10.18349552154541,
7.518695831298828,
1.2070258855819702,
-1.9171656370162964,
7.193589210510254,
1.8101056814193726,
8.819147109985352,
12.619065284729004,
0.29150390625,
17.61823081970215,
13.898029327392578,
10.779048919677734,
-3.967130184173584,
18.514963150024414,
11.923578262329102,
17.902658462524414,
-3.579134464263916,
-6.264610290527344,
14.758305549621582,
4.740504264831543,
18.708232879638672,
10.013155937194824,
1.633745551109314,
-3.8835816383361816,
5.788337230682373,
0.19056552648544312,
-1.912416696548462,
16.119155883789062,
-3.0489351749420166,
3.5535895824432373,
11.28453254699707,
0.7190780639648438,
15.842415809631348,
-3.6039278507232666,
6.311375141143799,
-4.087557792663574,
10.260889053344727,
0.24803011119365692,
-3.6200101375579834,
16.724973678588867,
13.586198806762695,
-6.391717910766602,
-4.198878765106201,
-3.502744436264038,
12.01700210571289,
14.092900276184082,
11.677271842956543,
2.5062153339385986,
-6.426673889160156,
1.577371597290039,
7.42997407913208,
-2.775402545928955,
-0.601362407207489,
15.308696746826172,
-3.628650188446045,
15.582060813903809,
6.570694446563721,
14.014444351196289,
-1.8684865236282349,
-6.680876731872559,
0.9561219811439514,
1.280274748802185,
18.494016647338867,
16.379573822021484,
14.265559196472168,
14.402219772338867,
7.3470139503479,
9.900321960449219,
-1.5997579097747803,
17.634748458862305,
-1.687770128250122,
11.080565452575684,
15.825505256652832,
6.66562557220459,
-4.9757256507873535,
6.329186916351318,
15.262067794799805,
15.965405464172363,
-0.15841029584407806,
15.907319068908691,
15.151805877685547,
9.858898162841797,
9.451401710510254,
18.501909255981445,
10.68472957611084,
16.600868225097656,
1.9757592678070068,
-2.3982367515563965,
-2.5889790058135986,
3.4538183212280273,
-0.26270273327827454,
-2.182767629623413,
14.66651725769043,
13.229984283447266,
-1.8721941709518433,
17.7177734375,
17.970115661621094,
16.739580154418945,
9.916594505310059,
4.725693225860596,
18.395267486572266,
8.212034225463867,
15.856099128723145,
-3.6738665103912354,
14.087292671203613,
3.9431357383728027,
-6.306491374969482,
-5.304239273071289,
-4.991605281829834,
0.21416419744491577,
17.541654586791992,
11.877246856689453,
-2.795072078704834,
7.303868293762207,
13.3555269241333,
-1.5699255466461182,
-11.35189151763916,
4.351799011230469,
1.123072862625122,
-4.452401638031006,
-2.3997907638549805,
2.8841211795806885,
17.99339485168457,
8.309484481811523,
8.309491157531738,
12.766827583312988,
15.744268417358398,
1.7745139598846436,
18.34242057800293,
-8.038071632385254,
5.302255153656006,
-3.1983256340026855,
-1.802966833114624,
-3.8897697925567627,
-4.5770583152771,
17.857778549194336,
7.261794567108154,
-1.8676543235778809,
13.78480339050293,
10.47938060760498,
-2.8441200256347656,
12.785375595092773,
8.444348335266113,
3.6857595443725586,
9.643747329711914,
-6.671716690063477,
-4.76347541809082,
-3.012529134750366,
3.8276870250701904,
9.71321964263916,
8.842326164245605,
16.23151206970215,
16.95138168334961,
3.671802282333374,
10.05560302734375,
-2.9931843280792236,
-2.8980391025543213,
8.97549819946289,
17.034902572631836,
-2.2040045261383057,
9.511163711547852,
7.359780311584473,
-3.0923750400543213,
2.642368793487549,
3.238978385925293,
-1.5901455879211426,
-2.0487821102142334,
18.331010818481445,
11.864005088806152,
6.346469402313232,
8.557415008544922,
0.194663867354393,
11.072019577026367,
14.432119369506836,
14.214224815368652,
-1.961978554725647,
13.210406303405762,
-1.3783870935440063,
-0.6534097790718079,
12.641396522521973,
-3.6123762130737305,
9.515564918518066,
-1.2178618907928467,
12.4497652053833,
6.519484043121338,
15.917770385742188,
5.23638916015625,
-8.717289924621582,
-7.341524124145508,
11.510834693908691,
12.372787475585938,
2.779512405395508,
9.33011531829834,
5.0937933921813965,
6.652257919311523,
-3.6448423862457275,
-2.3117783069610596,
16.044767379760742,
10.01231861114502,
0.09994835406541824,
-5.432013034820557,
-6.632567405700684,
6.7905802726745605,
9.818020820617676,
12.245862007141113,
13.339885711669922,
-5.808567047119141,
10.674474716186523,
-4.3685760498046875,
-0.9274341464042664,
18.543651580810547,
2.2404258251190186,
17.06031608581543,
13.869926452636719,
-3.2802529335021973,
-5.716460227966309,
14.839357376098633,
17.452348709106445,
16.930585861206055,
3.9650161266326904,
-0.6732323169708252,
7.446627616882324,
-3.258633613586426,
-3.3593947887420654,
16.25596046447754,
14.438098907470703,
1.2644578218460083,
-3.868051767349243,
7.087758541107178,
14.43691635131836,
14.02465534210205,
14.966803550720215,
16.882192611694336,
0.2742353081703186,
8.003137588500977,
-4.667541027069092,
16.185121536254883,
-3.847295045852661,
7.273456573486328,
-6.947107791900635,
6.2541327476501465,
11.488173484802246,
-5.587359428405762,
-2.013737440109253,
-4.168580055236816,
6.5531511306762695,
3.872907876968384,
-0.2653660774230957,
5.82867956161499,
13.657142639160156,
18.6845760345459,
18.59290313720703,
-4.658150672912598,
-4.569187164306641,
3.598158359527588,
15.264881134033203,
16.542985916137695,
7.245080471038818,
-7.0270843505859375,
14.129351615905762,
-2.800140142440796,
8.322896003723145,
18.038461685180664,
7.627403259277344,
6.490972995758057,
1.360121250152588,
14.644967079162598,
17.592172622680664,
2.6094424724578857,
12.003145217895508,
-1.5002703666687012,
12.07944393157959,
13.203262329101562,
0.309060275554657,
-3.2627151012420654,
12.138741493225098,
-1.6798582077026367,
15.091840744018555,
1.490114450454712,
-1.7278422117233276,
0.7050324082374573,
9.001471519470215,
-0.3302099108695984,
14.572040557861328,
-2.3228886127471924,
7.363557815551758,
15.963885307312012,
-5.480307579040527,
3.116931676864624,
-3.1310904026031494,
-5.356167793273926,
-2.305856227874756,
-0.4851399064064026,
-3.9085888862609863,
3.072047472000122,
1.958838701248169,
-7.898787498474121,
4.4792375564575195,
0.13127782940864563,
0.15197327733039856,
10.36079216003418,
12.95776081085205,
4.968196392059326,
1.8780615329742432,
5.58500862121582,
-2.527353048324585,
1.8798439502716064,
2.2652645111083984,
10.600849151611328,
-9.517268180847168,
11.828251838684082,
-2.7738592624664307,
-6.854167938232422,
10.30781364440918,
-1.4298515319824219,
5.756261348724365,
0.7007814645767212,
-1.7838141918182373,
3.8298757076263428,
-0.3940810561180115,
2.1142325401306152,
2.7925171852111816,
-6.789608478546143,
-4.140450954437256,
-4.1524271965026855,
-2.9192311763763428,
1.9809545278549194,
-3.2586045265197754,
-3.067136287689209,
-4.674912452697754,
1.659153938293457,
1.9701868295669556,
-7.011778831481934,
-1.2069367170333862,
-3.0251853466033936,
-5.36848783493042,
13.592684745788574,
5.311278820037842,
-0.2516448199748993,
-2.3202579021453857,
-4.020482063293457,
-3.025658369064331,
-1.5853098630905151,
10.572153091430664,
15.654026985168457,
-5.789281845092773,
4.57157564163208,
-4.209178447723389,
-0.9693517088890076,
-0.012719268910586834,
6.165509223937988,
9.769779205322266,
5.876743793487549,
5.873507976531982,
-5.320061206817627,
6.402899742126465,
5.8249335289001465,
15.491119384765625,
8.00090217590332,
16.943906784057617,
5.173466682434082,
-3.3291964530944824,
16.56414794921875,
2.5041308403015137,
-3.206261396408081,
-3.3103926181793213,
-6.239141941070557,
-0.07866852730512619,
18.535215377807617,
2.053321599960327,
-6.307666778564453,
8.868498802185059,
5.351095199584961,
17.673744201660156,
14.164167404174805,
14.504826545715332,
14.110307693481445,
12.857681274414062,
16.434127807617188,
6.179940700531006,
2.866852283477783,
11.49615478515625,
18.456787109375,
-7.210960865020752,
-2.3720037937164307,
8.487576484680176,
-7.590367794036865,
-1.3916805982589722,
7.396012306213379,
-4.230196475982666,
16.49258804321289,
10.127825736999512,
14.493841171264648,
-3.5251524448394775,
2.302260398864746,
-3.3905365467071533,
-1.7390508651733398,
5.438596248626709,
2.155690908432007,
7.867145538330078,
17.305288314819336,
11.668628692626953,
10.770029067993164,
17.007699966430664,
2.7951292991638184,
-1.8251922130584717,
-7.2237958908081055,
2.613171339035034,
4.091291427612305,
13.711085319519043,
7.2888689041137695,
-2.917940139770508,
-4.151994228363037,
-4.482491493225098,
5.866936206817627,
1.5712000131607056,
14.599604606628418,
-4.631196975708008,
14.845492362976074,
-2.8587734699249268,
3.9613986015319824,
0.423282653093338,
4.866915702819824,
-5.560183048248291,
3.7407026290893555,
7.48399019241333,
-4.852974891662598,
-2.9655332565307617,
3.183145761489868,
-2.921261787414551,
-1.4221707582473755,
6.909753799438477,
9.778786659240723,
-8.848676681518555,
-3.2121517658233643,
-6.470282077789307,
6.41971492767334,
-4.427507400512695,
-4.147903919219971,
1.8425817489624023,
1.2933151721954346,
13.827006340026855,
-1.8323755264282227,
12.674698829650879,
6.957463264465332,
5.911785125732422,
-0.06327716261148453,
-0.44834861159324646,
-7.252823352813721,
-2.8956854343414307,
5.086744785308838,
-4.994476318359375,
0.2440292090177536,
5.216498851776123,
-4.624791145324707,
0.2810388505458832,
-4.5457916259765625,
2.9328649044036865,
1.8488868474960327,
-5.274382591247559,
-0.2939622402191162,
4.583812713623047,
-3.449151039123535,
0.8556011915206909,
-5.0298027992248535,
-4.357124328613281,
2.480137586593628,
3.9312198162078857,
-5.12117862701416,
9.440152168273926,
-0.2733898162841797,
-0.5475602149963379,
-0.9183424115180969,
-0.6465138792991638,
-0.4452480971813202,
5.492079734802246,
-2.8060555458068848,
1.8910666704177856,
-1.7940638065338135,
-5.561508655548096,
-1.5511178970336914,
2.0626702308654785,
6.687356472015381,
-3.4772450923919678,
6.592449188232422,
-5.229142189025879,
-4.7494940757751465,
-2.5987143516540527,
-4.716643810272217,
-2.306415319442749,
-1.2787610292434692,
2.621220827102661,
7.124323844909668,
-4.6959547996521,
4.814003944396973,
-3.0132200717926025,
-2.7106876373291016,
4.2026262283325195,
-3.813312292098999,
-4.080340385437012,
-1.5747649669647217,
-7.465068817138672,
1.7940006256103516,
-4.842349052429199,
2.1061313152313232,
5.366479396820068,
-3.1555209159851074,
-5.626494407653809,
-6.362882614135742,
-4.2414751052856445,
-2.1827077865600586,
-1.745797038078308,
1.862457036972046,
0.6964258551597595,
0.5960482358932495,
-5.73890495300293,
-0.4313827157020569,
-0.8847024440765381,
10.865403175354004,
-3.1074743270874023,
-7.2285237312316895,
-2.8888356685638428,
-3.6705634593963623,
-0.5622262954711914,
-4.9654340744018555,
-2.8897385597229004,
-7.462996482849121,
7.214653491973877,
-3.8326189517974854,
-3.2897114753723145,
18.211767196655273,
6.044863224029541,
-4.184171676635742,
-9.98052978515625,
3.2313382625579834,
9.091416358947754,
-3.5091609954833984,
2.493258476257324,
-3.0267703533172607,
-5.202629566192627,
5.7982916831970215,
0.4000219702720642,
-3.516773223876953,
2.8851797580718994,
8.702743530273438,
-4.130319595336914,
15.929271697998047,
-1.7941583395004272,
15.145087242126465,
16.22316551208496,
4.716933250427246,
0.6244674324989319,
-4.689098358154297,
-7.489194869995117,
4.6353254318237305,
-4.919466972351074,
4.407587051391602,
-2.1892755031585693,
-7.4392266273498535,
1.881261944770813,
8.32058334350586,
9.231224060058594,
-0.3547186255455017,
5.0417256355285645,
3.0132412910461426,
3.4689152240753174,
-0.7594355344772339,
-5.77285099029541,
6.07772970199585,
-2.0251827239990234,
14.295331954956055,
-5.481337070465088,
5.18760871887207,
5.981127738952637,
-6.230499744415283,
-2.5757391452789307,
-0.3812679052352905,
4.482970714569092,
14.02995491027832,
3.4054720401763916,
12.538068771362305,
16.222850799560547,
5.134602069854736,
-8.437076568603516,
12.19397258758545,
-4.431116580963135,
14.818340301513672,
0.2542336583137512,
-1.395473599433899,
9.635906219482422,
13.456570625305176,
9.94239616394043,
17.011510848999023,
17.800552368164062,
16.63129997253418,
7.020696640014648,
2.645188093185425,
0.7580604553222656,
11.942804336547852,
13.528694152832031,
16.62873649597168,
2.204143762588501,
12.476895332336426,
-3.234574317932129,
-2.153123140335083,
15.792865753173828,
4.30283260345459,
0.3482814133167267,
4.623179912567139,
18.2183837890625,
12.59239387512207,
12.385026931762695,
16.799015045166016,
12.79787826538086,
-0.4882643520832062,
0.18931719660758972,
12.051629066467285,
-7.543728351593018,
14.484862327575684,
10.159658432006836,
11.375374794006348,
-2.3798046112060547,
18.102275848388672,
-3.730416774749756,
-0.021867215633392334,
13.400727272033691,
-0.4401455223560333,
18.606552124023438,
5.455799102783203,
17.615215301513672,
18.452932357788086,
16.48673439025879,
0.3223654329776764,
-4.387477874755859,
3.745171070098877,
-4.571690082550049,
16.098867416381836,
-4.2957963943481445,
10.154383659362793,
15.863276481628418,
-5.44067907333374,
12.8868989944458,
-3.5306077003479004,
1.1185301542282104,
18.160085678100586,
16.416654586791992,
14.979971885681152,
2.6149086952209473,
3.9488465785980225,
-2.813262701034546,
-0.6757725477218628,
-3.2628071308135986,
17.077632904052734,
10.141422271728516,
-2.1702005863189697,
-4.636477470397949,
7.3419365882873535,
18.054851531982422,
7.246034622192383,
6.620473384857178,
1.5465683937072754,
15.224882125854492,
12.720393180847168,
9.39494514465332,
17.64521026611328,
-2.1134982109069824,
-1.9901442527770996,
18.718990325927734,
-1.4193642139434814,
0.043946776539087296,
13.042784690856934,
-6.257292747497559,
-3.79390287399292,
-5.666951656341553,
10.899601936340332,
-0.616188645362854,
13.660585403442383,
0.5773609280586243,
-3.379467487335205,
-1.0742367506027222,
7.1313862800598145,
7.949364185333252,
6.778259754180908,
-1.732022762298584,
-3.9290382862091064,
18.749982833862305,
-4.704835891723633,
-0.0064111012034118176,
2.2320640087127686,
-2.283841609954834,
-0.1731456220149994,
16.49510383605957,
15.940581321716309,
2.5063986778259277,
15.880074501037598,
17.083147048950195,
0.9826712012290955,
-1.9192060232162476,
0.4169301688671112,
7.554919719696045,
6.961061000823975,
4.084589004516602,
12.021662712097168,
-5.246313571929932,
7.590848445892334,
5.595880508422852,
8.542442321777344,
-6.063215255737305,
18.677980422973633,
-2.9908480644226074,
1.834349513053894,
10.909485816955566,
2.0475809574127197,
5.0778350830078125,
6.118003845214844,
11.257545471191406,
-1.6270811557769775,
-3.1589460372924805,
4.973801612854004,
0.8712899684906006,
-1.5633834600448608,
0.26630663871765137,
-5.125670909881592,
-4.049503326416016,
4.685986518859863,
-7.21004056930542,
15.75719165802002,
3.249715566635132,
-4.107371807098389,
-0.510110080242157,
1.6463160514831543,
-1.659123182296753,
0.1357596218585968,
-4.023112773895264,
7.335303783416748,
1.4453182220458984,
7.398664474487305,
15.88839340209961,
15.866217613220215,
-5.369913578033447,
14.934784889221191,
0.5517288446426392,
9.804433822631836,
-4.809302806854248,
2.8866958618164062,
6.2613630294799805,
-7.232492446899414,
1.8678849935531616,
-0.7485634684562683,
9.23749828338623,
7.68159294128418,
14.195080757141113,
-5.510227203369141,
-1.7888460159301758,
-4.0687665939331055,
-1.8571208715438843,
2.6792490482330322,
-5.518240928649902,
16.2864990234375,
13.302223205566406,
9.934633255004883,
16.509681701660156,
9.097726821899414,
12.068727493286133,
-0.5618501305580139,
-1.5820344686508179,
13.200069427490234,
-6.696498870849609,
4.030460834503174,
-0.03193741664290428,
8.350506782531738,
0.3237028419971466,
-0.5557276606559753,
-4.45009183883667,
-8.580160140991211,
8.813720703125,
-2.3476076126098633,
7.818597793579102,
3.2510602474212646,
7.908870697021484,
1.433555006980896,
14.337294578552246,
10.597517967224121,
-5.900967597961426,
-2.677206516265869,
-2.158860683441162,
5.152310848236084,
9.178010940551758,
11.707457542419434,
14.788366317749023,
-8.698625564575195,
6.785558700561523,
8.755959510803223,
-1.7793526649475098,
3.5720598697662354,
14.910319328308105,
8.567381858825684,
-3.0222971439361572,
7.608916282653809,
11.578814506530762,
15.760836601257324,
0.196951761841774,
-1.2364956140518188,
18.399734497070312,
13.269172668457031,
9.272421836853027,
5.762683868408203,
-2.9794864654541016,
11.522770881652832,
-2.613294839859009,
4.209259033203125,
0.6040318608283997,
2.7900428771972656,
14.300445556640625,
18.474985122680664,
-3.123624563217163,
3.4333930015563965,
14.676835060119629,
16.81749153137207,
-0.6467316150665283,
5.062061786651611,
-5.1483025550842285,
11.77104663848877,
6.775743007659912,
-4.800704479217529,
14.193243980407715,
-3.9959373474121094,
-4.054126262664795,
6.715930461883545,
12.884360313415527,
6.690589904785156,
4.251398086547852,
18.174030303955078,
5.130993843078613,
-1.1566083431243896,
-2.2348458766937256,
18.21986961364746,
-0.10809937864542007,
3.1900172233581543,
-3.7293612957000732,
-2.5537078380584717,
-2.224149703979492,
11.78126335144043,
6.306681156158447,
14.722655296325684,
-0.2649671137332916,
-3.045595169067383,
4.836031436920166,
18.529829025268555,
4.970630645751953,
16.951364517211914,
-4.927473545074463,
8.510473251342773,
-3.0222182273864746,
13.225486755371094,
12.649348258972168,
-4.102973937988281,
-2.955301284790039,
0.9712491035461426,
14.171112060546875,
-2.5552282333374023,
12.752726554870605,
-1.4023464918136597,
-0.4709230959415436,
-2.0307648181915283,
8.075825691223145,
-4.68281364440918,
-3.836930990219116,
18.508678436279297,
18.67636489868164,
12.448344230651855,
-3.330782651901245,
18.734867095947266,
17.19797706604004,
-1.7998226881027222,
15.773619651794434,
5.578395843505859,
-3.7672603130340576,
4.400115966796875,
13.923559188842773,
0.4108312129974365,
14.921838760375977,
-5.399853229522705,
2.0222465991973877,
1.4009034633636475,
18.606639862060547,
18.82480239868164,
17.894628524780273,
0.10277615487575531,
11.883700370788574,
-0.11763346940279007,
15.400849342346191,
18.479345321655273,
-1.309147596359253,
17.09718894958496,
15.552234649658203,
15.161270141601562,
1.275430679321289,
2.668410062789917,
-0.22385713458061218,
15.607426643371582,
-2.261979579925537,
16.999197006225586,
15.0813570022583,
12.056253433227539,
5.036596298217773,
15.111043930053711,
6.30303430557251,
17.055479049682617,
7.840116024017334,
-6.567968845367432,
18.485198974609375,
5.61233377456665,
-3.2909293174743652,
18.103559494018555,
7.267965793609619,
-0.030629562214016914,
10.14880084991455,
8.208834648132324,
-10.985334396362305,
8.041746139526367,
16.857614517211914,
13.741711616516113,
3.211097240447998,
12.683692932128906,
16.165729522705078,
-1.194018840789795,
16.7263126373291,
8.359344482421875,
10.765108108520508,
-5.073405742645264,
3.872875213623047,
-7.578531742095947,
6.800546169281006,
13.334855079650879,
6.5602521896362305,
-1.733649730682373,
9.691730499267578,
-4.623344898223877,
-1.6798003911972046,
-4.817777156829834,
13.517866134643555,
1.3173319101333618,
-1.6138590574264526,
6.787925720214844,
10.666234016418457,
-3.7899324893951416,
9.965506553649902,
-5.405576229095459,
-3.7010154724121094,
-3.9947609901428223,
-4.0731892585754395,
14.726341247558594,
-5.2731032371521,
12.802559852600098,
0.6310495734214783,
8.885468482971191,
10.299094200134277,
12.675932884216309,
4.837638854980469,
6.748157978057861,
-3.7858293056488037,
-6.389098167419434,
8.982158660888672,
13.317605018615723,
17.603557586669922,
13.061591148376465,
1.4052594900131226,
-1.0616930723190308,
-3.349336624145508,
6.692129611968994,
-3.899064302444458,
3.2973358631134033,
-4.579883098602295,
11.810030937194824,
1.8545188903808594,
5.689248085021973,
-1.5974910259246826,
9.262628555297852,
-6.278830528259277,
13.051959037780762,
9.122330665588379,
-11.354991912841797,
-2.1932947635650635,
6.665696144104004,
-2.2989823818206787,
2.8906919956207275,
0.3628629148006439,
13.127615928649902,
16.479148864746094,
13.093033790588379,
-3.3106136322021484,
-4.1457719802856445,
1.2566418647766113,
-0.11315158009529114,
-2.4164960384368896,
9.849693298339844,
-4.052725315093994,
18.738391876220703,
7.5570502281188965,
2.743138313293457,
0.8834038376808167,
18.176563262939453,
16.11389923095703,
-3.1752254962921143,
-1.3822869062423706,
4.6934638023376465,
18.567787170410156,
4.75883674621582,
4.698904991149902,
8.326484680175781,
1.2059627771377563,
5.364838600158691,
-4.023898124694824,
-3.177384853363037,
2.4525365829467773,
1.077615737915039,
18.7797794342041,
2.770162343978882,
3.3876869678497314,
5.744379997253418,
0.7782407999038696,
-1.3005582094192505,
15.285238265991211,
3.5397210121154785,
12.912651062011719,
11.97109317779541,
2.9578986167907715,
-1.7443205118179321,
-0.43437010049819946,
-3.846133232116699,
17.86471176147461,
-2.9159398078918457,
-5.367639541625977,
0.2573525905609131,
4.759268760681152,
1.9282653331756592,
9.138019561767578,
17.094453811645508,
-4.162210464477539,
-4.225528717041016,
-3.2386322021484375,
-3.189617872238159,
-3.8150134086608887,
14.726900100708008,
13.761116027832031,
4.571882724761963,
3.200817346572876,
3.686567544937134,
-3.7606823444366455,
6.0071258544921875,
16.950010299682617,
10.269935607910156,
7.641234397888184,
15.477400779724121,
13.890310287475586,
2.202638626098633,
15.175182342529297,
5.592392921447754,
8.803094863891602,
15.47365665435791,
-2.9534103870391846,
18.182687759399414,
2.0798473358154297,
1.676589012145996,
-5.141635417938232,
-3.1178438663482666,
1.911399483680725,
-8.890822410583496,
-3.413810968399048,
17.694778442382812,
-4.210291862487793,
5.714103698730469,
18.466379165649414,
15.23120403289795,
-7.304943561553955,
-0.655351459980011,
-3.3203892707824707,
1.614774227142334,
15.132536888122559,
4.809830188751221,
-1.3887791633605957,
-0.5421934723854065,
-6.400580883026123,
4.7626190185546875,
-3.043203592300415,
-7.147348880767822,
1.7782890796661377,
7.353977680206299,
3.530402898788452,
3.3197531700134277,
-5.472209930419922,
13.388803482055664,
-5.288612365722656,
-4.097203731536865,
10.368758201599121,
4.099576950073242,
7.512226581573486,
-4.141947269439697,
12.538047790527344,
-5.4817280769348145,
-1.2205675840377808,
7.208305835723877,
17.865270614624023,
14.284078598022461,
11.310361862182617,
5.484793663024902,
10.25838851928711,
12.3879976272583,
4.351421356201172,
2.9609951972961426,
13.612449645996094,
15.322117805480957,
-3.1590006351470947,
18.76666259765625,
-5.105167388916016,
7.815217971801758,
18.809505462646484,
16.847000122070312,
-1.0479270219802856,
7.878458023071289,
-2.300765037536621,
0.9586801528930664,
3.4135725498199463,
7.691782474517822,
2.095709800720215,
13.430277824401855,
11.884648323059082,
-3.1824352741241455,
-0.13795685768127441,
12.95151138305664,
-1.4959614276885986,
9.880470275878906,
7.759638786315918,
7.868817329406738,
-0.09849052131175995,
8.053337097167969,
6.616746425628662,
-4.116785526275635,
-3.8803772926330566,
6.798698425292969,
-7.083299160003662,
2.335684061050415,
-3.4590904712677,
6.04206657409668,
2.7542364597320557,
-4.426516056060791,
-5.595004081726074,
-2.968517303466797,
16.80403709411621,
-2.075368881225586,
2.878082275390625,
16.368595123291016,
-2.6883296966552734,
17.00718879699707,
-0.11166050285100937,
12.900681495666504,
0.495722234249115,
0.9183729290962219,
-0.6975032091140747,
-4.261261463165283,
15.595308303833008,
14.121057510375977,
16.73897361755371,
2.394535541534424,
18.6968994140625,
17.25560188293457,
2.040071725845337,
-6.66810417175293,
-4.509805202484131,
-8.060769081115723,
-5.5147552490234375,
2.888557195663452,
9.662900924682617,
-3.177853584289551,
16.628273010253906,
13.527167320251465,
-4.252186298370361,
5.2831292152404785,
4.147582530975342,
8.166090965270996,
17.08857536315918,
17.043371200561523,
3.819976806640625,
1.048669457435608,
18.723052978515625,
-5.233233451843262,
11.368104934692383,
8.095792770385742,
12.221088409423828,
11.454142570495605,
2.28104305267334,
-3.7654013633728027,
12.002531051635742,
3.0802547931671143,
12.329849243164062,
-6.035368919372559,
1.5070066452026367,
-5.059938430786133,
8.314126014709473,
2.0487163066864014,
-3.3400421142578125,
7.958751201629639,
-7.153207302093506,
7.260685443878174,
14.471266746520996,
17.368310928344727,
18.548986434936523,
5.235554218292236,
-1.0533157587051392,
0.6078976392745972,
6.0396013259887695,
15.889654159545898,
-5.2584228515625,
13.29031753540039,
16.91638946533203,
-4.705374240875244,
18.22183609008789,
0.25911593437194824,
-4.819970607757568,
14.313058853149414,
17.84758758544922,
-0.04483912140130997,
-1.9084376096725464,
14.08699893951416,
-4.310169696807861,
2.4547319412231445,
12.793326377868652,
-0.21151001751422882,
14.134160041809082,
-8.274528503417969,
9.797585487365723,
10.59581184387207,
-1.0475324392318726,
-3.7642858028411865,
-3.8973593711853027,
14.016217231750488,
1.4081934690475464,
-3.146121025085449,
-6.007968425750732,
-0.6677741408348083,
18.191465377807617,
-3.3157145977020264,
12.832307815551758,
11.84477710723877,
-1.6217774152755737,
0.3156667649745941,
0.22086556255817413,
17.839710235595703,
-4.507114887237549,
16.16120147705078,
10.7868070602417,
16.41470718383789,
0.709423303604126,
18.235559463500977,
8.179091453552246,
-7.367856502532959,
10.230809211730957,
15.321320533752441,
5.498345851898193,
16.534835815429688,
14.826363563537598,
-0.27932509779930115,
-5.314318656921387,
4.300004482269287,
13.81762409210205,
-3.1648871898651123,
-6.697884559631348,
-2.4097158908843994,
-3.7703163623809814,
6.072734832763672,
0.5590606927871704,
11.007916450500488,
10.202730178833008,
1.8515713214874268,
18.739566802978516,
18.029481887817383,
15.150101661682129,
3.8186376094818115,
2.590984344482422,
14.188432693481445,
-4.77994966506958,
9.392260551452637,
3.885965347290039,
15.506850242614746,
6.51840877532959,
8.891037940979004,
11.201123237609863,
2.4236559867858887,
15.107268333435059,
8.884119987487793,
1.6675362586975098,
3.677841901779175,
0.9796920418739319,
-2.7630746364593506,
-2.189678192138672,
14.464366912841797,
6.0102219581604,
2.0660600662231445,
16.389829635620117,
-3.1202332973480225,
17.52623748779297,
-0.24731893837451935,
-3.9693217277526855,
-0.5797725319862366,
0.6232923865318298,
11.279146194458008,
12.934835433959961,
11.409944534301758,
-6.967086315155029,
10.30036735534668,
4.735013961791992,
18.54901695251465,
14.896124839782715,
11.882878303527832,
-3.6840312480926514,
17.11855697631836,
-7.034072399139404,
-0.3659325838088989,
6.889801502227783,
-2.286710262298584,
14.071232795715332,
-5.627880096435547,
7.892484664916992,
15.991339683532715,
12.209412574768066,
2.282827615737915,
-1.314586877822876,
1.0466102361679077,
-4.2403764724731445,
9.52057933807373,
-4.641514301300049,
-5.082840442657471,
18.741525650024414,
3.742496967315674,
10.004708290100098,
-2.444988965988159,
-5.471627712249756,
5.352080821990967,
15.37125301361084,
17.07484245300293,
1.9521781206130981,
-4.271803855895996,
2.4079792499542236,
-3.4462902545928955,
-2.0020639896392822,
-3.159935712814331,
-1.9709632396697998,
8.568765640258789,
-3.6320738792419434,
-5.173586845397949,
2.830894947052002,
8.874200820922852,
17.150041580200195,
16.119441986083984,
-8.32589054107666,
12.736083030700684,
18.06459617614746,
-0.46123331785202026,
16.911441802978516,
15.828967094421387,
18.68419075012207,
14.438383102416992,
16.465187072753906,
-4.181004047393799,
-0.3546508252620697,
-1.9358915090560913
]
},
{
"hovertemplate": "Dominant_Topic=Topic 1
0=%{x}
1=%{y}
2=%{z}",
"legendgroup": "Topic 1",
"marker": {
"color": "#EF553B",
"opacity": 0.7,
"symbol": "circle"
},
"mode": "markers",
"name": "Topic 1",
"scene": "scene",
"showlegend": true,
"type": "scatter3d",
"x": [
-2.1386759281158447,
0.3558606505393982,
-10.6835355758667,
-3.3839120864868164,
-10.419510841369629,
0.18225985765457153,
-12.558945655822754,
-5.042056560516357,
0.520165741443634,
-14.247117042541504,
-7.132538795471191,
4.598463535308838,
-1.9020694494247437,
-5.647036075592041,
-10.045574188232422,
1.9167184829711914,
7.2074294090271,
-11.76916217803955,
0.08588128536939621,
-4.319937705993652,
8.958380699157715,
7.656793117523193,
0.790418267250061,
0.03348644822835922,
-12.050479888916016,
-3.796722412109375,
9.592360496520996,
-3.1807758808135986,
-4.034680366516113,
-4.08494234085083,
-13.171711921691895,
5.2287278175354,
11.990065574645996,
9.722826957702637,
-3.362821102142334,
-5.675926685333252,
5.027979373931885,
-9.190930366516113,
7.5523152351379395,
-4.1028337478637695,
-6.1655755043029785,
-7.355283737182617,
-1.5742675065994263,
-11.570673942565918,
-7.46186637878418,
-1.3450514078140259,
10.027064323425293,
-0.5652157664299011,
-4.585855960845947,
2.461956739425659,
0.8098425269126892,
-11.379278182983398,
9.597137451171875,
-6.49874210357666,
-6.819541931152344,
-7.717117786407471,
-7.0850982666015625,
-0.7955350875854492,
-5.108920574188232,
-8.56833553314209,
-11.328516960144043,
-6.502614974975586,
-6.966172218322754,
-0.8173480033874512,
-10.192980766296387,
-1.1025639772415161,
-0.03159790858626366,
-3.314838409423828,
10.609779357910156,
-13.881402969360352,
-7.05849027633667,
-3.1442551612854004,
6.074057579040527,
-13.401700973510742,
-2.3478221893310547,
-0.13652189075946808,
-3.7338712215423584,
-4.664003372192383,
-13.296401977539062,
-0.36783066391944885,
-8.072678565979004,
-3.448526620864868,
-9.27322006225586,
-11.764196395874023,
-11.049497604370117,
-2.4950754642486572,
7.979272842407227,
-9.282818794250488,
7.58521032333374,
-0.5715741515159607,
-2.697251319885254,
3.0333991050720215,
-2.149690866470337,
-4.309708118438721,
-7.424428462982178,
-7.8469038009643555,
-4.214676856994629,
-6.315032958984375,
-3.7446699142456055,
-2.054281234741211,
-0.9742955565452576,
-6.511687755584717,
-7.070551872253418,
5.685400485992432,
4.278711318969727,
-10.83723258972168,
-2.0313663482666016,
9.789125442504883,
-2.7973718643188477,
10.258898735046387,
-3.878575563430786,
-6.142870903015137,
-6.675442218780518,
9.496119499206543,
-10.75549602508545,
-2.1698451042175293,
7.498587131500244,
-14.11697769165039,
11.735389709472656,
-3.1166934967041016,
2.700465440750122,
-7.171228885650635,
10.276905059814453,
10.179823875427246,
-4.105905532836914,
0.41177332401275635,
-6.801628112792969,
-1.656667709350586,
9.204540252685547,
4.722193241119385,
6.614443778991699,
-0.9945610761642456,
8.00626277923584,
-1.0027207136154175,
2.4505209922790527,
-8.484758377075195,
-6.283283710479736,
-2.844297170639038,
-6.372914791107178,
10.050795555114746,
-4.305247783660889,
-7.489810466766357,
-2.6373655796051025,
1.185498595237732,
-11.510580062866211,
1.0657259225845337,
8.282784461975098,
-3.5118730068206787,
-4.897696495056152,
0.1374935656785965,
11.11667537689209,
8.144635200500488,
8.669160842895508,
-1.3835502862930298,
0.36623790860176086,
0.7906266450881958,
-4.392251968383789,
-9.654576301574707,
-11.17876148223877,
-11.28393268585205,
-8.4976806640625,
3.584139823913574,
-11.97810173034668,
-0.4417445659637451,
-15.235391616821289,
-1.0755932331085205,
0.10574506968259811,
-8.903902053833008,
3.0473403930664062,
-14.679586410522461,
-10.645233154296875,
-14.39515495300293,
-1.5565557479858398,
-14.575432777404785,
-0.310505747795105,
-2.3581738471984863,
-1.3076181411743164,
-3.2125906944274902,
-12.151810646057129,
-2.763594388961792,
5.3116536140441895,
-6.753296852111816,
-4.188831329345703,
0.9595176577568054,
7.387353897094727,
-12.964058876037598,
-9.735189437866211,
-5.334231376647949,
-6.716893196105957,
3.8096506595611572,
-1.2039355039596558,
0.9523448348045349,
-1.1173850297927856,
-4.156149387359619,
-9.542447090148926,
-11.769768714904785,
11.608223915100098,
-0.4797270894050598,
-11.692913055419922,
-1.9116181135177612,
1.523930311203003,
9.352612495422363,
-0.6393471956253052,
-3.9880900382995605,
-0.18665380775928497,
6.6836838722229,
-5.00218391418457,
-1.4791535139083862,
-1.1665692329406738,
0.5601125955581665,
-0.8780625462532043,
-12.553417205810547,
2.0593087673187256,
-11.01471996307373,
-13.444095611572266,
-5.0695881843566895,
-1.1531946659088135,
6.9486284255981445,
4.631783962249756,
-3.1188549995422363,
6.810095310211182,
-11.807916641235352,
-8.481268882751465,
-2.378783702850342,
7.078861713409424,
3.5395023822784424,
11.059308052062988,
-10.270637512207031,
-2.898850202560425,
-1.8226758241653442,
-5.1196184158325195,
-7.665872097015381,
-10.645503997802734,
-9.870750427246094,
-1.663514256477356,
-1.3901786804199219,
-11.992592811584473,
-7.733030319213867,
9.947693824768066,
7.618824005126953,
-8.804692268371582,
-5.56235933303833,
-4.015748977661133,
-8.8497953414917,
-3.770806074142456,
-5.022432327270508,
-8.27436351776123,
-3.3641345500946045,
6.979145050048828,
-5.228298664093018,
12.222468376159668,
-2.0114285945892334,
-1.4590400457382202,
5.3491597175598145,
11.725805282592773,
8.24314022064209,
3.2317285537719727,
3.1373507976531982,
-11.429060935974121,
-1.0869643688201904,
-7.017172336578369,
-2.57049298286438,
-0.2108956277370453,
-7.648728370666504,
-3.9077959060668945,
-2.6166787147521973,
11.604114532470703,
0.5389854311943054,
-4.780226230621338,
2.9429569244384766,
1.3878681659698486,
-9.556853294372559,
1.248687982559204,
-7.731836318969727,
8.208471298217773,
8.081878662109375,
-1.7131556272506714,
-3.349961757659912,
2.834770679473877,
-7.303926944732666,
4.826265811920166,
-2.0344367027282715,
-1.6473082304000854,
-9.53803539276123,
-4.838262557983398,
7.569703578948975,
-1.9945473670959473,
-3.5603299140930176,
0.4611045718193054,
-15.973366737365723,
-1.894191861152649,
-2.5339462757110596,
-3.6338791847229004,
-10.47742748260498,
-8.947263717651367,
-1.9836809635162354,
-6.0488362312316895,
-1.9148324728012085,
0.40101760625839233,
-1.327669382095337,
4.802923202514648,
-10.590315818786621,
-1.6065181493759155,
4.553819179534912,
-9.318469047546387,
-5.926426410675049,
-4.396975040435791,
-5.707802772521973,
-13.396682739257812,
0.7296387553215027,
-0.7213690876960754,
-0.5691713690757751,
-10.82736587524414,
-2.4457294940948486,
2.7683913707733154,
-8.018555641174316,
1.946417212486267,
-1.651045560836792,
-6.581838130950928,
3.304795980453491,
-6.076449871063232,
-14.231534004211426,
-10.693056106567383,
-5.691381931304932,
4.049047946929932,
-6.585804462432861,
-0.20706412196159363,
-1.6621898412704468,
-1.0263112783432007,
7.075440883636475,
-7.8684258460998535,
-0.09249214082956314,
-9.678945541381836,
-1.7469850778579712,
-7.716367721557617,
-3.275496006011963,
-9.343727111816406,
10.801398277282715,
-3.317202091217041,
-15.706491470336914,
-10.7218599319458,
2.1206424236297607,
-1.1407766342163086,
-0.3313996195793152,
-9.200474739074707,
-7.817535400390625,
-15.252633094787598,
-11.468274116516113,
-3.2119596004486084,
-5.82075309753418,
-6.450141906738281,
-16.20830726623535,
1.8146790266036987,
-7.7541890144348145,
-0.6705193519592285,
-12.175796508789062,
-1.4042357206344604,
-1.61417818069458,
-4.119487762451172,
-12.662736892700195,
2.40781569480896,
-2.815795660018921,
-4.493372917175293,
-5.412225723266602,
-4.183159351348877,
-1.4685742855072021,
-7.84105920791626,
-0.9981224536895752,
11.12868595123291,
1.5075454711914062,
-6.305057525634766,
-3.2606468200683594,
10.965569496154785,
2.060798168182373,
-11.546167373657227,
-10.639257431030273,
12.567723274230957,
1.6500352621078491,
5.8521575927734375,
-11.127577781677246,
-14.284232139587402,
3.303209066390991,
2.765291929244995,
-5.338398456573486,
6.317167282104492,
0.45760342478752136,
-13.96740436553955,
-11.195119857788086,
3.9885661602020264,
-2.0717382431030273,
-10.41104507446289,
-1.0827358961105347,
0.040468815714120865,
-11.240962982177734,
2.122276544570923,
9.714041709899902,
12.082488059997559,
1.2101918458938599,
-1.6111973524093628,
-1.468558430671692,
-9.310513496398926,
-8.976628303527832,
2.1332650184631348,
-6.530824661254883,
-2.7614517211914062,
-5.013261318206787,
-15.068577766418457,
-5.2421159744262695,
-13.565187454223633,
-5.53838586807251,
-3.785823345184326,
-15.127742767333984,
-5.752203941345215,
-13.703657150268555,
9.590856552124023,
-7.69024658203125,
7.016942501068115,
-13.959978103637695,
-6.13267707824707,
2.990004539489746,
-14.119858741760254,
4.860433101654053,
-10.949936866760254,
3.0214383602142334,
-5.378031253814697,
2.728574275970459,
1.7659677267074585,
6.610176086425781,
-9.266712188720703,
-0.3298657536506653,
-7.9514241218566895,
-10.902264595031738,
-0.4727550148963928,
-4.229375839233398,
5.685210227966309,
-5.715136528015137,
-0.7286126017570496,
-7.368044376373291,
-0.6694129109382629,
-12.965543746948242,
-11.55493450164795,
-1.5235453844070435,
-0.2474873661994934,
6.506392002105713,
-0.07257132232189178,
-12.445293426513672,
-8.257558822631836,
-11.112030029296875,
-4.246977806091309,
-11.642374992370605,
-8.499628067016602,
-9.253150939941406,
-9.534194946289062,
-5.87494421005249,
5.358589172363281,
-4.513604164123535,
-13.107431411743164,
-2.8773722648620605,
-8.219490051269531,
-9.581891059875488,
-4.7929582595825195,
4.639750003814697,
7.324503421783447,
-11.431599617004395,
-8.375205993652344,
-0.1081521138548851,
-12.849655151367188,
-15.352973937988281,
-11.588951110839844,
-3.620234251022339,
-5.1883039474487305,
9.253564834594727,
-3.242626428604126,
0.9080616235733032,
-5.550114631652832,
7.168804168701172,
2.6397805213928223,
7.495023727416992,
-0.6266127824783325,
6.277223110198975,
1.4716964960098267,
3.736642360687256,
5.9544572830200195,
12.7548828125,
6.282029628753662,
7.811685085296631,
9.705443382263184,
1.040830373764038,
1.3375890254974365,
2.172926187515259,
8.964077949523926,
-0.9641720056533813,
3.8089380264282227,
8.547282218933105,
5.431077480316162,
2.5740342140197754,
-0.02164165861904621,
-5.959532260894775,
-6.909355640411377,
-2.1933648586273193,
-6.865598201751709,
-6.871888160705566,
-2.2646396160125732,
-8.423385620117188,
-5.767216205596924,
-9.088430404663086,
-13.879399299621582,
-3.5632078647613525,
-0.2463916391134262,
-8.62211799621582,
-12.547425270080566,
-5.376570701599121,
-10.246984481811523,
-9.520094871520996,
-5.853848934173584,
-12.859987258911133,
-13.513596534729004,
-7.111081123352051,
-13.103099822998047,
-4.021090507507324,
-1.6443737745285034,
-11.883914947509766,
-12.359378814697266,
4.138681411743164,
8.502589225769043,
-6.808730602264404,
9.236955642700195,
-4.87701416015625,
-2.176176071166992,
-7.633110523223877,
8.146876335144043,
-1.3357958793640137,
-0.5067228674888611,
-0.2464223951101303,
-2.5643115043640137,
-12.352866172790527,
-9.398030281066895,
3.0106074810028076,
6.9057817459106445,
1.7904366254806519,
-7.3511061668396,
7.738521099090576,
7.523715019226074,
-1.102636694908142,
-9.783665657043457,
-1.525499701499939,
0.8147636651992798,
-11.218706130981445,
-8.96442699432373,
0.21061567962169647,
-10.919829368591309,
4.908993721008301,
-2.9981305599212646,
9.795417785644531,
9.480855941772461,
-2.746875762939453,
-7.429309844970703,
9.496898651123047,
-4.482414245605469,
9.46422290802002,
10.661850929260254,
10.756569862365723,
-16.529312133789062,
8.219783782958984,
11.981202125549316,
-0.9009004235267639,
7.102048397064209,
8.172857284545898,
-9.523622512817383,
8.026782035827637,
-1.15167236328125,
-5.3683881759643555,
-7.819896221160889,
4.6095476150512695,
9.47276496887207,
2.0167136192321777,
7.9676666259765625,
-10.0162353515625,
-0.34303006529808044,
4.968019962310791,
-9.250750541687012,
-14.864516258239746,
-6.462924480438232,
-10.700386047363281,
1.5353373289108276,
-13.401436805725098,
-4.66871452331543,
-8.783626556396484,
9.03870964050293,
8.507529258728027,
12.182780265808105,
-2.158397912979126,
-11.644750595092773,
-4.5900139808654785,
10.179558753967285,
-13.654912948608398,
-4.926883220672607,
-5.161469459533691,
-4.480085372924805,
-12.812302589416504,
-6.250495433807373,
-5.69128942489624,
-13.623353958129883,
-3.8133530616760254,
-2.666247844696045,
-6.463691711425781,
-3.95419979095459,
-9.779309272766113,
-4.311063289642334,
-4.475003242492676,
-9.290226936340332,
-14.301267623901367,
-7.254576683044434,
-8.852054595947266,
6.482400417327881,
-10.435484886169434,
9.37096118927002,
-11.662557601928711,
0.8163444995880127,
-8.847189903259277,
-2.668205976486206,
4.5325751304626465,
-10.684284210205078,
-2.234563112258911,
1.1735143661499023,
0.8954104781150818,
-1.9957081079483032,
0.3276326060295105,
-11.075407981872559,
-7.963040828704834,
3.0229556560516357,
7.839395523071289,
-0.16077345609664917,
-10.875638961791992,
-13.681146621704102,
-8.92735481262207,
6.430651664733887,
-2.1176207065582275,
6.289770126342773,
-8.978939056396484,
-9.998873710632324,
11.5480375289917,
-5.229442596435547,
-12.823996543884277,
-5.121957778930664,
-0.8735226988792419,
-12.083335876464844,
-14.622761726379395,
7.7211079597473145,
3.428147077560425,
-14.43032455444336,
11.81295108795166,
-14.793129920959473,
5.170725345611572,
-5.113899230957031,
-6.734355926513672,
-15.29825210571289,
-4.249274253845215,
-5.035383224487305,
-15.255958557128906,
-7.441770076751709,
-10.054034233093262,
-9.65407943725586,
7.489306449890137,
-7.652700901031494,
7.477770805358887,
7.305006504058838,
-3.1668574810028076,
-11.580289840698242,
-10.350500106811523,
-3.3823440074920654,
-1.5647051334381104,
-2.278709888458252,
-1.5132149457931519,
-5.08311653137207,
-9.734275817871094,
-12.946036338806152,
2.7772250175476074,
-6.438169002532959,
1.8956586122512817,
-5.581421375274658,
5.399056434631348,
-12.781463623046875,
11.131306648254395,
2.814055919647217,
-1.4131708145141602,
-14.438529014587402,
-6.054586410522461,
0.231537327170372,
2.2859649658203125,
11.9949951171875,
-3.3264639377593994,
0.5141838788986206,
4.170840263366699,
-2.582737445831299,
-8.007331848144531,
8.39267349243164,
-4.1356329917907715,
-11.20268726348877,
4.459151268005371,
6.433158874511719,
-15.439055442810059,
2.216353178024292,
7.979148864746094,
-0.8782997131347656,
0.917971134185791,
-4.4891228675842285,
0.7557318806648254,
-7.70100212097168,
-10.40568733215332,
-1.7720714807510376,
-8.805913925170898,
7.778141021728516,
1.039722204208374,
-4.444108963012695,
-2.7120211124420166,
-4.602803707122803,
-10.64803409576416,
-2.2910900115966797,
12.07581615447998,
-14.256909370422363,
-12.46807861328125,
0.35875698924064636,
-0.9621480107307434,
3.4680895805358887,
-4.370498180389404,
-0.32785800099372864,
-10.602851867675781,
-3.1925065517425537,
0.12194615602493286,
11.838769912719727,
-13.654436111450195,
5.329616546630859,
-7.1489644050598145,
-14.82907772064209,
9.507270812988281,
5.717041492462158,
-5.3370866775512695,
-9.50993537902832,
5.065589427947998,
-9.190559387207031,
-10.927569389343262,
5.901898384094238,
-2.454312324523926,
-6.562924385070801,
-11.292037010192871,
5.701359748840332,
3.0115697383880615,
-10.783085823059082,
-14.429269790649414,
-6.257749557495117,
1.6341824531555176,
2.764841318130493,
-1.4942138195037842,
-13.702630996704102,
-5.432804584503174,
0.4468419551849365,
-5.022672653198242,
3.150665760040283,
-12.67371654510498,
-11.589057922363281,
-2.5571234226226807,
-2.4778239727020264,
-10.96854305267334,
-9.985527038574219,
-11.351551055908203,
-4.1598663330078125,
-3.774301767349243,
-12.551090240478516,
7.858814239501953,
-11.07030200958252,
-0.5315512418746948,
-9.315665245056152,
8.198795318603516,
-4.864090442657471,
4.4348578453063965,
-4.870273113250732,
-10.58100414276123,
-14.493915557861328,
-12.73217487335205,
-4.292084217071533,
-3.4352097511291504,
-14.055610656738281,
2.3143208026885986,
-4.3410820960998535,
-14.459087371826172,
-6.135780334472656,
-2.3795604705810547,
-1.731665849685669,
-0.8107380867004395,
6.7163519859313965,
-3.2327983379364014,
-2.8970494270324707,
9.255464553833008,
10.091129302978516,
-11.541648864746094,
-15.981529235839844,
-13.12369441986084,
-6.456912040710449,
-5.175805568695068,
-7.982070446014404,
-1.391093373298645,
-2.8102986812591553,
-3.049042224884033,
-3.3267714977264404,
3.038926124572754,
4.4959611892700195,
-10.78466510772705,
-11.2582368850708,
10.918987274169922,
-2.337337017059326,
4.175942897796631,
-14.973883628845215,
-0.40216705203056335,
6.317209243774414,
12.259873390197754,
-9.10438346862793,
2.0276947021484375,
5.513298988342285,
-8.996895790100098,
-0.48388296365737915,
-11.21164321899414,
0.5686232447624207,
3.751596450805664,
2.293083667755127,
7.098951816558838,
-1.7478218078613281,
5.958538055419922,
11.593055725097656,
-2.171576738357544,
2.0730295181274414,
8.468927383422852,
-4.597823619842529,
-4.356658935546875,
-4.060910224914551,
-3.828150987625122,
-1.7690355777740479,
-9.631649017333984,
-2.8517277240753174,
5.249653339385986,
-2.3148651123046875,
2.069033622741699,
2.081033229827881,
1.913863182067871,
5.514894962310791,
1.960610032081604,
4.304977893829346,
-1.685168743133545,
7.394052505493164,
-6.558482646942139,
-6.8084716796875,
-1.5543080568313599,
10.099072456359863,
-1.4333146810531616,
-1.9250977039337158,
0.17865996062755585,
-2.540289878845215,
-1.644522786140442,
-7.659893035888672,
1.4052155017852783,
-0.8381174206733704,
-4.4436259269714355,
4.763028144836426,
9.81999397277832,
-0.6199188828468323,
2.454711437225342,
8.028167724609375,
-5.172842979431152,
-8.373690605163574,
-4.047439098358154,
-5.83223295211792,
6.22067403793335,
8.379117965698242,
2.1545557975769043,
4.023477554321289,
5.101411819458008,
6.896605491638184,
3.579540252685547,
1.5258448123931885,
0.24691765010356903,
-0.3731146454811096,
13.264487266540527,
-2.4234213829040527,
-4.612801551818848,
1.1868982315063477,
-8.570727348327637,
7.616668224334717,
-13.497878074645996,
-3.941525936126709,
0.9140145182609558,
0.10382572561502457,
7.039748668670654,
-13.598955154418945,
-4.00626277923584,
-3.8062033653259277,
-14.672135353088379,
4.9052863121032715,
-12.820969581604004,
-2.7974700927734375,
9.28640079498291,
9.435578346252441,
-6.797144889831543,
-1.1042654514312744,
-1.6689280271530151,
2.074218988418579,
-8.97519302368164,
-10.852519989013672,
-9.877960205078125,
-2.8707711696624756,
3.3567469120025635,
2.4866650104522705,
5.991339206695557,
1.9677765369415283,
2.765106678009033,
-1.2067840099334717,
5.53257417678833,
5.626512050628662,
-6.299937725067139,
-1.0501295328140259,
-2.6560962200164795,
-13.537520408630371,
-4.831472396850586,
-5.148457050323486,
-1.5868427753448486,
-8.371359825134277,
2.9273900985717773,
-1.8756930828094482,
-6.846157073974609,
-1.514413833618164,
-5.5184125900268555,
-1.060340166091919,
-6.5427985191345215,
10.343202590942383,
-7.264667510986328,
-3.064051389694214,
3.3914785385131836,
5.502079486846924,
6.2330403327941895,
13.25196647644043,
-1.0101529359817505,
-8.500591278076172,
3.199909210205078,
-13.463420867919922,
4.629790306091309,
2.0235912799835205,
-2.6833558082580566,
1.0201703310012817,
7.832413673400879,
11.124125480651855,
8.2997407913208,
3.272188425064087,
10.69374942779541,
13.309309959411621,
2.6413612365722656,
6.801387310028076,
0.34955886006355286,
20.678590774536133,
1.4933937788009644,
-11.439752578735352,
-1.0533795356750488,
5.853801250457764,
-2.9946835041046143,
-9.927505493164062,
11.163249015808105,
1.1169071197509766,
4.32359504699707,
7.174047946929932,
-9.650604248046875,
6.5842390060424805,
-1.5251191854476929,
-2.5739574432373047,
2.1871581077575684,
0.331834077835083,
3.590397834777832,
9.976064682006836,
1.4855563640594482,
-7.546351432800293,
-8.352937698364258,
5.38810920715332,
2.7360928058624268,
-10.813457489013672,
-7.262264728546143,
-10.587430000305176,
-2.7929999828338623,
-0.7765225768089294,
1.619107961654663,
8.491284370422363,
9.285443305969238,
0.599826991558075,
2.7313623428344727,
8.264918327331543,
-1.3680614233016968,
-2.23159122467041,
3.1731319427490234,
5.986988544464111,
5.896599292755127,
6.007922172546387,
-6.440305233001709,
5.9598307609558105,
0.9207479357719421,
-2.8261866569519043,
-3.5601439476013184,
5.864015579223633,
-1.528986930847168,
-1.352695107460022,
7.969359397888184,
2.5661356449127197,
-1.647051453590393,
-5.738792419433594,
-7.714924335479736,
-2.317333459854126,
-1.9465075731277466,
9.167950630187988,
-4.323832988739014,
-5.282186985015869,
-9.30650806427002,
-1.6338679790496826,
6.748889923095703,
5.6928582191467285,
6.539211273193359,
-2.070403575897217,
9.977967262268066,
-5.4621500968933105,
-4.304449081420898,
2.8623592853546143,
2.0435187816619873,
-5.94979190826416,
0.36354804039001465,
-3.2132980823516846,
-8.942769050598145,
-9.984254837036133,
9.108274459838867,
4.326406478881836,
7.220290184020996,
3.1741533279418945,
7.5970072746276855,
-7.45106840133667,
-8.035333633422852,
-5.22902774810791,
-1.4592911005020142,
0.38558870553970337,
-7.414766311645508,
4.8144354820251465,
9.62122631072998,
-9.607759475708008,
11.203956604003906,
4.6487016677856445,
-5.826477527618408,
-1.4011958837509155,
-9.549212455749512,
-9.359842300415039,
2.1041085720062256,
13.491406440734863,
8.351996421813965,
0.8292016983032227,
2.5341994762420654,
3.3048553466796875,
-3.2522552013397217,
7.392216205596924,
6.026974678039551,
-7.327298164367676,
8.35651683807373,
-6.822731971740723,
-10.037631034851074,
-6.009582042694092,
2.6533143520355225,
-9.660837173461914,
7.479824542999268,
-0.24059157073497772,
4.592213153839111,
-15.983759880065918,
-8.703377723693848,
-9.593122482299805,
-11.732409477233887,
11.322381019592285,
-3.714055299758911,
2.88397216796875,
9.21467113494873,
-2.875887632369995,
5.372599124908447,
-2.442326307296753,
-4.726110935211182,
-4.428370952606201,
6.308053970336914,
5.564099311828613,
8.181797981262207,
5.624995708465576,
-6.8750104904174805,
-7.771903991699219,
5.268164157867432,
3.172415018081665,
3.254988670349121,
0.7087402939796448,
8.9932861328125,
1.1118277311325073,
1.4605236053466797,
5.387188911437988,
8.837031364440918,
8.550488471984863,
-3.3460299968719482,
5.422530651092529,
-7.64339542388916,
-4.542996406555176,
13.247015953063965,
-11.103534698486328,
8.393415451049805,
6.636906147003174,
-0.3851498067378998,
0.44374391436576843,
-6.568536758422852,
9.508038520812988,
3.9901561737060547,
5.633139610290527,
-11.949135780334473,
3.0003461837768555,
-3.013746738433838,
-3.8540430068969727,
-5.254759788513184,
-10.987311363220215,
6.307872295379639,
-1.0887960195541382,
3.4394569396972656,
10.677094459533691,
-6.600749969482422,
-2.0041491985321045,
4.7388596534729,
-0.9604637622833252,
-9.833298683166504,
3.3896780014038086,
-13.205963134765625,
-1.3131999969482422,
0.4166207015514374,
-6.172033309936523,
-12.013957977294922,
-0.1441843956708908,
-6.884815692901611,
-5.980589866638184,
6.8351335525512695,
6.182724475860596,
5.72320032119751,
6.973829746246338,
-4.3352766036987305,
-5.8913655281066895,
-4.119019031524658,
10.879768371582031,
0.5373176336288452,
-3.144087553024292,
-13.166407585144043,
-2.6669445037841797,
5.270116329193115,
-11.03328800201416,
-11.552597045898438,
1.0151233673095703,
1.6370930671691895,
-0.5480392575263977,
-13.271493911743164,
-6.537420749664307,
-5.6312971115112305,
-0.4521629214286804,
-13.78972053527832,
5.982090950012207,
-6.251279354095459,
-12.144987106323242,
-11.246816635131836,
-3.764235258102417,
5.163212299346924,
-0.794806718826294,
-1.6080336570739746,
9.02027702331543,
6.395391464233398,
8.544466972351074,
-11.576918601989746,
-1.621828556060791,
6.9598212242126465,
-7.705603122711182,
-12.124576568603516,
-11.296743392944336,
3.313715934753418,
-7.305537700653076,
-2.246795654296875,
3.2027440071105957,
4.373128414154053,
-6.9543843269348145,
-7.2777204513549805,
10.199742317199707,
-2.120232343673706,
-14.99588394165039,
7.247913360595703,
-2.1432363986968994,
-11.05184268951416,
-15.445477485656738,
-3.0992345809936523,
6.564515113830566,
-14.788036346435547,
0.37852978706359863,
-5.064233303070068,
-2.459343910217285,
-0.5692514777183533,
-3.837472438812256,
2.1495652198791504,
-5.566248416900635,
2.750396490097046,
7.13362455368042,
8.157841682434082,
-14.887106895446777,
-10.407472610473633,
9.591559410095215,
-9.774434089660645,
3.3274240493774414,
1.6247456073760986,
-3.8572847843170166,
4.226411819458008,
-11.580740928649902,
-2.3898801803588867,
9.491435050964355,
-9.68021011352539,
7.6399006843566895,
0.017746612429618835,
-4.14604377746582,
1.9964489936828613,
-1.728751301765442,
0.05759444832801819,
3.0370242595672607,
-0.597573459148407,
10.554115295410156,
1.6414117813110352,
5.011394023895264,
-8.040002822875977,
-1.2428265810012817,
-6.816262245178223,
-10.160008430480957,
3.6637754440307617,
7.145382404327393,
4.48028039932251,
-3.4843554496765137,
-6.062274932861328,
5.957770824432373,
-5.0946946144104,
5.911341667175293,
-3.1241631507873535,
-10.100532531738281,
-13.578627586364746,
-7.478346347808838,
-4.63108491897583,
1.0447760820388794,
-3.4211459159851074,
-10.619760513305664,
8.479964256286621,
-9.137632369995117,
-7.226984977722168,
9.586777687072754,
-10.719033241271973,
3.8052818775177,
8.48694133758545,
11.6124849319458,
-11.97597599029541,
-5.777359485626221,
-11.780275344848633,
-4.938687801361084,
7.1833720207214355,
1.7890511751174927,
11.04655933380127,
10.698531150817871,
-5.028365612030029,
8.834802627563477,
9.901932716369629,
-13.196712493896484,
0.7342444062232971,
6.21500301361084,
-3.993446111679077,
5.3812055587768555,
-8.755294799804688,
-9.73380184173584,
-4.639673709869385,
-1.885748267173767,
0.9035372138023376,
5.413978576660156,
12.009133338928223,
5.560413837432861,
9.234408378601074,
-6.823912620544434,
-2.7949764728546143,
-1.4804459810256958,
-8.252058982849121,
3.0409884452819824,
6.668755054473877,
-5.851663112640381,
6.443091869354248,
4.421386241912842,
-7.256211757659912,
3.3639323711395264,
-2.4421656131744385,
-0.3485115170478821,
-6.9127421379089355,
2.6575286388397217,
-1.5174591541290283,
8.428230285644531,
-2.841970920562744,
-5.447937488555908,
2.1048972606658936,
1.9355939626693726,
-1.5016062259674072,
11.534476280212402,
3.239105463027954,
1.4744511842727661,
-2.812317371368408,
-4.476442337036133,
4.364480972290039,
7.373856067657471,
-3.2378907203674316,
6.169673442840576,
10.817358016967773,
-1.0686826705932617,
7.747014999389648,
-4.130798816680908,
2.592207431793213,
-0.7411600351333618,
3.2979543209075928,
-2.6192777156829834,
-7.0212721824646,
-2.0193936824798584,
7.9601240158081055,
-0.17113108932971954,
0.5109215974807739,
-5.925416946411133,
5.657526969909668,
-12.39592170715332,
0.144830584526062,
-10.177613258361816,
2.49342942237854,
4.802956581115723,
-4.2133097648620605,
8.724237442016602,
0.9161931872367859,
-5.209878921508789,
-7.60722541809082,
2.4045205116271973,
-2.453406810760498,
3.160820722579956,
3.561245918273926,
3.5609829425811768,
2.971569061279297,
-1.9865481853485107,
-8.855866432189941,
-1.7548182010650635,
10.445245742797852,
-1.9843602180480957,
-2.236009359359741,
0.515831470489502,
-0.7370516061782837,
-6.340301513671875,
-8.963404655456543,
2.82275652885437,
-10.749077796936035,
-2.3536558151245117,
-10.966618537902832,
2.6200122833251953,
7.680485725402832,
-0.2679358124732971,
5.55690860748291,
-0.26870429515838623,
7.677884578704834,
5.5585479736328125,
-0.0032259714789688587,
5.596554756164551,
-1.6947290897369385,
1.9770572185516357,
-11.275121688842773,
10.112081527709961,
9.903207778930664,
-7.461942195892334,
-7.189441680908203,
-9.728537559509277,
-9.728089332580566,
-9.092949867248535,
-10.456798553466797,
-3.108644485473633,
-7.829946041107178,
-3.1090593338012695,
3.8232779502868652,
-7.232274532318115,
-7.613367080688477,
-3.1742424964904785,
0.46272343397140503,
-3.80212140083313,
0.3900921642780304,
9.076120376586914,
-2.2356505393981934,
2.6486880779266357,
-5.004075050354004,
-1.5816988945007324,
-3.968461275100708,
-5.219266891479492,
-1.6516145467758179,
-8.292269706726074,
-8.875537872314453,
1.4687833786010742,
-12.81389331817627,
5.597085475921631,
-5.026683807373047,
4.763286113739014,
-1.7530202865600586,
7.44732666015625,
-0.9186083078384399,
-11.973590850830078,
-0.0989149659872055,
7.952153205871582,
9.110846519470215,
-10.186805725097656,
-3.0605340003967285,
-4.7599101066589355,
2.5906009674072266,
-4.0018720626831055,
8.48001480102539,
-5.787476062774658,
-4.283159255981445,
7.76222562789917,
-7.213953018188477,
-5.5555644035339355,
-11.952869415283203,
-6.952147483825684,
2.7522823810577393,
2.8214945793151855,
-1.605094075202942,
9.164420127868652,
2.1065330505371094,
-3.226956605911255,
2.5948028564453125,
6.106816291809082,
2.5430281162261963,
-0.26816844940185547,
4.763140678405762,
-12.095236778259277,
-5.024564266204834,
-5.024942874908447,
-6.8356475830078125,
-4.509405612945557,
10.251917839050293,
10.252398490905762,
10.055551528930664,
-7.22675895690918,
8.68313217163086,
-4.806853294372559,
-7.964804172515869,
-2.3617560863494873,
-2.532719135284424,
3.292245626449585,
3.2912371158599854,
-9.573769569396973,
2.6429038047790527,
-2.53312611579895,
-2.531770944595337,
-11.611533164978027,
-4.650488376617432,
-5.044863700866699,
-3.239176034927368,
-5.398490905761719,
-7.713235378265381,
4.583888530731201,
4.592516899108887,
9.449901580810547,
8.570341110229492,
0.5181683897972107,
-7.759187698364258,
-3.169137954711914,
-7.49103307723999,
1.7685524225234985,
6.563789367675781,
10.904136657714844,
11.828453063964844,
3.505693197250366,
-0.3669813871383667,
2.33496356010437,
3.2935760021209717,
-8.257420539855957,
5.479224681854248,
7.260769367218018,
11.168445587158203,
5.3287529945373535,
7.045403480529785,
-4.471925258636475,
0.03768985718488693,
2.680924892425537,
4.56721305847168,
-7.303690433502197,
10.041570663452148,
6.995384693145752,
3.3049631118774414,
-9.732848167419434,
-4.9400763511657715,
0.43236276507377625,
6.125398635864258,
-1.023725986480713,
-2.784231662750244,
8.602937698364258,
-6.772026538848877,
-7.618959903717041,
-3.4063844680786133,
10.810498237609863,
0.33674460649490356,
8.678715705871582,
-1.4026368856430054,
7.07011079788208,
-11.792917251586914,
8.476054191589355,
-3.610699415206909,
-10.805800437927246,
-5.9814252853393555,
-5.276482105255127,
0.7571750283241272,
9.473236083984375,
-6.71898078918457,
-6.109076499938965,
-8.614128112792969,
-12.221776008605957,
-6.724564075469971,
-5.708082675933838,
1.1089465618133545,
-0.4584463834762573,
3.1476404666900635,
6.919891834259033,
2.963412046432495,
11.78785228729248,
3.296288251876831,
3.730156421661377,
10.90929126739502,
2.1108973026275635,
-4.314242839813232,
8.421157836914062,
12.784614562988281,
-0.13683921098709106,
-9.653328895568848,
3.2056679725646973,
-4.7161455154418945,
5.90702486038208,
1.3552064895629883,
8.549439430236816,
-1.695631742477417,
-7.4598212242126465,
-3.529585838317871,
-10.06595230102539,
-9.704937934875488,
-4.0388946533203125,
-4.03921365737915,
9.019614219665527,
-8.205412864685059,
-11.206828117370605,
-1.0682423114776611,
9.958407402038574,
-9.73194408416748,
-3.8022589683532715,
11.205041885375977,
3.5986692905426025,
7.746314525604248,
-1.9924731254577637,
-9.726574897766113,
-11.985932350158691,
-7.460603713989258,
-2.235809087753296,
-8.036860466003418,
-6.973344326019287,
-2.355682134628296,
6.543359279632568,
-2.7605957984924316,
-8.236968040466309,
8.571099281311035,
-4.326315879821777,
-4.593977451324463,
3.608358383178711,
10.573722839355469,
-4.539464950561523,
-3.955188751220703,
-3.5503642559051514,
-10.250469207763672,
-5.857841968536377,
-1.671423316001892,
7.057847023010254,
3.286442756652832,
-9.132741928100586,
-7.19200325012207,
3.0404152870178223,
-8.236865997314453,
-4.082209587097168,
10.909124374389648,
10.90920352935791,
-11.09634017944336,
-3.2286555767059326,
2.0381784439086914,
4.541204929351807,
-0.6328404545783997,
1.22539484500885,
10.909165382385254,
-1.045849084854126,
-1.8592419624328613,
-8.23702621459961,
9.654513359069824,
8.663628578186035,
-4.312361717224121,
-2.5164856910705566,
-0.8712782859802246,
-13.650002479553223,
7.191012859344482,
-2.973548173904419,
-1.9914171695709229,
0.758316159248352,
12.78346061706543,
1.3459209203720093,
-3.8037707805633545,
9.933500289916992,
-11.000917434692383,
2.024634599685669,
-5.016490936279297,
0.695724368095398,
-4.312041759490967,
-7.334567070007324,
9.359907150268555,
6.972822666168213,
4.587149143218994,
11.37095832824707,
-4.491767883300781,
-6.684209823608398,
-4.0687336921691895,
0.9968228936195374,
-6.584619045257568,
11.138245582580566,
11.977115631103516,
6.314958095550537,
-0.8524762392044067,
2.430745840072632,
-3.8279128074645996,
-7.922220706939697,
-5.7734761238098145,
-0.32995060086250305,
10.148223876953125,
-3.1007206439971924,
8.294632911682129,
8.641526222229004,
8.490507125854492,
1.1518447399139404,
2.7918221950531006,
7.045770168304443,
-10.161160469055176,
-1.6826187372207642,
1.5595266819000244,
4.495330810546875,
10.07226276397705,
1.1991740465164185,
12.642242431640625,
-2.510565757751465,
6.741820812225342,
6.642481327056885,
-7.371955871582031,
-13.390596389770508,
-5.374908447265625,
2.186323642730713,
4.667393684387207,
7.250829696655273,
-4.4229350090026855,
0.618462324142456,
-4.16687536239624,
7.415352821350098,
-0.8148514032363892,
-1.7630573511123657,
-5.675293922424316,
0.06007419154047966,
-3.9135565757751465,
-7.448744297027588,
9.42242431640625,
-7.435299396514893,
2.8448288440704346,
4.096433162689209,
-10.716574668884277,
-4.433106422424316,
9.786529541015625,
-4.06618070602417,
-13.837725639343262,
-15.968578338623047,
2.340317964553833,
-4.41424560546875,
-9.9618501663208,
6.680607318878174,
-2.9839789867401123,
8.77508544921875,
4.7053117752075195,
-0.43357425928115845,
-5.198115825653076,
10.464089393615723,
9.293535232543945,
-3.860250949859619,
-13.813125610351562,
-6.970881938934326,
3.713837146759033,
0.6220197677612305,
11.611056327819824,
9.817450523376465,
-3.1363840103149414,
-5.602560520172119,
-1.1081981658935547,
-6.903042793273926,
9.828340530395508,
9.376172065734863,
7.762975692749023,
8.016494750976562,
-9.399401664733887,
7.855420112609863,
11.590150833129883,
-3.4961626529693604,
-13.560879707336426,
-4.300291538238525,
-14.271929740905762,
3.092942714691162,
1.9216256141662598,
-8.982192039489746,
12.209494590759277,
1.6782119274139404,
-2.6135189533233643,
1.7846466302871704,
1.7490121126174927,
5.840071201324463,
7.054136753082275,
2.8668603897094727,
-6.442573070526123,
-3.6819908618927,
-0.44489139318466187,
-9.699252128601074,
-2.5385427474975586,
13.004129409790039,
-5.710976600646973,
5.762518405914307,
-0.21414007246494293,
-11.546220779418945,
3.4212863445281982,
-4.130993366241455,
-11.014310836791992,
-2.312711477279663,
7.227165222167969,
1.6497323513031006,
-6.543573379516602,
-3.379021167755127,
3.0460939407348633,
0.18121492862701416,
-9.52981948852539,
2.338986873626709,
-14.167423248291016,
9.689181327819824,
-4.135986804962158,
-11.311699867248535,
0.12141342461109161,
-7.890872478485107,
7.0832839012146,
-2.332047700881958,
-5.524783611297607,
-3.494279623031616,
-3.2184898853302,
-11.296916007995605,
-5.12595796585083,
-1.3240500688552856,
0.11328551918268204,
2.654712438583374,
-3.280430793762207,
-15.593809127807617,
3.842820882797241,
-4.446987628936768,
-1.359503984451294,
-2.911252737045288,
5.283844947814941,
0.0046583497896790504,
13.04708194732666,
-3.6389505863189697,
-3.990927219390869,
-7.537752628326416,
1.3505483865737915,
-9.282387733459473,
5.684350967407227,
1.1493581533432007,
5.586287498474121,
-7.96333646774292,
-7.902010917663574,
3.3829004764556885,
-2.592756748199463,
1.7585047483444214,
4.623075008392334,
9.344548225402832,
11.195414543151855,
4.470817565917969,
-1.9931589365005493,
9.584341049194336,
-0.01765146665275097,
-7.89811897277832,
3.577105760574341,
11.46745491027832,
-4.531491756439209,
5.137452125549316,
5.395084857940674,
-4.24323034286499,
-7.806414604187012,
4.763226509094238,
3.0965566635131836,
-4.6660990715026855,
1.5943092107772827,
6.980802536010742,
7.954695224761963,
5.329275131225586,
0.41189882159233093,
5.3777570724487305,
-9.373183250427246,
-3.6360409259796143,
-2.283376455307007,
-2.0283825397491455,
-5.226654052734375,
0.33215534687042236,
-12.867892265319824,
6.405323505401611,
-3.598459482192993,
-11.23813247680664,
-2.7466001510620117,
-6.071020603179932,
-4.2947773933410645,
-14.995747566223145,
-0.14754603803157806,
-6.935667037963867,
-3.932187795639038,
5.972778797149658,
-3.1563093662261963,
-10.971870422363281,
4.359827518463135,
-9.612152099609375,
-2.5730981826782227,
-10.373611450195312,
-3.669621706008911,
-8.827467918395996,
-5.012532711029053,
1.1292532682418823,
-8.398213386535645,
2.090654134750366,
-4.059884548187256,
-14.257064819335938,
-5.009955406188965,
3.324727773666382,
-11.563298225402832,
-7.170516014099121,
-8.837258338928223,
7.589974403381348,
5.899128437042236,
3.2955565452575684,
-5.895389556884766,
-1.2320870161056519,
5.1689348220825195,
2.718186855316162,
8.141377449035645,
-5.781335353851318,
2.655214786529541,
-0.4953872859477997,
-6.470723628997803,
3.6069092750549316,
-6.519106388092041,
3.459563970565796,
6.687080383300781,
-3.186760902404785,
-1.0016543865203857,
-11.478569030761719,
-2.9977407455444336,
-11.403250694274902,
-0.06416288018226624,
-6.404216766357422,
-7.675623893737793,
-1.6094188690185547,
-5.412942409515381,
-11.384798049926758,
-1.276637077331543,
-8.576218605041504,
-12.628507614135742,
-15.376289367675781,
-5.427382946014404,
-1.5460394620895386,
-2.2967917919158936,
-10.477840423583984,
-4.561454772949219,
1.5155011415481567,
-3.218501091003418,
1.827679991722107,
-2.8016135692596436,
-10.28742790222168,
-1.510353922843933,
-7.714735984802246,
-10.753424644470215,
-15.072614669799805,
-5.1466875076293945,
-15.408787727355957,
-6.956048965454102,
-4.078446865081787,
-5.021073818206787,
-5.444850921630859,
-7.639704704284668,
-8.718877792358398,
-0.44717225432395935,
-9.723605155944824,
-9.210322380065918,
-10.257512092590332,
-5.243535995483398,
-15.03979778289795,
-6.371341228485107,
-12.468720436096191,
-14.464325904846191,
-13.030817985534668,
-7.359151840209961,
-11.631726264953613,
-11.189763069152832,
-7.659695625305176,
-8.026031494140625,
-3.403629779815674,
-1.5464272499084473,
-1.1517666578292847,
-12.838136672973633,
-12.565079689025879,
-1.3786877393722534,
-5.768907070159912,
-10.472955703735352,
-5.204251766204834,
-4.547741889953613,
-6.677862644195557,
-10.0800199508667,
-6.209339618682861,
-11.65381145477295,
-15.499847412109375,
-5.825857639312744,
-6.0575175285339355,
-9.069588661193848,
-12.83604621887207,
-14.591582298278809,
-7.655811309814453,
-15.038189888000488,
-14.620201110839844,
-6.327126979827881,
-15.466277122497559,
-0.15745261311531067,
-6.644383907318115,
-1.603906512260437,
-13.987329483032227,
-2.8525748252868652,
-2.877682685852051,
-9.14111328125,
-5.223160743713379,
-13.377299308776855,
-7.0319085121154785,
-4.116321086883545,
-14.428175926208496,
-14.803481101989746,
-6.829224586486816,
-15.026317596435547,
-10.277374267578125,
-10.84699535369873,
-12.070935249328613,
-13.797795295715332,
-14.484517097473145,
-6.294960975646973,
-4.92771053314209,
-14.219447135925293,
-7.767189025878906,
-15.025238990783691,
-1.534691333770752,
-4.5135817527771,
-2.0576179027557373,
-14.305143356323242,
-12.47860336303711,
-14.88914680480957,
-11.219025611877441,
-11.079374313354492,
-8.982100486755371,
-13.661788940429688,
-7.726192474365234,
-15.04065990447998,
-14.960309982299805,
-11.745365142822266,
-5.04915714263916,
-2.1852307319641113,
-4.175276756286621,
-1.885640025138855,
-13.480696678161621,
-0.3788411021232605,
-9.625723838806152,
-6.0115814208984375,
-14.25772762298584,
-5.776213645935059,
-12.27371597290039,
-11.486699104309082,
-8.927348136901855,
-2.5332820415496826,
-3.1592965126037598,
-13.056139945983887,
-13.13083553314209,
-11.556982040405273,
-7.065310478210449,
-15.042679786682129,
-9.024024963378906,
-3.8737332820892334,
-14.532312393188477,
-9.68716812133789,
-8.410418510437012,
-8.536835670471191,
-11.32017707824707,
-10.081174850463867,
-14.009100914001465,
-6.606906890869141,
-4.10500431060791,
-6.466720104217529,
-9.936135292053223,
-13.951812744140625,
-6.636116981506348,
-5.919460296630859,
-14.152016639709473,
-13.052399635314941,
-14.898508071899414,
-5.101085186004639,
-13.175152778625488,
-10.911581039428711,
7.8898820877075195,
9.437814712524414,
-2.670666217803955,
7.869582176208496,
-5.964803218841553,
3.3672924041748047,
-6.590400695800781,
0.9734618663787842,
-8.37161922454834,
-1.9481315612792969,
-11.568495750427246,
9.828912734985352,
-7.102010250091553,
-7.7099385261535645,
0.08201149106025696,
-3.2509539127349854,
2.873723030090332,
5.16379451751709,
-1.5297411680221558,
10.096482276916504,
-1.559268593788147,
3.288963556289673,
-0.6082702875137329,
-5.930671691894531,
9.373356819152832,
6.331870079040527,
-1.6448947191238403,
-0.22399823367595673,
11.945999145507812,
2.4254369735717773,
12.930303573608398,
11.928159713745117,
5.732210636138916,
4.64501953125,
-2.4086732864379883,
-6.597721099853516,
-13.407190322875977,
-8.768289566040039,
-3.477933406829834,
2.5719969272613525,
-4.385900974273682,
-2.7471046447753906,
-12.843233108520508,
-0.04077610373497009,
-3.0225017070770264,
-6.492082118988037,
-5.397697448730469,
-11.930994033813477,
-10.049351692199707,
-10.261653900146484,
5.790403366088867,
1.763815999031067,
-7.671055316925049,
3.972249746322632,
3.1595399379730225,
-2.8852834701538086,
-13.931103706359863,
-4.612382888793945,
-6.081711769104004,
-6.433582782745361,
-7.667746543884277,
-1.8643512725830078,
0.47956615686416626,
-15.270679473876953,
11.800540924072266,
-6.81942081451416,
-14.68606185913086,
-15.105940818786621,
-4.173924446105957,
-14.56014347076416,
-8.554680824279785,
0.5239852666854858,
-1.8880455493927002,
-2.4311344623565674,
9.050200462341309,
-4.966949939727783,
-5.28364896774292,
10.209940910339355,
-1.0222548246383667,
10.752965927124023,
-15.923223495483398,
-11.653433799743652,
-14.330721855163574,
-8.951841354370117,
3.0533480644226074,
-4.4354352951049805,
-3.589226245880127,
-9.488777160644531,
-3.931560516357422,
-4.128127574920654,
-6.069850921630859,
-9.287638664245605,
9.189251899719238,
-11.612309455871582,
10.014710426330566,
-5.94346284866333,
-16.11277198791504,
-6.51402473449707,
-4.200582027435303,
-8.41394329071045,
-15.822458267211914,
-7.253437519073486,
-4.08302116394043,
11.253522872924805,
-7.084846019744873,
6.705850124359131,
-6.798217296600342,
2.747938394546509,
-4.736297607421875,
-2.010812759399414,
-6.147774696350098,
-4.675725936889648,
-14.155820846557617,
9.9951810836792,
-13.137471199035645,
10.564467430114746,
-13.417091369628906,
-11.171125411987305,
1.7863729000091553,
5.858605861663818,
11.8792085647583,
6.767369747161865,
-0.941321074962616,
11.9681978225708,
-13.3283109664917,
-4.351770401000977,
-4.445995330810547,
-8.753975868225098,
-0.8463373780250549,
-4.153034687042236,
4.9718546867370605,
-11.65781307220459,
-13.910096168518066,
5.168026924133301,
-13.671284675598145,
-11.35205364227295,
-13.237363815307617,
2.105541467666626,
4.343255519866943,
-6.61502742767334,
-5.133015155792236,
-10.158747673034668,
-11.643800735473633,
-4.246584415435791,
-12.58979606628418,
-2.4928903579711914,
7.120434761047363,
6.9878363609313965,
9.829084396362305,
-11.35524845123291,
-4.249223232269287,
-14.074896812438965,
-11.402338981628418,
-8.932405471801758,
-7.703739166259766,
-11.302200317382812,
-14.865643501281738,
-9.914410591125488,
-12.04736328125,
-4.322442531585693,
-5.730899333953857,
-8.832037925720215,
-12.713499069213867,
-4.213134288787842,
-11.596563339233398,
-14.872200012207031,
-11.692353248596191,
-6.558159351348877,
-11.760852813720703,
-12.203043937683105,
-2.273395299911499,
-1.3181753158569336,
1.0551774501800537,
-0.0005470862379297614,
2.1513702869415283,
-7.83172082901001,
-8.079535484313965,
-6.283376216888428,
-5.016585350036621,
-7.332769393920898,
-8.172094345092773,
-7.057428359985352,
-15.461967468261719,
-12.784102439880371,
-6.058898448944092,
-12.724125862121582,
-15.119674682617188,
-3.846332311630249,
1.3097268342971802,
-9.706766128540039,
-9.657022476196289,
-7.514313220977783,
-7.870244026184082,
-10.562814712524414,
-8.55270004272461,
-15.21977710723877,
-13.385297775268555,
-14.074483871459961,
-3.6823537349700928,
-6.574256896972656,
-11.0095853805542,
-4.464522361755371,
-7.976059436798096,
-14.389402389526367,
-8.49080753326416,
-2.50787615776062,
-1.8411189317703247,
-2.10606050491333,
-13.568753242492676,
-9.954706192016602,
-3.129197120666504,
-12.671812057495117,
-13.27063274383545,
-13.680054664611816,
-14.430497169494629,
-5.595858097076416,
-14.208775520324707,
-2.937649965286255,
-1.6279979944229126,
-9.417393684387207,
-12.25706672668457,
-14.31894302368164,
-6.953868389129639,
-11.735648155212402,
-7.037003993988037,
-14.305113792419434,
1.0411195755004883,
1.60771644115448,
1.7222352027893066,
-8.792808532714844,
-2.972036361694336,
-6.907847881317139,
-2.666416645050049,
-2.949817657470703,
-9.905856132507324,
-7.72735071182251,
-5.735775470733643,
0.27765876054763794,
-10.998886108398438,
-7.805013179779053,
-6.435512065887451,
-6.858243942260742,
1.9871033430099487,
-5.92704439163208,
-13.47884464263916,
1.9632165431976318,
-10.688100814819336,
-0.36310720443725586,
-8.293646812438965,
-10.831936836242676,
-15.144331932067871,
-12.829922676086426,
-9.047699928283691,
-10.465517044067383,
-8.167854309082031,
-8.835372924804688,
-5.454479694366455,
0.16770893335342407,
0.15658485889434814,
-8.818744659423828,
-11.645150184631348,
-1.5831552743911743,
-5.771970748901367,
-5.424007415771484,
-6.694117546081543,
-7.986443042755127,
0.9521636366844177,
-4.549612045288086,
-1.8485033512115479,
-0.6931740045547485,
-0.6918385028839111,
-11.748529434204102,
-6.759756088256836,
-0.17170077562332153,
6.25767707824707,
0.022578146308660507,
-2.1367714405059814,
-11.368218421936035,
-2.2798526287078857,
-2.4483110904693604,
2.2974395751953125,
2.596774101257324,
-4.515488147735596,
7.157992839813232,
-4.015535831451416,
-2.8464879989624023,
-5.6969146728515625,
5.946730613708496,
8.821656227111816,
-5.110064506530762,
7.578759670257568,
5.251087665557861,
6.5198073387146,
-8.479554176330566,
0.7481942772865295,
-5.663341999053955,
0.2789386510848999,
-10.943214416503906,
-1.4469741582870483,
-12.06005573272705,
-6.658086776733398,
-11.091978073120117,
-1.9053845405578613,
-15.062499046325684,
-11.236091613769531,
-2.5527591705322266,
1.9535568952560425,
-6.451528072357178,
-11.53762435913086,
-3.9792723655700684,
0.8489517569541931,
2.1609528064727783,
-11.790666580200195,
-1.2267011404037476,
1.9016172885894775,
1.106451153755188,
-11.241570472717285,
-4.949957847595215,
-4.760135173797607,
-9.85249137878418,
-7.428274631500244,
-7.929365634918213,
-1.5424189567565918,
-8.489472389221191,
-13.634347915649414,
-2.216520309448242,
-6.395674705505371,
-12.175220489501953,
-11.232159614562988,
-4.046036720275879,
-10.57878303527832,
-5.145041465759277,
-14.583565711975098,
-6.273004531860352,
-5.977303504943848,
-5.4505510330200195,
-14.23421859741211,
-6.129261016845703,
3.8548014163970947,
-13.21246337890625,
-12.56332778930664,
-14.442118644714355,
-14.435836791992188,
-3.9071247577667236,
-13.031588554382324,
-6.516325950622559,
-5.312812805175781,
-8.519835472106934,
-9.164463996887207,
-4.385680675506592,
-5.798351287841797,
-11.324101448059082,
-5.770397663116455,
-11.584981918334961,
-10.900452613830566,
-7.485322952270508,
-1.5559020042419434,
-2.9476735591888428,
-8.136575698852539,
-7.677473068237305,
-4.970097541809082,
-8.418344497680664,
-4.439964771270752,
-5.563685894012451,
-14.397673606872559,
-4.914717197418213,
-5.196564674377441,
-11.662581443786621,
-2.044015407562256,
-0.13610196113586426,
-11.265600204467773,
-5.944967269897461,
-10.976009368896484,
-5.865303039550781,
-14.50213623046875,
-7.133116722106934,
-6.889071464538574,
-3.137791156768799,
-11.079790115356445,
-9.8611421585083,
0.4578646123409271,
-11.597864151000977,
-14.23587703704834,
-5.612682342529297,
-2.0096018314361572,
-9.02332878112793,
-4.584319591522217,
-13.376652717590332,
-11.673142433166504,
-7.902480125427246,
-9.245809555053711,
-9.450332641601562,
-8.01540470123291,
-11.455219268798828,
-4.677670955657959,
-12.828417778015137,
-9.436458587646484,
-5.129689693450928,
-13.563889503479004,
-5.254145622253418,
-13.110135078430176,
-7.7589006423950195,
-2.5877580642700195,
-3.400319814682007,
-5.912935256958008,
-4.380590438842773,
-10.263689041137695,
-1.5878653526306152,
-5.234307289123535,
-10.938289642333984,
-5.321962356567383,
-9.789728164672852,
-12.969547271728516,
-4.152480602264404,
-13.984209060668945,
-12.744935989379883,
-10.280561447143555,
-13.899463653564453,
-4.139451503753662,
-4.728123664855957,
-4.282773017883301,
-2.361584424972534,
-14.429370880126953,
-7.724715232849121,
-7.220042705535889,
-13.948274612426758,
-3.282290458679199,
-1.535591721534729,
-8.93525505065918,
-12.079914093017578,
-15.210277557373047,
-13.388375282287598,
-2.4530749320983887,
-9.368698120117188,
-10.101118087768555,
-12.142513275146484,
-11.377846717834473,
-7.678767204284668,
-2.3955235481262207,
-8.782347679138184,
-14.422905921936035,
-10.614519119262695,
-1.6247144937515259,
-2.878582000732422,
-7.079373359680176,
-11.902312278747559,
-9.311556816101074,
-13.967113494873047,
-2.6083505153656006,
-13.068832397460938,
-11.235212326049805,
-0.0677248165011406,
-7.087435722351074,
-14.351158142089844,
-8.828851699829102,
-10.263479232788086,
-14.965719223022461,
-12.725301742553711,
5.4820170402526855,
-12.6447114944458,
-13.029377937316895,
2.438734769821167,
2.5861384868621826,
-14.458202362060547,
-12.283476829528809,
-0.3607093393802643,
-3.1437418460845947,
-14.761860847473145,
1.1852457523345947,
-4.300265312194824,
5.145240783691406,
-14.144691467285156,
-6.996139049530029,
-4.4002838134765625,
9.854984283447266,
-8.930705070495605,
2.885268449783325,
-12.92003059387207,
-15.091886520385742,
-7.769039154052734,
-3.4415154457092285,
4.703493595123291,
-0.2501298189163208,
11.891090393066406,
-6.314465045928955,
10.811605453491211,
6.428389072418213,
2.8210060596466064,
-4.118182182312012,
-11.078986167907715,
10.673097610473633,
5.333724021911621,
0.3561299741268158,
-12.339414596557617,
-14.364264488220215,
2.890033721923828,
-10.870555877685547,
-9.04475212097168,
2.9030802249908447,
-13.562850952148438,
-0.2863984704017639,
-1.6741591691970825,
-14.723983764648438,
-11.696807861328125,
7.395401477813721,
-6.444129467010498,
8.001069068908691,
-13.761178016662598,
1.2482303380966187,
-12.803203582763672,
5.718150615692139,
-0.36853277683258057,
10.012227058410645,
1.469873309135437,
0.6534457206726074,
-12.815033912658691,
-11.922518730163574,
-13.105429649353027,
-6.111282825469971,
-8.974661827087402,
-13.281502723693848,
-10.82656192779541,
-4.43341064453125,
7.649327278137207,
-4.753283977508545,
-3.2369210720062256,
-7.265500545501709,
0.9184039235115051,
-4.314638614654541,
3.7894110679626465,
-11.464166641235352,
-7.908977508544922,
-8.623085021972656,
8.940300941467285,
-12.042013168334961,
7.489175796508789,
-4.004931926727295,
-13.250106811523438,
-9.541147232055664,
13.08681583404541,
-3.5492289066314697,
4.208666801452637,
-4.702175617218018,
-6.539397239685059,
-12.5274019241333,
-2.7932357788085938,
-7.044722080230713,
-3.4215035438537598,
-14.418095588684082,
-11.032768249511719,
-10.240588188171387,
-6.007772445678711,
-11.065293312072754,
-6.171874046325684,
-6.3967180252075195,
-7.895540714263916,
-4.255175590515137,
-1.0457305908203125,
4.418718338012695,
-15.427759170532227,
-13.889426231384277,
-2.526954412460327,
-9.36417293548584,
-0.4300653040409088,
-12.385492324829102,
8.287263870239258,
0.13929222524166107,
-9.866780281066895,
-13.380125999450684,
-14.765251159667969,
-5.875357627868652,
-4.55731201171875,
5.313621997833252,
2.631246566772461,
-10.679547309875488,
6.47723913192749,
-4.2933549880981445,
-15.030271530151367,
-1.0952510833740234,
5.565248966217041,
8.83548641204834,
0.31874603033065796,
7.242507457733154,
8.719195365905762,
-2.2431576251983643,
-8.841167449951172,
-12.780573844909668,
-9.45408821105957,
-7.720346450805664,
0.24523091316223145,
-11.88583755493164,
2.5476415157318115,
3.566429376602173,
-5.380951404571533,
-11.45864486694336,
9.29060173034668,
9.150951385498047,
-10.962027549743652,
10.429366111755371,
-1.8341575860977173,
11.186270713806152,
-11.695147514343262,
-7.760289669036865,
0.8492443561553955,
0.16377489268779755,
-1.1953617334365845,
-6.498025894165039,
-13.071184158325195,
6.711272716522217,
-7.324710845947266,
-10.993683815002441,
2.0904955863952637,
9.565757751464844,
-11.879520416259766,
8.993205070495605,
-2.788147211074829,
0.15244914591312408,
6.699099063873291,
5.855831623077393,
1.0198085308074951,
-3.470916748046875,
2.4033892154693604,
8.068216323852539,
-7.122600555419922,
7.318779468536377,
2.709256410598755,
8.245505332946777,
8.438957214355469,
-7.314364910125732,
-9.500932693481445,
8.702606201171875,
-3.566772222518921,
-4.028126239776611,
-3.886004686355591,
-10.097236633300781,
-6.818345069885254,
-12.271848678588867,
-3.338932514190674,
-13.557440757751465,
-10.784085273742676,
-11.576683044433594,
2.703092575073242,
-9.777816772460938,
9.461129188537598,
5.809441089630127,
10.53403377532959,
-1.0687942504882812,
-6.0331878662109375,
-6.661214828491211,
12.103824615478516,
0.2786804437637329,
2.885272741317749,
1.1543270349502563,
-0.8477165102958679,
5.72360897064209,
-5.411084175109863,
-2.0876200199127197,
3.291912078857422,
-0.1845358908176422,
-2.7232179641723633,
3.2370564937591553,
8.357665061950684,
-1.3014411926269531,
2.905099391937256,
2.265454053878784,
4.702277660369873,
1.8308658599853516,
6.979310035705566,
-6.409952640533447,
-2.4865942001342773,
-0.8047400712966919,
2.409909725189209,
-11.230901718139648,
1.283149242401123,
-1.4882410764694214,
-0.5869928598403931,
-5.546285629272461,
8.300668716430664,
8.475435256958008,
5.173281669616699,
1.099979043006897,
4.621156692504883,
8.596343040466309,
11.210426330566406,
-0.261091411113739,
5.032423973083496,
-2.0189170837402344,
-7.292856216430664,
-5.365033149719238,
4.200935363769531,
-4.373716354370117,
-3.625516891479492,
-2.9374706745147705,
-13.86174488067627,
-1.714991807937622,
-6.523942947387695,
-3.2523446083068848,
6.417276859283447,
8.509866714477539,
-4.792803764343262,
3.416168212890625,
9.331964492797852,
-10.772698402404785,
-12.575541496276855,
-4.307000637054443,
-5.477035045623779,
1.1709840297698975,
6.435657978057861,
-1.608271598815918,
4.186601638793945,
-8.370445251464844,
-14.244133949279785,
-0.866589367389679,
1.120151162147522,
-13.065569877624512,
-6.299890041351318,
2.875105142593384,
-13.391474723815918,
-13.538074493408203,
2.480818748474121,
-2.2478699684143066,
-9.93234634399414,
-11.957669258117676,
5.14580774307251,
0.775721549987793,
4.862662315368652,
-14.342134475708008,
-5.027344226837158,
3.311650276184082,
-13.969497680664062,
-7.140353202819824,
-7.562660217285156,
-3.7493643760681152,
-1.5242067575454712,
-0.8839361667633057,
-7.119941711425781,
-11.308561325073242,
6.606478691101074,
-3.1643433570861816,
-8.314417839050293,
-0.8842458724975586,
1.4904850721359253,
4.821938991546631,
-4.315836429595947,
7.496333122253418,
-11.0896635055542,
-9.055493354797363,
-9.526870727539062,
-3.305603265762329,
-12.146968841552734,
-11.001263618469238,
11.805644035339355,
-5.336300373077393,
12.773988723754883,
4.8503241539001465,
-7.476782321929932,
8.559335708618164,
-13.184834480285645,
-3.9444425106048584,
-6.622910976409912,
-15.892287254333496,
2.421407699584961,
-1.4682904481887817,
5.528141021728516,
-2.770268201828003,
7.6420793533325195,
-4.302906513214111,
-1.5016529560089111,
10.039575576782227,
6.737544059753418,
-5.693137168884277,
-7.182041168212891,
-15.073657035827637,
-3.236661195755005,
-5.284709453582764,
-3.388775110244751,
-10.300076484680176,
-4.928792476654053,
-3.9831793308258057,
-6.99673318862915,
-4.110101699829102,
3.408686637878418,
-6.608407497406006,
6.680572509765625,
-0.15985172986984253,
-1.886688470840454,
5.562771797180176,
0.7028652429580688,
-9.83839225769043,
-8.170345306396484,
-6.1213698387146,
-1.137995958328247,
3.2655625343322754,
-13.905158042907715,
-10.06680965423584,
0.18748487532138824,
-3.4723565578460693,
-12.58446979522705,
6.156198978424072,
10.420184135437012,
-12.676833152770996,
-9.381832122802734,
11.673276901245117,
-4.203320026397705,
-2.2651374340057373,
5.70632266998291,
-0.6516502499580383,
-3.6100125312805176,
-10.800271034240723,
7.559084415435791,
-3.068563461303711,
3.1010050773620605,
1.7211925983428955,
-0.8885565400123596,
3.8726253509521484,
-1.204938292503357,
-7.848726749420166,
-12.475760459899902,
-11.966813087463379,
-4.375026702880859,
-13.99210262298584,
3.5504417419433594,
-5.4712347984313965,
5.597805500030518,
5.597728252410889,
-12.799424171447754,
-14.181910514831543,
-1.3898855447769165,
8.099594116210938,
-14.634095191955566,
-10.377199172973633,
8.601471900939941,
8.026208877563477,
-2.7581021785736084,
-9.46107006072998,
-0.9932828545570374,
8.388716697692871,
3.4838263988494873,
-9.026006698608398,
8.686247825622559,
-2.650118112564087,
8.032928466796875,
-4.925134658813477,
4.987615585327148,
4.066880226135254,
-10.389892578125,
4.992634296417236,
2.113219738006592,
-6.668935298919678,
-3.070136070251465,
-2.2333121299743652,
-7.3169989585876465,
0.2883768081665039,
9.334393501281738,
-7.134972095489502,
12.82157039642334,
-13.479829788208008,
3.6172094345092773,
3.591153621673584,
-12.224525451660156,
-3.784088611602783,
4.461852073669434,
-1.655503511428833,
-9.233600616455078,
8.050078392028809,
2.076993942260742,
-12.118339538574219,
-0.4168751537799835,
-5.108415126800537,
3.0181243419647217,
-10.44503116607666,
-10.820685386657715,
-12.215457916259766,
4.557990074157715,
-13.918909072875977,
4.7550458908081055,
-7.742715835571289,
8.591736793518066,
9.771976470947266,
-8.377449035644531,
7.894970417022705,
12.43185806274414,
-2.0519633293151855,
12.109688758850098,
11.041990280151367,
-0.664159893989563,
-5.755665302276611,
-6.49830961227417,
-13.492780685424805,
-4.46405029296875,
-15.435469627380371,
-1.1225725412368774,
-10.584845542907715,
-11.675589561462402,
-1.84080171585083,
-5.1181135177612305,
-6.484755039215088,
2.4365785121917725,
-10.100957870483398,
-7.951556205749512,
-7.392388343811035,
-14.494856834411621,
-1.6207188367843628,
7.241934299468994,
-1.3552699089050293,
5.288985729217529,
-14.895439147949219,
-2.6729896068573,
-5.04112434387207,
3.4040491580963135,
-1.8329956531524658,
9.348706245422363,
-14.028400421142578,
-10.111525535583496,
-5.813918113708496,
5.2995452880859375,
-10.003194808959961,
-7.605562686920166,
-13.72492790222168,
-2.427090883255005,
13.058778762817383,
12.167256355285645,
1.081089973449707,
3.7694754600524902,
-9.059488296508789,
6.225265979766846,
13.010151863098145,
3.766188859939575,
8.388386726379395,
-7.33284854888916,
-6.722500801086426,
-15.351522445678711,
-4.490468978881836,
-1.3653936386108398,
10.935311317443848,
11.420456886291504,
-3.2389142513275146,
6.865096569061279,
-10.68715763092041,
8.403730392456055,
9.03653335571289,
5.7548651695251465,
3.165508508682251,
2.121917963027954,
-1.2284287214279175,
-14.331528663635254,
-1.0028210878372192,
-9.867277145385742,
5.175466060638428,
-12.075174331665039,
-8.334135055541992,
2.7747974395751953,
-9.891138076782227,
9.93935775756836,
-11.601923942565918,
2.6961841583251953,
-4.109862327575684,
9.449915885925293,
-12.433233261108398,
-11.943514823913574,
12.187137603759766,
-9.134085655212402,
-7.17280912399292,
-8.290051460266113,
2.937588930130005,
-12.759040832519531,
11.827962875366211,
-12.956534385681152,
-9.380046844482422,
1.1439080238342285,
13.055789947509766,
4.527501583099365,
7.834108829498291,
10.369219779968262,
-2.4585437774658203,
-0.2630045711994171,
-1.8867931365966797,
4.25544548034668,
-13.943607330322266,
-13.74704647064209,
-10.73563289642334,
-2.808830976486206,
-11.012922286987305,
-9.869189262390137,
-9.725595474243164,
-15.153351783752441,
-15.160858154296875,
-11.43249797821045,
-9.13148307800293,
7.4547505378723145,
8.576918601989746,
9.940670013427734,
-4.0117363929748535,
-11.672218322753906,
-2.3502564430236816,
-15.747943878173828,
0.09237125515937805,
11.676152229309082,
-0.7320393919944763,
-5.263554096221924,
4.722987651824951,
-7.147581100463867,
-1.8366706371307373,
-2.1055526733398438,
-13.276763916015625,
-11.822464942932129,
1.6546341180801392,
-4.392637252807617,
-10.250170707702637,
9.382497787475586,
9.892112731933594,
7.488131523132324,
-14.528297424316406,
5.400215148925781,
-9.07764720916748,
-4.097788333892822,
-13.73138427734375,
-4.832334995269775,
-14.446661949157715,
-9.764083862304688,
-8.19572925567627,
-14.774670600891113,
-14.873680114746094,
-10.41562271118164,
-14.530351638793945,
-14.543474197387695,
-9.23264217376709,
-13.9808988571167,
-13.985623359680176,
-2.0806891918182373,
8.629745483398438,
7.3334197998046875,
-15.045872688293457,
-7.133028984069824,
-8.043012619018555,
-8.253167152404785,
-4.456769943237305,
1.3684680461883545,
-10.87319564819336,
-10.71297550201416,
-13.164164543151855,
-12.110228538513184,
6.292117595672607,
-11.202174186706543,
3.4316015243530273,
6.047055721282959,
-0.27546820044517517,
-14.843870162963867,
-5.136820316314697,
-1.5533642768859863,
-8.807640075683594,
-2.797820806503296,
-0.28963249921798706,
-5.048580169677734,
-7.062501430511475,
3.008570432662964,
-12.399947166442871,
-14.79934024810791,
-12.684330940246582,
-1.6206129789352417,
-3.1197004318237305,
-13.699862480163574,
-0.22239045798778534,
9.313924789428711,
6.452246189117432,
-8.127037048339844,
-8.236018180847168,
6.161843299865723,
4.741515159606934,
-8.747818946838379,
-5.015413761138916,
-6.513479232788086,
-5.095913410186768,
-10.504109382629395,
-7.433762073516846,
-11.58454704284668,
-7.887067794799805,
-13.385926246643066,
-14.026501655578613,
-1.65838623046875,
-4.344732761383057,
-10.54773998260498,
-2.382657289505005,
-8.55502986907959,
3.954256296157837,
-12.672601699829102,
-11.213724136352539,
-1.4701485633850098,
-9.991989135742188,
-9.96423053741455,
-3.0540106296539307,
-13.684182167053223,
-2.9458837509155273,
-9.407709121704102,
-8.8234281539917,
-4.723679065704346,
-4.706982612609863,
-11.573081016540527,
-7.274388790130615,
-4.5818867683410645,
-10.282146453857422,
-7.384016036987305,
-13.804996490478516,
-6.605599403381348,
-7.202564716339111,
-3.09309720993042,
-7.164756774902344,
1.6927310228347778,
-7.33693265914917,
-14.224365234375,
-11.703481674194336,
-13.329338073730469,
-11.686930656433105,
-11.429067611694336,
-11.916759490966797,
-9.536713600158691,
-13.261098861694336,
-7.330742835998535,
-11.600366592407227,
-6.512470245361328,
-9.797781944274902,
-10.764623641967773,
-1.0581748485565186,
-7.999251365661621,
-11.111749649047852,
-11.272904396057129,
-14.777278900146484,
-13.725109100341797,
-1.3496569395065308,
-9.676076889038086,
-10.349851608276367,
-7.951992034912109,
-10.999937057495117,
-5.998329162597656,
-11.101105690002441,
-9.753928184509277,
-3.592036485671997,
-3.109889268875122,
-1.2048373222351074,
-15.317329406738281,
-8.082587242126465,
-2.6832492351531982,
-10.830436706542969,
-1.6947834491729736,
-13.681022644042969,
-9.536006927490234,
8.737979888916016,
-13.052528381347656,
-9.148188591003418,
-0.6266141533851624,
-6.897575378417969,
6.606316566467285,
-10.951261520385742,
-9.074013710021973,
-7.250533103942871,
3.866122007369995,
-1.1666038036346436,
-11.621223449707031,
-5.295900821685791,
-11.44576644897461,
-13.300360679626465,
-1.706476092338562,
-4.26222562789917,
-5.8752899169921875,
-4.714507102966309,
-10.220023155212402,
-7.601572036743164,
-1.9119298458099365,
-7.49544620513916,
-4.579649925231934,
-15.416943550109863,
0.8813633918762207,
-13.44068717956543,
-9.61218547821045,
-2.8820388317108154,
-9.346529960632324,
-4.880766868591309,
-3.0258216857910156,
-14.782159805297852,
-14.300228118896484,
-14.215485572814941,
-4.559290409088135,
-7.297356128692627,
-4.979109764099121,
-9.907063484191895,
-6.069283485412598,
-7.209300994873047,
-7.323427200317383,
-6.2926506996154785,
-2.6408374309539795,
-2.7997989654541016,
-5.128529071807861,
-3.1829490661621094,
-14.961957931518555,
-14.490989685058594,
-11.31994915008545,
-11.723958969116211,
-4.716275215148926,
-11.449378967285156,
-8.581426620483398,
-10.70018196105957,
-1.0565961599349976,
-5.204039096832275,
3.3164727687835693,
-7.827796936035156,
-5.441658020019531,
-10.214089393615723,
-7.585972785949707,
-1.7560417652130127,
-2.227928400039673,
1.109905481338501,
-7.542175769805908,
-1.6353899240493774,
-2.0670783519744873,
-7.5193705558776855,
-10.833192825317383,
-2.0390896797180176,
-12.402860641479492,
-4.469655990600586,
-15.066877365112305,
-11.171573638916016,
5.791220664978027,
-1.3908940553665161,
-8.422965049743652,
-0.18490426242351532,
-9.568466186523438,
-0.3085115849971771,
-8.230548858642578,
-7.6288838386535645,
-7.155869007110596,
-6.497570991516113,
1.293343186378479,
-12.151458740234375,
-5.2315449714660645,
-7.843430995941162,
-5.391591548919678,
-11.26563835144043,
-4.608344078063965,
-11.70493221282959,
-5.537917137145996,
-9.692096710205078,
-3.9165616035461426,
-6.090544700622559,
-7.976125717163086,
-5.4423346519470215,
-4.182487487792969,
-0.24205368757247925,
-3.3385443687438965,
-10.7168607711792,
-3.2468979358673096,
-10.88020133972168,
-3.8508660793304443,
-8.552735328674316,
-0.5773512125015259,
-2.33278751373291,
-11.633384704589844,
-10.531082153320312,
-3.7078020572662354,
-1.248305082321167,
-8.259608268737793,
-11.61834716796875,
-13.224714279174805,
-5.535425186157227,
-12.03244400024414,
-10.685845375061035,
-7.256011486053467,
-3.1973812580108643,
-12.523849487304688,
-15.509729385375977,
-6.994028091430664,
-4.958108901977539,
1.6488780975341797,
1.1826107501983643,
-6.528924942016602,
-10.525581359863281,
-14.211186408996582,
-10.807148933410645,
-9.879414558410645,
-3.4951491355895996,
-13.60983657836914,
-0.7119449973106384,
-10.157611846923828,
-4.455168724060059,
-9.380053520202637,
-13.674344062805176,
-3.126241683959961,
-7.27487850189209,
-11.690166473388672,
-7.729829788208008,
-15.026947021484375,
-13.391632080078125,
-14.520063400268555,
-2.0726470947265625,
-7.79672908782959,
-7.673427581787109,
-14.044625282287598,
-9.949935913085938,
-6.946466445922852,
-3.6838157176971436,
-7.934284687042236,
-14.077574729919434,
-7.8256330490112305,
-7.833907127380371,
-15.100232124328613,
0.10025888681411743,
-15.321915626525879,
-3.919349193572998,
-11.800002098083496,
-12.880544662475586,
-5.554431915283203,
0.15564866364002228,
3.5141186714172363,
-5.840076923370361,
-6.673482894897461,
-3.3381943702697754,
-2.2160451412200928,
-3.0984268188476562,
-2.119904041290283,
-2.619729518890381,
-11.524330139160156,
-2.548231840133667,
-0.00038945392589084804,
1.2174594402313232,
-11.49708366394043,
-4.521329879760742,
-5.193022727966309,
-7.644480228424072,
-11.64497184753418,
-4.636038303375244,
-11.150647163391113,
-1.9353158473968506,
-13.334086418151855,
-12.572521209716797,
-6.759191513061523,
-0.9416210651397705,
-13.784043312072754,
-12.029491424560547,
-11.076678276062012,
-10.438498497009277,
-6.001917362213135,
-9.998157501220703,
-2.061309814453125,
-13.404426574707031,
-7.946549892425537,
-7.8354010581970215,
-11.474747657775879,
-9.864084243774414,
-14.494890213012695,
-2.378969430923462,
-6.120291709899902,
-12.308300018310547,
-11.433938980102539,
-7.481783390045166,
-6.344195365905762,
-3.232445240020752,
-12.042877197265625,
-10.818199157714844,
-4.8744120597839355,
-9.748331069946289,
-12.943340301513672,
-5.954868793487549,
-6.4768500328063965,
-11.891054153442383,
-4.563670635223389,
-2.5304789543151855,
-1.0546035766601562,
-5.752532482147217,
-0.9438193440437317,
-8.98951530456543,
-11.602959632873535,
-6.7796525955200195,
-11.473214149475098,
-5.538724899291992,
3.613650321960449,
-5.842888355255127,
-11.320443153381348,
-11.451741218566895,
2.8070485591888428,
-14.022327423095703,
-2.4512131214141846,
-11.281362533569336,
-11.602962493896484,
-2.1804895401000977,
-13.369171142578125,
-8.265691757202148,
-8.002270698547363,
-7.616167068481445,
-2.3557260036468506,
-6.503910541534424,
-1.7995027303695679,
-5.787467002868652,
-8.167900085449219,
-14.011120796203613,
-6.707521438598633,
-2.286844491958618,
-7.172318458557129,
-1.5884360074996948,
-3.4381401538848877,
-14.28318977355957,
-1.6747033596038818,
-8.965548515319824,
-3.204057455062866,
-11.526589393615723,
-2.7714731693267822,
-9.385869979858398,
-8.779611587524414,
1.2592809200286865,
-9.290546417236328,
-5.602357864379883,
-10.846407890319824,
-14.834861755371094,
-10.72568416595459,
-8.850576400756836,
-12.975550651550293,
-14.738059997558594,
-9.967585563659668,
-13.402541160583496,
-15.965389251708984,
-5.625143527984619,
-10.970025062561035,
-2.4352331161499023,
-0.13720273971557617,
-6.129713535308838,
0.5950334668159485,
-9.820918083190918,
-9.873080253601074,
-14.1573486328125,
-8.98894214630127,
-3.2433180809020996,
-9.518574714660645,
-12.312542915344238,
-12.71323013305664,
-6.356758117675781,
3.241428852081299,
2.8556573390960693,
-15.010169982910156,
-15.2095365524292,
0.7435254454612732,
-9.803564071655273,
-1.5558750629425049,
-11.521540641784668,
-7.08982515335083,
-3.9219977855682373,
-14.54249095916748,
-4.1081223487854,
-1.0000423192977905,
-3.6524393558502197,
-6.6479387283325195,
-7.205035209655762,
-3.737318754196167,
-5.079694747924805,
-4.4658403396606445,
-7.258922576904297,
-8.696460723876953,
-10.310450553894043,
1.480960726737976,
-4.7963948249816895,
-7.145201206207275,
-10.783451080322266,
-14.603041648864746,
-7.040214538574219,
-1.4157278537750244,
-3.642084836959839,
-5.548068046569824,
-2.6914350986480713,
-13.543020248413086,
0.4904431402683258,
-12.821806907653809,
3.075723648071289,
-14.371146202087402,
-3.691152334213257,
-14.838594436645508,
-8.351951599121094,
-10.89527702331543,
-4.405338287353516,
-1.614495038986206,
-11.560198783874512,
-9.769110679626465,
-14.931605339050293,
-6.155177116394043,
-11.290143966674805,
-7.510753154754639,
-6.60263729095459,
-7.7991743087768555,
8.100337028503418,
-0.8348038792610168,
-13.45147705078125,
-15.576441764831543,
-7.628837585449219,
-14.628595352172852,
-6.004268646240234,
-6.568832874298096,
-2.135232925415039,
-8.833260536193848,
-10.01785659790039,
-5.543959617614746,
-13.045135498046875,
1.2316843271255493,
-3.0214953422546387,
-1.5199384689331055,
-8.386175155639648,
-0.8850191831588745,
-15.451238632202148,
-2.317692279815674,
-14.784513473510742,
-10.723933219909668,
-1.6267021894454956,
-0.8433247208595276,
-15.3273286819458,
-13.373089790344238,
-13.612369537353516,
-3.2937521934509277,
-4.287309646606445,
-9.769248008728027,
-16.017314910888672,
-12.59201431274414,
-1.2297834157943726,
-7.1016693115234375,
-12.211068153381348,
-10.21366024017334,
-14.175771713256836,
-12.511429786682129,
-6.168323040008545,
-11.977401733398438,
0.3170851469039917,
-15.166542053222656,
-7.988672256469727,
-7.895169734954834,
-8.211718559265137,
-7.117326259613037,
-2.5905134677886963,
-5.6261444091796875,
-12.215725898742676,
-11.305476188659668,
-5.126021385192871,
-3.421665906906128,
-2.623605489730835,
-14.869800567626953,
-11.617585182189941,
-7.987661361694336,
-7.750505447387695,
-6.850147247314453,
-0.2004263997077942,
-8.0972261428833,
-7.604970932006836,
-4.066213607788086,
-15.489764213562012,
-12.906447410583496,
-6.0469970703125,
-5.890275478363037,
5.731186389923096,
2.5413753986358643,
-10.85995864868164,
-5.5328192710876465,
-11.12448787689209,
-11.101551055908203,
-2.22530460357666,
-13.462146759033203,
-11.908350944519043,
-4.189238548278809,
-7.766086578369141,
-2.8574259281158447,
-6.696316719055176,
-13.405441284179688,
1.455946445465088,
-10.310718536376953,
-14.374574661254883,
-13.378665924072266,
-10.553624153137207,
-3.952568531036377,
-11.486977577209473,
-10.169480323791504,
-14.04750919342041,
-6.8157958984375,
-4.805895805358887,
-10.83267593383789,
-13.588552474975586,
-11.98448657989502,
-6.141629219055176,
-8.951704978942871,
-8.595549583435059,
-4.954124450683594,
-4.132692813873291,
-4.090826034545898,
-1.7156568765640259,
-7.147776126861572,
-5.361329555511475,
-6.00611686706543,
-3.055593252182007,
-14.905033111572266,
-13.56217098236084,
-0.20963136851787567,
-4.53586483001709,
-14.727612495422363,
-4.761669635772705,
-11.08726978302002,
-6.7327141761779785,
-15.214430809020996,
9.374260902404785,
-14.989418983459473,
-12.63603401184082,
-6.935426235198975,
-9.9459810256958,
-13.04969310760498,
-10.000940322875977,
-5.764853477478027,
-12.879947662353516,
-7.434140682220459,
-1.2264162302017212,
-0.7783276438713074,
-1.5328868627548218,
-10.24943733215332,
-10.106298446655273,
-11.892162322998047,
-11.583965301513672,
-1.2648255825042725,
-11.59588623046875,
-9.882696151733398,
-3.0015358924865723,
-12.620153427124023,
-10.641594886779785,
-5.92869758605957,
-10.82034969329834,
-11.025923728942871,
-9.048751831054688,
-0.44329383969306946,
-13.372413635253906,
-2.10231614112854,
1.9501264095306396,
1.7447330951690674,
-2.613956928253174,
-9.70740795135498,
-1.7285736799240112,
-5.178948402404785,
-9.164911270141602,
-3.093282699584961,
-12.72391414642334,
-14.380277633666992,
-9.139864921569824,
-2.993989944458008,
-12.221539497375488,
-7.701471328735352,
-7.510058403015137,
-5.775395393371582,
-14.368124961853027,
-10.949728012084961,
-9.803058624267578,
-9.25288200378418,
-8.383560180664062,
-3.5998971462249756,
-1.0737810134887695,
-11.530208587646484,
-12.655041694641113,
-7.069124698638916,
-11.190485000610352,
7.1067280769348145,
5.052872180938721,
-1.9870432615280151,
-7.79207706451416,
-10.632808685302734,
-2.1133873462677,
-12.639853477478027,
-11.669907569885254,
-5.951221466064453,
-8.050386428833008,
-10.458477020263672,
-4.795343399047852,
-4.271986484527588,
-11.304479598999023,
-3.867360830307007,
-13.74495792388916,
-14.988096237182617,
-4.0160040855407715,
-8.714129447937012,
-8.151610374450684,
-10.790093421936035,
-11.505281448364258,
-14.103517532348633,
-7.854621887207031,
-8.576760292053223,
-1.8703112602233887,
-15.459735870361328,
-11.212499618530273,
-0.12268368899822235,
-8.695764541625977,
-5.293304920196533,
-7.810476779937744,
1.8175920248031616,
-7.172478675842285,
-7.715750694274902,
-4.893383502960205,
-10.91612720489502,
10.357093811035156,
-6.209353446960449,
-2.795670509338379,
1.801818609237671,
-3.629739761352539,
-11.084328651428223,
3.4669036865234375,
-12.706021308898926,
-9.205155372619629,
-4.21124267578125,
-11.249911308288574,
-1.8944488763809204,
1.1610021591186523,
-4.722865581512451,
-7.42103910446167,
-4.10942268371582,
-14.601719856262207,
-3.116931915283203,
-11.327296257019043,
-10.928462982177734,
1.301745891571045,
1.0483897924423218,
-5.2414727210998535,
-5.118063926696777,
-5.620159149169922,
-6.28164529800415,
-7.010565280914307,
-5.7898149490356445,
-8.471048355102539,
-12.224112510681152,
-5.881605625152588,
-3.9911704063415527,
-0.1489589363336563,
-13.44222354888916,
-2.565561532974243,
-6.376591205596924,
-11.514562606811523,
5.461277008056641,
-8.88591480255127,
-14.013222694396973,
-14.462823867797852,
-8.170308113098145,
-11.507124900817871,
-5.135583877563477,
-6.455124855041504,
-13.49774169921875,
-4.629303932189941,
-12.293305397033691,
-8.6018705368042,
-15.307252883911133,
1.647177815437317,
-9.624308586120605,
-1.1377238035202026,
-14.608028411865234,
-7.407614231109619,
-1.423829436302185,
-11.28195858001709,
-3.3148274421691895,
-13.413274765014648,
-9.006842613220215,
-11.702469825744629,
-13.773436546325684,
-10.188612937927246,
-4.361816883087158,
-11.031763076782227,
-9.664460182189941,
-12.745953559875488,
-6.254549980163574,
-11.941843032836914,
-12.761909484863281,
-3.151021718978882,
-6.722132682800293,
-5.772051811218262,
-10.945337295532227,
-8.746103286743164,
-13.351497650146484,
-5.092279434204102,
-13.460294723510742,
-4.447420120239258,
-4.396102428436279,
0.016262883320450783,
-6.04962158203125,
-13.427349090576172,
-9.331446647644043,
-12.4363431930542,
-8.988987922668457,
-1.6626720428466797,
-0.978783905506134,
-13.054551124572754,
-2.256460189819336,
-10.486687660217285,
-1.0143383741378784,
-10.242097854614258,
-3.97180438041687,
-6.109636306762695,
-6.897522449493408,
-13.580399513244629,
-13.36313247680664,
-14.295100212097168,
-12.905460357666016,
-12.104482650756836,
-10.400742530822754,
-5.789143085479736,
-4.978518009185791,
-15.011285781860352,
-9.329765319824219,
-4.186337471008301,
-9.775704383850098,
-3.134174346923828,
-13.582633972167969,
0.18971815705299377,
-7.426393508911133,
-6.627316474914551,
-6.947873115539551,
-0.2692592144012451,
-0.3036763668060303,
-13.944907188415527,
-7.6463727951049805,
0.8549665212631226,
-13.377256393432617,
-6.456768035888672,
-2.5056872367858887,
-2.923794984817505,
-14.177128791809082,
-2.3473851680755615
],
"y": [
-18.123905181884766,
-2.914952516555786,
-1.7438287734985352,
6.70151948928833,
1.3086743354797363,
8.37960147857666,
15.02047348022461,
-18.503599166870117,
-8.709870338439941,
13.99848461151123,
-8.686494827270508,
7.266513347625732,
-5.9603190422058105,
11.713692665100098,
1.6714824438095093,
8.395913124084473,
0.42626333236694336,
-16.92646598815918,
-3.1341536045074463,
-4.969923496246338,
8.721543312072754,
8.23288631439209,
-7.827786922454834,
-5.172170162200928,
-13.683799743652344,
-5.5934600830078125,
-1.2070690393447876,
-14.292444229125977,
3.0587687492370605,
-18.282421112060547,
-6.179508686065674,
6.300858974456787,
2.765521287918091,
-9.12171745300293,
-3.700770139694214,
-18.544553756713867,
-7.828253746032715,
-20.461902618408203,
-8.731310844421387,
-3.1945626735687256,
-11.842928886413574,
5.846723556518555,
-12.356966972351074,
-4.773744583129883,
-18.89389419555664,
-14.897109985351562,
-4.271515846252441,
11.805927276611328,
-21.266883850097656,
0.6132494807243347,
-12.12653923034668,
-19.877273559570312,
-1.058225393295288,
-15.12945556640625,
-3.457869291305542,
-1.889980435371399,
-9.828203201293945,
7.556809425354004,
-17.2646427154541,
-9.24882984161377,
-0.3677331209182739,
4.6932268142700195,
-9.557876586914062,
-0.025609435513615608,
-9.349420547485352,
-15.980179786682129,
8.215187072753906,
-21.287675857543945,
2.941599130630493,
8.133611679077148,
-21.46306610107422,
-6.92208194732666,
-8.04641342163086,
-2.428840398788452,
-20.57413673400879,
-8.114080429077148,
-5.717719554901123,
5.635264873504639,
-15.630348205566406,
7.131909370422363,
-9.745012283325195,
-10.785210609436035,
-6.257806301116943,
0.025431528687477112,
1.1786720752716064,
-12.476668357849121,
-1.3993715047836304,
-0.3676460087299347,
-8.518990516662598,
-10.525983810424805,
5.000289440155029,
9.928367614746094,
9.926959991455078,
-11.868879318237305,
-19.823793411254883,
-0.7680413126945496,
-7.480286121368408,
-22.529577255249023,
14.222914695739746,
-14.248369216918945,
-15.271156311035156,
0.9327101111412048,
-4.962596416473389,
10.4335355758667,
5.464755535125732,
4.50070333480835,
-5.237914562225342,
-8.783181190490723,
-5.058658599853516,
0.6501460075378418,
-3.530395030975342,
0.5894177556037903,
-22.509267807006836,
-4.712541103363037,
-20.67904281616211,
-0.7168757915496826,
-3.4962563514709473,
4.39699649810791,
-1.0760037899017334,
2.315531015396118,
-9.651285171508789,
3.1712117195129395,
9.40322494506836,
7.374075412750244,
-9.105778694152832,
-4.996007919311523,
-22.319602966308594,
7.113946437835693,
-9.789541244506836,
-5.470154762268066,
-7.901736736297607,
-5.277804374694824,
-3.908759355545044,
-15.531916618347168,
-5.348389148712158,
-22.005746841430664,
-9.59376049041748,
-21.035690307617188,
-19.285184860229492,
5.225642204284668,
-21.003202438354492,
5.267820358276367,
10.106311798095703,
12.015909194946289,
-1.8772438764572144,
4.54334020614624,
-9.303895950317383,
-10.195446014404297,
-3.1866941452026367,
3.3544442653656006,
-5.250097751617432,
-4.491315841674805,
8.814933776855469,
-2.252556085586548,
-0.4939776659011841,
-7.388813495635986,
5.165226459503174,
1.9527312517166138,
1.7882788181304932,
9.314472198486328,
2.883877992630005,
11.187344551086426,
-2.1671667098999023,
14.613543510437012,
-8.932836532592773,
13.075428009033203,
7.335830211639404,
-17.115657806396484,
-9.120957374572754,
4.442347049713135,
-21.0894775390625,
-2.8483145236968994,
-17.762950897216797,
-3.6961004734039307,
-10.644835472106934,
-20.47650718688965,
5.9368414878845215,
-19.021230697631836,
-11.446314811706543,
4.508819580078125,
-1.3565014600753784,
4.681504249572754,
-21.460840225219727,
4.788997173309326,
8.357649803161621,
11.809593200683594,
-22.32556915283203,
-9.593043327331543,
-22.65910530090332,
5.699298858642578,
-14.7744722366333,
-8.139009475708008,
-16.107574462890625,
-8.40775203704834,
1.2299261093139648,
-6.631420135498047,
5.3965301513671875,
11.086045265197754,
0.08671560138463974,
-4.866360187530518,
11.780195236206055,
-6.022266864776611,
-13.682600975036621,
13.743590354919434,
7.694520950317383,
3.2871007919311523,
-12.072657585144043,
-15.655594825744629,
-15.489909172058105,
-5.094656467437744,
-12.154129981994629,
14.077116966247559,
8.952866554260254,
9.132195472717285,
-4.022777557373047,
1.47471284866333,
-15.354833602905273,
-3.856053352355957,
-0.19653530418872833,
-18.80876922607422,
7.643331527709961,
8.127019882202148,
2.9095969200134277,
-20.619186401367188,
-0.20039215683937073,
-5.292134761810303,
-4.040999412536621,
5.9707465171813965,
14.463959693908691,
10.92231559753418,
4.123981952667236,
2.201582908630371,
-1.7715001106262207,
-7.8962860107421875,
-11.452281951904297,
-15.645739555358887,
-17.358570098876953,
-22.172426223754883,
-8.302970886230469,
-4.347154140472412,
15.020167350769043,
-11.578510284423828,
-9.339254379272461,
-9.653429985046387,
-18.99200439453125,
10.809435844421387,
-21.543792724609375,
12.13305377960205,
-4.5712361335754395,
-17.462865829467773,
2.456005096435547,
-13.805096626281738,
1.9653037786483765,
-7.680895805358887,
5.742786407470703,
7.694697380065918,
-1.0956276655197144,
-5.994206428527832,
-16.456371307373047,
-14.273754119873047,
-7.916886806488037,
6.129654407501221,
10.650227546691895,
-22.80780792236328,
-5.710999965667725,
4.036215305328369,
2.5083975791931152,
7.759244918823242,
0.743674099445343,
1.7920562028884888,
4.095091819763184,
-7.371995449066162,
-10.907835006713867,
-18.655803680419922,
-4.576217174530029,
-5.269678592681885,
-12.567319869995117,
-6.638808250427246,
9.624322891235352,
6.040595531463623,
-5.5746378898620605,
-11.964107513427734,
14.142541885375977,
2.118195056915283,
-13.80643081665039,
-6.159090518951416,
6.980836391448975,
-5.507883548736572,
8.732745170593262,
2.4504547119140625,
2.806683301925659,
15.599007606506348,
-14.269026756286621,
-17.469640731811523,
3.1580638885498047,
-5.484820365905762,
1.296303391456604,
7.952748775482178,
-5.944304466247559,
-16.4301700592041,
-7.955126762390137,
-0.5835082530975342,
-5.853229999542236,
9.746082305908203,
15.101741790771484,
-20.594221115112305,
-3.189688205718994,
-21.91623878479004,
-17.505578994750977,
5.147531509399414,
-1.7838492393493652,
6.459733486175537,
0.2155577689409256,
-20.619762420654297,
9.721734046936035,
-13.369771957397461,
11.371719360351562,
-15.925556182861328,
-16.029024124145508,
7.441600799560547,
-11.420357704162598,
5.849925994873047,
-17.70992660522461,
-14.572117805480957,
-3.627814531326294,
-9.64972972869873,
-2.9359607696533203,
8.134101867675781,
-12.039044380187988,
-5.90898323059082,
-20.20199966430664,
-3.9743118286132812,
-22.40692710876465,
6.581325531005859,
-10.205991744995117,
-4.757115364074707,
-16.86811637878418,
-4.9449920654296875,
-1.879846453666687,
3.056093215942383,
-7.04403829574585,
-6.22971773147583,
-2.9283485412597656,
-10.654022216796875,
-0.3584822416305542,
-3.353425979614258,
4.477872848510742,
-14.160174369812012,
-9.577482223510742,
-11.587235450744629,
-9.98160457611084,
3.7717888355255127,
-2.9303534030914307,
-18.715248107910156,
-12.339029312133789,
5.9610772132873535,
8.065241813659668,
-17.34078598022461,
-13.224145889282227,
-11.1276273727417,
-3.0680155754089355,
-11.083527565002441,
-18.132631301879883,
-20.502059936523438,
-5.561908721923828,
-11.88725471496582,
-2.384049892425537,
-15.024931907653809,
4.997584342956543,
-3.453489065170288,
-10.795262336730957,
6.314680099487305,
-0.8661822080612183,
-9.002107620239258,
-9.30203914642334,
-21.997215270996094,
5.702468395233154,
8.758766174316406,
7.602513313293457,
-15.797597885131836,
-12.14868450164795,
-0.6110491752624512,
12.113574028015137,
4.080862522125244,
3.48144268989563,
7.664099216461182,
-15.836921691894531,
-8.967683792114258,
0.07878553122282028,
6.442803859710693,
1.3346651792526245,
0.16565658152103424,
0.904877781867981,
2.076709032058716,
-4.160693645477295,
2.0701706409454346,
2.46308970451355,
6.189368724822998,
-15.93900203704834,
-3.1846392154693604,
10.98140811920166,
-17.886737823486328,
11.714346885681152,
-16.7186222076416,
-15.515844345092773,
4.638804912567139,
-9.565098762512207,
-8.056557655334473,
1.5683021545410156,
-21.174354553222656,
-20.611967086791992,
-8.80156135559082,
-20.966102600097656,
-2.6518588066101074,
-0.949354887008667,
7.083224296569824,
5.325120449066162,
-12.024330139160156,
-20.59060287475586,
7.025413513183594,
-15.238814353942871,
2.8889265060424805,
1.7118242979049683,
-0.5255323052406311,
-10.88061237335205,
-1.6644879579544067,
11.492493629455566,
0.3773248493671417,
2.859222173690796,
-4.666661262512207,
-18.722158432006836,
15.474778175354004,
8.37491226196289,
-20.718076705932617,
10.42837905883789,
-22.72372055053711,
-10.618247985839844,
-19.02700424194336,
-5.160398006439209,
-16.94188690185547,
-7.018148422241211,
13.023384094238281,
10.589545249938965,
-3.4618968963623047,
11.679959297180176,
-18.49055290222168,
-22.71704864501953,
11.359315872192383,
5.1520609855651855,
-7.515254497528076,
-2.997305393218994,
-19.940996170043945,
2.1030197143554688,
-3.576066017150879,
0.45849454402923584,
-21.82246208190918,
-17.414493560791016,
-4.985688209533691,
-9.570964813232422,
2.3993191719055176,
-19.939376831054688,
-6.240121841430664,
4.9740190505981445,
12.350606918334961,
-20.81657600402832,
4.086887836456299,
-19.827884674072266,
-15.275873184204102,
-7.0517144203186035,
6.655686855316162,
-17.549753189086914,
-3.840808153152466,
-19.670623779296875,
-0.18893425166606903,
6.9680352210998535,
-6.2785725593566895,
-2.283342123031616,
-3.060309886932373,
-1.0667548179626465,
8.6305570602417,
-1.9219015836715698,
5.544423580169678,
-1.9297828674316406,
5.783115386962891,
-8.462364196777344,
1.10722815990448,
-8.920559883117676,
-4.600189685821533,
-4.222997188568115,
-4.096243858337402,
-4.64105749130249,
-14.826408386230469,
-4.217106342315674,
-9.562283515930176,
-1.3642345666885376,
0.17260058224201202,
-6.156486988067627,
-22.558956146240234,
2.3308825492858887,
-14.602444648742676,
-21.370874404907227,
-18.896068572998047,
-14.798990249633789,
2.9224722385406494,
12.774517059326172,
3.68386173248291,
-2.6078996658325195,
5.596961498260498,
-6.195500373840332,
-20.6085205078125,
-2.1714560985565186,
-20.67522430419922,
-0.7739983201026917,
-21.349491119384766,
-17.016529083251953,
-12.948884963989258,
-15.895950317382812,
-16.374814987182617,
-2.6590523719787598,
-18.67755889892578,
-18.46320343017578,
-6.952917098999023,
-19.827070236206055,
-7.549980163574219,
-7.416951656341553,
3.9511382579803467,
-3.9248404502868652,
4.387988567352295,
2.658849000930786,
5.236430644989014,
9.685638427734375,
-6.051490306854248,
-4.352340221405029,
-4.598865509033203,
-20.835397720336914,
7.719610691070557,
-0.3032630980014801,
8.940595626831055,
-4.078653335571289,
-5.292318344116211,
8.290072441101074,
-3.779334306716919,
5.1437764167785645,
7.833406925201416,
-17.840965270996094,
4.9928364753723145,
14.927220344543457,
-6.257205009460449,
-12.355491638183594,
11.086365699768066,
-9.791719436645508,
2.5263843536376953,
0.0011731048580259085,
-9.460210800170898,
-10.063005447387695,
7.358113765716553,
-21.725454330444336,
0.9814996719360352,
-21.54383087158203,
-9.787611961364746,
9.55821704864502,
-7.450510501861572,
3.79682993888855,
-5.626102447509766,
-1.2443569898605347,
-12.211283683776855,
-8.902631759643555,
-6.452620029449463,
11.426389694213867,
6.666600227355957,
-14.783452987670898,
-10.279244422912598,
-20.64072036743164,
0.20053674280643463,
-10.135122299194336,
6.46622371673584,
-3.0485997200012207,
4.8960723876953125,
7.128413200378418,
-7.949538707733154,
2.0854310989379883,
11.636476516723633,
-18.12218475341797,
0.8640064597129822,
3.462625026702881,
-19.162799835205078,
8.604948997497559,
-9.260087966918945,
-1.9751842021942139,
-9.601899147033691,
2.5433075428009033,
-14.89900016784668,
-5.985349178314209,
-19.6439208984375,
5.289122581481934,
-1.493080496788025,
-14.0097017288208,
-12.939672470092773,
4.98241662979126,
11.542969703674316,
3.7327373027801514,
-11.593132972717285,
-18.77865219116211,
16.087404251098633,
0.2560158967971802,
4.364914417266846,
-10.478504180908203,
-8.02537727355957,
-5.706542015075684,
0.4917900562286377,
-8.162195205688477,
-13.519238471984863,
-22.766080856323242,
3.0698556900024414,
11.909104347229004,
-0.6990126371383667,
5.560952186584473,
-4.027480125427246,
7.435305595397949,
3.2027783393859863,
8.225172996520996,
-5.607176780700684,
3.940964698791504,
-18.399656295776367,
6.259533405303955,
8.638257026672363,
6.488704204559326,
-5.307629108428955,
-21.529495239257812,
-21.667407989501953,
10.431097030639648,
-8.526935577392578,
3.863959789276123,
-1.19230055809021,
-4.778820991516113,
-20.135438919067383,
7.581996917724609,
-18.072521209716797,
4.314399719238281,
-19.86020278930664,
1.7034533023834229,
-3.6501333713531494,
-9.246964454650879,
-2.0319690704345703,
-14.442883491516113,
11.107574462890625,
7.961667537689209,
11.685646057128906,
0.4621453881263733,
-0.5700968503952026,
-0.3064097762107849,
5.496984958648682,
-16.044118881225586,
-7.342585563659668,
-9.610541343688965,
-22.56807518005371,
-11.247474670410156,
4.4850029945373535,
-20.09746551513672,
-11.43185043334961,
-19.54439353942871,
12.777973175048828,
0.32885098457336426,
8.254096984863281,
11.723544120788574,
-0.14229099452495575,
3.664249897003174,
4.385809898376465,
15.079137802124023,
-8.865723609924316,
-8.749791145324707,
-12.640453338623047,
8.330832481384277,
13.756359100341797,
4.563687801361084,
-1.522371530532837,
-5.976750373840332,
-0.8416635990142822,
-13.648728370666504,
-11.626554489135742,
-16.490468978881836,
0.3236185610294342,
-6.090594291687012,
5.315417766571045,
0.6444091200828552,
4.887806415557861,
-3.00532603263855,
12.91884708404541,
8.167383193969727,
-9.115192413330078,
-1.4021718502044678,
-18.478506088256836,
-12.605255126953125,
-1.0124520063400269,
-18.1053524017334,
-2.7963688373565674,
-9.435245513916016,
-20.933712005615234,
-9.620379447937012,
-7.023347854614258,
-8.148564338684082,
-14.746283531188965,
4.201619625091553,
4.522446155548096,
7.564759731292725,
-7.2488017082214355,
-18.410547256469727,
11.589964866638184,
-19.876081466674805,
-17.05922508239746,
-15.468557357788086,
-0.5887857675552368,
-3.666919708251953,
4.885909557342529,
-15.909070014953613,
-11.661054611206055,
4.922881603240967,
-0.64747154712677,
-18.300861358642578,
-2.473095655441284,
-12.51600456237793,
13.848424911499023,
-4.343830108642578,
7.912527561187744,
13.687702178955078,
-21.158174514770508,
-3.5797650814056396,
2.268261194229126,
-18.041059494018555,
-8.238760948181152,
-2.3938424587249756,
-18.50048065185547,
-4.222604274749756,
-14.987771034240723,
-13.234566688537598,
-9.641209602355957,
-4.419684886932373,
-9.979795455932617,
-22.448612213134766,
10.120987892150879,
-16.91965675354004,
-20.85198211669922,
-5.676022052764893,
-10.761335372924805,
-19.253890991210938,
-9.763707160949707,
-5.641645908355713,
5.496395587921143,
-14.461413383483887,
4.665925979614258,
12.417818069458008,
8.834832191467285,
-0.05145831033587456,
-11.37566089630127,
8.034794807434082,
-9.893136024475098,
8.584574699401855,
-19.899887084960938,
5.152209758758545,
-15.582165718078613,
-17.2963924407959,
9.601370811462402,
8.322677612304688,
-1.6640827655792236,
-8.20827865600586,
-6.0869221687316895,
-18.277769088745117,
5.7599687576293945,
-4.912887096405029,
-2.184497594833374,
0.16303543746471405,
-10.622780799865723,
2.0153608322143555,
5.2415771484375,
-16.164974212646484,
-7.014606475830078,
15.926865577697754,
-16.733806610107422,
-9.509090423583984,
-5.215056419372559,
-20.740428924560547,
-15.068683624267578,
-11.869175910949707,
-10.249605178833008,
-7.902127742767334,
-17.579404830932617,
-20.299129486083984,
9.257713317871094,
-20.627729415893555,
-5.371452331542969,
-3.85625958442688,
-17.788671493530273,
-14.116037368774414,
-3.841515064239502,
-8.566445350646973,
-5.340230941772461,
3.101370096206665,
-15.129756927490234,
-14.11760425567627,
-11.072569847106934,
-14.364556312561035,
7.519567966461182,
-20.977519989013672,
-5.1935248374938965,
5.5893874168396,
3.2072603702545166,
7.274011611938477,
-3.4367082118988037,
-0.16576296091079712,
-6.590460300445557,
7.732726573944092,
-0.8156478404998779,
0.751592755317688,
7.886938095092773,
-5.482419490814209,
5.792220115661621,
-0.36187708377838135,
-2.6302642822265625,
10.45652961730957,
2.5884265899658203,
14.512399673461914,
-0.2546200454235077,
5.121513366699219,
5.967519760131836,
-8.97585678100586,
2.486246347427368,
-12.491183280944824,
-2.196427583694458,
-3.780303716659546,
-0.13037243485450745,
-3.556107997894287,
9.26296615600586,
-12.405206680297852,
9.86296558380127,
-16.1044864654541,
-3.4738354682922363,
-11.345474243164062,
15.11538028717041,
2.2437660694122314,
0.47592559456825256,
2.6203815937042236,
3.9331066608428955,
7.801568508148193,
-11.469033241271973,
-0.45294100046157837,
-5.3547797203063965,
2.238377571105957,
-11.716036796569824,
12.534680366516113,
2.9381332397460938,
-4.2252326011657715,
-11.899703025817871,
-4.330000877380371,
-6.550995826721191,
8.0464448928833,
8.642508506774902,
5.108687400817871,
6.5955095291137695,
-9.140488624572754,
8.300158500671387,
-2.380877733230591,
1.8133926391601562,
0.8934293985366821,
-8.529497146606445,
2.743037223815918,
-5.228318214416504,
4.976356506347656,
-5.451545238494873,
11.127809524536133,
6.369925022125244,
12.910489082336426,
4.251188278198242,
9.35962200164795,
1.1345875263214111,
10.78121566772461,
5.885571479797363,
4.856235980987549,
3.568406820297241,
-10.213303565979004,
-4.671854019165039,
3.4819791316986084,
6.106632232666016,
2.400275707244873,
5.7733330726623535,
6.2722907066345215,
-0.8346158862113953,
-1.4660462141036987,
-1.3975030183792114,
-12.165268898010254,
9.123876571655273,
0.6293312311172485,
-3.9797942638397217,
-1.8751883506774902,
-5.516802787780762,
-16.56424903869629,
12.928754806518555,
0.057626210153102875,
-2.6126821041107178,
-21.018630981445312,
6.297266960144043,
-4.614756107330322,
-9.873714447021484,
-14.480475425720215,
-3.254899024963379,
6.426370620727539,
13.543932914733887,
13.22058391571045,
15.193113327026367,
5.897639751434326,
-6.534789562225342,
14.088577270507812,
-3.303926944732666,
5.375359058380127,
9.595284461975098,
-15.006988525390625,
-3.328848123550415,
-1.9923774003982544,
2.1714072227478027,
-15.394915580749512,
10.753547668457031,
11.071266174316406,
5.601173400878906,
-9.4235258102417,
-18.31878089904785,
-2.0384409427642822,
3.224395990371704,
-19.489429473876953,
4.773334503173828,
-2.1563374996185303,
-22.60659408569336,
-15.91329288482666,
10.688028335571289,
5.343199729919434,
-8.758234024047852,
-17.18147087097168,
-9.940433502197266,
12.55929946899414,
-3.265911340713501,
4.8421478271484375,
8.14413070678711,
8.648736000061035,
10.112942695617676,
6.60081672668457,
1.8864668607711792,
-5.85966157913208,
7.559280872344971,
-11.083706855773926,
0.2807683050632477,
-6.803310871124268,
-6.692691802978516,
-2.1403884887695312,
-2.2362101078033447,
3.6880860328674316,
-5.129412651062012,
-3.9579622745513916,
4.339540004730225,
-5.592222690582275,
8.382823944091797,
14.97157096862793,
9.480667114257812,
0.9316402673721313,
11.423831939697266,
-8.141925811767578,
-5.981579780578613,
-10.71176528930664,
5.164237022399902,
-3.5710091590881348,
1.8757169246673584,
4.956169605255127,
8.053289413452148,
2.4920339584350586,
-3.9547998905181885,
-0.8277069330215454,
8.616600036621094,
-3.8465170860290527,
-10.260936737060547,
-7.617103099822998,
11.769015312194824,
-5.613081455230713,
9.888071060180664,
1.247376561164856,
-7.3258867263793945,
3.458814859390259,
-16.543052673339844,
13.192818641662598,
-10.178168296813965,
-9.57024097442627,
-7.66229248046875,
-0.7303719520568848,
0.6263347268104553,
-7.32014274597168,
7.635025978088379,
-17.636510848999023,
3.286576509475708,
-3.5366291999816895,
10.743256568908691,
1.954232096672058,
2.9177682399749756,
4.480103015899658,
-5.673096179962158,
-3.4542341232299805,
-1.8166873455047607,
-1.9754177331924438,
-1.6513323783874512,
2.7153103351593018,
-2.0112698078155518,
-8.845820426940918,
0.18762049078941345,
3.6361985206604004,
15.622282028198242,
-12.277206420898438,
6.9875054359436035,
-4.735719203948975,
4.372596740722656,
8.244173049926758,
-1.7759923934936523,
-13.407414436340332,
2.281647205352783,
0.8135659098625183,
8.847661018371582,
-18.9537410736084,
0.9656600952148438,
12.04881477355957,
12.912484169006348,
5.068323135375977,
9.281145095825195,
-11.932977676391602,
5.357454299926758,
11.27156925201416,
-1.6544779539108276,
14.31377124786377,
-2.160386085510254,
-6.606300354003906,
3.0950303077697754,
10.621170997619629,
-1.7715768814086914,
3.5815484523773193,
-10.473343849182129,
-5.168891429901123,
-11.711638450622559,
5.647167682647705,
10.480668067932129,
-0.00693780230358243,
-9.795584678649902,
14.915521621704102,
-3.683617353439331,
-0.8830178380012512,
-10.070337295532227,
-3.545560359954834,
11.170438766479492,
-0.07647552341222763,
4.293872833251953,
4.85811710357666,
-1.5834040641784668,
-12.200284957885742,
-1.0890202522277832,
-9.921091079711914,
-21.197479248046875,
8.137577056884766,
4.265695571899414,
-8.359908103942871,
5.975281715393066,
-4.605838775634766,
14.287365913391113,
1.7718532085418701,
-5.1806440353393555,
-4.3912482261657715,
-0.6586564183235168,
11.829545021057129,
9.906365394592285,
1.8801047801971436,
2.7887918949127197,
15.335664749145508,
-0.678943395614624,
-2.1089463233947754,
-5.518109321594238,
2.1196484565734863,
-6.703376293182373,
7.429947376251221,
0.44760552048683167,
9.324418067932129,
-5.685585975646973,
-8.039881706237793,
-5.978551864624023,
-5.8278913497924805,
-4.9955620765686035,
-7.377931118011475,
6.198441028594971,
3.7915537357330322,
0.03161884471774101,
-9.245770454406738,
4.686415195465088,
2.891439914703369,
-6.267395973205566,
-11.146489143371582,
-9.969355583190918,
-8.394238471984863,
3.933011770248413,
-4.354942798614502,
11.659966468811035,
-7.844311237335205,
-21.226667404174805,
5.094573497772217,
3.5586965084075928,
0.022589366883039474,
3.8510847091674805,
12.127400398254395,
1.21487295627594,
-5.012907028198242,
-10.32033634185791,
-4.546663761138916,
-3.6945087909698486,
-8.491704940795898,
-2.1334738731384277,
2.2816405296325684,
4.736368179321289,
2.1768336296081543,
1.2266916036605835,
-7.166209697723389,
12.066255569458008,
7.851481914520264,
13.875262260437012,
-3.943105697631836,
3.6452882289886475,
-17.452354431152344,
3.652578830718994,
-2.2914860248565674,
-5.482381820678711,
-1.8140376806259155,
11.910964965820312,
1.8160423040390015,
-0.8896436095237732,
-3.4955146312713623,
-1.8645228147506714,
0.592106282711029,
3.8320724964141846,
-0.626819372177124,
-1.2434724569320679,
9.939428329467773,
-8.364108085632324,
3.051826238632202,
-7.951904296875,
-8.923873901367188,
-13.369152069091797,
7.309503555297852,
-0.619797945022583,
-8.492668151855469,
-3.196319341659546,
-8.004585266113281,
7.5244622230529785,
7.66950798034668,
0.8570426106452942,
-7.8860859870910645,
-9.632460594177246,
-0.9595189690589905,
-0.4693654179573059,
4.157358169555664,
3.877567768096924,
4.952911376953125,
-4.020622253417969,
4.104523181915283,
12.696308135986328,
-1.7375332117080688,
-6.561777114868164,
-2.410278797149658,
-7.82991361618042,
-8.6519193649292,
-16.67751693725586,
9.46204948425293,
-0.4941818118095398,
-6.972521781921387,
-13.729039192199707,
2.13163423538208,
8.11695384979248,
-1.1050955057144165,
-0.527352511882782,
12.180496215820312,
-3.2756755352020264,
3.631293535232544,
2.298126459121704,
5.212176322937012,
-1.4136006832122803,
4.53127908706665,
6.690917491912842,
10.146445274353027,
-6.249197483062744,
13.395155906677246,
-0.13855957984924316,
2.984788179397583,
-1.3999786376953125,
9.083148002624512,
5.215488433837891,
3.795783519744873,
3.790647029876709,
-5.954488754272461,
-17.631729125976562,
-4.799844741821289,
-8.633867263793945,
5.6180033683776855,
4.451151371002197,
-0.8704090118408203,
8.975790977478027,
-3.6966712474823,
7.782277584075928,
9.13170051574707,
-0.8531120419502258,
-1.6684203147888184,
0.29392290115356445,
14.172207832336426,
10.99656867980957,
7.418715476989746,
-7.628041744232178,
0.04488223046064377,
15.486685752868652,
-9.249128341674805,
-5.3710036277771,
-3.7678656578063965,
8.645036697387695,
4.629737854003906,
-4.633075714111328,
-19.041969299316406,
-5.3648481369018555,
-5.511880874633789,
5.203410625457764,
-3.0433590412139893,
5.147667407989502,
-6.540631294250488,
8.54504108428955,
-13.192546844482422,
2.9707024097442627,
-22.151573181152344,
-6.445201396942139,
-1.1597880125045776,
5.985679626464844,
2.6316380500793457,
3.447185754776001,
1.9363813400268555,
10.71961498260498,
-1.6999584436416626,
-1.9606413841247559,
-0.6354365348815918,
15.589180946350098,
-1.5551644563674927,
-0.27519094944000244,
-10.830278396606445,
-4.664663791656494,
-2.0548744201660156,
11.446791648864746,
-2.120957136154175,
6.1638569831848145,
-9.844231605529785,
12.638067245483398,
8.36728286743164,
-7.15659761428833,
-0.9234703779220581,
9.410658836364746,
-6.505928039550781,
-5.945622444152832,
-14.786359786987305,
4.531197547912598,
-5.15939998626709,
-4.989466667175293,
-6.980131149291992,
0.345771849155426,
-2.1830947399139404,
-9.035842895507812,
-3.131723642349243,
-5.74336051940918,
0.8232879042625427,
4.371209144592285,
1.8912715911865234,
1.725197196006775,
12.009526252746582,
4.377612590789795,
-14.844565391540527,
5.200029373168945,
0.3854610323905945,
-1.528960943222046,
5.171125888824463,
-6.152005672454834,
0.7267964482307434,
11.282373428344727,
-17.535818099975586,
-10.125823020935059,
1.8346304893493652,
2.5129663944244385,
3.905221462249756,
-0.7150351405143738,
3.2480695247650146,
-8.437447547912598,
5.300805568695068,
4.066091537475586,
-0.9977750182151794,
-0.8742389678955078,
0.12317676842212677,
-18.05449867248535,
-7.384253025054932,
-14.455562591552734,
-5.367504596710205,
2.1827027797698975,
6.561312198638916,
-17.959218978881836,
4.494441032409668,
-5.94336462020874,
4.309520244598389,
7.588246822357178,
10.53348445892334,
-0.8468484878540039,
-1.8619614839553833,
-11.633427619934082,
-8.0816650390625,
2.727109670639038,
2.8544487953186035,
-1.6916285753250122,
14.017901420593262,
4.81146764755249,
5.430826663970947,
-6.2649970054626465,
-20.939607620239258,
-0.27285584807395935,
6.719017028808594,
-6.965094566345215,
-1.2881489992141724,
-8.262978553771973,
-10.321647644042969,
-5.632626533508301,
13.547945022583008,
7.256526947021484,
-4.742715358734131,
5.847543239593506,
1.9602103233337402,
4.348590850830078,
-1.510849118232727,
8.981876373291016,
4.447844982147217,
-7.740640163421631,
10.017498016357422,
6.2999267578125,
8.987896919250488,
7.841071605682373,
7.840451240539551,
10.418058395385742,
9.499719619750977,
13.295687675476074,
12.633879661560059,
7.338220119476318,
9.504456520080566,
14.729844093322754,
11.331358909606934,
7.979165554046631,
3.583954334259033,
2.0499961376190186,
10.277734756469727,
8.074061393737793,
6.140418529510498,
6.262155055999756,
9.083517074584961,
5.564102649688721,
7.0336594581604,
10.440286636352539,
7.03350305557251,
5.5614399909973145,
10.440024375915527,
10.993000030517578,
10.494392395019531,
-12.776159286499023,
-3.9357399940490723,
0.37276414036750793,
9.479979515075684,
9.834997177124023,
2.208341360092163,
4.51650333404541,
-7.936855316162109,
-7.9374284744262695,
-0.41800573468208313,
1.3309979438781738,
-10.879499435424805,
-0.8103331923484802,
-10.87901782989502,
-1.5160025358200073,
3.635274887084961,
5.875043869018555,
0.4591372311115265,
2.897266149520874,
-5.156215190887451,
5.235635280609131,
-6.3228230476379395,
-11.464151382446289,
11.568543434143066,
-5.475711822509766,
-17.492298126220703,
6.932194709777832,
-5.53614616394043,
-12.313541412353516,
11.083139419555664,
3.6873998641967773,
7.9230570793151855,
-2.535374641418457,
10.492502212524414,
-9.571968078613281,
-5.549555778503418,
2.0028040409088135,
3.059614896774292,
-4.854674339294434,
-1.2344331741333008,
-4.349318504333496,
-5.266941547393799,
-2.881174087524414,
14.354791641235352,
2.6118617057800293,
4.802938461303711,
-1.128158688545227,
-8.47592544555664,
-6.595884323120117,
12.745014190673828,
2.714566707611084,
8.090620040893555,
4.29662561416626,
-10.03318977355957,
-0.9728444218635559,
2.892578125,
-1.3249337673187256,
3.266085147857666,
-17.262847900390625,
-1.8929764032363892,
-1.5013370513916016,
-15.370294570922852,
11.301892280578613,
-8.339770317077637,
-2.5882298946380615,
7.033509254455566,
-5.551095962524414,
-0.42722028493881226,
-9.57345199584961,
-9.574479103088379,
2.7887775897979736,
4.958883762359619,
5.374870777130127,
5.375709533691406,
1.068781852722168,
6.4150567054748535,
3.5855979919433594,
8.295186042785645,
-1.0763046741485596,
-15.006351470947266,
-12.866496086120605,
10.703717231750488,
10.699930191040039,
-4.440529823303223,
11.344837188720703,
-12.865904808044434,
-12.867981910705566,
-4.697000980377197,
-11.657036781311035,
6.573600769042969,
-11.23449993133545,
12.602163314819336,
-2.2417330741882324,
7.283535003662109,
9.91657829284668,
-10.314736366271973,
-9.700899124145508,
-2.6263675689697266,
-4.203411102294922,
11.537216186523438,
-9.180924415588379,
8.97988224029541,
8.669584274291992,
-6.314765453338623,
3.8047127723693848,
7.8829426765441895,
-12.759202003479004,
11.16145133972168,
8.971416473388672,
-8.594938278198242,
0.8495747447013855,
-0.2165903002023697,
-6.692692756652832,
-7.814685821533203,
-6.181911468505859,
4.467367172241211,
-5.254535675048828,
-3.1705141067504883,
-6.774217128753662,
-7.736534118652344,
8.811298370361328,
0.621911346912384,
13.223063468933105,
-4.8314056396484375,
2.860887289047241,
-0.9018077850341797,
7.577042579650879,
-5.938050746917725,
5.961199760437012,
-6.655511379241943,
3.3313472270965576,
-11.236410140991211,
6.40707540512085,
-7.223694324493408,
8.224349021911621,
-7.0307087898254395,
-2.3020026683807373,
4.925195217132568,
-2.3559911251068115,
-5.419661998748779,
0.14459224045276642,
4.213388919830322,
3.902186632156372,
9.39991283416748,
5.544345378875732,
-4.254727363586426,
-10.139745712280273,
0.5048324465751648,
8.699962615966797,
-2.045044183731079,
4.256863594055176,
-5.611260890960693,
7.2625017166137695,
-1.0542935132980347,
14.350728034973145,
4.432245254516602,
0.5345988273620605,
2.3143527507781982,
3.939018964767456,
1.4699057340621948,
7.1199631690979,
4.258425712585449,
3.097113609313965,
-9.583342552185059,
9.116314888000488,
7.928280830383301,
1.7410328388214111,
4.873493671417236,
13.06736946105957,
-3.2361338138580322,
-8.358236312866211,
-3.8806066513061523,
-12.774444580078125,
-2.719820022583008,
-3.3712756633758545,
-4.6425652503967285,
-5.157596588134766,
6.960229396820068,
6.960018634796143,
3.7151496410369873,
8.252984046936035,
-2.007391929626465,
10.032052993774414,
5.452809810638428,
1.7068581581115723,
6.902803897857666,
5.627037525177002,
8.281038284301758,
3.1491827964782715,
5.186453819274902,
-7.938261985778809,
-5.308651924133301,
2.2104122638702393,
-11.463915824890137,
3.549468755722046,
2.544760227203369,
-8.334535598754883,
-3.543670177459717,
4.796761512756348,
-3.0643718242645264,
-9.580583572387695,
5.493563175201416,
5.3314642906188965,
-3.530909299850464,
5.334688186645508,
-6.624506950378418,
4.703184604644775,
-1.8048933744430542,
-6.765929222106934,
15.968018531799316,
7.922402381896973,
4.88078498840332,
-2.792436361312866,
1.0661969184875488,
7.614959239959717,
11.54410171508789,
-3.0647101402282715,
-12.00427532196045,
-6.70053243637085,
-6.700823783874512,
-6.850826263427734,
-9.149658203125,
-4.183306694030762,
-3.5503203868865967,
-8.105557441711426,
7.371057033538818,
-6.700414180755615,
7.657208442687988,
-4.434619903564453,
-3.064492702484131,
4.5066351890563965,
9.440740585327148,
4.03890323638916,
-4.845037937164307,
-8.894088745117188,
7.270742416381836,
9.728301048278809,
-6.618606090545654,
-5.305395126342773,
11.601633071899414,
2.0241801738739014,
-10.818069458007812,
0.9113659858703613,
0.5886572003364563,
-1.2620680332183838,
11.655027389526367,
1.0497589111328125,
-6.0241618156433105,
13.804261207580566,
-4.834390163421631,
-5.967688083648682,
-0.6690773963928223,
1.2279917001724243,
-5.543355464935303,
5.035706043243408,
4.179178714752197,
-3.0915772914886475,
-12.315936088562012,
13.244407653808594,
-3.5891225337982178,
3.9626259803771973,
-1.176626205444336,
1.1400116682052612,
-3.5869710445404053,
7.402831077575684,
11.676599502563477,
1.1238747835159302,
13.707621574401855,
-6.896021842956543,
-16.269256591796875,
-3.796579122543335,
-1.7859808206558228,
-9.605871200561523,
5.809751033782959,
-0.9820446372032166,
-5.965482711791992,
4.614995002746582,
14.212711334228516,
8.618463516235352,
-0.855983555316925,
-7.755558490753174,
12.134479522705078,
2.4295451641082764,
6.266036510467529,
-8.21296215057373,
8.605319023132324,
-9.637872695922852,
-1.1190820932388306,
-1.0149120092391968,
-4.3255743980407715,
-0.9026506543159485,
-0.17483480274677277,
4.607552528381348,
-12.547739028930664,
-9.582511901855469,
-1.108981728553772,
-2.3256165981292725,
-5.337563991546631,
5.189985752105713,
-8.608404159545898,
-19.522974014282227,
11.415148735046387,
-9.367198944091797,
-2.9975578784942627,
-5.364338397979736,
-2.328850269317627,
0.9711388945579529,
4.989343166351318,
-8.904410362243652,
-3.3069891929626465,
8.559130668640137,
3.2639737129211426,
8.950495719909668,
7.375211715698242,
7.035948753356934,
-2.161590814590454,
6.205507755279541,
2.035470724105835,
7.418200969696045,
5.03228759765625,
0.2890128195285797,
5.253190994262695,
-1.2587571144104004,
-5.213302135467529,
-2.884166717529297,
16.215110778808594,
5.546470642089844,
-5.329096794128418,
-5.041109561920166,
-9.054296493530273,
-17.1560001373291,
0.21039623022079468,
-2.494288444519043,
-8.047276496887207,
-8.28382396697998,
-1.9216374158859253,
-1.605421543121338,
2.9426229000091553,
-0.4471568763256073,
8.125808715820312,
-3.4997823238372803,
-8.483879089355469,
-3.3151259422302246,
-7.240041732788086,
-3.9416868686676025,
-1.0907869338989258,
9.647405624389648,
13.253832817077637,
3.986762523651123,
1.8522441387176514,
3.5423476696014404,
14.9841890335083,
-4.1792707443237305,
4.526548385620117,
-7.938077449798584,
-1.5309810638427734,
12.891942024230957,
4.723826885223389,
2.9897701740264893,
2.0590388774871826,
3.7735724449157715,
1.4666610956192017,
-2.798307418823242,
2.569709300994873,
6.2574615478515625,
2.0841362476348877,
-9.908899307250977,
-10.194849967956543,
1.6423348188400269,
14.732582092285156,
0.11291816830635071,
6.1105170249938965,
-8.05048942565918,
-12.067113876342773,
-5.851007461547852,
-5.929897308349609,
2.1217458248138428,
-3.79563045501709,
14.178634643554688,
-8.838377952575684,
12.072898864746094,
7.8095269203186035,
7.455752372741699,
-2.8341774940490723,
3.145120143890381,
5.149843692779541,
3.9009406566619873,
3.09535551071167,
6.212510108947754,
15.444403648376465,
-7.870039463043213,
-16.494096755981445,
7.262598514556885,
-3.3893375396728516,
-7.694189071655273,
9.023228645324707,
-2.120279550552368,
-6.985228061676025,
-5.377590179443359,
-6.491152763366699,
-4.572322368621826,
7.1292500495910645,
1.4356869459152222,
-9.167672157287598,
-9.49379825592041,
-10.344510078430176,
8.772758483886719,
2.7170181274414062,
7.603668689727783,
-10.998419761657715,
0.43162602186203003,
-4.552614212036133,
-6.318150997161865,
-1.3002568483352661,
7.697363376617432,
0.8217416405677795,
1.890559434890747,
-6.369119167327881,
-5.832327365875244,
-7.287511348724365,
-8.612388610839844,
0.04614974930882454,
-10.790729522705078,
2.2678003311157227,
13.748255729675293,
-0.0007434957078658044,
4.980398654937744,
0.09943041205406189,
0.6572867035865784,
3.4976818561553955,
-3.1692209243774414,
0.6436066627502441,
2.315572738647461,
4.911529541015625,
4.498484134674072,
-5.593014717102051,
-1.3826481103897095,
-6.638792514801025,
4.700283527374268,
0.5238561630249023,
-10.660663604736328,
10.18360424041748,
3.9849936962127686,
-14.50547981262207,
-9.517046928405762,
2.740112066268921,
-5.919282913208008,
11.86940860748291,
-5.079299449920654,
-0.08329616487026215,
-4.97294282913208,
8.448259353637695,
4.617508888244629,
13.107048988342285,
0.2783030867576599,
-0.250320166349411,
13.529943466186523,
-3.1835317611694336,
3.663238525390625,
1.6950472593307495,
2.0627264976501465,
1.984587550163269,
6.099757671356201,
4.710422039031982,
-10.507612228393555,
1.5985559225082397,
2.0073094367980957,
12.622221946716309,
-9.027789115905762,
5.799775123596191,
4.930936336517334,
3.5209875106811523,
-8.744182586669922,
3.327573299407959,
12.236163139343262,
7.0701212882995605,
-2.2445192337036133,
-7.183812618255615,
11.724802017211914,
7.389311790466309,
-4.403576374053955,
-15.339599609375,
-0.9479811787605286,
0.5353155136108398,
5.229671478271484,
3.6190006732940674,
0.3714556396007538,
13.674064636230469,
-3.3199167251586914,
7.842558860778809,
3.418628692626953,
6.952816963195801,
-2.8605332374572754,
12.14687442779541,
-14.50662612915039,
2.398472309112549,
-19.907299041748047,
-13.773514747619629,
-3.8478100299835205,
-14.384312629699707,
-21.64221954345703,
-18.5588321685791,
-17.06551742553711,
-21.123336791992188,
-12.673882484436035,
-17.417678833007812,
-11.634001731872559,
-11.390007019042969,
-9.062530517578125,
-16.274240493774414,
-17.909597396850586,
-22.072885513305664,
-19.688365936279297,
-3.8714494705200195,
-15.412485122680664,
-3.867844820022583,
-20.252870559692383,
-9.313248634338379,
-13.020503044128418,
-14.072553634643555,
-13.95870304107666,
-10.547765731811523,
-20.25986671447754,
-14.940077781677246,
-22.317691802978516,
-21.18324089050293,
-22.388504028320312,
-17.426496505737305,
-10.57741641998291,
-22.932971954345703,
-6.2030134201049805,
-14.826301574707031,
-18.044532775878906,
-9.6001558303833,
-19.871871948242188,
-14.120271682739258,
13.014603614807129,
-16.00942039489746,
-15.836965560913086,
-10.778801918029785,
-22.04379653930664,
-19.497467041015625,
-7.5422258377075195,
-16.45233917236328,
-16.68101692199707,
-14.405535697937012,
-18.3472843170166,
-16.096336364746094,
-4.916974067687988,
-1.0830756425857544,
-20.81983184814453,
-15.834722518920898,
-13.818185806274414,
-18.349170684814453,
-10.840994834899902,
-22.670940399169922,
-16.526708602905273,
-19.44107437133789,
-20.900209426879883,
2.5891740322113037,
-20.78007698059082,
-22.79097557067871,
-11.218194007873535,
-19.82806396484375,
-14.552855491638184,
-22.624876022338867,
-9.020121574401855,
-10.588400840759277,
-16.083982467651367,
-14.547408103942871,
-5.889525413513184,
-22.213048934936523,
-17.90656089782715,
-14.524796485900879,
-21.161571502685547,
-11.937956809997559,
-22.54659080505371,
-10.94399356842041,
-10.59218978881836,
-10.006240844726562,
-21.73703384399414,
-9.729348182678223,
-2.5600287914276123,
-17.863454818725586,
-16.030166625976562,
-22.14809226989746,
-21.90313148498535,
-12.812703132629395,
-18.330474853515625,
-12.953369140625,
-14.170997619628906,
-16.514448165893555,
-10.680415153503418,
-21.25588607788086,
-9.089132308959961,
-17.128753662109375,
-21.436304092407227,
-18.373241424560547,
-16.678770065307617,
-11.93864631652832,
-10.859219551086426,
-21.387714385986328,
-19.624685287475586,
-16.071931838989258,
-18.36676597595215,
-21.522308349609375,
-8.919513702392578,
-14.055852890014648,
-20.791011810302734,
-17.788131713867188,
-18.103565216064453,
-21.346248626708984,
-5.357050895690918,
-16.721773147583008,
-14.559374809265137,
-15.915054321289062,
-14.093805313110352,
-17.374797821044922,
-20.31769561767578,
-20.181669235229492,
-21.556745529174805,
-19.33334732055664,
-17.90081024169922,
-12.096536636352539,
-17.53758430480957,
-5.8396220207214355,
-19.23253631591797,
-20.42925453186035,
-10.767601013183594,
-17.93741798400879,
-6.240381240844727,
-16.24679946899414,
-9.655510902404785,
3.4335436820983887,
-8.555858612060547,
-14.001648902893066,
13.21704387664795,
-11.109687805175781,
-9.657872200012207,
-19.466552734375,
-22.69375991821289,
-22.190704345703125,
-17.932662963867188,
-22.65260124206543,
-22.346336364746094,
-17.281831741333008,
-5.787810325622559,
-10.761723518371582,
-14.973740577697754,
-15.866142272949219,
-16.593862533569336,
-1.9994378089904785,
5.875387191772461,
6.084925174713135,
2.7359893321990967,
-10.212550163269043,
7.09812068939209,
4.094027996063232,
3.2079646587371826,
-9.113982200622559,
14.856354713439941,
-4.574456691741943,
9.28831958770752,
-19.589553833007812,
-11.804445266723633,
-9.002239227294922,
0.6459090113639832,
5.554384708404541,
5.5627121925354,
-3.1249210834503174,
10.012561798095703,
-5.906325817108154,
10.97294807434082,
-1.0251307487487793,
-6.278748035430908,
-4.251888275146484,
0.2912227511405945,
6.9952192306518555,
7.333441734313965,
-0.775046169757843,
-3.7111270427703857,
8.729756355285645,
-2.000121831893921,
10.42030143737793,
12.271382331848145,
15.494937896728516,
12.351895332336426,
-3.943120002746582,
-10.960345268249512,
7.18669319152832,
0.3585427403450012,
-13.247570991516113,
-4.745748519897461,
-2.7074875831604004,
1.4711196422576904,
4.758642673492432,
-13.868300437927246,
0.5353994369506836,
-7.0596604347229,
-0.5941473245620728,
-15.413002014160156,
1.4872674942016602,
11.735207557678223,
5.368564128875732,
-4.088710308074951,
4.91986083984375,
-15.695484161376953,
8.424516677856445,
-4.143103122711182,
13.330150604248047,
3.198336124420166,
-0.6708366870880127,
-20.65275764465332,
8.845091819763184,
9.05168342590332,
-1.1917529106140137,
4.250778675079346,
4.48734188079834,
8.757543563842773,
-11.755147933959961,
11.462228775024414,
9.50964069366455,
3.5216474533081055,
13.266279220581055,
-0.37092676758766174,
-0.7905932664871216,
-0.718308687210083,
-4.693345546722412,
8.586949348449707,
-14.517293930053711,
-2.247753143310547,
3.1040658950805664,
-4.440072059631348,
-0.07530966401100159,
8.930893898010254,
11.446062088012695,
4.7808661460876465,
-9.410324096679688,
-10.113216400146484,
12.136360168457031,
-11.713902473449707,
-6.233898639678955,
12.466334342956543,
10.898846626281738,
-8.955276489257812,
5.472808361053467,
-15.991155624389648,
3.1722047328948975,
-22.654184341430664,
-19.536943435668945,
-9.423227310180664,
2.666844606399536,
-21.876602172851562,
-21.051502227783203,
5.296303749084473,
4.330416202545166,
2.968738079071045,
4.707836151123047,
5.507103443145752,
8.226883888244629,
-1.0645346641540527,
8.655472755432129,
5.930784702301025,
14.176554679870605,
-0.01690814457833767,
10.996508598327637,
-1.627798080444336,
-3.1803786754608154,
0.270437628030777,
4.655821800231934,
12.21658706665039,
-1.7665774822235107,
3.0193021297454834,
2.6816818714141846,
3.4208459854125977,
-1.1889357566833496,
-18.432641983032227,
2.616244316101074,
2.479841470718384,
6.947714328765869,
5.503381252288818,
-6.689166069030762,
-4.478524684906006,
8.355475425720215,
-6.964454174041748,
8.115659713745117,
-0.1770109385251999,
14.461437225341797,
8.406694412231445,
0.8709756135940552,
14.008471488952637,
-13.20154857635498,
14.139737129211426,
-0.16761532425880432,
16.05840492248535,
12.384105682373047,
-17.746143341064453,
-0.6045402884483337,
3.1055572032928467,
9.54531478881836,
8.575891494750977,
-15.794244766235352,
-14.074115753173828,
-13.530756950378418,
-17.531923294067383,
-13.762223243713379,
-20.50579071044922,
-9.112704277038574,
-8.282735824584961,
-12.361250877380371,
-21.372413635253906,
-19.777502059936523,
-22.480371475219727,
-20.28162956237793,
-18.278642654418945,
-14.734319686889648,
-15.277542114257812,
-13.531794548034668,
-18.90604019165039,
-16.912607192993164,
-19.376630783081055,
-20.524795532226562,
-16.18631935119629,
-4.409348487854004,
-6.22738790512085,
-3.0569655895233154,
-6.982035160064697,
-17.043243408203125,
-19.383859634399414,
-18.198680877685547,
-19.1267032623291,
-17.08929443359375,
-20.00808334350586,
-14.303955078125,
-1.618688702583313,
-18.205263137817383,
-5.130906581878662,
1.096796989440918,
-6.2958245277404785,
-4.082720756530762,
-17.56670379638672,
-17.391477584838867,
-6.99819278717041,
-21.426788330078125,
-7.287721157073975,
-20.85353660583496,
10.504868507385254,
-0.583680272102356,
-10.696710586547852,
-16.50876235961914,
-19.24106216430664,
-17.456567764282227,
-16.691560745239258,
-12.233864784240723,
-3.8527004718780518,
-21.269365310668945,
-15.02161979675293,
-15.308286666870117,
-18.814815521240234,
-10.3560791015625,
-22.281524658203125,
-14.23959732055664,
-4.294876575469971,
-19.226818084716797,
-19.083696365356445,
-3.328944683074951,
-21.279874801635742,
-11.3760986328125,
-16.18610954284668,
-17.472219467163086,
2.1497297286987305,
-11.313885688781738,
-14.779959678649902,
-19.85611343383789,
-12.51663875579834,
-11.159173011779785,
-0.5235138535499573,
-4.471496105194092,
-3.2614502906799316,
-3.983179807662964,
-0.9897088408470154,
-7.802847862243652,
-19.07282257080078,
-14.661738395690918,
-21.261083602905273,
-2.4193174839019775,
-16.497995376586914,
-17.371681213378906,
-3.619117498397827,
-9.777328491210938,
-12.193771362304688,
-19.29660987854004,
-22.72008514404297,
-1.6863921880722046,
-12.430192947387695,
-19.178850173950195,
-3.519603729248047,
-10.31197738647461,
-10.668749809265137,
-11.856372833251953,
-17.134916305541992,
9.5966796875,
0.4947846233844757,
-17.12101936340332,
1.716027021408081,
-12.219383239746094,
-22.74864959716797,
-20.739145278930664,
-6.125793933868408,
-6.087766170501709,
-21.123769760131836,
-4.531405448913574,
14.445695877075195,
-22.73931884765625,
-13.401838302612305,
-22.505605697631836,
-12.282435417175293,
-4.152027606964111,
-20.962797164916992,
-17.096111297607422,
-5.611451148986816,
-5.261270046234131,
-3.9278550148010254,
-9.29444694519043,
-12.069299697875977,
-3.5575520992279053,
-5.946232795715332,
-6.2799506187438965,
-4.0670695304870605,
-1.7440603971481323,
-15.981553077697754,
-2.555655002593994,
-2.382554292678833,
-19.39853858947754,
-1.4340394735336304,
-3.096609115600586,
-20.40826988220215,
-9.39182186126709,
-5.554293155670166,
1.8441135883331299,
-9.954548835754395,
2.794705629348755,
1.6558181047439575,
12.24940013885498,
-8.598883628845215,
-12.067472457885742,
0.0390612855553627,
-12.756878852844238,
-21.863801956176758,
-17.39335060119629,
0.3395180106163025,
-12.031423568725586,
7.989662170410156,
-11.378843307495117,
-14.274518966674805,
-21.31902313232422,
-18.38005828857422,
-3.203176736831665,
-11.541276931762695,
-9.108195304870605,
-21.393131256103516,
-4.534560203552246,
-3.0226120948791504,
-14.236454010009766,
-15.410423278808594,
-3.232020616531372,
-11.263978958129883,
-8.006855964660645,
-20.069538116455078,
-13.048301696777344,
-22.15807342529297,
-3.1081058979034424,
-21.75361442565918,
-17.989093780517578,
-9.187590599060059,
-11.41808795928955,
-20.356782913208008,
-22.484474182128906,
-18.309602737426758,
-21.032875061035156,
-20.365819931030273,
-17.42799186706543,
-22.070188522338867,
-15.39592456817627,
-22.76923179626465,
-22.779067993164062,
-11.907885551452637,
-10.790634155273438,
-10.171036720275879,
-6.494894027709961,
-16.191730499267578,
-11.103961944580078,
-10.712762832641602,
-15.775681495666504,
-12.414994239807129,
-18.064611434936523,
-22.797306060791016,
-18.81840705871582,
-17.49642562866211,
-20.643115997314453,
-16.07394027709961,
-12.914183616638184,
-20.329164505004883,
-15.404314041137695,
-13.889568328857422,
-16.005027770996094,
-21.802257537841797,
-17.33620834350586,
-21.232154846191406,
-21.862167358398438,
-19.778959274291992,
-16.626535415649414,
-21.999767303466797,
-19.53046417236328,
-21.699832916259766,
-16.14898681640625,
-21.350866317749023,
-18.388019561767578,
-19.3885440826416,
-18.33301544189453,
-6.1450347900390625,
-21.291378021240234,
-14.967192649841309,
-20.476062774658203,
-19.678211212158203,
-15.770909309387207,
-22.803939819335938,
-22.8781795501709,
-18.95234489440918,
-13.6198091506958,
-16.934078216552734,
11.264527320861816,
1.4157782793045044,
-9.704544067382812,
-22.312030792236328,
-18.636430740356445,
-20.58201789855957,
-16.61115264892578,
-15.508321762084961,
-14.842399597167969,
-19.7895450592041,
-17.713672637939453,
-15.555912971496582,
-22.728696823120117,
-13.958279609680176,
-12.344354629516602,
-19.22262191772461,
-17.34389305114746,
-16.495492935180664,
-17.497840881347656,
-17.309234619140625,
-16.634384155273438,
-22.785173416137695,
-20.844741821289062,
-19.23617935180664,
-20.931774139404297,
-16.720073699951172,
-22.162729263305664,
-18.397220611572266,
-18.06220817565918,
4.03319787979126,
-16.842967987060547,
-22.33751106262207,
-16.53184700012207,
-16.94579315185547,
-13.95958423614502,
-20.178524017333984,
-21.913555145263672,
-13.842877388000488,
-14.924506187438965,
-19.883153915405273,
-16.063007354736328,
-20.45872688293457,
-16.23578453063965,
-14.111058235168457,
2.368748188018799,
-17.52278709411621,
-4.920456409454346,
-11.870171546936035,
-12.507532119750977,
-18.687414169311523,
-9.545313835144043,
-16.10176658630371,
-20.46027946472168,
-22.160587310791016,
-17.30773162841797,
-19.17984962463379,
-8.518254280090332,
-21.351945877075195,
-14.787775039672852,
-22.21851921081543,
-13.045694351196289,
-21.81822967529297,
-18.064502716064453,
-18.398330688476562,
-21.596323013305664,
-8.24135684967041,
-11.565631866455078,
-14.804923057556152,
-17.927574157714844,
-19.700592041015625,
-21.2329044342041,
-8.479819297790527,
-11.62492847442627,
-3.8160648345947266,
-15.650337219238281,
-11.012737274169922,
-14.507054328918457,
0.06661480665206909,
5.870785713195801,
7.040551662445068,
14.699980735778809,
-2.1107406616210938,
11.537409782409668,
5.746506690979004,
-4.965683937072754,
2.8220860958099365,
-15.857386589050293,
13.099546432495117,
6.244510650634766,
12.12709903717041,
3.2696151733398438,
13.892923355102539,
-8.946681022644043,
-10.30077075958252,
1.1773415803909302,
-8.881152153015137,
-4.365097999572754,
-1.824975848197937,
9.39951229095459,
-9.988163948059082,
-15.194608688354492,
-0.03867422416806221,
-5.918912887573242,
3.2762532234191895,
16.539020538330078,
5.237191200256348,
8.69247817993164,
12.186440467834473,
14.201311111450195,
2.7059526443481445,
-7.742302894592285,
0.3769363760948181,
8.468646049499512,
12.350911140441895,
4.516349792480469,
0.4039256274700165,
-1.5668939352035522,
-20.644330978393555,
-8.598244667053223,
1.4212135076522827,
0.8088414669036865,
-15.58840560913086,
-2.6577515602111816,
8.162050247192383,
-8.72770881652832,
3.634732246398926,
2.6153135299682617,
-2.5114803314208984,
11.004106521606445,
-5.158932685852051,
12.995704650878906,
11.014891624450684,
-0.5576087832450867,
2.2109687328338623,
7.354022026062012,
10.908260345458984,
15.250455856323242,
-3.013885974884033,
-11.18016529083252,
-10.71890926361084,
-3.336407423019409,
3.0565366744995117,
5.7633256912231445,
-5.640618324279785,
13.018689155578613,
-7.645203590393066,
-1.2451742887496948,
9.587455749511719,
14.581134796142578,
2.5406954288482666,
2.239532709121704,
2.1579408645629883,
-9.13943862915039,
8.80348014831543,
12.248440742492676,
12.881266593933105,
-12.300403594970703,
-3.0564887523651123,
0.9114179611206055,
9.049758911132812,
-15.052221298217773,
5.874228000640869,
5.606072902679443,
-3.135585069656372,
-1.3628149032592773,
-12.536751747131348,
4.563121795654297,
6.0377516746521,
-3.6864850521087646,
-1.1590574979782104,
-9.300345420837402,
-22.511451721191406,
3.5061426162719727,
-9.580345153808594,
-11.822952270507812,
-10.350728988647461,
-12.997038841247559,
-11.982406616210938,
7.23798942565918,
9.260886192321777,
13.94287395477295,
8.271754264831543,
1.0534608364105225,
12.051834106445312,
-7.066098690032959,
3.3634486198425293,
10.882441520690918,
12.203385353088379,
11.796584129333496,
13.405182838439941,
-9.922649383544922,
-19.62775421142578,
11.021445274353027,
1.0590612888336182,
11.585268020629883,
7.632680416107178,
-11.312023162841797,
11.415450096130371,
-2.3197789192199707,
0.4317958354949951,
5.575233459472656,
5.108875751495361,
4.866201877593994,
-0.29512709379196167,
14.670422554016113,
5.782259464263916,
11.284747123718262,
5.342709541320801,
-7.18287467956543,
8.401875495910645,
-0.2029370665550232,
4.958579063415527,
-0.2997710108757019,
12.334532737731934,
-0.268375962972641,
5.4579572677612305,
-3.8447136878967285,
3.356891632080078,
7.532286167144775,
-18.305618286132812,
-2.4052774906158447,
-0.20187661051750183,
5.667292594909668,
8.470863342285156,
0.6041911244392395,
-16.30234718322754,
12.572622299194336,
11.190464973449707,
4.626331329345703,
-0.728695273399353,
-21.68631935119629,
-9.176583290100098,
7.475874900817871,
-2.2956433296203613,
-1.6847072839736938,
-4.844228267669678,
7.466458320617676,
-7.859087944030762,
-5.5955328941345215,
-12.16144847869873,
-16.40850830078125,
4.436336517333984,
-9.179505348205566,
10.881454467773438,
-8.348291397094727,
-1.08250892162323,
2.870337724685669,
-3.205659866333008,
-9.162846565246582,
5.7099761962890625,
0.10720302909612656,
-1.6344356536865234,
-2.186013698577881,
-5.454351902008057,
6.872558116912842,
2.8482136726379395,
9.958807945251465,
7.09384298324585,
-5.265496253967285,
-7.415099620819092,
-2.1647472381591797,
4.992946147918701,
-9.442090034484863,
9.133857727050781,
-8.41650676727295,
-1.260827660560608,
0.2607690989971161,
0.4043431282043457,
4.293487548828125,
6.411226749420166,
-4.73775053024292,
-4.365144729614258,
-5.154387474060059,
-2.318706512451172,
0.5613113641738892,
-15.483907699584961,
-8.40815258026123,
-2.4163906574249268,
-5.73826265335083,
-8.348237991333008,
-8.93618106842041,
-9.590591430664062,
-4.22965145111084,
9.108473777770996,
5.7738566398620605,
9.869590759277344,
-3.1169168949127197,
-2.8693861961364746,
0.8666266202926636,
-20.375337600708008,
-14.089738845825195,
4.84962272644043,
-1.7135956287384033,
-9.444456100463867,
-5.957826137542725,
5.505583763122559,
-22.67203712463379,
-3.7580244541168213,
-9.511781692504883,
-7.763228416442871,
-10.370697021484375,
-7.858880996704102,
-7.023647785186768,
4.265194416046143,
-2.829542398452759,
6.317930698394775,
-8.401555061340332,
2.2637343406677246,
-11.709888458251953,
6.372229099273682,
-6.4605255126953125,
-1.0966821908950806,
-21.042415618896484,
0.23271366953849792,
7.2213945388793945,
1.6435256004333496,
11.038887977600098,
4.007447719573975,
2.2311649322509766,
-5.498246192932129,
-3.0931520462036133,
-1.3743131160736084,
-7.125819683074951,
-5.008646011352539,
-16.385250091552734,
-11.612930297851562,
12.603408813476562,
0.2359524816274643,
-12.142443656921387,
-1.0603690147399902,
-9.090153694152832,
5.8488993644714355,
-4.922717094421387,
3.296344757080078,
14.805631637573242,
2.554133892059326,
-0.32683035731315613,
-2.8622829914093018,
-3.3061680793762207,
11.127178192138672,
-13.144001960754395,
-4.727598667144775,
-6.254177093505859,
1.8171910047531128,
-8.329368591308594,
7.592219352722168,
8.820928573608398,
-22.145662307739258,
-2.775196075439453,
1.7822260856628418,
5.848038196563721,
-11.64669132232666,
4.338594913482666,
-18.218402862548828,
-12.383292198181152,
-1.3861316442489624,
5.277637004852295,
0.5112716555595398,
-17.40056800842285,
-21.948190689086914,
14.530080795288086,
-4.346835613250732,
0.33327531814575195,
-8.506309509277344,
9.538084030151367,
8.763740539550781,
-10.600992202758789,
-1.0690550804138184,
4.485692024230957,
-6.995358467102051,
-5.859929084777832,
-0.5628169775009155,
4.409371376037598,
0.9306973218917847,
0.3944423794746399,
-21.96295738220215,
11.115516662597656,
-2.78056263923645,
-1.6389358043670654,
8.584114074707031,
2.7462878227233887,
-8.729681015014648,
14.383580207824707,
13.558415412902832,
-15.240622520446777,
5.127248764038086,
14.065512657165527,
-17.73603057861328,
7.963963031768799,
0.4074258804321289,
10.16756534576416,
-22.867055892944336,
11.362439155578613,
-18.47152328491211,
-11.848092079162598,
-16.747703552246094,
1.4891799688339233,
5.3698625564575195,
-20.13372039794922,
3.142672061920166,
14.419441223144531,
3.519981861114502,
-22.79838752746582,
4.518031597137451,
4.597210884094238,
-13.862367630004883,
12.055328369140625,
8.835673332214355,
-5.271437168121338,
-0.847174882888794,
-10.046414375305176,
-13.607757568359375,
-6.19736385345459,
-1.247214913368225,
-2.26254940032959,
-4.724862575531006,
-17.957563400268555,
-18.016454696655273,
4.705265045166016,
7.340348243713379,
-5.3969621658325195,
11.186519622802734,
-0.5042374730110168,
-18.7164249420166,
-15.609660148620605,
1.8416974544525146,
-10.445663452148438,
-19.574970245361328,
4.1847310066223145,
7.54754114151001,
6.304987907409668,
8.87525749206543,
6.310821056365967,
-1.5773835182189941,
10.452156066894531,
-13.676538467407227,
-0.8743816614151001,
13.94406795501709,
14.941271781921387,
-19.466856002807617,
6.127948760986328,
3.535806655883789,
9.460963249206543,
1.454202651977539,
1.4541200399398804,
11.67394733428955,
5.521790504455566,
-5.525972366333008,
5.193755149841309,
4.762879371643066,
-0.17074206471443176,
8.140304565429688,
5.017705917358398,
2.286365032196045,
2.518575668334961,
-14.522242546081543,
8.970054626464844,
2.3088889122009277,
13.10141658782959,
8.089597702026367,
-4.861324787139893,
3.6909186840057373,
-17.683103561401367,
5.229643821716309,
3.171066999435425,
1.338753581047058,
10.011334419250488,
2.1083767414093018,
4.35814905166626,
-16.342050552368164,
-4.7768354415893555,
-1.5117602348327637,
11.943560600280762,
6.202114105224609,
6.377374649047852,
1.4498366117477417,
-4.666888236999512,
-2.45317006111145,
14.239601135253906,
-5.796858310699463,
-3.2820589542388916,
5.687319755554199,
-15.43837833404541,
5.120326042175293,
3.4836649894714355,
8.453794479370117,
-0.6944273710250854,
-5.7189106941223145,
-13.723591804504395,
10.240793228149414,
15.189977645874023,
15.485374450683594,
15.22397232055664,
1.3236454725265503,
14.123000144958496,
12.168743133544922,
11.479801177978516,
4.161288261413574,
4.742619514465332,
-8.43204402923584,
2.8738064765930176,
3.526097059249878,
0.10934077203273773,
-1.2217952013015747,
5.195430278778076,
-0.21453148126602173,
11.862788200378418,
-19.099313735961914,
-3.490834951400757,
7.95052433013916,
1.665758490562439,
12.621664047241211,
-3.322927474975586,
8.572006225585938,
3.977144718170166,
0.5833505392074585,
14.107674598693848,
-2.179710865020752,
14.318156242370605,
-6.471078872680664,
-11.719413757324219,
0.3337180018424988,
6.985067844390869,
-0.23863059282302856,
1.8937240839004517,
-4.081313133239746,
4.9317307472229,
15.379169464111328,
5.641964435577393,
7.805456638336182,
-12.61492919921875,
-5.077752113342285,
6.314583778381348,
5.750016689300537,
12.596837043762207,
0.02723795734345913,
-4.521796226501465,
3.454723834991455,
2.004269599914551,
-16.1805419921875,
1.6719648838043213,
-0.844805121421814,
-12.299955368041992,
11.562215805053711,
2.9184141159057617,
3.3826234340667725,
9.055397987365723,
0.648141086101532,
8.909077644348145,
-0.5585181713104248,
-17.035797119140625,
4.4998979568481445,
-16.845455169677734,
-2.066063165664673,
-2.487077474594116,
5.032874584197998,
4.1673150062561035,
-3.404348373413086,
-16.152355194091797,
2.099961757659912,
-3.59002947807312,
-3.3820862770080566,
11.114648818969727,
11.785188674926758,
2.2030630111694336,
13.561624526977539,
-8.793450355529785,
14.886435508728027,
7.83335018157959,
-5.439429759979248,
11.995001792907715,
-1.1064156293869019,
-5.219086170196533,
2.6297948360443115,
-6.918787956237793,
0.33576515316963196,
-9.785196304321289,
-0.29395291209220886,
13.90311050415039,
8.757658958435059,
-0.7629920840263367,
1.9315749406814575,
-6.488310813903809,
-12.884428977966309,
9.644012451171875,
-2.04555344581604,
-0.7743284106254578,
-5.994215488433838,
2.9813809394836426,
8.784610748291016,
6.340522289276123,
11.677624702453613,
8.046486854553223,
3.909329891204834,
6.885904312133789,
-0.9358231425285339,
-15.014898300170898,
7.424691200256348,
5.401809215545654,
0.7259262800216675,
-2.747061252593994,
-10.917623519897461,
3.6374216079711914,
15.435050964355469,
-4.375198841094971,
9.208133697509766,
9.152270317077637,
11.924642562866211,
13.340237617492676,
-5.71193790435791,
8.211880683898926,
9.757773399353027,
2.430797576904297,
-6.7472405433654785,
9.375938415527344,
8.798921585083008,
1.0027785301208496,
-0.22703292965888977,
-6.366496562957764,
-20.831941604614258,
13.979562759399414,
5.533431529998779,
-15.816521644592285,
7.77973747253418,
14.486183166503906,
-1.2002227306365967,
8.961136817932129,
3.0646116733551025,
-9.925153732299805,
4.296210289001465,
1.1692379713058472,
-0.7240973114967346,
11.76875114440918,
7.6611008644104,
14.84366512298584,
-8.852344512939453,
14.180245399475098,
-5.568732738494873,
-3.339040994644165,
2.1885673999786377,
-8.443419456481934,
13.304269790649414,
13.13702392578125,
-9.11854362487793,
-2.598222255706787,
9.592842102050781,
15.370960235595703,
14.238168716430664,
9.783196449279785,
6.397662162780762,
9.35013484954834,
5.04680871963501,
1.6818389892578125,
4.494551181793213,
-11.504108428955078,
-4.722695827484131,
2.8763837814331055,
3.324864387512207,
2.5882368087768555,
15.526503562927246,
-2.0265250205993652,
13.322090148925781,
7.608867168426514,
2.2013518810272217,
-1.0575964450836182,
5.233843803405762,
-8.239852905273438,
12.287422180175781,
-9.78980541229248,
-16.094388961791992,
-17.186145782470703,
5.896880149841309,
3.2862777709960938,
7.283213138580322,
5.242053031921387,
0.47208207845687866,
11.992932319641113,
13.051191329956055,
-2.2844648361206055,
-3.480588674545288,
-4.199647426605225,
-1.573140263557434,
-0.2876409888267517,
5.830887794494629,
8.572192192077637,
-8.768830299377441,
3.0323827266693115,
3.4398651123046875,
5.2566070556640625,
11.894204139709473,
5.956835746765137,
-19.257596969604492,
11.26188850402832,
-3.505408763885498,
3.4777095317840576,
-8.676977157592773,
-4.708611965179443,
-1.4984158277511597,
-0.6592038869857788,
-2.6927967071533203,
-12.824564933776855,
-6.72227144241333,
-14.250898361206055,
-11.721152305603027,
0.1874622404575348,
6.816287994384766,
-7.394707202911377,
7.253629684448242,
3.299678325653076,
-4.872102737426758,
-10.832479476928711,
1.8297890424728394,
7.387540817260742,
-8.359437942504883,
-10.393016815185547,
13.119200706481934,
13.267265319824219,
1.9555747509002686,
5.751071929931641,
5.051478385925293,
-7.637894153594971,
-7.203888416290283,
-0.947954535484314,
-20.05179214477539,
-22.37384796142578,
-11.261446952819824,
-18.416078567504883,
-4.0424675941467285,
-22.871301651000977,
-17.157047271728516,
-19.73049545288086,
14.324529647827148,
-17.69723892211914,
-19.56821060180664,
-8.228578567504883,
-22.39166831970215,
-19.61426544189453,
-11.401217460632324,
-9.303887367248535,
-10.538590431213379,
-5.2018656730651855,
-9.99484920501709,
14.304170608520508,
-7.725005626678467,
-21.789152145385742,
-21.698928833007812,
10.356451988220215,
9.015253067016602,
5.498727798461914,
-22.373777389526367,
-22.142484664916992,
-13.580044746398926,
-20.71950912475586,
-12.470715522766113,
7.955252647399902,
-5.936788082122803,
-10.553299903869629,
11.221452713012695,
9.495244026184082,
9.287178993225098,
2.1234474182128906,
6.16458797454834,
-1.0694080591201782,
-18.82632064819336,
11.941688537597656,
1.9743499755859375,
3.9317946434020996,
-2.710618257522583,
-20.949695587158203,
7.710323333740234,
8.140933990478516,
0.09641045331954956,
4.38079833984375,
3.647181272506714,
6.197494029998779,
7.4466872215271,
-14.607048034667969,
-4.539698600769043,
4.152462482452393,
-9.473800659179688,
-5.631641387939453,
-17.084972381591797,
-7.878349304199219,
-14.160050392150879,
-12.024935722351074,
-4.821158409118652,
16.352588653564453,
-12.780458450317383,
-9.382710456848145,
-13.649397850036621,
-15.22491455078125,
7.482025623321533,
0.2989210784435272,
-5.8714141845703125,
0.4429987370967865,
-21.645483016967773,
-1.2795473337173462,
4.704593181610107,
12.155823707580566,
8.424593925476074,
-0.5020846724510193,
-15.562982559204102,
6.640002727508545,
-13.916056632995605,
-9.269896507263184,
10.228421211242676,
-9.20833683013916,
8.351543426513672,
4.091015338897705,
6.32370138168335,
10.599759101867676,
4.554018974304199,
-17.98802947998047,
11.00024127960205,
5.4309587478637695,
-9.1959228515625,
-19.325008392333984,
-16.598575592041016,
-4.379460334777832,
2.777750015258789,
-9.94717025756836,
-15.798986434936523,
-5.424169063568115,
14.146252632141113,
-2.556931495666504,
-17.423185348510742,
-1.8911356925964355,
-21.218578338623047,
-14.869436264038086,
-17.666601181030273,
-12.071979522705078,
4.479475498199463,
-15.382489204406738,
-15.394186019897461,
-12.066767692565918,
1.9684817790985107,
-12.070818901062012,
-1.511781096458435,
3.1046385765075684,
-9.473430633544922,
11.097590446472168,
12.283355712890625,
10.385059356689453,
-1.401300311088562,
-11.91816520690918,
15.807857513427734,
-8.257153511047363,
-13.071304321289062,
-9.383325576782227,
-22.555328369140625,
-6.170413017272949,
-4.114089488983154,
9.929034233093262,
-20.122295379638672,
-13.059447288513184,
-5.249929428100586,
-5.770478248596191,
11.429398536682129,
-8.282808303833008,
-0.770435631275177,
-10.439784049987793,
11.230273246765137,
4.79194450378418,
-6.772980690002441,
1.7544715404510498,
-8.299397468566895,
7.8373823165893555,
-12.029598236083984,
-7.870471954345703,
-21.236106872558594,
-14.392739295959473,
-19.817899703979492,
15.289202690124512,
0.014515742659568787,
-18.32541275024414,
-6.734323501586914,
1.6864795684814453,
-11.156562805175781,
-15.537607192993164,
-21.293256759643555,
-13.24421501159668,
-13.606491088867188,
-18.748796463012695,
-6.3181047439575195,
13.66468620300293,
6.2002153396606445,
-11.471744537353516,
-0.3240562975406647,
-10.773300170898438,
-18.771814346313477,
-3.7489559650421143,
-4.147958278656006,
4.225240707397461,
4.2188286781311035,
-17.41530418395996,
-10.077677726745605,
3.4280478954315186,
1.0983779430389404,
1.8945060968399048,
-5.786557197570801,
11.476381301879883,
6.599733352661133,
-12.891414642333984,
14.898261070251465,
-5.095187664031982,
-16.22374153137207,
-19.10082244873047,
-0.8935694694519043,
-7.402617931365967,
9.380861282348633,
15.545251846313477,
4.62186336517334,
-12.710233688354492,
-10.392765998840332,
-19.228368759155273,
-10.264443397521973,
-22.295146942138672,
-7.447474002838135,
-5.518375873565674,
3.1233251094818115,
-0.5018436908721924,
-21.987743377685547,
-10.007792472839355,
0.6111694574356079,
4.82669734954834,
0.9673828482627869,
-12.278812408447266,
-9.084745407104492,
1.227651834487915,
10.229507446289062,
-0.2912239730358124,
-6.478655815124512,
-9.930843353271484,
-22.663053512573242,
-16.4237060546875,
-17.79500961303711,
-21.379547119140625,
-12.123377799987793,
-14.245729446411133,
-16.159818649291992,
-17.50890350341797,
4.744616985321045,
-11.180299758911133,
-19.594194412231445,
-21.356632232666016,
-18.468828201293945,
-22.609718322753906,
-11.76491928100586,
-17.055267333984375,
-17.44863510131836,
-18.636640548706055,
-1.9464104175567627,
-2.03613543510437,
-1.3618439435958862,
-14.248448371887207,
-15.595564842224121,
-0.9846236109733582,
-21.748348236083984,
-19.460372924804688,
-14.646791458129883,
-4.955575466156006,
-13.604975700378418,
-15.819454193115234,
-19.027189254760742,
-14.833662033081055,
-21.336755752563477,
-11.507875442504883,
-10.627949714660645,
-17.812541961669922,
-21.241466522216797,
-18.03763771057129,
2.8838160037994385,
-22.109254837036133,
-21.211252212524414,
-21.14258575439453,
-16.49105453491211,
-9.87768840789795,
-20.94219970703125,
-21.588666915893555,
-11.537168502807617,
-22.741226196289062,
-22.480287551879883,
-12.458168983459473,
-19.32857322692871,
-14.527409553527832,
-14.39681625366211,
-14.826582908630371,
-14.801734924316406,
-20.5090389251709,
-8.299521446228027,
-22.054813385009766,
-0.09786219894886017,
-9.095956802368164,
8.31688404083252,
-8.955090522766113,
1.5700221061706543,
-21.60207748413086,
-3.855543851852417,
10.242751121520996,
-13.273849487304688,
-4.744150638580322,
8.151026725769043,
-18.079683303833008,
-5.2894110679626465,
-21.825613021850586,
-19.186925888061523,
-19.262821197509766,
-11.949074745178223,
-22.839025497436523,
-15.525273323059082,
-22.510623931884766,
-9.889679908752441,
-0.14160007238388062,
-17.401155471801758,
-18.384384155273438,
-17.041112899780273,
-18.54279899597168,
-21.380638122558594,
8.173952102661133,
-18.4622802734375,
-21.7131290435791,
-19.047801971435547,
-14.693577766418457,
-19.925113677978516,
-12.148582458496094,
-8.45810317993164,
6.166198253631592,
1.1554332971572876,
-15.699690818786621,
-16.918136596679688,
-12.494897842407227,
-21.877275466918945,
-20.83769989013672,
-19.75313949584961,
-11.208037376403809,
-22.190353393554688,
-17.72591209411621,
3.4806370735168457,
-17.325239181518555,
-7.494837284088135,
-8.117287635803223,
-3.382322072982788,
-6.147180557250977,
-4.501577854156494,
-22.06101417541504,
-17.369598388671875,
-10.407191276550293,
-22.418359756469727,
-16.314430236816406,
-22.03093719482422,
-12.604415893554688,
-6.214316368103027,
-21.37664222717285,
13.54964828491211,
-4.469515800476074,
-11.70947265625,
-11.595178604125977,
-5.31420373916626,
-9.578970909118652,
-18.21296501159668,
-6.155395030975342,
-22.835445404052734,
-6.08783483505249,
-15.59135913848877,
-21.849857330322266,
-15.535834312438965,
-16.544389724731445,
-10.046359062194824,
-21.816564559936523,
-6.443684101104736,
-17.7860164642334,
-6.545161247253418,
-16.400222778320312,
-17.228862762451172,
-0.7576954960823059,
1.4552966356277466,
-18.155248641967773,
-18.081106185913086,
2.1046810150146484,
-2.582486867904663,
-22.88238525390625,
-5.372079372406006,
-21.271860122680664,
-22.323707580566406,
-20.074939727783203,
-19.17212677001953,
-3.0326406955718994,
12.729537010192871,
3.803615093231201,
11.48366641998291,
-18.941957473754883,
-9.435620307922363,
-2.894444704055786,
-6.24869441986084,
-18.702972412109375,
-11.634605407714844,
-9.381061553955078,
-15.785396575927734,
13.121411323547363,
-15.124089241027832,
-0.34573599696159363,
-1.039594054222107,
-9.631396293640137,
-19.724321365356445,
-3.263132333755493,
3.202014923095703,
-18.965007781982422,
-11.038095474243164,
-10.148990631103516,
4.206480503082275,
-11.854737281799316,
-21.87411117553711,
-15.447853088378906,
-17.682920455932617,
12.037238121032715,
-5.569029808044434,
-17.587812423706055,
-2.0829663276672363,
-19.68002700805664,
-20.763364791870117,
-17.575328826904297,
-12.462616920471191,
-15.054027557373047,
-14.838969230651855,
-9.772223472595215,
-9.948596000671387,
-15.597224235534668,
-12.190839767456055,
9.270524024963379,
-3.040752649307251,
0.6493638753890991,
6.62553071975708,
2.5999698638916016,
-11.394281387329102,
3.487821102142334,
-18.2578182220459,
1.7863755226135254,
-21.714214324951172,
-0.8874662518501282,
-7.6720685958862305,
0.03427427262067795,
15.176885604858398,
-10.724736213684082,
-20.686933517456055,
-6.1133294105529785,
-12.04830265045166,
-14.287524223327637,
-21.1260986328125,
-8.662428855895996,
-15.468963623046875,
-18.328933715820312,
-8.673396110534668,
-20.47817039489746,
1.3835930824279785,
7.570863723754883,
-0.1043236181139946,
9.458873748779297,
12.70793628692627,
-21.100622177124023,
-19.33807945251465,
6.875518321990967,
-17.769100189208984,
-11.857645988464355,
-1.5572245121002197,
-0.5594885349273682,
-20.32136344909668,
-13.930509567260742,
-4.851051330566406,
4.545152187347412,
-10.307065963745117,
12.505556106567383,
8.875635147094727,
1.8137601613998413,
7.591471195220947,
1.6688417196273804,
-7.456279277801514,
-15.152177810668945,
-5.399291515350342,
-2.5403740406036377,
3.0614047050476074,
-14.48525619506836,
-21.034074783325195,
-16.49136734008789,
-5.307401180267334,
-3.907428741455078,
7.109726905822754,
-4.021839618682861,
-3.9235615730285645,
-10.451237678527832,
-18.42713737487793,
-5.3084564208984375,
5.558006286621094,
-0.09713981300592422,
-8.763854026794434,
-15.433618545532227,
-10.05280876159668,
-19.01534652709961,
-0.4748210608959198,
-0.5095959305763245,
3.6009554862976074,
8.942240715026855,
-16.51970100402832,
13.855502128601074,
13.377226829528809,
-20.35650634765625,
-8.778769493103027,
-17.963037490844727,
-19.857906341552734,
0.27081456780433655,
-2.2839763164520264,
1.0552996397018433,
-11.952753067016602,
6.902043342590332,
13.049060821533203,
-16.75534439086914,
0.4575822055339813,
-19.49196434020996,
-14.8103666305542,
-1.1742198467254639,
-9.076142311096191,
-4.883018493652344,
-18.941085815429688,
3.164050579071045,
-12.339696884155273,
-22.19121551513672,
-21.926294326782227,
-10.719347953796387,
-18.221147537231445,
-4.357769012451172,
-0.8009771108627319,
-17.748437881469727,
-21.433666229248047,
-21.95733070373535,
-19.545984268188477,
-14.763223648071289,
-16.311138153076172,
-20.95589828491211,
-20.82855796813965,
-17.454458236694336,
-13.335153579711914,
-16.49776268005371,
3.9026243686676025,
0.3436562120914459,
-20.628841400146484,
-17.173521041870117,
7.127424716949463,
-3.1295430660247803,
-14.638492584228516,
-3.387749195098877,
-10.822477340698242,
-15.414225578308105,
1.4799631834030151,
-12.75538444519043,
-21.129316329956055,
1.2377206087112427,
-12.306377410888672,
-1.225031852722168,
-17.17905044555664,
2.458261489868164,
-4.727763652801514,
-11.335102081298828,
-21.980024337768555,
-19.684934616088867,
-22.313121795654297,
11.333898544311523,
-1.4595832824707031,
-4.425957679748535,
-11.972890853881836,
-8.643787384033203,
-19.415117263793945,
-15.590574264526367,
-7.168421268463135,
-5.931804180145264,
-18.31121063232422,
10.552034378051758,
2.340946674346924,
-6.4189629554748535,
-17.91557502746582,
-14.480430603027344,
-3.501474142074585,
-15.188117027282715,
-5.181513786315918,
-7.082828998565674,
-22.340675354003906,
12.044129371643066,
2.8115458488464355,
-22.118200302124023,
5.951961040496826,
-5.695938587188721,
-13.735858917236328,
14.271821975708008,
-2.3522231578826904,
-13.30898380279541,
-21.79831886291504,
-8.815281867980957,
-7.292324542999268,
-5.1322150230407715,
0.6270656585693359,
-21.421356201171875,
9.189702987670898,
-19.449851989746094,
-10.988885879516602,
-9.764110565185547,
-4.265657424926758,
2.5801358222961426,
-3.9986987113952637,
-3.4925599098205566,
-3.800337076187134,
-8.405670166015625,
-9.023340225219727,
-0.9057637453079224,
6.861851692199707,
4.989757537841797,
3.736284017562866,
-12.587970733642578,
-3.2735517024993896,
-5.577619552612305,
0.04398750886321068,
5.305631637573242,
-20.118043899536133,
11.723793029785156,
14.325501441955566,
15.049687385559082,
-15.152426719665527,
-12.067561149597168,
-20.12849998474121,
6.127824306488037,
13.048358917236328,
4.547949314117432,
-4.833045482635498,
0.00269849831238389,
6.138298511505127,
-8.43510913848877,
-11.537883758544922,
-17.486326217651367,
-8.106704711914062,
-20.86025619506836,
-13.854215621948242,
-8.059893608093262,
-5.4296064376831055,
-8.532058715820312,
13.901681900024414,
9.720812797546387,
5.711332321166992,
-8.632389068603516,
-2.1798155307769775,
-8.129974365234375,
-16.594194412231445,
-5.039207458496094,
7.330944538116455,
-17.479520797729492,
8.479996681213379,
4.4827189445495605,
-13.361747741699219,
-13.483935356140137,
8.389086723327637,
16.047346115112305,
-5.994091987609863,
9.981818199157715,
-18.055063247680664,
-11.144187927246094,
4.482549667358398,
-3.0540356636047363,
1.9587477445602417,
7.420499801635742,
-3.0480122566223145,
-22.825746536254883,
-15.676806449890137,
8.026690483093262,
-11.78826904296875,
-19.287351608276367,
14.893295288085938,
-0.6170939207077026,
-12.901628494262695,
-22.614418029785156,
-19.28664207458496,
-14.47555160522461,
-9.909201622009277,
15.093172073364258,
5.5508222579956055,
-0.26599085330963135,
-2.4877138137817383,
-21.229747772216797,
-9.946187973022461,
-6.272300720214844,
-6.267658710479736,
-21.950233459472656,
1.4844000339508057,
-16.81714630126953,
-4.205637454986572,
5.106326103210449,
7.698390007019043,
-5.954807758331299,
-9.889069557189941,
1.4989445209503174,
1.1706936359405518,
11.282316207885742,
-1.3105990886688232,
-18.419559478759766,
-15.128167152404785,
-11.439191818237305,
-20.43819808959961,
-3.535677909851074,
-15.017913818359375,
-15.475603103637695,
5.844208717346191,
-20.47682762145996,
-18.921287536621094,
-5.76504373550415,
-2.358778238296509,
1.32660710811615,
0.22410032153129578,
0.29132068157196045,
12.266530990600586,
-5.439911842346191,
-20.15553855895996,
2.9677233695983887,
-15.678437232971191,
-20.886520385742188,
-22.25008201599121,
-20.561141967773438,
-5.605059623718262,
-6.178393840789795,
-6.535098075866699,
-18.49957275390625,
-8.18224048614502,
-4.076755523681641,
-4.118548393249512,
-15.872742652893066,
-22.800636291503906,
-4.572799205780029,
14.710335731506348,
-20.000871658325195,
-20.7696590423584,
-10.28339672088623,
6.3920512199401855,
-20.39809799194336
],
"z": [
-0.10108569264411926,
-1.3320786952972412,
1.1846767663955688,
-6.145211219787598,
-3.8143181800842285,
-3.610626697540283,
-7.2005486488342285,
10.510709762573242,
11.558382987976074,
-5.7147603034973145,
0.8326936960220337,
0.9875006079673767,
10.212896347045898,
-10.193624496459961,
-3.6192076206207275,
-0.08317825943231583,
6.615170478820801,
10.721439361572266,
-1.019471526145935,
5.930372714996338,
-0.6839954853057861,
0.2188045233488083,
11.483194351196289,
4.694631576538086,
12.2535982131958,
8.540185928344727,
5.088161945343018,
-0.415641725063324,
4.104411602020264,
4.44868278503418,
-9.289856910705566,
3.2866249084472656,
2.8769803047180176,
2.4545679092407227,
8.61732006072998,
10.663006782531738,
6.653314590454102,
8.403223037719727,
6.622676849365234,
7.898609161376953,
-4.123480796813965,
-9.87026596069336,
7.960249900817871,
-0.6606125831604004,
10.528164863586426,
11.401843070983887,
4.956323623657227,
-7.927957057952881,
6.042039394378662,
5.084054470062256,
12.407161712646484,
7.695601940155029,
5.101412296295166,
-6.0454254150390625,
5.2012481689453125,
0.751070499420166,
-2.4362406730651855,
-2.6558313369750977,
-4.829274654388428,
-4.252630710601807,
-1.593449354171753,
-7.197192668914795,
-1.0079162120819092,
8.198115348815918,
-7.041589736938477,
8.108421325683594,
-3.4617514610290527,
4.2955780029296875,
3.829505681991577,
-10.571701049804688,
-2.540228843688965,
9.033049583435059,
8.004146575927734,
-7.649381160736084,
2.5051026344299316,
11.307661056518555,
8.601473808288574,
-6.041379451751709,
10.130905151367188,
0.5976725220680237,
-4.491857051849365,
4.808878421783447,
1.5682613849639893,
-5.544286251068115,
-7.274016857147217,
4.672944068908691,
3.446988105773926,
2.3060317039489746,
6.696723461151123,
6.068106651306152,
2.2072839736938477,
-3.05012583732605,
-8.476593017578125,
0.7981153726577759,
-4.950586795806885,
-2.6904988288879395,
7.192147731781006,
0.532845675945282,
-8.817216873168945,
3.343980312347412,
7.732665061950684,
2.3224642276763916,
4.527772903442383,
-2.4887938499450684,
4.4824323654174805,
-10.756179809570312,
3.2788941860198975,
2.8196799755096436,
9.393390655517578,
4.690518379211426,
8.196898460388184,
2.72123384475708,
0.18378567695617676,
0.7061993479728699,
6.866862773895264,
5.897973537445068,
7.330233573913574,
-11.436223983764648,
3.573326349258423,
3.7907352447509766,
10.87667465209961,
-0.9256165027618408,
-1.4082497358322144,
0.2862066924571991,
5.894033908843994,
5.199962615966797,
5.4631547927856445,
-3.0134849548339844,
2.706739664077759,
4.879748821258545,
7.725301742553711,
10.43683910369873,
6.920064449310303,
7.958591938018799,
10.066373825073242,
-1.5057405233383179,
0.9461416006088257,
3.732285499572754,
4.947137355804443,
2.7542896270751953,
6.211213111877441,
-9.415493965148926,
-8.826589584350586,
-6.936818599700928,
-0.2567974328994751,
5.243016719818115,
5.1998395919799805,
4.583522319793701,
7.023775577545166,
6.113866329193115,
3.0052454471588135,
6.93229866027832,
-0.7143437266349792,
8.962858200073242,
7.0237250328063965,
11.353880882263184,
-4.6029558181762695,
-2.9234378337860107,
-8.84376049041748,
-10.902361869812012,
-4.506543159484863,
-4.365151882171631,
-1.5504450798034668,
-7.016907691955566,
11.48379898071289,
-8.015416145324707,
0.8716238737106323,
11.854372024536133,
11.154379844665527,
-11.577226638793945,
6.141946315765381,
-10.55681037902832,
6.424398422241211,
-10.998987197875977,
4.654254913330078,
3.725219249725342,
1.4202289581298828,
-1.5082474946975708,
13.203458786010742,
3.0780863761901855,
8.123027801513672,
-7.643339157104492,
5.260776996612549,
4.956467628479004,
0.1960364133119583,
-9.234563827514648,
0.9444502592086792,
3.1418049335479736,
4.385870933532715,
0.4048950970172882,
11.306178092956543,
11.564921379089355,
7.87028169631958,
6.592396259307861,
-0.433969646692276,
-4.476117134094238,
1.9545261859893799,
-7.769270896911621,
-5.412559509277344,
10.024900436401367,
-6.62973165512085,
5.656369686126709,
11.702876091003418,
-9.14162540435791,
-1.3380160331726074,
4.538671016693115,
-1.7678343057632446,
10.409807205200195,
9.750138282775879,
10.499780654907227,
10.360605239868164,
-8.182446479797363,
-1.6512624025344849,
-10.985913276672363,
-8.125146865844727,
4.817503452301025,
9.96518325805664,
5.865081310272217,
7.935225963592529,
-1.5145210027694702,
1.234737515449524,
-11.1032075881958,
-4.669077396392822,
2.4052202701568604,
-0.30671727657318115,
9.678836822509766,
3.392883777618408,
-10.933870315551758,
-8.354209899902344,
-8.55443286895752,
0.6875478029251099,
1.1375809907913208,
1.2291719913482666,
-2.7488372325897217,
9.149815559387207,
4.968822002410889,
10.170623779296875,
-1.0568078756332397,
3.113128662109375,
7.330911636352539,
-9.14427661895752,
-2.4154531955718994,
5.783006191253662,
-5.643828392028809,
8.981379508972168,
-10.03311824798584,
7.113823413848877,
-9.43239688873291,
3.9533419609069824,
11.640262603759766,
2.724271774291992,
4.182575225830078,
4.951336860656738,
6.427433490753174,
1.6711485385894775,
-0.04866010695695877,
0.40118229389190674,
7.8343048095703125,
11.290926933288574,
7.402419090270996,
2.480677366256714,
-1.0118653774261475,
-7.354190349578857,
3.5133354663848877,
8.39014720916748,
-4.9226484298706055,
3.284583806991577,
0.3816905915737152,
5.59572696685791,
-1.5274637937545776,
5.705495357513428,
-0.9594528675079346,
12.167366027832031,
10.718432426452637,
3.8193469047546387,
3.7791223526000977,
7.040001392364502,
8.870882034301758,
-2.5803301334381104,
-9.992098808288574,
9.200675010681152,
6.761732578277588,
-7.9371185302734375,
-3.9038379192352295,
-3.5011038780212402,
7.409524440765381,
-3.4594297409057617,
8.783146858215332,
-4.117443561553955,
-11.869796752929688,
5.821418285369873,
-7.415217876434326,
-1.439881443977356,
11.165050506591797,
-7.957428455352783,
10.076260566711426,
4.097907066345215,
-6.258166313171387,
3.7398695945739746,
5.463683128356934,
6.762659072875977,
0.5745388269424438,
10.377176284790039,
-1.8197375535964966,
-9.061367988586426,
-3.3849871158599854,
7.5784010887146,
5.678980827331543,
8.345149993896484,
-1.0920071601867676,
8.55890941619873,
1.7303801774978638,
-1.4439468383789062,
3.656100273132324,
-2.865363121032715,
-7.399048328399658,
-6.075589656829834,
3.3159091472625732,
-6.046040058135986,
1.8658244609832764,
-3.4576034545898438,
-11.345396995544434,
10.863791465759277,
-5.149296760559082,
6.940410614013672,
-0.11349782347679138,
-0.24923555552959442,
-6.15567684173584,
10.129779815673828,
3.203188896179199,
-4.69251823425293,
-1.5544673204421997,
2.2221899032592773,
-0.7806015014648438,
-4.695624351501465,
-1.1907200813293457,
11.936113357543945,
3.6533000469207764,
7.937952041625977,
-11.816557884216309,
-2.642957925796509,
10.491774559020996,
4.408855438232422,
4.799047470092773,
2.402787208557129,
4.194555282592773,
-11.727643966674805,
12.469731330871582,
7.026555061340332,
-3.0990991592407227,
-0.742102861404419,
-11.90333080291748,
5.436126232147217,
10.666789054870605,
10.736023902893066,
-11.157302856445312,
-5.592799186706543,
2.491685152053833,
-1.2971417903900146,
12.91325569152832,
7.460082054138184,
5.832983016967773,
10.641209602355957,
-3.130605936050415,
5.075559139251709,
9.151932716369629,
4.203900337219238,
9.519913673400879,
2.7592928409576416,
-2.1617610454559326,
-2.9117867946624756,
-4.662097930908203,
4.193565368652344,
11.767851829528809,
-9.318967819213867,
2.689544916152954,
1.3268721103668213,
-1.5428822040557861,
1.5151546001434326,
11.883232116699219,
10.947863578796387,
-1.1924582719802856,
-5.994887828826904,
0.2712896764278412,
2.321082353591919,
0.5275037884712219,
9.193613052368164,
-8.226920127868652,
-1.1789872646331787,
-1.0305426120758057,
-3.955392360687256,
7.988095283508301,
7.895442962646484,
-9.340829849243164,
5.690938949584961,
4.77790641784668,
2.864291191101074,
3.5920352935791016,
3.528874635696411,
4.614961624145508,
-10.666173934936523,
6.499721050262451,
-6.088404178619385,
-5.887827396392822,
-0.6615261435508728,
-2.2338814735412598,
11.353593826293945,
5.00583553314209,
-10.757067680358887,
-2.154970169067383,
6.320804595947266,
11.647856712341309,
-2.7219109535217285,
-8.936087608337402,
5.124978542327881,
-10.52602481842041,
3.562340259552002,
11.322293281555176,
-3.5064263343811035,
2.555260419845581,
9.461274147033691,
-0.2590288519859314,
-8.365612983703613,
1.8340898752212524,
0.25661876797676086,
-0.5342586040496826,
-6.308675765991211,
-0.5621376633644104,
-7.842465877532959,
-1.2329100370407104,
10.62534236907959,
-8.17825698852539,
-4.747023105621338,
-1.2485556602478027,
-2.4058005809783936,
2.8836464881896973,
5.734105587005615,
-5.499344825744629,
10.46534252166748,
9.508331298828125,
-4.658386707305908,
-8.274106979370117,
-7.340081691741943,
3.443378448486328,
-7.679878234863281,
8.424605369567871,
3.350224018096924,
-10.298040390014648,
-2.2069358825683594,
-6.483325958251953,
3.565119981765747,
9.091511726379395,
-3.3944456577301025,
6.097447872161865,
-1.359862208366394,
0.6344600915908813,
8.875449180603027,
9.315957069396973,
-4.382501602172852,
-7.232370853424072,
-3.265141248703003,
9.268169403076172,
3.8734841346740723,
-9.811864852905273,
8.214438438415527,
3.263928174972534,
5.341325759887695,
7.621574401855469,
-4.851799964904785,
-6.517258167266846,
11.531468391418457,
0.7203953862190247,
7.211198329925537,
6.043517112731934,
-9.09228515625,
3.0625829696655273,
8.206568717956543,
7.308402061462402,
8.781058311462402,
0.24551713466644287,
-1.4055582284927368,
-0.10978929698467255,
7.961122989654541,
1.2122623920440674,
7.700201988220215,
5.056469917297363,
2.8589885234832764,
-2.407456398010254,
-2.043682813644409,
9.898868560791016,
6.277244567871094,
9.484516143798828,
9.421019554138184,
4.691918849945068,
0.2375299632549286,
4.150455951690674,
-1.5763367414474487,
4.268428325653076,
1.9591933488845825,
-1.357804775238037,
-2.629582166671753,
-5.385621070861816,
1.5837509632110596,
-4.4088921546936035,
-10.04824447631836,
-8.923982620239258,
-9.491240501403809,
-2.085223913192749,
-1.3134698867797852,
8.425224304199219,
-4.174927711486816,
7.721937656402588,
1.2937397956848145,
6.725432872772217,
10.97915267944336,
11.91305923461914,
9.717408180236816,
9.040876388549805,
-6.293381690979004,
9.626996040344238,
2.855245590209961,
-5.8268890380859375,
6.253438472747803,
9.82320785522461,
6.33795166015625,
-4.938294410705566,
5.99298095703125,
0.07496374100446701,
5.821017742156982,
-9.506674766540527,
-1.433265209197998,
10.550622940063477,
-1.1485470533370972,
-1.4550447463989258,
2.259145975112915,
-11.096101760864258,
2.0791890621185303,
-0.8473571538925171,
4.619934558868408,
5.956984996795654,
-10.584197998046875,
6.300941467285156,
-1.7168450355529785,
-4.3656721115112305,
11.04827880859375,
3.2766826152801514,
-6.135998249053955,
-2.0297679901123047,
-8.098893165588379,
-7.3554534912109375,
-8.789751052856445,
-0.07548503577709198,
7.127905368804932,
1.6734223365783691,
1.7950196266174316,
-6.498943328857422,
6.908734321594238,
4.872723579406738,
-0.04535055160522461,
2.2323780059814453,
-1.5695499181747437,
1.963776707649231,
-11.934348106384277,
2.975386142730713,
3.282940149307251,
10.286140441894531,
6.986457347869873,
6.871208190917969,
-10.552943229675293,
1.6937330961227417,
11.100190162658691,
1.7519588470458984,
-4.0608625411987305,
7.804531574249268,
1.7125699520111084,
3.437147378921509,
6.629852771759033,
-10.560763359069824,
0.6556082367897034,
7.024553298950195,
-2.0317704677581787,
-7.503467559814453,
-5.478400230407715,
-3.1159842014312744,
-1.5039329528808594,
5.636488437652588,
-9.370237350463867,
-4.732681751251221,
2.4336466789245605,
4.750301361083984,
2.7386417388916016,
1.8821719884872437,
-2.773667097091675,
-3.3663978576660156,
2.644463539123535,
-9.085417747497559,
-3.8082327842712402,
-3.31400990486145,
-2.0650792121887207,
-9.480937004089355,
-1.1854383945465088,
-2.7913358211517334,
5.927158355712891,
-7.568026542663574,
7.16468620300293,
-5.975896835327148,
4.275415897369385,
-2.9222114086151123,
7.816495418548584,
5.96267557144165,
-2.2480223178863525,
10.268084526062012,
1.2181917428970337,
-7.6336469650268555,
-3.231755495071411,
0.9352898001670837,
2.4898855686187744,
-0.49081411957740784,
1.2668009996414185,
-7.904883861541748,
-7.60994815826416,
9.323200225830078,
-10.45605754852295,
-0.2126663476228714,
3.5013091564178467,
-8.196606636047363,
-1.0254579782485962,
4.413210391998291,
4.142457962036133,
6.9774932861328125,
-3.997121810913086,
6.432987213134766,
5.539336204528809,
0.6787248253822327,
-9.496450424194336,
8.944742202758789,
1.4476872682571411,
-0.048681266605854034,
-0.334755003452301,
9.279745101928711,
-3.520164728164673,
2.6497199535369873,
3.802487373352051,
-5.760180950164795,
-4.355262756347656,
-8.02299690246582,
-11.095137596130371,
-7.716859817504883,
6.113090515136719,
1.4509925842285156,
-10.679404258728027,
1.7483751773834229,
7.700628757476807,
6.721712112426758,
3.531437635421753,
0.3762168884277344,
10.330235481262207,
1.2820496559143066,
8.479873657226562,
10.286026954650879,
-5.192421913146973,
-10.093408584594727,
-0.641559898853302,
0.26348310708999634,
-10.453237533569336,
6.6179890632629395,
5.35546875,
2.888359785079956,
-8.12570571899414,
-6.39142370223999,
7.6004862785339355,
7.519011497497559,
-7.256357192993164,
-8.02684497833252,
-3.7243518829345703,
1.8351223468780518,
-8.194409370422363,
-1.795108675956726,
-5.736380100250244,
10.000768661499023,
-5.314847946166992,
7.443195343017578,
-7.694690227508545,
2.2595643997192383,
3.682770013809204,
3.55826997756958,
-10.65491008758545,
-10.060003280639648,
-2.607339859008789,
11.528449058532715,
3.1906354427337646,
-2.215411424636841,
8.173242568969727,
8.307912826538086,
8.792913436889648,
2.478079080581665,
4.949642658233643,
6.117404937744141,
-9.079919815063477,
9.40543270111084,
7.729348659515381,
7.9975104331970215,
-1.3083322048187256,
4.199497222900391,
-2.896611213684082,
11.315217018127441,
4.61775541305542,
-7.440993309020996,
-5.007229328155518,
11.495428085327148,
3.1059136390686035,
2.9495885372161865,
7.103726863861084,
4.880082130432129,
-4.134010314941406,
5.310178756713867,
-2.2814416885375977,
0.552185595035553,
-0.40970730781555176,
2.3093740940093994,
10.800589561462402,
-8.44297981262207,
-1.5521906614303589,
-4.3369011878967285,
-5.172942638397217,
-0.7082445621490479,
-0.8447670936584473,
-8.804136276245117,
9.624025344848633,
11.402494430541992,
2.8503878116607666,
6.321736812591553,
8.856834411621094,
-6.689980506896973,
9.804394721984863,
2.316545009613037,
8.692343711853027,
2.43858003616333,
1.5135942697525024,
-2.268643379211426,
11.935420989990234,
6.325775623321533,
4.300889015197754,
4.0880866050720215,
4.70232629776001,
-9.394242286682129,
4.872675895690918,
4.593988418579102,
12.728047370910645,
-11.548011779785156,
-10.233983993530273,
-1.9167859554290771,
2.1868185997009277,
9.590899467468262,
-10.670745849609375,
2.392578125,
-3.719083786010742,
-3.5224416255950928,
-1.9996473789215088,
10.749732971191406,
10.593948364257812,
-8.587076187133789,
-7.489551544189453,
0.7694379091262817,
-4.0074567794799805,
-2.034802198410034,
4.441579818725586,
-4.176502227783203,
-4.647276878356934,
6.889572620391846,
-2.3405230045318604,
5.353523254394531,
-1.9094780683517456,
1.0681769847869873,
-4.689540386199951,
9.419685363769531,
-8.003792762756348,
11.639759063720703,
11.942436218261719,
-5.779272556304932,
-1.310775637626648,
-1.7681845426559448,
11.303001403808594,
11.979109764099121,
6.699801921844482,
6.437140464782715,
-3.8612890243530273,
-8.271485328674316,
-1.5397694110870361,
-0.7152549028396606,
8.01943588256836,
-2.293402671813965,
0.5811395049095154,
5.985349178314209,
2.068281650543213,
-1.2810765504837036,
-11.88570499420166,
10.59737777709961,
-5.917027473449707,
0.3544389605522156,
-7.513548851013184,
-3.9228522777557373,
1.6855370998382568,
2.410850763320923,
-3.342017650604248,
5.805739402770996,
2.0522987842559814,
1.187731146812439,
-1.8574193716049194,
2.518641710281372,
-6.54575777053833,
1.2476520538330078,
-11.25586223602295,
-3.05496883392334,
3.606503963470459,
1.3820387125015259,
2.508162260055542,
5.538558483123779,
-2.48315167427063,
-4.971424579620361,
-7.107202529907227,
-1.4572579860687256,
4.378786087036133,
0.8467807173728943,
11.728960037231445,
6.165146827697754,
6.744701385498047,
8.054235458374023,
2.537158966064453,
7.694504737854004,
9.753213882446289,
-1.1034754514694214,
-1.1820037364959717,
-9.644976615905762,
-3.606410503387451,
8.228717803955078,
8.822094917297363,
-9.00023078918457,
5.792716979980469,
6.66093111038208,
5.783198356628418,
-0.7658965587615967,
1.0912045240402222,
10.1061429977417,
2.0188639163970947,
6.189460754394531,
-0.6809725165367126,
8.724250793457031,
-3.1258227825164795,
1.3377878665924072,
5.068570137023926,
8.863627433776855,
4.844198226928711,
10.566324234008789,
-6.419060707092285,
-4.350377082824707,
2.164194345474243,
-0.6076493263244629,
-1.5791971683502197,
-0.18640495836734772,
4.340159893035889,
5.038103103637695,
-1.5637874603271484,
3.154371738433838,
6.3890061378479,
10.024662971496582,
0.8141458630561829,
6.612715721130371,
-10.596948623657227,
-7.625089168548584,
-10.02617073059082,
5.232351779937744,
-1.178647756576538,
2.8263068199157715,
-3.6655781269073486,
3.8092997074127197,
-0.10267363488674164,
6.016229629516602,
10.71011734008789,
5.202229022979736,
5.834990501403809,
0.13162435591220856,
5.870999336242676,
-6.2988996505737305,
3.4874532222747803,
0.831289529800415,
3.2346267700195312,
-8.752182006835938,
1.118971586227417,
-8.221609115600586,
8.03900146484375,
5.850950241088867,
-8.740986824035645,
8.28807258605957,
11.954388618469238,
-6.424746513366699,
-1.7831374406814575,
-5.173635482788086,
1.8771384954452515,
1.552409291267395,
5.7795090675354,
-1.5780686140060425,
11.746817588806152,
9.310425758361816,
3.4985218048095703,
-9.977431297302246,
-9.689757347106934,
-8.87677001953125,
-0.8127351403236389,
9.97852897644043,
-3.0241472721099854,
8.413323402404785,
4.648568153381348,
-2.5781569480895996,
10.873115539550781,
8.616379737854004,
8.115739822387695,
-1.3112032413482666,
9.167642593383789,
-9.005398750305176,
-9.231485366821289,
-6.284905910491943,
3.7225518226623535,
5.010636806488037,
1.1419310569763184,
5.813983917236328,
3.2726800441741943,
-7.956785678863525,
8.882092475891113,
3.4966623783111572,
7.438019275665283,
-10.40805721282959,
2.5400142669677734,
0.3722773492336273,
-1.9565380811691284,
12.161144256591797,
-3.784306049346924,
8.263772010803223,
0.8709613084793091,
-5.0782880783081055,
-10.885174751281738,
-3.265632152557373,
-11.1895751953125,
-2.913372039794922,
10.405909538269043,
-6.7851176261901855,
12.061655044555664,
6.266464710235596,
1.8539267778396606,
5.951321125030518,
8.864838600158691,
3.813307285308838,
1.2568773031234741,
9.611291885375977,
4.770369529724121,
3.674428701400757,
-7.711085796356201,
-0.3458154797554016,
-8.325589179992676,
-8.759575843811035,
1.4158694744110107,
-9.2637939453125,
-3.6532533168792725,
2.4985015392303467,
10.080211639404297,
4.749638557434082,
7.605030536651611,
-2.5039331912994385,
-0.013914362527430058,
-5.782843589782715,
5.7297163009643555,
7.39296817779541,
6.810762882232666,
-0.11229029297828674,
5.0675435066223145,
10.857217788696289,
1.9336163997650146,
-10.001495361328125,
4.66912841796875,
-3.2585370540618896,
-6.683281421661377,
2.801793098449707,
-10.060464859008789,
-1.1975972652435303,
-7.823127746582031,
11.163110733032227,
4.795795917510986,
1.6874850988388062,
6.64513635635376,
2.990112066268921,
6.5919575691223145,
-4.272219657897949,
8.930890083312988,
5.925781726837158,
8.438498497009277,
-2.6051993370056152,
-2.7964420318603516,
-1.1053037643432617,
5.055858612060547,
10.686989784240723,
8.839641571044922,
7.7797722816467285,
8.027997970581055,
8.669716835021973,
6.121626853942871,
1.1008766889572144,
11.61316967010498,
7.762577533721924,
1.0087467432022095,
-7.748423099517822,
5.522393703460693,
-3.3315916061401367,
6.081313133239746,
1.4475600719451904,
-9.568174362182617,
2.789039134979248,
6.22224235534668,
6.400308132171631,
-1.6390407085418701,
-0.0797344446182251,
5.857724189758301,
4.8383402824401855,
-10.115869522094727,
-9.543097496032715,
4.981127738952637,
-2.687451124191284,
-3.8213703632354736,
-0.7145088911056519,
-9.359017372131348,
3.163774013519287,
-9.459535598754883,
1.9997305870056152,
9.422828674316406,
5.755462169647217,
-4.071803092956543,
0.36076849699020386,
-4.937737464904785,
-5.500812530517578,
6.581441879272461,
9.41474723815918,
3.754986047744751,
-10.585075378417969,
7.813704967498779,
1.7489439249038696,
-9.15615177154541,
2.565382480621338,
0.295744389295578,
-3.621812582015991,
5.8204240798950195,
-10.618104934692383,
-0.13510236144065857,
-0.1518400013446808,
0.6221190690994263,
2.8931069374084473,
8.949408531188965,
-1.4809842109680176,
12.138537406921387,
1.1699403524398804,
0.4233081340789795,
5.251113414764404,
1.0451388359069824,
2.2580816745758057,
4.943865776062012,
-9.46028995513916,
3.676344394683838,
9.931988716125488,
2.462812662124634,
2.5265822410583496,
-7.775667667388916,
-2.105126142501831,
-11.859786033630371,
-4.907636642456055,
-8.827702522277832,
-2.8457229137420654,
3.5825400352478027,
4.666265487670898,
-1.9479888677597046,
1.8049989938735962,
-6.85900354385376,
7.401147365570068,
-8.362473487854004,
7.196739196777344,
6.439635753631592,
3.2352185249328613,
8.780838966369629,
3.7332231998443604,
8.486618995666504,
-9.76434326171875,
-7.464966297149658,
-0.9787222146987915,
10.932249069213867,
-2.6035115718841553,
6.598329067230225,
1.7673213481903076,
12.170707702636719,
10.887197494506836,
7.517144680023193,
4.4589033126831055,
3.7691640853881836,
-9.412423133850098,
6.742095470428467,
-3.1521639823913574,
-3.697662115097046,
1.358894944190979,
-1.7637683153152466,
4.736544132232666,
-3.2751240730285645,
7.609146595001221,
5.0456976890563965,
-2.359191417694092,
5.692424774169922,
7.00050163269043,
8.211113929748535,
-1.477833867073059,
-2.7507476806640625,
2.3744208812713623,
5.1811041831970215,
4.8692402839660645,
-3.4610042572021484,
-3.3765172958374023,
-4.395551681518555,
-5.170113563537598,
4.0738844871521,
-1.6935838460922241,
8.712701797485352,
5.062421798706055,
4.389196872711182,
1.7447863817214966,
8.464986801147461,
-8.985434532165527,
6.879053592681885,
6.89307975769043,
5.8267927169799805,
-2.1328799724578857,
8.008363723754883,
-4.492440223693848,
5.378074645996094,
0.31882062554359436,
-1.7557411193847656,
7.774409770965576,
5.926355361938477,
6.674612522125244,
3.105921745300293,
-1.4997659921646118,
0.13023987412452698,
6.71304988861084,
8.222267150878906,
-6.405745506286621,
9.27451229095459,
1.5901923179626465,
-11.163199424743652,
-7.78353214263916,
11.521900177001953,
11.91407585144043,
8.742188453674316,
-9.158222198486328,
-5.218155384063721,
0.2987824082374573,
4.121226787567139,
-9.527409553527832,
-0.2894698679447174,
-10.17101001739502,
-2.7090704441070557,
-2.7828924655914307,
7.893779754638672,
6.66933012008667,
10.998566627502441,
2.885179042816162,
-1.321334719657898,
2.020536184310913,
6.397685527801514,
12.604950904846191,
4.830206394195557,
0.6447248458862305,
4.115939140319824,
-5.388404846191406,
-9.93024730682373,
7.313292026519775,
-4.704586982727051,
6.062078952789307,
-0.37995845079421997,
0.2333257794380188,
-7.673645496368408,
-10.267541885375977,
-1.8799577951431274,
10.058510780334473,
-4.884994029998779,
-0.13909880816936493,
5.590255260467529,
0.514853835105896,
-9.281497955322266,
1.0778536796569824,
3.83789324760437,
-11.594769477844238,
10.849392890930176,
11.41616153717041,
2.7298452854156494,
11.134029388427734,
-3.7908706665039062,
-0.295999139547348,
5.856377124786377,
-1.0592201948165894,
3.5250158309936523,
-0.0031979354098439217,
-9.558916091918945,
-10.977314949035645,
5.100015163421631,
-1.100524663925171,
-5.167412757873535,
-6.058441638946533,
-8.047082901000977,
9.775589942932129,
-4.593545913696289,
-7.434829235076904,
2.961001396179199,
2.001377582550049,
6.489343643188477,
-4.596673488616943,
1.0529705286026,
10.07780933380127,
3.6652626991271973,
10.613566398620605,
8.043291091918945,
3.650486469268799,
2.8667802810668945,
4.802052974700928,
8.408016204833984,
-10.778583526611328,
7.989284515380859,
0.6715695261955261,
0.8251329064369202,
8.716094017028809,
0.03788714110851288,
3.864060878753662,
4.005046367645264,
0.8923118710517883,
-3.0650784969329834,
-10.05306625366211,
7.936773777008057,
8.07125473022461,
-11.059794425964355,
-7.9920783042907715,
0.35068362951278687,
6.268434047698975,
10.250720024108887,
8.80921745300293,
1.3377130031585693,
-2.5243752002716064,
3.0211360454559326,
-10.00009822845459,
1.7887232303619385,
-9.96337604522705,
0.29684215784072876,
6.427492618560791,
3.714507579803467,
-10.713977813720703,
5.2991251945495605,
-3.1397979259490967,
9.369400024414062,
4.4774885177612305,
5.87175989151001,
3.2148048877716064,
2.7196037769317627,
5.662563800811768,
1.4645687341690063,
1.9368233680725098,
-6.524567604064941,
10.746091842651367,
1.17879319190979,
1.9205025434494019,
1.8007971048355103,
0.2172664999961853,
-10.379266738891602,
0.8677970170974731,
3.219566822052002,
-1.031734585762024,
7.415016174316406,
3.1221299171447754,
4.205454349517822,
5.80007791519165,
3.8475542068481445,
-9.154342651367188,
6.384548664093018,
-5.388553142547607,
-1.4382574558258057,
6.3281402587890625,
-0.637773334980011,
7.380923748016357,
-0.3001764714717865,
1.0480278730392456,
-2.053382635116577,
-4.484288692474365,
8.788665771484375,
4.698363780975342,
2.9189300537109375,
3.5804693698883057,
6.423023223876953,
0.2341926097869873,
6.246577739715576,
-1.580967664718628,
3.278428554534912,
5.245702743530273,
2.5032143592834473,
7.996181011199951,
5.53495454788208,
-7.016215801239014,
-9.813586235046387,
8.22445297241211,
3.3196020126342773,
3.8891985416412354,
7.925205707550049,
3.785710334777832,
6.0997443199157715,
0.7142560482025146,
-9.064656257629395,
5.196681022644043,
3.204543113708496,
9.89670181274414,
2.7412359714508057,
4.234091281890869,
-2.189222812652588,
6.954840660095215,
6.80820369720459,
11.503347396850586,
0.06716953217983246,
8.742757797241211,
-8.694587707519531,
1.0490202903747559,
1.7606213092803955,
-2.6819519996643066,
-2.6452600955963135,
1.6666736602783203,
4.542516708374023,
-8.17945384979248,
-1.559521198272705,
1.4338984489440918,
-3.9514472484588623,
-1.580453872680664,
-0.8939836621284485,
1.0935472249984741,
1.0946605205535889,
-3.9855966567993164,
-8.372173309326172,
-10.060868263244629,
-8.485268592834473,
0.23684987425804138,
-8.37144660949707,
-7.910293102264404,
-7.4368767738342285,
-4.195353984832764,
-1.0768102407455444,
-1.1001604795455933,
-3.9201149940490723,
-11.151551246643066,
-0.6791710257530212,
-11.090893745422363,
-1.4454680681228638,
2.740976095199585,
0.9096106290817261,
-2.46390962600708,
0.908656895160675,
2.7455191612243652,
-2.4631104469299316,
-7.489827632904053,
-2.5043225288391113,
6.711445331573486,
9.901259422302246,
-4.342985153198242,
-1.4635605812072754,
-1.6664562225341797,
1.14606511592865,
-8.042662620544434,
-2.5517795085906982,
-2.5516271591186523,
2.497119903564453,
-4.4889349937438965,
5.0912089347839355,
-2.603043556213379,
5.090970993041992,
8.509350776672363,
-4.490882396697998,
-10.188054084777832,
6.648442268371582,
6.517911911010742,
8.512527465820312,
4.076132297515869,
5.858694076538086,
6.291328430175781,
-5.564700603485107,
6.616283893585205,
2.943398952484131,
-7.704836845397949,
6.216872215270996,
7.594242095947266,
-10.566938400268555,
-8.73214054107666,
0.6223392486572266,
-5.117813587188721,
-2.502206802368164,
3.7282116413116455,
9.179632186889648,
6.5023651123046875,
5.648547649383545,
10.308980941772461,
-2.7904884815216064,
5.207679748535156,
3.7743496894836426,
5.982165336608887,
-9.380780220031738,
5.326550483703613,
-2.120098352432251,
-1.4551445245742798,
6.80225944519043,
5.679903984069824,
-10.065572738647461,
4.265291213989258,
0.31576672196388245,
-7.625188827514648,
1.830701470375061,
-3.2686257362365723,
0.528074324131012,
-0.7838684916496277,
5.7274041175842285,
7.792256832122803,
0.6346116065979004,
-1.3180829286575317,
-1.5351887941360474,
-5.392029762268066,
7.866329669952393,
9.0432710647583,
0.9095494151115417,
9.179715156555176,
-5.50508975982666,
3.728963851928711,
3.7288239002227783,
0.9142526984214783,
-3.39046573638916,
2.5183892250061035,
2.5175228118896484,
4.745959758758545,
-10.259182929992676,
4.777425289154053,
-9.332574844360352,
3.8800220489501953,
0.8915539383888245,
3.8323447704315186,
-4.094710350036621,
-4.091198921203613,
2.5105032920837402,
-5.396043300628662,
3.8319435119628906,
3.8328990936279297,
-0.6702368259429932,
0.36365610361099243,
-8.25891399383545,
4.005022048950195,
-9.99433422088623,
4.2880754470825195,
1.9563838243484497,
-2.127373218536377,
1.5057069063186646,
4.57061243057251,
-1.2159382104873657,
4.042639255523682,
-9.35586929321289,
-1.3521318435668945,
-2.1874728202819824,
0.14087235927581787,
2.7621946334838867,
2.6400656700134277,
1.1350858211517334,
11.510624885559082,
-5.535800933837891,
-0.7939324378967285,
-1.3256181478500366,
-1.702346920967102,
-0.1684267669916153,
1.8475863933563232,
6.731565952301025,
3.10653018951416,
0.92279452085495,
10.570687294006348,
6.776674747467041,
9.300780296325684,
2.2188923358917236,
-0.922493577003479,
1.993393063545227,
-5.2464470863342285,
2.2464349269866943,
3.5301313400268555,
8.786438941955566,
1.5262086391448975,
10.628501892089844,
-0.8375457525253296,
6.415586948394775,
-0.7959580421447754,
-5.716577529907227,
-5.337289333343506,
2.1127288341522217,
-2.535522699356079,
6.264030933380127,
8.572284698486328,
0.17621546983718872,
-0.8341425061225891,
3.131540536880493,
6.6826372146606445,
-10.654928207397461,
-1.1843081712722778,
-9.923723220825195,
-1.6732712984085083,
5.758458137512207,
-2.802985668182373,
2.7701237201690674,
-10.9070405960083,
-2.656450033187866,
-6.262084007263184,
5.840158462524414,
1.4354336261749268,
8.803840637207031,
-5.062806606292725,
4.697410583496094,
-1.3580348491668701,
3.183120012283325,
5.7725090980529785,
-1.5079644918441772,
0.20742358267307281,
-0.0692097470164299,
3.816051959991455,
4.93568229675293,
-1.5581159591674805,
-2.5556750297546387,
-2.055265426635742,
-2.265209436416626,
-4.089170455932617,
8.42570972442627,
11.61533260345459,
6.485445022583008,
6.71000862121582,
4.552496910095215,
8.382830619812012,
1.9433337450027466,
2.1236746311187744,
-7.853133201599121,
-7.852623462677002,
4.496189117431641,
-10.80610466003418,
0.4792942404747009,
-7.778717041015625,
2.4626097679138184,
-2.3403308391571045,
-7.560118675231934,
1.9642513990402222,
0.35280174016952515,
5.436074733734131,
2.5366978645324707,
-2.5511207580566406,
-2.836117744445801,
1.1440056562423706,
6.291220664978027,
-7.369211196899414,
1.2609984874725342,
9.56235122680664,
8.110318183898926,
2.4712276458740234,
3.7255160808563232,
4.628361701965332,
-4.797371864318848,
-4.925709247589111,
7.08870792388916,
2.4692482948303223,
-0.2372661530971527,
1.1735882759094238,
7.78622579574585,
-0.8521478772163391,
-8.177406311035156,
-5.76835298538208,
-1.5493279695510864,
9.03302001953125,
0.4254402220249176,
-10.458380699157715,
-5.0987396240234375,
3.725257158279419,
1.0465757846832275,
2.371023654937744,
2.3705027103424072,
-3.110797166824341,
7.451844692230225,
9.928051948547363,
8.915148735046387,
11.101168632507324,
1.4726438522338867,
2.3710436820983887,
-3.7383551597595215,
9.776566505432129,
3.7250027656555176,
3.5973570346832275,
-1.272460699081421,
2.199063539505005,
3.121673345565796,
10.936590194702148,
-10.953400611877441,
-1.4837888479232788,
9.268948554992676,
10.024774551391602,
-7.1805315017700195,
2.103382110595703,
12.175415992736816,
6.120291709899902,
4.902105331420898,
0.5150784254074097,
-6.160800933837891,
5.197566032409668,
10.866788864135742,
-9.224082946777344,
4.191237449645996,
5.667531490325928,
2.1261684894561768,
2.227081298828125,
2.284609794616699,
-2.8541269302368164,
-5.7540178298950195,
7.905145645141602,
8.294694900512695,
-9.994710922241211,
3.3763949871063232,
2.4580202102661133,
0.063898965716362,
7.520586967468262,
6.39976167678833,
-7.994532108306885,
-10.478511810302734,
4.49440860748291,
-7.506707668304443,
3.8805017471313477,
11.668810844421387,
6.7190165519714355,
2.3710412979125977,
4.7806172370910645,
3.9763102531433105,
2.005924940109253,
3.182460069656372,
-10.501363754272461,
-7.922399044036865,
-1.1078898906707764,
0.06350069493055344,
3.3973753452301025,
-6.9278740882873535,
2.236098051071167,
-1.5394855737686157,
7.472930431365967,
0.19136732816696167,
-2.6199047565460205,
-6.007200241088867,
5.215040683746338,
9.93946361541748,
0.1684032380580902,
-0.20043517649173737,
0.5239128470420837,
8.388274192810059,
5.165798187255859,
2.7465813159942627,
7.705008029937744,
10.168421745300293,
-6.853206157684326,
11.420193672180176,
8.355833053588867,
-10.492498397827148,
2.9325222969055176,
4.6189069747924805,
8.475188255310059,
-0.376991868019104,
-3.827183961868286,
-1.8273528814315796,
2.570145606994629,
7.974335193634033,
-10.44055461883545,
-11.883319854736328,
-1.3153972625732422,
-8.458378791809082,
-11.056116104125977,
7.711781978607178,
-3.4716577529907227,
5.460859775543213,
1.8145151138305664,
4.009548664093018,
5.553875923156738,
2.588778018951416,
5.3329596519470215,
8.466377258300781,
-9.368818283081055,
-8.073118209838867,
-0.09437710791826248,
4.811385631561279,
1.9258480072021484,
2.209740161895752,
-2.0970585346221924,
5.284278869628906,
4.415031433105469,
2.5300779342651367,
3.438082218170166,
0.652086615562439,
3.260249376296997,
5.5347580909729,
2.1902966499328613,
0.18554630875587463,
2.6858081817626953,
7.650186061859131,
-9.545241355895996,
7.1815876960754395,
-10.507465362548828,
8.514351844787598,
-3.8527517318725586,
-10.091318130493164,
2.3679234981536865,
-1.504092812538147,
-5.795525074005127,
-5.627025604248047,
5.246705532073975,
5.06648588180542,
7.374458312988281,
8.000555038452148,
-10.134247779846191,
1.5328600406646729,
6.2525739669799805,
-5.026554107666016,
-5.639956951141357,
1.895424723625183,
6.157327651977539,
1.9650886058807373,
2.438682794570923,
-9.70408821105957,
12.139181137084961,
4.388473987579346,
-8.34811019897461,
-7.943479537963867,
2.4121906757354736,
3.8225224018096924,
2.507343053817749,
1.9540083408355713,
9.945466995239258,
3.680190086364746,
-3.7122690677642822,
9.765554428100586,
-5.515655994415283,
3.046293020248413,
-9.667410850524902,
-11.163553237915039,
0.6061325669288635,
4.160729885101318,
5.774470806121826,
2.305065393447876,
0.27528393268585205,
4.57861328125,
-4.234130382537842,
-7.940286159515381,
5.370147228240967,
5.566920757293701,
1.02790367603302,
6.889766216278076,
8.602401733398438,
-9.240795135498047,
8.751309394836426,
7.0631818771362305,
3.5920538902282715,
9.34423828125,
8.921324729919434,
1.1850025653839111,
1.8032939434051514,
6.721628665924072,
5.621257305145264,
-4.617437362670898,
-2.2789807319641113,
-7.525066375732422,
1.5078401565551758,
10.582986831665039,
7.341808795928955,
3.750356674194336,
2.8414134979248047,
0.2078448086977005,
-6.867071151733398,
5.108635425567627,
-2.4131243228912354,
5.585761070251465,
2.53120756149292,
9.447701454162598,
9.862235069274902,
5.157796859741211,
11.434040069580078,
0.5563125014305115,
-5.113410949707031,
3.9063405990600586,
-2.4465508460998535,
7.658650875091553,
-3.79418683052063,
3.2896759510040283,
4.222687244415283,
1.9156169891357422,
-2.846026659011841,
-2.771765947341919,
5.3886494636535645,
7.7999749183654785,
3.330333948135376,
5.950736045837402,
4.849111080169678,
-1.3578994274139404,
-7.473356246948242,
-9.384270668029785,
-4.903476238250732,
3.0431699752807617,
3.4661355018615723,
6.655372619628906,
-7.768616199493408,
-3.2303152084350586,
8.718475341796875,
-2.050182580947876,
2.671750783920288,
-10.081598281860352,
0.7984377145767212,
-5.590061664581299,
8.182211875915527,
4.386384010314941,
-9.204546928405762,
8.402730941772461,
2.880906820297241,
-8.371687889099121,
-3.0779523849487305,
-2.9113731384277344,
-0.8824942111968994,
-10.649433135986328,
4.802188396453857,
0.3343537449836731,
4.310400009155273,
-6.918211936950684,
-5.920355319976807,
4.246824741363525,
0.09217201918363571,
-11.38017749786377,
4.728384494781494,
5.881133556365967,
-9.800568580627441,
-10.324462890625,
3.3176283836364746,
3.012711763381958,
-3.3357462882995605,
1.9379768371582031,
5.895852565765381,
10.337146759033203,
0.1759093850851059,
2.7011523246765137,
-2.2729978561401367,
0.9731439352035522,
4.410577774047852,
-7.584885120391846,
5.550447463989258,
1.1883383989334106,
-0.5366218090057373,
2.635669469833374,
3.2815756797790527,
-9.318673133850098,
7.806027889251709,
-9.969977378845215,
6.387277126312256,
12.704288482666016,
-1.4393266439437866,
-5.906774044036865,
-2.373962879180908,
4.445630073547363,
-5.090475559234619,
4.9443230628967285,
8.488260269165039,
11.682103157043457,
12.718571662902832,
10.181656837463379,
3.7265424728393555,
9.62297248840332,
8.603187561035156,
1.5762534141540527,
8.724827766418457,
-2.792536735534668,
-1.5505634546279907,
-3.100297451019287,
5.465449333190918,
-7.147351264953613,
7.186388969421387,
-7.235927581787109,
12.986616134643555,
10.888108253479004,
8.290604591369629,
7.86137580871582,
-0.5197180509567261,
5.676994323730469,
3.578423023223877,
11.72787094116211,
-5.051109313964844,
1.0033704042434692,
-1.0750864744186401,
12.98017692565918,
6.661254405975342,
-7.494827747344971,
8.915223121643066,
9.02513313293457,
-10.078333854675293,
10.698651313781738,
8.46321964263916,
12.73707103729248,
6.256989479064941,
8.025392532348633,
-4.9310479164123535,
7.591546535491943,
7.799042701721191,
-1.1048510074615479,
4.211386680603027,
8.233466148376465,
-5.931857109069824,
-5.888119220733643,
-1.2388125658035278,
9.447090148925781,
13.182097434997559,
10.742313385009766,
2.4524269104003906,
0.8912588357925415,
11.955140113830566,
5.339721202850342,
5.060757160186768,
-11.719439506530762,
-3.0651185512542725,
3.085702657699585,
-7.544216632843018,
5.362245082855225,
9.331636428833008,
4.465355396270752,
11.636780738830566,
11.324374198913574,
9.280583381652832,
8.127374649047852,
-1.394926905632019,
5.650511741638184,
6.351723670959473,
10.07048225402832,
2.3568944931030273,
4.4248528480529785,
1.5434273481369019,
0.537826657295227,
12.502902030944824,
-2.9316067695617676,
4.397207736968994,
11.905988693237305,
-11.197168350219727,
-5.80136251449585,
7.346563339233398,
3.071662425994873,
2.5200071334838867,
12.648506164550781,
6.344699382781982,
10.352253913879395,
-5.748117446899414,
-4.801440238952637,
11.67728042602539,
-3.136305809020996,
11.617447853088379,
3.2921571731567383,
-0.32857057452201843,
0.3101844787597656,
7.741036415100098,
12.705962181091309,
10.930458068847656,
4.380655765533447,
8.369075775146484,
12.511021614074707,
6.531055927276611,
7.265639305114746,
11.6810884475708,
9.167444229125977,
5.177399158477783,
11.272015571594238,
-0.23981158435344696,
-0.05965881422162056,
3.4932377338409424,
6.858632564544678,
7.475298881530762,
12.450643539428711,
-5.374130725860596,
6.958597183227539,
8.542386054992676,
5.64966344833374,
2.5340449810028076,
7.5235514640808105,
9.037760734558105,
2.2498679161071777,
8.804397583007812,
-8.641021728515625,
8.476232528686523,
8.689334869384766,
10.816203117370605,
6.177328109741211,
-1.5638006925582886,
7.891719818115234,
-6.7701520919799805,
-7.7378973960876465,
-1.7928439378738403,
12.647371292114258,
-9.923142433166504,
11.689900398254395,
-0.2266550213098526,
8.644659042358398,
4.134132385253906,
0.5432597994804382,
6.677557945251465,
0.8263612985610962,
0.2532787621021271,
7.23879337310791,
-8.334274291992188,
10.965251922607422,
9.356276512145996,
10.08718204498291,
11.55730152130127,
6.825535774230957,
2.040602445602417,
-1.1130765676498413,
5.714632034301758,
0.2464287281036377,
2.399083137512207,
-5.049767971038818,
6.376114368438721,
-7.334691047668457,
-7.682368278503418,
-0.49791839718818665,
-1.2719807624816895,
-5.017579555511475,
-6.31783390045166,
11.446907043457031,
6.579875946044922,
4.528868675231934,
4.13889217376709,
4.5356597900390625,
-1.7894929647445679,
10.413718223571777,
-4.397770881652832,
8.751668930053711,
5.245400428771973,
5.879044055938721,
7.069237232208252,
-2.366830825805664,
0.3493874669075012,
3.4502511024475098,
6.968753814697266,
-1.3354287147521973,
2.96604061126709,
-2.3835959434509277,
-4.274516582489014,
-7.436435699462891,
-10.286023139953613,
-7.877686023712158,
-6.970239639282227,
-7.375387668609619,
2.078296661376953,
-1.9765552282333374,
-1.1051275730133057,
-5.236006259918213,
7.522087574005127,
2.308828592300415,
-5.890845775604248,
5.253262519836426,
-6.3517045974731445,
-11.062932968139648,
12.494853973388672,
1.5290294885635376,
-6.426920413970947,
-9.68060302734375,
9.337467193603516,
5.056053161621094,
-1.0766619443893433,
-10.457575798034668,
6.398013591766357,
-9.864726066589355,
0.8023715019226074,
-2.8877062797546387,
-1.7215166091918945,
-4.342253684997559,
-9.396198272705078,
3.4800357818603516,
-6.504748821258545,
-11.61184024810791,
-9.651681900024414,
1.3710719347000122,
-7.995677947998047,
-10.842877388000488,
6.058631420135498,
-8.389698028564453,
6.081323623657227,
5.525728702545166,
6.237651348114014,
6.601667404174805,
-0.7622056007385254,
7.513720989227295,
4.0458879470825195,
-11.872132301330566,
-0.6202660202980042,
-10.648004531860352,
-10.946300506591797,
-5.029802322387695,
-0.43889960646629333,
6.518562316894531,
-7.04060697555542,
-9.58084774017334,
1.570654034614563,
5.100613594055176,
-10.283206939697266,
-2.250948190689087,
-9.015472412109375,
2.461400270462036,
9.505960464477539,
-11.913321495056152,
4.335107326507568,
-2.8971545696258545,
-4.412150859832764,
-11.827098846435547,
-1.7319172620773315,
5.912793159484863,
2.2135257720947266,
-7.445024490356445,
5.015847206115723,
-7.770761013031006,
-2.429187536239624,
-9.2308988571167,
8.213868141174316,
-10.173076629638672,
-6.774086952209473,
-5.5597243309021,
4.890383720397949,
-9.562472343444824,
4.325201511383057,
-7.588355541229248,
-3.2322921752929688,
5.283764362335205,
-3.6226882934570312,
3.1579272747039795,
5.1663665771484375,
6.3227081298828125,
2.686509370803833,
-4.592344284057617,
4.554522514343262,
4.257832050323486,
-2.16943621635437,
0.12051549553871155,
-4.326171398162842,
9.023369789123535,
-0.6540048122406006,
-10.475690841674805,
8.893558502197266,
-10.653738021850586,
-2.310251235961914,
-7.039421558380127,
-0.02342130057513714,
5.244701862335205,
-9.511274337768555,
-3.520156145095825,
-9.508992195129395,
-4.140322208404541,
-7.740704536437988,
-9.191272735595703,
9.200435638427734,
6.986152648925781,
5.852835178375244,
-1.4599493741989136,
-11.068682670593262,
-3.804755687713623,
10.223167419433594,
12.81464672088623,
11.508028984069824,
-7.660604476928711,
6.553268909454346,
11.763777732849121,
-4.078653335571289,
12.87385082244873,
5.584650039672852,
9.240626335144043,
3.9468860626220703,
4.346253395080566,
-3.57407546043396,
9.37022876739502,
8.371159553527832,
12.612031936645508,
-5.229232311248779,
10.740377426147461,
7.375685691833496,
2.7212531566619873,
5.386752605438232,
-2.377997636795044,
-1.6071335077285767,
-2.5636048316955566,
2.3085649013519287,
9.687080383300781,
5.50171422958374,
10.829914093017578,
10.30490493774414,
9.689146995544434,
-4.617678642272949,
8.32450008392334,
-6.0199809074401855,
-6.132778167724609,
-5.628347873687744,
-11.391231536865234,
-1.6866276264190674,
-2.437138080596924,
6.8877644538879395,
7.168837547302246,
1.79098641872406,
-2.8471856117248535,
-2.7592413425445557,
8.088289260864258,
-8.22946834564209,
-9.242803573608398,
11.8087797164917,
11.9271821975708,
4.785950183868408,
10.891162872314453,
12.288583755493164,
-6.890189170837402,
-10.708264350891113,
7.508594036102295,
0.4592633545398712,
2.9041311740875244,
6.26180362701416,
12.428254127502441,
2.7856621742248535,
-0.2259809523820877,
-4.8549909591674805,
5.7589640617370605,
5.358313083648682,
-10.685358047485352,
-2.001729726791382,
11.376794815063477,
3.304307460784912,
7.451859474182129,
-2.942058801651001,
13.177831649780273,
9.521820068359375,
-4.725052833557129,
13.041279792785645,
-4.819300174713135,
-10.503461837768555,
-2.5142104625701904,
-2.117560386657715,
-3.1294806003570557,
3.1209025382995605,
8.931427001953125,
-5.294922351837158,
0.4393671154975891,
2.5165278911590576,
2.230280876159668,
7.670793533325195,
11.87341594696045,
-1.7774097919464111,
-8.903671264648438,
-6.67202091217041,
4.835977077484131,
1.0459078550338745,
-1.4975186586380005,
-4.262887001037598,
5.482348442077637,
-1.9886060953140259,
-8.963492393493652,
4.869837760925293,
-7.045924663543701,
11.25,
-9.089027404785156,
-9.386631965637207,
7.612057209014893,
-7.340662002563477,
-7.100748538970947,
0.6319059133529663,
7.671667098999023,
-1.8172816038131714,
-1.8017528057098389,
7.5970563888549805,
-0.6566662788391113,
-7.756256103515625,
3.020155668258667,
-4.1760358810424805,
4.9016852378845215,
-6.926907539367676,
-1.74836003780365,
-1.3382993936538696,
8.930545806884766,
3.6763341426849365,
-0.8122031688690186,
-0.7106522917747498,
0.3286990821361542,
11.376139640808105,
8.300429344177246,
3.5751359462738037,
10.045113563537598,
0.090762197971344,
8.040224075317383,
11.301920890808105,
-2.054628610610962,
-2.2924654483795166,
-3.483064889907837,
7.209756374359131,
7.9502081871032715,
5.22614860534668,
2.738901138305664,
3.6103708744049072,
5.4679765701293945,
2.957552194595337,
5.82698392868042,
1.9053699970245361,
-3.360952615737915,
-1.798532485961914,
12.334670066833496,
5.315886974334717,
8.172737121582031,
2.35005521774292,
4.227653980255127,
-7.8542656898498535,
-5.066082954406738,
-11.156425476074219,
8.482823371887207,
8.891914367675781,
4.603394031524658,
-0.8436428904533386,
-2.35965895652771,
-4.2955522537231445,
-9.061142921447754,
0.34656625986099243,
-2.5783066749572754,
-2.729950189590454,
12.1889009475708,
10.18164348602295,
-2.4298229217529297,
12.225576400756836,
-6.522464275360107,
-3.2692031860351562,
-2.581953525543213,
3.9859044551849365,
4.618997573852539,
-2.1760895252227783,
3.299987316131592,
-7.057212829589844,
11.902876853942871,
2.6369762420654297,
0.28126999735832214,
9.020719528198242,
5.456267356872559,
-1.4550939798355103,
11.15210247039795,
0.404155433177948,
8.691227912902832,
2.022442102432251,
3.0770468711853027,
-2.689040184020996,
11.612332344055176,
-3.424151659011841,
9.636579513549805,
9.839439392089844,
13.010605812072754,
11.44454574584961,
8.568376541137695,
0.7511125206947327,
8.156859397888184,
1.9058938026428223,
10.25047492980957,
11.615264892578125,
8.121922492980957,
-4.102965831756592,
-4.41644287109375,
6.893364906311035,
-5.421509265899658,
12.521918296813965,
11.90657901763916,
6.767307758331299,
3.0057332515716553,
2.2575058937072754,
-1.9486421346664429,
-5.091929912567139,
-4.830163478851318,
-1.538682222366333,
-3.2857327461242676,
5.97843074798584,
8.224930763244629,
6.149949550628662,
10.699592590332031,
8.124330520629883,
0.31581661105155945,
-1.4539768695831299,
4.636802673339844,
-5.522873878479004,
7.017519474029541,
5.677221775054932,
8.470683097839355,
3.747152090072632,
2.8132004737854004,
-1.447088360786438,
12.965336799621582,
11.75328540802002,
-7.270782947540283,
-8.891973495483398,
12.099507331848145,
0.5236868858337402,
-1.5840706825256348,
8.301922798156738,
12.41489028930664,
10.13376522064209,
9.370491981506348,
-5.178602695465088,
6.834889888763428,
12.698212623596191,
3.683107614517212,
12.580153465270996,
-1.4539896249771118,
6.584498882293701,
7.252109050750732,
-4.968937397003174,
8.0469388961792,
11.809454917907715,
9.599133491516113,
1.5161528587341309,
3.3931686878204346,
-1.6539697647094727,
-2.8897204399108887,
12.189295768737793,
1.4657198190689087,
3.288773775100708,
-4.64649772644043,
-10.652384757995605,
-5.102218151092529,
1.2202388048171997,
9.836600303649902,
-3.8299057483673096,
10.381176948547363,
4.633244514465332,
4.281302452087402,
10.526986122131348,
-3.0646049976348877,
-3.261073350906372,
-3.9520556926727295,
3.797461748123169,
7.640444755554199,
-7.247689247131348,
1.5205250978469849,
7.285487174987793,
-1.2167043685913086,
8.96068286895752,
-8.134086608886719,
8.630622863769531,
11.223782539367676,
9.696831703186035,
4.148774147033691,
-0.22931642830371857,
7.047412395477295,
7.812422275543213,
-7.934554100036621,
-2.9476611614227295,
1.1273289918899536,
-0.507727861404419,
10.372814178466797,
3.9843530654907227,
6.06422758102417,
-2.347177267074585,
-2.283715009689331,
-8.696466445922852,
-8.08013916015625,
9.92544937133789,
9.103376388549805,
5.171149253845215,
4.881505966186523,
11.3666353225708,
-5.351723670959473,
-10.628305435180664,
12.747185707092285,
-8.939263343811035,
8.859846115112305,
-8.755330085754395,
3.6843411922454834,
-11.16215705871582,
-7.026844024658203,
5.783603668212891,
-5.5540642738342285,
-11.380328178405762,
-3.507549524307251,
6.390797138214111,
-1.6625964641571045,
-6.0248918533325195,
3.5162620544433594,
-9.717852592468262,
1.094038963317871,
-6.2062177658081055,
0.5703960657119751,
3.750845193862915,
4.85914945602417,
-3.9025309085845947,
5.722042560577393,
-6.251776218414307,
-9.269403457641602,
-4.436550140380859,
-1.8793002367019653,
7.8556904792785645,
3.7007808685302734,
2.8004398345947266,
-7.799116611480713,
2.461811065673828,
0.14398257434368134,
-5.523372650146484,
-8.957844734191895,
-9.863921165466309,
1.7375123500823975,
6.246057510375977,
-3.520144462585449,
-9.358549118041992,
-11.515830039978027,
3.834334373474121,
0.8914404511451721,
8.145837783813477,
11.156728744506836,
-10.701313018798828,
7.832241535186768,
3.4965827465057373,
-11.090730667114258,
-11.10991382598877,
6.774996280670166,
-1.2989795207977295,
5.702863693237305,
-9.167819023132324,
-7.569471836090088,
-6.0521392822265625,
-3.8771281242370605,
-7.671043872833252,
4.875244140625,
-1.9302513599395752,
1.3246716260910034,
-9.780577659606934,
-7.635881423950195,
-6.168527126312256,
-3.195873260498047,
-7.011342525482178,
-6.92063045501709,
-9.946288108825684,
-5.891665458679199,
3.222471237182617,
-4.054166793823242,
8.736705780029297,
4.515949249267578,
-8.08376407623291,
-3.8782849311828613,
-0.8975560069084167,
-9.792805671691895,
0.785453736782074,
-4.0696187019348145,
-0.7598801851272583,
-9.56814956665039,
-2.5084218978881836,
0.7111130356788635,
-6.753811359405518,
0.18427126109600067,
-1.6316324472427368,
-1.9936307668685913,
4.046103000640869,
-6.040766716003418,
5.47804069519043,
-5.466455936431885,
3.609488010406494,
-7.887093544006348,
-4.262643814086914,
-10.724218368530273,
-10.795194625854492,
-7.039603233337402,
0.8306387662887573,
-10.483223915100098,
1.2760071754455566,
-4.493346214294434,
-5.154190540313721,
-1.2952202558517456,
10.095208168029785,
2.119908332824707,
-9.166797637939453,
-6.670502662658691,
-7.495987415313721,
0.2468324601650238,
-7.859233856201172,
-8.177053451538086,
5.140228271484375,
-7.265893936157227,
-10.308209419250488,
-8.900477409362793,
-5.4942626953125,
1.2704378366470337,
-3.3403971195220947,
-3.120713472366333,
2.873283863067627,
-10.329474449157715,
1.3678053617477417,
2.0551228523254395,
-7.552422046661377,
4.3479108810424805,
7.339791297912598,
1.9150763750076294,
4.331776142120361,
4.046692371368408,
5.758304595947266,
-7.947969913482666,
-10.484484672546387,
-9.625804901123047,
-10.506011009216309,
2.1533432006835938,
-3.545858383178711,
-5.312252521514893,
-0.736721396446228,
1.7246052026748657,
-10.04732608795166,
-2.6790616512298584,
2.6383256912231445,
6.08405876159668,
-10.30034065246582,
0.07467687875032425,
1.460923671722412,
3.605442523956299,
-4.301640033721924,
-10.0194091796875,
-2.2312827110290527,
8.0805082321167,
7.974545001983643,
-10.229015350341797,
-9.500219345092773,
-1.2682819366455078,
4.297555446624756,
3.597548007965088,
11.800387382507324,
0.34952083230018616,
-1.1347979307174683,
0.7507299184799194,
2.794179916381836,
0.635735273361206,
7.682431697845459,
4.330461025238037,
8.912339210510254,
11.873177528381348,
-0.7525838017463684,
5.5346293449401855,
-10.499417304992676,
7.003670692443848,
8.571198463439941,
5.4637532234191895,
6.6008501052856445,
-0.7467048764228821,
-10.663161277770996,
5.745293140411377,
7.6987996101379395,
7.602019309997559,
8.439230918884277,
-11.05566120147705,
1.0496426820755005,
-10.422823905944824,
-6.992734909057617,
-9.443350791931152,
-3.5697367191314697,
-0.30344101786613464,
-0.6649428606033325,
-6.567083358764648,
-1.109525203704834,
8.040254592895508,
4.4292120933532715,
7.955194473266602,
4.787907123565674,
-6.228643417358398,
0.5513576865196228,
5.155921936035156,
5.722100734710693,
10.449906349182129,
4.364248275756836,
7.2389349937438965,
9.450769424438477,
9.83321762084961,
8.933659553527832,
3.8803160190582275,
9.036306381225586,
10.947288513183594,
5.067975997924805,
9.945222854614258,
-1.2784534692764282,
4.290923118591309,
-1.9817694425582886,
5.427795886993408,
3.5062153339385986,
4.116530895233154,
4.445053577423096,
11.86709976196289,
5.159731388092041,
0.332607239484787,
11.821371078491211,
10.46022891998291,
3.2600362300872803,
3.0606653690338135,
3.7827720642089844,
4.5622406005859375,
6.912619113922119,
10.13492202758789,
6.425777912139893,
6.350922584533691,
2.8288676738739014,
-0.027167081832885742,
3.308151960372925,
9.914348602294922,
1.5791893005371094,
-2.1151719093322754,
0.4517921209335327,
-0.3171061873435974,
7.391099452972412,
1.462462067604065,
-10.380160331726074,
-3.6474668979644775,
1.4140146970748901,
-9.356321334838867,
5.373179912567139,
5.568810939788818,
7.124959468841553,
9.144161224365234,
5.307196140289307,
-2.864574432373047,
-4.861724853515625,
-4.045218467712402,
-2.2389330863952637,
-6.896561622619629,
1.4283860921859741,
8.21764850616455,
0.48772096633911133,
-3.2728588581085205,
-11.347908020019531,
10.34536361694336,
6.300140380859375,
-6.810532569885254,
-1.108689546585083,
2.1276469230651855,
-7.46579122543335,
-8.248394012451172,
-5.353287220001221,
4.329553127288818,
-3.0674142837524414,
-4.390249252319336,
2.0200772285461426,
11.568604469299316,
1.4378844499588013,
-10.035001754760742,
0.8223960995674133,
8.775762557983398,
-11.010207176208496,
-9.702054023742676,
-6.011050701141357,
2.275651693344116,
4.026318073272705,
10.331066131591797,
4.675998687744141,
-10.992206573486328,
1.5621839761734009,
-2.1887595653533936,
-1.7143346071243286,
-7.326971530914307,
4.882922649383545,
7.66489839553833,
6.202507972717285,
-1.2725058794021606,
-11.056071281433105,
-7.019245624542236,
2.293104648590088,
2.473456382751465,
-7.0984039306640625,
-0.7250741720199585,
3.6158933639526367,
-1.8958626985549927,
2.243161678314209,
7.656189441680908,
6.44046688079834,
-2.354072332382202,
-6.5504021644592285,
7.430690765380859,
-10.369608879089355,
-11.852519035339355,
11.575634002685547,
-7.73115348815918,
-4.035829067230225,
-0.5480388402938843,
1.0183532238006592,
-4.263132572174072,
5.945062637329102,
-0.20463642477989197,
6.848136901855469,
-10.20219612121582,
3.20717453956604,
-7.559957981109619,
-2.0610153675079346,
-2.1614813804626465,
3.4264543056488037,
-4.404324054718018,
-5.8607659339904785,
-1.6943027973175049,
-0.6046736836433411,
-4.296289920806885,
-0.30062055587768555,
3.6652305126190186,
-0.9805788397789001,
3.544997215270996,
4.578202724456787,
-3.694239854812622,
-3.966400623321533,
1.8985611200332642,
-2.6622910499572754,
0.21710491180419922,
7.810205459594727,
9.929361343383789,
-9.68762493133545,
2.004256248474121,
5.145078659057617,
-2.6743762493133545,
8.868186950683594,
-0.23073966801166534,
0.2544156610965729,
-5.83234977722168,
-10.616943359375,
3.736980676651001,
9.729846000671387,
11.632401466369629,
-2.711313009262085,
6.017658233642578,
-1.703577995300293,
-10.641480445861816,
0.9937159419059753,
-4.200531005859375,
-0.6769826412200928,
3.6027650833129883,
8.886812210083008,
-3.3681459426879883,
7.568444728851318,
-2.4741485118865967,
-8.371707916259766,
-7.968874931335449,
-3.2495663166046143,
-11.279528617858887,
6.000977516174316,
-10.022623062133789,
1.5987915992736816,
1.598865270614624,
-9.420065879821777,
-11.418764114379883,
10.39181137084961,
-2.2896482944488525,
-12.456629753112793,
0.29446879029273987,
-0.049880050122737885,
0.8294333219528198,
4.1194353103637695,
-7.324824810028076,
8.151829719543457,
-0.8046104907989502,
-1.7595142126083374,
-10.134140014648438,
-0.04818899184465408,
9.455657958984375,
5.033203601837158,
-6.47151517868042,
4.554224967956543,
-0.3353501558303833,
-3.7757177352905273,
-2.095959424972534,
-1.6621921062469482,
-6.5024919509887695,
-1.7145518064498901,
3.2288379669189453,
0.09722328931093216,
-7.522125244140625,
1.6510775089263916,
-10.065560340881348,
2.126701593399048,
-8.78445053100586,
8.889452934265137,
-5.036317348480225,
-4.62270975112915,
8.208686828613281,
4.213091850280762,
3.6234357357025146,
-10.271434783935547,
5.1878743171691895,
-0.1348281055688858,
-5.070260524749756,
3.8850467205047607,
-3.903715133666992,
-3.63527250289917,
-8.6639404296875,
-8.215691566467285,
-7.367853164672852,
-1.6136525869369507,
-6.319921016693115,
-4.181010723114014,
-10.499982833862305,
4.347260475158691,
3.340646982192993,
-1.126031756401062,
5.643110752105713,
2.2278072834014893,
7.612490653991699,
3.142712354660034,
2.384762763977051,
8.343059539794922,
-10.208290100097656,
-5.076338291168213,
-8.08353328704834,
-8.973857879638672,
-11.599855422973633,
-8.13867473602295,
1.476381540298462,
-11.028911590576172,
-4.691420078277588,
5.44900369644165,
-9.051136016845703,
8.031415939331055,
-9.427101135253906,
2.670156955718994,
-5.849671840667725,
-10.87765121459961,
-2.247286558151245,
-0.18334589898586273,
6.7977213859558105,
8.724803924560547,
-11.60420036315918,
-7.647027015686035,
-6.762226581573486,
1.2734559774398804,
6.534252643585205,
0.8520408272743225,
-11.224196434020996,
-10.848122596740723,
-10.110452651977539,
7.631678581237793,
2.051888942718506,
-4.721073150634766,
-10.951108932495117,
10.79677963256836,
1.7427681684494019,
3.189023733139038,
8.393961906433105,
-4.508800506591797,
-7.627973556518555,
-0.8330409526824951,
-1.5953574180603027,
4.613609790802002,
-0.7441854476928711,
4.20968770980835,
-5.941883087158203,
-11.729195594787598,
-4.297741413116455,
8.891422271728516,
3.7767820358276367,
2.286139965057373,
-4.509478569030762,
3.7555525302886963,
11.93782901763916,
5.663361072540283,
6.159180164337158,
8.543858528137207,
-4.64992618560791,
-6.131760597229004,
5.018105983734131,
-6.31650447845459,
10.835661888122559,
-9.117840766906738,
1.1140390634536743,
-3.349672794342041,
-8.473910331726074,
2.014863967895508,
1.8717331886291504,
4.420586585998535,
-4.575124263763428,
2.470090866088867,
4.986295700073242,
5.245412349700928,
-8.433828353881836,
-10.928937911987305,
3.178493022918701,
-1.1374564170837402,
3.058722496032715,
-7.540029048919678,
-2.5381882190704346,
-5.446624279022217,
3.556830406188965,
-8.263848304748535,
-8.240866661071777,
-2.9066951274871826,
0.10837393999099731,
-4.076888084411621,
0.3269639313220978,
3.540771722793579,
-4.433689117431641,
8.782365798950195,
3.047173023223877,
1.79315185546875,
-11.395628929138184,
-10.528227806091309,
1.269730806350708,
6.06234884262085,
-10.518428802490234,
-8.66860294342041,
2.400942802429199,
-9.362425804138184,
-9.393482208251953,
-9.977198600769043,
-10.044413566589355,
7.51877498626709,
-0.11236312985420227,
-1.613888144493103,
4.804389476776123,
-4.397343635559082,
-8.331011772155762,
-9.301167488098145,
7.864279747009277,
3.7496390342712402,
10.80817699432373,
-2.478651762008667,
-4.496640205383301,
-9.37873363494873,
2.38651442527771,
-6.2569146156311035,
-6.941340446472168,
-2.1489181518554688,
-2.3460559844970703,
3.795269012451172,
-7.9089674949646,
3.8997628688812256,
4.759267807006836,
6.791152000427246,
-7.739936828613281,
1.401609182357788,
-9.253594398498535,
6.217959880828857,
-6.624587535858154,
7.05581521987915,
-10.717007637023926,
-6.881322860717773,
-0.8054866194725037,
-5.661457061767578,
-5.702754497528076,
-7.055020809173584,
-10.790390014648438,
-9.490989685058594,
-8.830875396728516,
-5.91794490814209,
-9.725765228271484,
-0.8859584927558899,
-1.1994763612747192,
-1.4952235221862793,
-11.446792602539062,
-7.8977813720703125,
-6.505359649658203,
3.453566074371338,
3.963873863220215,
-1.6262935400009155,
-9.533143043518066,
-8.232512474060059,
-6.935972213745117,
-8.9967622756958,
1.446837067604065,
-9.44702434539795,
0.3812740743160248,
4.13608455657959,
11.280954360961914,
-6.823901653289795,
3.194382667541504,
9.937966346740723,
11.809250831604004,
-0.6047143340110779,
6.048943996429443,
-8.885273933410645,
-8.90402889251709,
-1.3243274688720703,
-9.497579574584961,
-6.005612850189209,
-4.824603080749512,
4.605919361114502,
3.117846727371216,
-9.159154891967773,
8.461678504943848,
2.1081759929656982,
0.28301432728767395,
-1.5329049825668335,
-4.332386016845703,
2.2743606567382812,
4.598791599273682,
-8.456294059753418,
-7.311594486236572,
4.84869909286499,
-10.058449745178223,
1.5770858526229858,
-4.123237133026123,
-8.591155052185059,
3.7673325538635254,
-8.3443603515625,
-10.088875770568848,
9.050882339477539,
-1.247535228729248,
-1.3559540510177612,
1.9276009798049927,
-7.271766662597656,
6.792640686035156,
-11.179835319519043,
-4.600890159606934,
-3.0885026454925537,
-9.396206855773926,
-3.0874905586242676,
5.625929355621338,
-10.892814636230469,
-6.890295028686523,
-3.1595473289489746,
-6.44882869720459,
-4.026760101318359,
-3.892009973526001,
-9.579912185668945,
-10.52990436553955,
-3.6946020126342773,
-2.9847159385681152,
2.7210195064544678,
-9.629541397094727,
-4.373243808746338,
-0.4138948321342468,
4.878135681152344,
-5.7247114181518555,
-3.255089282989502,
2.331022262573242,
7.30575704574585,
7.540398120880127,
-7.043057441711426,
10.14925765991211,
8.151473045349121,
-8.715574264526367,
0.9513416886329651,
4.995429039001465,
-5.488657474517822,
-9.42580795288086,
-2.917579174041748,
1.989314079284668,
-8.763033866882324,
-7.554975986480713,
0.9541822671890259,
2.0425820350646973,
2.321929454803467,
-8.74703598022461,
-10.753377914428711,
2.629300832748413,
1.1861659288406372,
1.8682864904403687,
-7.38801383972168,
6.532534599304199,
-4.40682315826416,
-11.158401489257812,
1.3748584985733032,
4.876151084899902,
-9.308260917663574,
-8.75849723815918,
-9.213908195495605,
0.5607421398162842,
-1.6570976972579956,
0.6635367274284363,
4.355025291442871,
-8.522615432739258,
-2.4740679264068604,
4.5139899253845215,
-6.063289642333984,
7.68145227432251,
-2.881251811981201,
-10.413480758666992,
7.006925106048584,
-10.763409614562988,
-8.865398406982422,
-10.047380447387695,
1.8374167680740356,
11.558225631713867,
-0.601107120513916,
0.050028473138809204,
-9.339369773864746,
-8.99320125579834,
2.0238776206970215,
6.850815296173096,
-5.223306179046631,
-0.6668359637260437,
1.6699934005737305,
-8.020206451416016,
6.0663886070251465,
-2.0053374767303467,
-2.8470757007598877,
7.532726764678955,
1.233358383178711,
-9.956256866455078,
1.633385181427002,
6.907638072967529,
6.263329982757568,
5.667294502258301,
-4.458161354064941,
-7.0518293380737305,
-10.248978614807129,
-10.399567604064941,
-4.163482666015625,
-10.268815994262695,
-3.828798532485962,
-6.467407703399658,
-10.305317878723145,
-0.6112880110740662,
-10.580079078674316,
-4.140200614929199,
-2.5976550579071045,
-9.0489501953125,
-2.0191943645477295,
-2.1327319145202637,
-8.019062042236328,
-11.450689315795898,
-8.762735366821289,
8.177536010742188,
-4.570704460144043,
-0.14819829165935516,
-3.848676919937134,
-8.610942840576172,
8.13743782043457,
6.5727314949035645,
-5.172129154205322,
4.22235107421875,
11.743792533874512,
1.7656378746032715,
-3.1486105918884277,
3.789219856262207,
8.876749992370605,
8.891656875610352,
-8.40937614440918,
3.77109432220459,
1.6811509132385254,
-6.254887104034424,
-8.650245666503906,
6.5617899894714355,
-4.757350921630859,
3.6828815937042236,
11.399300575256348,
-10.37108325958252,
-3.6776771545410156,
-8.15425968170166,
0.9565840363502502,
11.306113243103027,
-8.400006294250488,
11.268531799316406,
-7.5447516441345215,
-2.4049460887908936,
0.21726340055465698,
4.619609355926514,
-2.2865841388702393,
-10.473682403564453,
8.56490421295166,
-7.101269721984863,
6.355850696563721,
-1.2009073495864868,
-9.892343521118164,
-8.280942916870117,
5.820896625518799,
-7.686386585235596,
-9.643178939819336,
-6.592852592468262,
2.3691000938415527,
4.2411651611328125,
6.649275779724121,
-2.38173246383667,
2.9831554889678955,
-4.6270294189453125,
4.283473014831543,
12.713521003723145,
-1.872611403465271,
-8.900775909423828,
8.229508399963379,
-0.4565999507904053,
-4.252017498016357,
-7.41819953918457,
3.6689658164978027,
10.02153491973877,
7.552311897277832,
12.79709529876709,
11.270170211791992,
10.406146049499512,
-4.853769302368164,
-9.553791046142578,
-10.0537109375,
4.3024725914001465,
-7.742615699768066,
10.334728240966797,
10.624964714050293,
6.975888729095459,
10.07004451751709,
5.578953266143799,
-5.489739894866943,
11.188346862792969,
11.956319808959961,
-10.222617149353027,
-0.9790592193603516,
5.653292179107666,
-10.064027786254883,
-7.98619270324707,
-11.024839401245117,
-1.6533929109573364,
-9.201722145080566,
-9.65364933013916,
3.2770607471466064,
10.331215858459473,
-2.123623847961426,
1.8939354419708252,
-9.322237968444824,
-8.076375961303711,
-11.543956756591797,
5.643263816833496,
-5.0612335205078125,
10.205310821533203,
12.026632308959961,
1.5299136638641357,
2.0726521015167236,
4.417486667633057,
-3.4459452629089355,
-10.228232383728027,
-1.5946944952011108,
-4.57360315322876,
-11.314688682556152,
4.584349155426025,
-11.483718872070312,
0.966328501701355,
-9.605761528015137,
-10.097098350524902,
-10.166394233703613,
8.51513957977295,
9.853095054626465,
1.3419153690338135,
4.381538391113281,
-2.2935128211975098,
8.62916374206543,
2.6542351245880127,
6.278966426849365,
1.17294442653656,
11.391684532165527,
9.604777336120605,
4.643896579742432,
12.265420913696289,
8.032857894897461,
5.803539276123047,
10.609953880310059,
4.5296502113342285,
13.45271110534668,
11.878336906433105,
10.808915138244629,
6.075608253479004,
-7.691999912261963,
-4.587100982666016,
4.968889236450195,
11.62769603729248,
9.618644714355469,
-3.7183709144592285,
2.8793656826019287,
9.045633316040039,
-5.525111198425293,
1.8968348503112793,
4.285985469818115,
9.890589714050293,
10.370016098022461,
-7.3908915519714355,
3.83901309967041,
-8.749208450317383,
11.430961608886719,
-0.6613216400146484,
-2.4872279167175293,
9.180365562438965,
-10.347305297851562,
6.096439361572266,
7.3831305503845215,
4.491029739379883,
10.778050422668457,
-8.72158145904541,
-1.7978472709655762,
6.004733562469482,
12.48510456085205,
3.4041402339935303,
4.868377685546875,
12.952674865722656,
-3.5717523097991943,
1.0416611433029175,
7.4337077140808105,
-5.298257350921631,
7.550497055053711,
8.4277925491333,
-8.065661430358887,
6.075146198272705,
-3.3863213062286377,
3.4990506172180176,
0.39137333631515503,
3.150092840194702,
-8.714658737182617,
2.3553972244262695,
6.524063587188721,
-9.426886558532715,
3.4597887992858887,
-0.03946571424603462,
-11.119969367980957,
-0.2176312655210495,
-8.893416404724121,
-2.0521717071533203,
10.208212852478027,
-5.454288959503174,
5.874672889709473,
3.220773220062256,
11.111124992370605,
4.251257419586182,
-4.918158531188965,
-10.333608627319336,
-5.840505123138428,
-0.3381372094154358,
9.890199661254883,
4.239027976989746,
1.3458627462387085,
-10.36817741394043,
5.307093620300293,
6.399701118469238,
-1.476015329360962,
9.491924285888672,
5.939620018005371,
-8.518857955932617,
-2.0222082138061523,
3.6408748626708984,
0.2909803092479706,
9.44495677947998,
11.390650749206543,
10.19847297668457,
3.367931604385376,
8.002755165100098,
5.246922016143799,
10.921927452087402,
0.5918781161308289,
8.018619537353516,
-11.880940437316895,
11.887328147888184,
-4.227569103240967,
9.52772331237793,
-1.040873408317566,
5.09145975112915,
-2.3721165657043457,
4.486400127410889,
7.145266532897949,
11.856828689575195,
0.4064348340034485,
11.767765998840332,
4.98133659362793,
12.544984817504883,
-7.65972900390625,
-2.3725974559783936,
-5.311101913452148,
7.1688008308410645,
10.40639591217041,
10.25450325012207,
-2.0908443927764893,
-6.8026323318481445,
3.363729953765869,
-2.7148733139038086,
1.7969897985458374,
-1.3272148370742798,
8.586600303649902,
1.6208709478378296,
7.785690784454346,
11.846855163574219,
-1.693016529083252,
6.688000679016113,
-1.7592747211456299,
-6.6553192138671875,
-0.22527188062667847,
8.971118927001953,
7.326266288757324,
-11.002906799316406,
3.0860447883605957,
10.789570808410645,
-5.844119071960449,
-8.79340648651123,
-10.904999732971191,
2.7380599975585938,
10.334420204162598,
4.902103900909424,
0.6665118932723999,
5.546942710876465,
5.3885908126831055,
-1.4442800283432007,
-8.841750144958496,
5.8608222007751465,
-8.16872501373291,
-2.5110785961151123,
11.641011238098145,
3.724073648452759,
-1.158355951309204,
9.89423942565918,
9.067798614501953,
-9.443719863891602,
12.481368064880371,
-5.581297874450684,
-5.730168342590332,
-1.5273621082305908,
4.259495258331299,
-0.11751621216535568,
-5.191554069519043,
6.851100444793701,
5.9113874435424805,
5.044732093811035,
10.131654739379883,
-4.477777481079102,
-11.575322151184082,
-3.8440022468566895,
6.32715368270874,
1.320471167564392,
6.72580623626709,
-10.333090782165527,
6.062349796295166,
8.772412300109863,
-1.3300079107284546,
6.822099685668945,
-1.1484007835388184,
11.57899284362793,
10.346528053283691,
7.691132068634033,
-0.9395111799240112,
11.538113594055176,
-8.648187637329102,
3.638338804244995,
10.416604995727539,
-9.219789505004883,
-7.347474098205566,
-10.37198257446289,
-5.719725608825684,
4.382970809936523,
-8.548398971557617,
-11.891213417053223,
8.554483413696289,
6.933176517486572,
6.87076997756958,
-5.042591094970703,
-2.915626049041748,
-10.562196731567383,
-7.053138732910156,
-2.0899109840393066,
4.9837541580200195,
10.902936935424805,
10.071355819702148,
-7.515873432159424,
-3.375737428665161,
-1.4084696769714355,
-6.618068218231201,
-2.177267074584961,
3.848555088043213,
5.041074752807617,
-8.36956787109375,
-9.133968353271484,
6.927462100982666,
-8.558466911315918,
-6.297764778137207,
4.474133014678955,
-5.573925971984863,
-10.504907608032227,
-5.835755825042725,
11.272261619567871,
0.6887263655662537,
-2.7406961917877197,
-1.5607805252075195,
8.560811042785645,
-6.214901924133301,
-5.621672630310059,
0.2207232564687729,
-3.7747650146484375,
-0.9264296293258667,
-8.414824485778809,
-9.443230628967285,
-8.57706356048584,
-4.457576751708984,
1.2821482419967651,
-9.27269172668457,
-1.1391745805740356,
3.9701919555664062,
-7.321230888366699,
1.7127935886383057,
-6.051770210266113,
-9.023619651794434,
-2.51619291305542,
-11.100235939025879,
-10.726140022277832,
-7.716231346130371,
-8.890035629272461,
9.871620178222656,
-1.0733128786087036,
-10.81950855255127,
-10.389036178588867,
1.4041410684585571,
-4.425746440887451,
-8.933126449584961,
5.591259956359863,
-4.981060028076172,
5.176138877868652,
-8.679402351379395,
-10.896857261657715,
-4.813242435455322,
-9.14523983001709,
-9.317835807800293,
2.7326948642730713,
0.5827094316482544,
-6.620161533355713,
9.225058555603027,
6.906713962554932,
-11.318254470825195,
-10.543896675109863,
11.29483413696289,
-8.115622520446777,
-6.166818141937256,
-4.625521183013916,
-3.5288915634155273,
-4.921997547149658,
8.268635749816895,
5.206260681152344,
11.658587455749512,
-4.9942803382873535,
10.438470840454102,
-9.213220596313477,
12.023716926574707,
0.6666205525398254,
5.6655449867248535,
12.899932861328125,
5.676205158233643,
10.027663230895996,
8.622742652893066,
6.271787166595459,
5.805136203765869,
4.423442840576172,
7.594709396362305,
9.4412841796875,
8.376800537109375,
5.024367332458496,
7.3602800369262695,
-1.840772271156311,
11.939308166503906,
11.759724617004395,
-0.9907793402671814,
-1.7035608291625977,
6.6869893074035645,
11.780115127563477,
0.45521828532218933,
-7.343753814697266,
2.4733822345733643,
-2.8326480388641357,
12.31557559967041,
-0.2087780386209488,
-1.4114524126052856,
6.71107816696167,
6.742098808288574,
0.354715496301651,
3.142133951187134,
-6.360616207122803,
7.0259857177734375,
-4.655894756317139,
-1.1276179552078247,
13.196475982666016,
-1.5997790098190308,
-5.107995510101318,
0.3098616898059845,
-8.298053741455078,
0.7248061299324036,
2.3060615062713623,
-8.255546569824219,
-1.7215240001678467,
8.150299072265625,
8.912369728088379,
-4.965089797973633,
-6.821240425109863,
11.040117263793945,
-10.550387382507324,
6.2296366691589355,
9.015705108642578,
7.774786949157715,
-7.3473005294799805,
1.4090014696121216,
1.7195018529891968,
-5.332840919494629,
-5.250185489654541,
4.8822550773620605,
-10.398321151733398,
-9.346107482910156,
1.16782546043396,
-6.064178466796875,
-1.1801117658615112,
-1.3650919198989868,
-6.434388637542725,
-11.432282447814941,
-1.1549005508422852,
6.373218536376953,
-1.7342698574066162,
-3.2835235595703125,
-0.8877769708633423,
-10.733559608459473,
7.421385288238525,
-10.878077507019043,
3.5858936309814453,
10.275979995727539,
-9.261526107788086,
-1.2487730979919434,
-2.5493528842926025,
6.6132636070251465,
4.1791839599609375,
-3.091449737548828,
1.304040789604187,
-1.334902048110962,
5.243646621704102,
-11.130008697509766,
2.8609743118286133,
-1.026167869567871,
3.5220377445220947,
5.435483455657959,
4.547146797180176,
-3.1104612350463867,
-2.126936435699463,
4.915809631347656,
-8.106529235839844,
-4.240993022918701,
-8.375121116638184,
2.857722759246826,
8.879056930541992,
8.185369491577148,
-10.108075141906738,
-9.428606986999512,
-11.565723419189453,
-1.1760777235031128,
-2.9762685298919678,
-11.06905746459961,
11.652334213256836,
12.323992729187012,
11.624178886413574,
5.179117202758789,
-2.7876248359680176,
-5.626887321472168,
2.2920897006988525,
5.838046550750732,
-1.5876600742340088,
-8.59481143951416,
-10.221590995788574,
-4.6606645584106445,
11.342011451721191,
-7.961977005004883,
9.37881088256836,
-5.808915138244629,
-0.8005319833755493,
1.9592974185943604,
11.56467342376709,
-10.394981384277344,
-11.561393737792969,
-7.566380500793457,
12.766716957092285,
-9.541422843933105,
-8.201921463012695,
-9.969676971435547,
-9.787707328796387,
9.18177604675293,
-6.907050609588623,
-11.710817337036133,
-2.2118117809295654,
-2.7829763889312744,
-2.941159725189209,
-10.949223518371582,
3.530440092086792,
4.759833812713623,
-11.151004791259766,
3.459306001663208,
5.387277603149414,
-9.225455284118652,
-2.9134929180145264,
11.093920707702637,
3.081754446029663,
9.123740196228027,
12.590274810791016,
-7.023466110229492,
-6.8235392570495605,
-8.344926834106445,
-5.387006759643555,
-5.00487756729126,
4.058563232421875,
-1.593708872795105,
5.426126003265381,
-1.306727647781372,
5.971025466918945,
-10.603795051574707,
-4.9168877601623535,
-8.34941577911377,
-3.233482599258423,
-8.679136276245117,
3.564929246902466,
0.8669730424880981,
-10.654685974121094,
0.18129847943782806,
-9.801830291748047,
3.0236735343933105,
5.3593220710754395,
8.48711109161377,
12.428070068359375,
2.9241366386413574,
1.6026142835617065,
7.11810827255249,
12.474465370178223,
-5.0408549308776855,
8.434257507324219,
-5.379540920257568,
-9.961865425109863,
-7.5255889892578125,
-11.054914474487305,
-9.219321250915527,
-7.858780384063721,
-10.179547309875488,
5.839423656463623,
8.349359512329102,
-11.600431442260742,
12.66499137878418,
-0.9017948508262634,
3.587900161743164,
5.482494831085205,
-9.818257331848145,
-1.8685455322265625,
3.202319383621216,
10.837055206298828,
2.206827163696289,
-1.290663242340088,
-1.0842126607894897,
9.185178756713867,
1.5901130437850952,
-2.2214863300323486,
-6.341452121734619,
-4.346477031707764,
3.245832681655884,
6.7181854248046875,
-11.179306030273438,
3.913795232772827
]
},
{
"hovertemplate": "Dominant_Topic=Topic 2
0=%{x}
1=%{y}
2=%{z}",
"legendgroup": "Topic 2",
"marker": {
"color": "#00cc96",
"opacity": 0.7,
"symbol": "circle"
},
"mode": "markers",
"name": "Topic 2",
"scene": "scene",
"showlegend": true,
"type": "scatter3d",
"x": [
21.576583862304688,
22.95847511291504,
24.512168884277344,
22.65777015686035,
23.892911911010742,
22.56407928466797,
22.97732162475586,
22.223520278930664,
22.436756134033203,
21.885602951049805,
21.816198348999023,
21.982938766479492,
22.773103713989258,
22.647113800048828,
23.99153709411621,
24.323848724365234,
21.69312858581543,
21.70988655090332,
21.814563751220703,
24.172819137573242,
23.763286590576172,
24.59499740600586,
22.839977264404297,
22.221881866455078,
23.574071884155273,
21.86989402770996,
22.581979751586914,
24.733379364013672,
22.636377334594727,
24.695026397705078,
24.794567108154297,
22.854209899902344,
23.14775276184082,
21.799564361572266,
22.442140579223633,
21.868305206298828,
22.25580596923828,
22.530412673950195,
23.587080001831055,
22.75214195251465,
23.150596618652344,
24.752206802368164,
22.457761764526367,
22.212581634521484,
21.960289001464844,
24.449256896972656,
22.36545753479004,
21.833099365234375,
21.77907371520996,
22.022153854370117,
24.71482276916504,
21.360595703125,
21.784109115600586,
22.339374542236328,
21.890962600708008,
22.97903060913086,
22.781841278076172,
23.76863670349121,
22.804927825927734,
22.384931564331055,
21.51701545715332,
23.506893157958984,
22.621816635131836,
22.73656463623047,
22.79715919494629,
22.687740325927734,
21.879638671875,
22.312711715698242,
24.49921226501465,
23.8101806640625,
23.93846893310547,
23.741012573242188,
21.640165328979492,
24.69424819946289,
24.769100189208984,
22.995840072631836,
23.41551971435547,
22.268583297729492,
21.004003524780273,
24.600204467773438,
22.276233673095703,
24.485151290893555,
23.970666885375977,
22.432100296020508,
24.707969665527344,
22.660280227661133,
22.890806198120117,
24.743213653564453,
21.978899002075195,
22.453001022338867,
23.900386810302734,
22.407062530517578,
22.02344512939453,
22.934642791748047,
22.315099716186523,
22.544937133789062,
21.62936782836914,
22.267120361328125,
24.232406616210938,
22.565250396728516,
24.151954650878906,
22.23589324951172,
23.749839782714844,
22.564416885375977,
24.662761688232422,
23.33510971069336,
24.703693389892578,
24.442869186401367,
23.169281005859375,
22.655139923095703,
23.01020622253418,
22.813318252563477,
24.60166358947754,
22.837984085083008,
21.967844009399414,
22.777198791503906,
23.117944717407227,
21.89211654663086,
22.71207618713379,
22.68515396118164,
22.689178466796875,
22.633235931396484,
23.101030349731445,
23.479705810546875,
22.297428131103516,
22.952728271484375,
22.282032012939453,
23.084794998168945,
22.632198333740234,
21.892194747924805,
23.56165313720703,
22.80390167236328,
21.91409683227539,
22.917253494262695,
20.95684242248535,
22.63176727294922,
23.104795455932617,
22.593595504760742,
22.28913688659668,
22.31723976135254,
22.661561965942383,
22.07006072998047,
22.294160842895508,
22.263673782348633,
22.516748428344727,
22.774879455566406,
22.38923454284668,
23.634519577026367,
21.89259910583496,
22.15312957763672,
22.42766571044922,
21.910593032836914,
20.881359100341797,
22.706897735595703,
22.371572494506836,
23.467403411865234,
22.70305633544922,
24.40142059326172,
23.471261978149414,
23.46099090576172,
22.655038833618164,
21.789615631103516,
23.812803268432617
],
"y": [
-2.206498861312866,
-3.148461103439331,
-1.8735929727554321,
-3.3819124698638916,
-3.50557017326355,
-0.9474449157714844,
0.21289701759815216,
-1.4724074602127075,
-0.9267382025718689,
-1.8613404035568237,
-5.247949123382568,
-1.7769989967346191,
0.10653823614120483,
-2.056812047958374,
-2.8656444549560547,
-3.224512815475464,
-2.174445390701294,
-2.124091386795044,
-2.217437744140625,
-1.6546275615692139,
-2.7518348693847656,
-2.4484269618988037,
0.4040883779525757,
-0.7835016846656799,
-1.5073473453521729,
-5.229544639587402,
-0.6656431555747986,
-2.1726255416870117,
-3.2795166969299316,
-2.3066725730895996,
-2.7590718269348145,
-0.38610273599624634,
-0.21613559126853943,
-2.0392343997955322,
-0.7579700350761414,
-5.229506969451904,
-3.0732100009918213,
-0.5763862729072571,
-1.9899423122406006,
-0.10498114675283432,
-0.390945702791214,
-2.61991810798645,
-2.566687822341919,
-1.746495246887207,
-1.864664077758789,
-2.835472583770752,
-2.799243450164795,
-1.8722970485687256,
-1.6120585203170776,
-1.9876314401626587,
-2.2482402324676514,
-5.396278381347656,
-5.258106231689453,
-1.3498976230621338,
-1.9155017137527466,
-2.6102828979492188,
-0.2671152949333191,
-2.9988200664520264,
-0.12118352204561234,
-0.817371129989624,
-5.345842361450195,
-1.6618245840072632,
-3.3291056156158447,
-0.36330798268318176,
-0.32763734459877014,
-1.8014733791351318,
-2.0541939735412598,
-2.858400344848633,
-2.249152660369873,
-3.335597038269043,
-1.2739019393920898,
-1.6261686086654663,
-2.147211790084839,
-2.8147895336151123,
-2.28773832321167,
-0.31900566816329956,
-1.740878939628601,
-0.36404693126678467,
-5.4964680671691895,
-3.1146128177642822,
-1.0146911144256592,
-2.407769203186035,
-1.6006488800048828,
-1.6046110391616821,
-2.7325594425201416,
-0.2621612548828125,
-0.5366811156272888,
-2.9002394676208496,
-2.475104331970215,
-1.0707248449325562,
-1.1630467176437378,
-0.4607093632221222,
-1.9103947877883911,
-0.2132118046283722,
-0.8978788256645203,
-0.6101688146591187,
-2.177985668182373,
-0.6601437330245972,
-3.139934539794922,
-3.5088400840759277,
-2.8449020385742188,
-1.591301441192627,
-0.8966958522796631,
-3.479416608810425,
-2.4485177993774414,
-3.164050340652466,
-1.9822299480438232,
-1.6575841903686523,
-0.42446303367614746,
-0.5359095931053162,
-2.286736488342285,
0.06143264099955559,
-2.1554903984069824,
-3.2880659103393555,
-2.6139824390411377,
-2.838374614715576,
-0.26521793007850647,
-5.221680164337158,
-3.321519136428833,
-0.5673486590385437,
-3.263563394546509,
-1.6484113931655884,
-1.0268865823745728,
-0.5185539722442627,
-2.97513484954834,
-2.6698684692382812,
-0.7838878631591797,
-0.8017986416816711,
-1.6706403493881226,
-2.7297089099884033,
-1.687061071395874,
-1.6860802173614502,
-1.2239691019058228,
0.23351164162158966,
-5.536249160766602,
-0.760191798210144,
-0.1575508862733841,
-3.4260027408599854,
-2.5635251998901367,
-3.2082364559173584,
-0.49261683225631714,
-1.597088098526001,
-0.9164724349975586,
-0.5051833987236023,
-0.9656612277030945,
-1.263756275177002,
-0.9761102795600891,
-1.105456829071045,
-1.6996681690216064,
-1.6612986326217651,
-0.42424148321151733,
-1.8652148246765137,
-5.583164215087891,
-3.238542318344116,
-2.2700958251953125,
-2.9865801334381104,
-1.0179697275161743,
-3.044625997543335,
-1.6021684408187866,
-1.7602794170379639,
-2.921147346496582,
-5.257349967956543,
-1.6422282457351685
],
"z": [
13.34113597869873,
5.394235610961914,
5.3220930099487305,
8.62423324584961,
5.28953742980957,
5.89164924621582,
8.260405540466309,
8.237634658813477,
10.970611572265625,
12.603790283203125,
-6.541758060455322,
12.384716987609863,
6.268729209899902,
5.818480968475342,
3.511338472366333,
4.343485355377197,
13.139531135559082,
12.75539493560791,
11.92626667022705,
5.5810675621032715,
3.5192291736602783,
4.513954162597656,
6.519835472106934,
11.268677711486816,
3.5173933506011963,
-6.480450630187988,
9.108672142028809,
5.355642318725586,
9.425375938415527,
5.867619514465332,
4.027791976928711,
6.759796142578125,
6.969577312469482,
12.568336486816406,
10.52745532989502,
-6.480666637420654,
6.530808925628662,
7.542835235595703,
3.1526196002960205,
9.467784881591797,
6.5620622634887695,
4.679808616638184,
9.530826568603516,
12.181623458862305,
12.621206283569336,
5.498901844024658,
9.66868782043457,
12.643647193908691,
9.694072723388672,
12.50078010559082,
5.081949234008789,
-7.048854351043701,
-6.577771186828613,
10.943193435668945,
12.638012886047363,
4.562921524047852,
9.073271751403809,
5.446476459503174,
8.904855728149414,
10.803544044494629,
-6.880002975463867,
3.2375435829162598,
7.563605308532715,
8.913495063781738,
8.958824157714844,
10.353575706481934,
12.841715812683105,
5.856890678405762,
4.97810173034668,
5.396764278411865,
4.809372425079346,
4.534667491912842,
13.200900077819824,
3.8885631561279297,
4.956975936889648,
8.411820411682129,
3.063945770263672,
11.025237083435059,
-7.424318790435791,
4.151859760284424,
11.27931022644043,
5.910101890563965,
6.188512802124023,
6.216156482696533,
5.597692489624023,
6.68356466293335,
6.612050533294678,
4.119492530822754,
9.956584930419922,
7.648202419281006,
6.1575398445129395,
10.078980445861816,
12.420269012451172,
7.595277309417725,
11.044917106628418,
9.597049713134766,
13.250298500061035,
11.136481285095215,
4.958934783935547,
8.406904220581055,
3.3460514545440674,
11.649968147277832,
5.637574672698975,
7.929811000823975,
4.1545891761779785,
4.9991607666015625,
5.206979751586914,
4.971604824066162,
7.369020938873291,
6.158612251281738,
8.84614086151123,
9.271008491516113,
4.301401615142822,
8.888809204101562,
10.148573875427246,
9.206591606140137,
7.832830905914307,
-6.4538774490356445,
7.968541622161865,
9.575613975524902,
7.636657238006592,
6.060464859008789,
6.322325706481934,
6.3212056159973145,
8.070556640625,
9.023682594299316,
10.809772491455078,
7.898397445678711,
10.79970932006836,
10.150948524475098,
4.873311996459961,
9.920719146728516,
12.35609245300293,
6.300625324249268,
-7.483160972595215,
9.694703102111816,
7.710334300994873,
8.419685363769531,
10.115011215209961,
6.7288432121276855,
9.946309089660645,
9.260698318481445,
11.129862785339355,
11.076913833618164,
7.5290117263793945,
6.098890781402588,
10.799036979675293,
6.40889835357666,
12.512377738952637,
11.845582008361816,
9.681540489196777,
11.997950553894043,
-7.57972526550293,
8.403790473937988,
10.109116554260254,
4.553327560424805,
7.567537784576416,
4.258025646209717,
3.2911481857299805,
3.239030122756958,
5.557575225830078,
-6.571935176849365,
3.9916064739227295
]
},
{
"hovertemplate": "Dominant_Topic=Topic 3
0=%{x}
1=%{y}
2=%{z}",
"legendgroup": "Topic 3",
"marker": {
"color": "#ab63fa",
"opacity": 0.7,
"symbol": "circle"
},
"mode": "markers",
"name": "Topic 3",
"scene": "scene",
"showlegend": true,
"type": "scatter3d",
"x": [
10.217331886291504,
13.88739013671875,
14.44680404663086,
8.981231689453125,
7.6535234451293945,
15.496378898620605,
12.290060043334961,
9.416719436645508,
13.171363830566406,
17.065752029418945,
11.491861343383789,
15.493371963500977,
13.818195343017578,
10.935104370117188,
13.265390396118164,
9.103273391723633,
15.344165802001953,
15.442061424255371,
11.355690956115723,
13.805438041687012,
18.892745971679688,
9.48293685913086,
10.722723960876465,
13.419820785522461,
15.213417053222656,
12.620765686035156,
13.49193286895752,
9.694428443908691,
12.255931854248047,
9.247633934020996,
9.869051933288574,
13.869138717651367,
14.459328651428223,
11.639071464538574,
14.375754356384277,
9.816618919372559,
14.045736312866211,
13.088748931884766,
11.663762092590332,
15.738691329956055,
12.408430099487305,
10.204582214355469,
9.870227813720703,
11.370880126953125,
13.536293029785156,
8.887829780578613,
16.66410255432129,
11.399064064025879,
9.55433177947998,
8.298768997192383,
14.947553634643555,
10.374747276306152,
12.807535171508789,
12.381871223449707,
15.369569778442383,
8.137782096862793,
15.320191383361816,
13.688399314880371,
12.57772445678711,
16.33537483215332,
11.881113052368164,
14.157637596130371,
15.227873802185059,
13.671540260314941,
14.42262077331543,
11.028266906738281,
11.832616806030273,
11.711926460266113,
12.30038070678711,
12.697673797607422,
16.070526123046875,
17.662981033325195,
17.24527931213379,
10.977425575256348,
12.344539642333984,
18.68389320373535,
8.913576126098633,
7.181186199188232,
11.6118803024292,
10.498945236206055,
9.223533630371094,
10.691102981567383,
9.356734275817871,
15.609713554382324,
8.63725757598877,
8.686720848083496,
15.399052619934082,
12.071517944335938,
10.534881591796875,
15.339264869689941,
13.475760459899902,
13.828600883483887,
14.145113945007324,
12.477561950683594,
13.148534774780273,
9.259039878845215,
15.333891868591309,
9.663049697875977,
15.58253288269043,
11.651968955993652,
13.010445594787598,
12.774235725402832,
14.769482612609863,
10.591536521911621,
14.499581336975098,
14.621625900268555,
14.597124099731445,
13.794672012329102,
17.41556167602539,
6.9279704093933105,
17.478322982788086,
13.6326265335083,
12.02163028717041,
13.242693901062012,
17.592052459716797,
11.099394798278809,
11.52795696258545,
15.384089469909668,
11.252205848693848,
13.538246154785156,
9.574423789978027,
13.589736938476562,
17.28342628479004,
14.944639205932617,
15.841337203979492,
9.356185913085938,
16.054859161376953,
14.779781341552734,
10.493937492370605,
14.917182922363281,
14.842231750488281,
15.570730209350586,
12.882412910461426,
17.26616096496582,
12.432641983032227,
13.618133544921875,
10.427114486694336,
14.223026275634766,
12.60688304901123,
16.0770320892334,
15.620173454284668,
8.780860900878906,
15.203022956848145,
15.563836097717285,
15.124138832092285,
14.186450004577637,
11.390057563781738,
15.277636528015137,
15.118005752563477,
15.561895370483398,
9.228157043457031,
18.627443313598633,
12.97037410736084,
8.770959854125977,
15.456789016723633,
9.361123085021973,
13.680994987487793,
15.321455955505371,
16.464128494262695,
10.230270385742188,
9.404006958007812,
17.589773178100586,
9.733981132507324,
15.051092147827148,
12.77855110168457,
12.145367622375488,
12.998635292053223,
11.513554573059082,
11.556013107299805,
15.025106430053711,
14.141839027404785,
15.00590991973877,
14.484586715698242,
15.791756629943848,
11.806095123291016,
11.884780883789062,
14.866961479187012,
18.89277458190918,
14.491472244262695,
12.157943725585938,
7.737325191497803,
18.759471893310547,
15.482773780822754,
7.179116725921631,
14.82649040222168,
15.40938663482666,
15.112834930419922,
9.2628755569458,
11.194456100463867,
15.514866828918457,
14.050637245178223,
9.121240615844727,
17.52655792236328,
14.479146003723145,
13.857954025268555,
11.664586067199707,
10.134902000427246,
13.377340316772461,
10.219803810119629,
8.83019733428955,
14.743318557739258,
13.842939376831055,
14.297719955444336,
13.912939071655273,
13.575347900390625,
15.012685775756836,
10.877861022949219,
13.516423225402832,
9.25464153289795,
16.969064712524414,
9.842317581176758,
12.885064125061035,
12.014392852783203,
14.699074745178223,
15.440471649169922,
13.113173484802246,
15.766945838928223,
11.929112434387207,
10.026659965515137,
14.416241645812988,
10.556280136108398,
13.37039852142334,
13.463129043579102,
14.512269020080566,
14.898429870605469,
13.920612335205078,
8.70920181274414,
12.354838371276855,
10.474072456359863,
13.914379119873047,
14.350480079650879,
13.374407768249512,
9.97287654876709,
15.071627616882324,
8.460082054138184,
14.532917976379395,
8.148272514343262,
10.695967674255371,
8.857874870300293,
12.166125297546387,
14.04271411895752,
15.075417518615723,
14.640901565551758,
14.607879638671875,
15.545711517333984,
11.025257110595703,
10.957655906677246,
17.98636245727539,
14.782398223876953,
8.832523345947266,
14.407429695129395,
9.197196006774902,
15.415497779846191,
8.80380630493164,
11.107616424560547,
12.467310905456543,
14.928671836853027,
12.635076522827148,
9.328466415405273,
10.141569137573242,
11.418779373168945,
15.232589721679688,
17.467634201049805,
11.309812545776367,
12.392641067504883,
9.54293441772461,
8.6022367477417,
12.105953216552734,
10.156208038330078,
15.200230598449707,
14.257635116577148,
13.282865524291992,
12.27615737915039,
13.352941513061523,
17.225257873535156,
15.638066291809082,
7.994942665100098,
9.039604187011719,
8.386632919311523,
9.494954109191895,
13.896034240722656,
15.259952545166016,
13.668288230895996,
11.234786033630371,
11.757779121398926,
7.616507530212402,
10.177205085754395,
7.601698875427246,
13.28219985961914,
9.169581413269043,
13.222500801086426,
10.149710655212402,
12.105637550354004,
9.843246459960938,
12.252152442932129,
9.198731422424316,
12.011383056640625,
14.48828125,
6.942690849304199,
19.563182830810547,
15.290183067321777,
9.702869415283203,
12.520247459411621,
13.465468406677246,
16.30271339416504,
16.474342346191406,
10.257960319519043,
9.122030258178711,
10.236409187316895,
11.07376480102539,
14.161404609680176,
13.630002975463867,
11.727355003356934,
17.514175415039062,
11.512883186340332,
13.25058650970459,
10.434748649597168,
17.67506980895996,
12.288984298706055,
9.821157455444336,
13.374957084655762,
12.58718490600586,
11.758429527282715,
12.151888847351074,
11.229384422302246,
10.769357681274414,
14.034343719482422,
14.458495140075684,
12.669955253601074,
10.350539207458496,
14.54331111907959,
12.797471046447754,
10.894575119018555,
15.213098526000977,
7.503240585327148,
12.415470123291016,
9.552576065063477,
10.224335670471191,
12.615009307861328,
9.239245414733887,
15.04344367980957,
14.56666088104248,
11.755095481872559,
15.171826362609863,
10.230226516723633,
10.991128921508789,
14.699734687805176,
12.981633186340332,
9.938894271850586,
13.6293363571167,
11.810063362121582,
12.23541259765625,
6.958348274230957,
14.36763858795166,
13.873899459838867,
14.117351531982422,
13.207900047302246,
10.244864463806152,
10.814532279968262,
10.185136795043945,
10.354508399963379,
13.692098617553711,
15.369648933410645,
17.683364868164062,
11.242408752441406,
10.772582054138184,
10.815378189086914,
10.028904914855957,
8.832542419433594,
8.665705680847168,
12.25418758392334,
14.795037269592285,
7.034318447113037,
15.034899711608887,
14.74301528930664,
12.638957023620605,
17.48094940185547,
13.112194061279297,
13.776673316955566,
11.082073211669922,
13.639479637145996,
14.886786460876465,
13.21109390258789,
13.001150131225586,
10.366259574890137,
10.101670265197754,
11.096514701843262,
11.554329872131348,
10.105185508728027,
10.507955551147461,
15.478199005126953,
10.905000686645508,
15.228570938110352,
13.495819091796875,
11.753561019897461,
13.77263069152832,
10.699774742126465,
15.861566543579102,
13.691802978515625,
10.701973915100098,
15.069700241088867,
11.514262199401855,
12.926605224609375,
12.83818244934082,
15.690237045288086,
15.552692413330078,
11.659512519836426,
14.155863761901855,
7.248172283172607,
14.4846830368042,
14.10428524017334,
13.892073631286621,
11.102034568786621,
9.30398178100586,
15.52267837524414,
15.213208198547363,
15.135334968566895,
7.385852336883545,
13.737215995788574,
12.728982925415039,
12.545090675354004,
6.882903575897217,
15.216890335083008,
11.330549240112305,
10.188874244689941,
8.673138618469238,
15.769974708557129,
10.331034660339355,
14.50818157196045,
11.177117347717285,
16.890466690063477,
12.620984077453613,
15.518186569213867,
12.915472984313965,
9.667380332946777,
12.176531791687012,
11.762201309204102,
10.680036544799805,
12.328352928161621,
12.647599220275879,
9.596328735351562,
15.444038391113281,
14.85720443725586,
10.241598129272461,
13.139902114868164,
16.845279693603516,
12.273273468017578,
12.541328430175781,
13.334638595581055,
12.975933074951172,
9.602463722229004,
14.114802360534668,
12.039304733276367,
12.908585548400879,
13.719671249389648,
11.174467086791992,
11.014312744140625,
9.13327407836914,
12.901822090148926,
10.39852237701416,
15.75925064086914,
13.115020751953125,
13.505270957946777,
9.388669967651367,
15.685017585754395,
9.671468734741211,
9.482421875,
11.772088050842285,
15.036484718322754,
6.9161057472229,
13.61577320098877,
8.50744342803955,
17.188100814819336,
12.087873458862305,
15.399444580078125,
10.037843704223633,
14.158219337463379,
6.978439807891846,
15.268631935119629,
9.792129516601562,
9.795798301696777,
12.116800308227539,
10.367740631103516,
12.59240436553955,
15.057943344116211,
9.82360553741455,
15.04765796661377,
15.740412712097168,
14.868002891540527,
14.971287727355957,
13.777905464172363,
8.657878875732422,
13.732173919677734,
14.212385177612305,
16.686508178710938,
12.506804466247559,
13.44221305847168,
13.306861877441406,
14.97480297088623,
8.43058967590332,
10.087570190429688,
11.975223541259766,
11.75169563293457,
11.477917671203613,
10.803431510925293,
13.911928176879883,
11.58420181274414,
11.835944175720215,
14.780304908752441,
16.78349494934082,
10.867911338806152,
16.964078903198242,
11.553216934204102,
14.910155296325684,
15.22846794128418,
15.000045776367188,
14.021378517150879,
12.25683307647705,
10.603898048400879,
9.150384902954102,
7.624733924865723,
10.515817642211914,
17.269760131835938,
16.116594314575195,
13.528070449829102,
14.213164329528809,
16.248552322387695,
15.311067581176758,
12.972121238708496,
11.044825553894043,
17.70571517944336,
17.254159927368164,
12.667611122131348,
10.567062377929688,
8.87431526184082,
15.262309074401855,
8.523165702819824,
17.21845245361328,
15.350238800048828,
10.52818775177002,
9.79877758026123,
9.116128921508789,
17.2183780670166,
15.385734558105469,
17.68514060974121,
8.759004592895508,
15.931114196777344,
15.351580619812012,
14.516889572143555,
15.703779220581055,
8.033468246459961,
10.18130874633789,
15.774004936218262,
8.355013847351074,
15.281346321105957,
12.263612747192383,
13.776026725769043,
12.292848587036133,
15.642183303833008,
13.67735481262207,
14.681281089782715,
8.390467643737793,
19.914207458496094,
13.847206115722656,
15.378951072692871,
15.65117073059082,
8.71078109741211,
9.617947578430176,
17.67711067199707,
14.867634773254395,
13.323198318481445,
9.691125869750977,
14.016439437866211,
16.963022232055664,
16.782928466796875,
15.28545093536377,
13.40342903137207,
15.031827926635742,
15.345904350280762,
12.398510932922363,
10.488965034484863,
11.275413513183594,
13.363807678222656,
13.816746711730957,
15.515372276306152,
17.61809730529785,
15.000624656677246,
14.9640474319458,
15.063706398010254,
14.356986999511719,
8.57900333404541,
12.424033164978027,
11.666604995727539,
15.81335163116455,
15.044267654418945,
15.725545883178711,
10.200539588928223,
14.316383361816406,
20.063325881958008,
15.464229583740234,
15.783499717712402,
15.836543083190918,
13.81277084350586,
14.33548641204834,
9.95949649810791,
8.7210111618042,
18.300033569335938,
13.479555130004883,
18.75945281982422,
9.712055206298828,
12.74074649810791,
11.851149559020996,
14.692898750305176,
8.01923656463623,
9.213905334472656,
11.723006248474121,
9.689647674560547,
7.2104573249816895,
14.957120895385742,
13.551331520080566,
15.225765228271484,
10.332306861877441,
14.332275390625,
13.95333480834961,
14.157580375671387,
16.285112380981445,
15.278292655944824,
15.835677146911621,
7.9239630699157715,
12.80255126953125,
12.219977378845215,
15.83228874206543,
8.962519645690918,
14.283270835876465,
9.73403263092041,
12.686195373535156,
15.588484764099121,
14.255825996398926,
10.134904861450195,
10.350679397583008,
12.141491889953613,
15.230549812316895,
14.205748558044434,
17.8062744140625,
11.873269081115723,
14.750626564025879,
12.959975242614746,
15.814457893371582,
8.634222030639648,
10.44699478149414,
10.802948951721191,
12.078171730041504,
9.04777717590332,
9.191462516784668,
15.204594612121582,
10.39301872253418,
15.87549877166748,
15.84069538116455,
7.744163990020752,
15.56639575958252,
15.73949146270752,
17.67401123046875,
9.873772621154785,
8.364636421203613,
11.033096313476562,
8.995258331298828,
12.575495719909668,
14.795469284057617,
10.186396598815918,
12.919405937194824,
15.645291328430176,
11.738693237304688,
14.321056365966797,
8.180145263671875,
6.863767147064209,
8.512389183044434,
12.401989936828613,
10.054760932922363,
13.171181678771973,
13.681442260742188,
7.954267978668213,
15.223541259765625,
14.3487548828125,
7.237268924713135,
13.878735542297363,
9.893241882324219,
14.59948444366455,
10.124031066894531,
13.250771522521973,
10.27807903289795,
9.433816909790039,
17.043310165405273,
11.184300422668457,
6.981171607971191,
12.669743537902832,
13.867483139038086,
15.510579109191895,
10.55393123626709,
13.01133918762207,
10.826786041259766,
16.485614776611328,
9.205599784851074,
13.939543724060059,
10.95437240600586,
9.049256324768066,
13.780542373657227,
12.252045631408691,
8.755061149597168,
15.556432723999023,
15.129565238952637,
19.816247940063477,
11.464540481567383,
14.649495124816895,
20.02330207824707,
9.769295692443848,
11.786215782165527,
12.417828559875488,
10.990633964538574,
13.768134117126465,
17.712841033935547,
9.533988952636719,
14.68476676940918,
8.241375923156738,
13.470783233642578,
14.497600555419922,
15.202290534973145,
10.663501739501953,
13.284339904785156,
17.16771125793457,
11.32642650604248,
12.612439155578613,
12.132270812988281,
14.71967887878418,
11.239912033081055,
11.30316162109375,
12.859066009521484,
13.833052635192871,
12.628270149230957,
12.284011840820312,
7.551727294921875,
15.292284965515137,
10.026961326599121,
7.1772260665893555,
8.481682777404785,
11.764120101928711,
13.81789493560791,
15.219534873962402,
12.564711570739746,
11.398881912231445,
12.503819465637207,
11.418730735778809,
17.364212036132812,
7.259226322174072,
8.223641395568848,
10.516641616821289,
14.182125091552734,
18.566308975219727,
15.259535789489746,
10.40928840637207,
8.964873313903809,
15.70394515991211,
12.462787628173828,
8.561726570129395,
8.156561851501465,
8.884578704833984,
14.96505069732666,
13.698128700256348,
9.794791221618652,
14.809483528137207,
17.5943603515625,
12.628070831298828,
12.03186321258545,
9.772871971130371,
10.271044731140137,
15.556307792663574,
17.152515411376953,
10.667527198791504,
17.03702735900879,
13.932272911071777,
14.107853889465332,
10.492096900939941,
19.859268188476562,
15.56434440612793,
14.586565017700195,
15.505583763122559,
17.91860580444336,
15.812779426574707,
13.65098762512207,
14.674631118774414,
7.20241641998291,
8.767559051513672,
15.731743812561035,
13.82180118560791,
7.190230369567871,
15.775517463684082,
11.449706077575684,
15.84136962890625,
13.62345027923584,
9.874153137207031,
10.840150833129883,
11.667170524597168,
15.007457733154297,
13.747217178344727,
8.515689849853516,
14.48007869720459,
12.964667320251465,
15.510244369506836,
9.283330917358398,
10.225934982299805,
8.868353843688965,
9.419539451599121,
7.310421943664551,
15.528799057006836,
12.562219619750977,
10.348673820495605,
13.139947891235352,
10.200236320495605,
10.810667991638184,
16.402849197387695,
9.15959358215332,
19.654481887817383,
11.689038276672363,
16.481374740600586,
13.551029205322266,
12.733091354370117,
10.728801727294922,
11.903244972229004,
8.480473518371582,
7.311472415924072,
14.379504203796387,
15.821454048156738,
12.498774528503418,
15.612441062927246,
9.220677375793457,
7.602438449859619,
8.468145370483398,
12.711092948913574,
15.221742630004883,
11.300366401672363,
16.053003311157227,
8.050087928771973,
13.7857027053833,
12.970553398132324,
8.899787902832031,
16.89240837097168,
9.22493839263916,
10.802984237670898,
13.91804313659668,
12.46367073059082,
9.54627513885498,
15.248028755187988,
15.26939582824707,
14.461872100830078,
11.225115776062012,
19.240324020385742,
10.015995979309082,
17.538618087768555,
8.666450500488281,
12.14332103729248,
9.480335235595703,
16.914199829101562,
17.417573928833008,
9.499152183532715,
14.230027198791504,
15.018729209899902,
10.628472328186035,
15.543353080749512,
10.041635513305664,
10.645490646362305,
12.270027160644531,
15.114514350891113,
8.12055778503418,
12.872846603393555,
12.228461265563965,
12.126045227050781,
12.398863792419434,
12.537858963012695,
17.06207275390625,
17.863431930541992,
14.533246040344238,
15.574475288391113,
9.702125549316406,
10.511423110961914,
11.029650688171387,
13.991247177124023,
12.516645431518555,
10.672861099243164,
14.453144073486328,
12.68151569366455,
15.701544761657715,
12.362592697143555,
15.064783096313477,
9.793460845947266,
10.494576454162598,
10.657865524291992,
15.853418350219727,
17.217042922973633,
10.9003267288208,
13.572773933410645,
12.316244125366211,
11.357219696044922,
11.263154029846191,
15.929333686828613,
10.135480880737305,
11.323053359985352,
12.263757705688477,
12.674592018127441,
13.26622200012207,
13.424861907958984,
8.9893217086792,
6.866525650024414,
9.120930671691895,
7.972449779510498,
13.183940887451172,
9.212872505187988,
8.6232328414917,
15.153904914855957,
13.99344539642334,
14.990610122680664,
9.58720874786377,
11.706887245178223,
12.837018966674805,
14.949995994567871,
12.945145606994629,
14.763795852661133,
9.474203109741211,
7.788588047027588,
14.273944854736328,
17.672710418701172,
9.478824615478516,
13.79647445678711,
7.867363452911377,
14.663259506225586,
10.431144714355469,
10.626153945922852,
13.600171089172363,
8.93112850189209,
9.782588958740234,
15.145285606384277,
12.16882038116455,
11.198407173156738,
10.087007522583008,
8.76431941986084,
14.653581619262695,
13.724739074707031,
10.00656795501709,
9.813343048095703,
11.318805694580078,
10.84178352355957,
8.821229934692383,
11.796918869018555,
12.325510025024414,
15.020112037658691,
15.17965316772461,
14.874994277954102,
14.974727630615234,
13.95366382598877,
13.671653747558594,
16.271976470947266,
15.534866333007812,
10.506967544555664,
10.408635139465332,
12.152761459350586,
12.945412635803223,
14.61600399017334,
9.635810852050781,
14.322639465332031,
11.477577209472656,
12.746262550354004,
8.408178329467773,
10.296690940856934,
9.153209686279297,
9.02613639831543,
14.412470817565918,
13.495574951171875,
17.546049118041992,
10.045572280883789,
9.16932201385498,
9.227618217468262,
12.539045333862305,
10.369481086730957,
16.929214477539062,
15.19424819946289,
12.609257698059082,
10.911392211914062,
11.434160232543945,
10.388712882995605,
12.919916152954102,
14.583855628967285,
12.34798812866211,
7.690768241882324,
14.503153800964355,
11.807097434997559,
12.858346939086914,
15.236221313476562,
16.73194694519043,
8.84174633026123,
13.817584991455078,
12.111030578613281,
8.526649475097656,
15.284158706665039,
8.798752784729004,
15.13426685333252,
15.840158462524414,
14.869248390197754,
10.160592079162598,
7.873473167419434,
8.970710754394531,
7.2846832275390625,
9.727649688720703,
14.541719436645508,
13.742326736450195,
12.259282112121582,
6.899241924285889,
11.25386905670166,
8.278125762939453,
10.237272262573242,
14.789801597595215,
12.94405460357666,
9.712749481201172,
15.048218727111816,
14.983108520507812,
13.927639961242676,
13.209582328796387,
14.822530746459961,
11.91065788269043,
11.028255462646484,
13.5050048828125,
17.51167869567871,
16.29771614074707,
13.251448631286621,
10.969011306762695,
12.5740385055542,
13.531742095947266,
10.714729309082031,
14.074286460876465,
7.281322479248047,
9.113421440124512,
13.106621742248535,
14.789301872253418,
13.607902526855469,
15.464314460754395,
18.227685928344727,
13.622533798217773,
8.675457954406738,
8.782965660095215,
15.362953186035156,
13.152846336364746,
17.961219787597656,
11.215217590332031,
8.38806438446045,
13.775936126708984,
9.068121910095215,
14.163769721984863,
10.311175346374512,
14.892724990844727,
11.806984901428223,
10.6077880859375,
8.572835922241211,
7.412637233734131,
10.083433151245117,
11.034436225891113,
12.065597534179688,
11.683055877685547,
15.054430961608887,
13.849554061889648,
15.002737998962402,
6.037904739379883,
9.737370491027832,
9.035574913024902,
15.018735885620117,
9.602556228637695,
14.666193008422852,
8.551279067993164,
9.363862991333008,
13.61895751953125,
12.58642864227295,
14.569921493530273,
11.706422805786133,
13.20863151550293,
11.988795280456543,
10.634361267089844,
13.826720237731934,
15.833057403564453,
8.027142524719238,
14.993217468261719,
13.209676742553711,
15.68554401397705,
12.51327133178711,
10.914670944213867,
8.052645683288574,
10.708949089050293,
11.78250789642334,
7.972492694854736,
9.733983993530273,
14.853123664855957,
7.143021106719971,
14.339700698852539,
10.606022834777832,
13.707883834838867,
15.70265007019043,
15.788955688476562,
14.558691024780273,
18.50461196899414,
9.33952808380127,
10.37445068359375,
12.100932121276855,
16.475900650024414,
12.515801429748535,
9.129729270935059,
13.891651153564453,
12.330122947692871,
15.691335678100586,
12.897334098815918,
8.460653305053711,
10.49392032623291,
19.61005210876465,
14.36448860168457,
15.118500709533691,
11.179089546203613,
9.889456748962402,
17.326942443847656,
18.892719268798828,
9.179244041442871,
7.172621726989746,
10.200754165649414,
8.192584037780762,
13.773377418518066,
11.72470760345459,
6.757266998291016,
11.252049446105957,
9.455102920532227,
13.458419799804688,
17.396799087524414,
10.702801704406738,
11.664410591125488,
15.832646369934082,
8.634333610534668,
13.80119514465332,
12.279688835144043,
11.069295883178711,
12.778423309326172,
9.812647819519043,
12.092399597167969,
15.352694511413574,
12.358590126037598,
10.361763000488281,
13.254987716674805,
14.66788387298584,
16.308868408203125,
13.571968078613281,
15.45386028289795,
11.11542797088623,
14.411439895629883,
13.340015411376953,
13.71717643737793,
15.450760841369629,
11.307778358459473,
19.2810115814209,
9.067118644714355,
8.611939430236816,
14.441980361938477,
15.835956573486328,
13.066603660583496,
8.756867408752441,
17.491186141967773,
12.914730072021484,
15.638938903808594,
15.121101379394531,
13.90153694152832,
15.685554504394531,
9.805732727050781,
10.11843490600586,
10.505762100219727,
15.680638313293457,
15.42166805267334,
11.072809219360352,
14.606340408325195,
12.868952751159668,
9.98067855834961,
14.358879089355469,
17.670942306518555,
14.409255027770996,
12.556029319763184,
10.565918922424316,
16.805545806884766,
9.903736114501953,
13.466500282287598,
12.887186050415039,
9.225401878356934,
7.203061580657959,
11.812052726745605,
12.79598331451416,
12.982254028320312,
14.760723114013672,
8.97680950164795,
9.200321197509766,
10.952250480651855,
17.563350677490234,
14.53742504119873,
9.815757751464844,
11.810774803161621,
9.665905952453613,
15.662211418151855,
7.246660232543945,
9.915827751159668,
15.379044532775879,
13.857355117797852,
9.288601875305176,
8.781973838806152,
10.110397338867188,
14.879998207092285,
14.631003379821777,
10.117868423461914,
15.607909202575684,
15.527019500732422,
12.387107849121094,
8.709959983825684,
14.15339469909668,
17.305747985839844,
13.428043365478516,
11.927905082702637,
13.75766372680664,
10.810352325439453,
13.5991792678833,
9.139626502990723,
8.701448440551758,
9.999927520751953,
11.117366790771484,
13.669201850891113,
14.995168685913086,
8.819572448730469,
14.563597679138184,
13.742776870727539,
18.347959518432617,
8.891918182373047,
6.979764938354492,
16.356517791748047,
13.980238914489746,
17.430503845214844,
9.328985214233398,
8.08416748046875,
9.717106819152832,
10.469708442687988,
11.695456504821777,
9.581342697143555,
9.487110137939453,
13.900289535522461,
11.546311378479004,
12.050153732299805,
16.9327449798584,
9.958504676818848,
15.143594741821289,
8.130253791809082,
19.601898193359375,
7.770567893981934,
13.166851043701172,
12.551107406616211,
14.21590518951416,
12.424033164978027,
10.665816307067871,
15.177350997924805,
12.022079467773438,
15.554730415344238,
10.579912185668945,
11.164271354675293,
8.978257179260254,
18.088300704956055,
15.722565650939941,
9.978120803833008,
7.193972110748291,
8.736201286315918,
7.654781341552734,
11.567078590393066,
15.440139770507812,
17.269695281982422
],
"y": [
-4.649831771850586,
6.783786773681641,
1.7568490505218506,
-9.024592399597168,
-5.9120941162109375,
6.928289890289307,
-0.25185173749923706,
-4.693049430847168,
-8.162405967712402,
-6.1041059494018555,
-2.947967767715454,
6.8962602615356445,
-3.406827688217163,
-6.424927234649658,
-6.222174644470215,
-8.996594429016113,
2.4733946323394775,
9.273205757141113,
-1.7927558422088623,
-5.856531143188477,
-6.75288724899292,
-7.280546188354492,
-8.863137245178223,
-5.480527877807617,
8.098917961120605,
-4.230031490325928,
-5.012421131134033,
-4.692120552062988,
-5.641992092132568,
-8.279879570007324,
-2.9099321365356445,
-3.4079909324645996,
-8.300874710083008,
-9.355842590332031,
2.1984572410583496,
-4.676422595977783,
1.6325194835662842,
-2.770901918411255,
-8.697929382324219,
-7.268712520599365,
-3.715724468231201,
-6.928355693817139,
-5.459765434265137,
-8.997785568237305,
-6.2760772705078125,
-6.025643825531006,
-0.4313569664955139,
-7.279110431671143,
-2.832366466522217,
-7.83388614654541,
3.3165905475616455,
-1.4819749593734741,
0.6439061760902405,
-8.376426696777344,
4.255889415740967,
-6.698877811431885,
-8.418152809143066,
-0.12669748067855835,
-10.18868637084961,
6.781656265258789,
-8.828170776367188,
-7.276616096496582,
7.7228522300720215,
1.6217657327651978,
1.6937694549560547,
-2.071580648422241,
-4.642943859100342,
-0.8804888129234314,
-6.4831647872924805,
-5.206830978393555,
1.7794760465621948,
-6.849705219268799,
-4.142029285430908,
-2.421232223510742,
-5.901525020599365,
-6.779447555541992,
-5.845848560333252,
-8.612486839294434,
-1.0934667587280273,
-6.005093097686768,
-8.28903579711914,
-7.4806952476501465,
-5.08665657043457,
5.516916275024414,
-6.707635402679443,
-5.482202529907227,
-7.456870079040527,
-3.7592735290527344,
-1.278673529624939,
-0.49727436900138855,
-1.1784483194351196,
-0.05337494984269142,
9.335274696350098,
-7.686933517456055,
-0.5368879437446594,
-5.016483306884766,
3.598468065261841,
-7.479794025421143,
5.628667831420898,
-9.607803344726562,
-2.696354627609253,
-6.0069122314453125,
4.34240198135376,
-6.774387359619141,
-9.059425354003906,
-9.517837524414062,
8.839268684387207,
-4.563704967498779,
-6.780140399932861,
1.273024320602417,
-2.58801007270813,
7.9414801597595215,
-5.752859592437744,
1.3086196184158325,
3.0993452072143555,
-7.342641830444336,
-7.490723609924316,
-0.7125490307807922,
-5.466843605041504,
5.373899936676025,
-5.268581867218018,
-0.6691516637802124,
-1.507751226425171,
4.980581760406494,
6.719130992889404,
-4.914321422576904,
1.405423641204834,
5.33241081237793,
-5.7356157302856445,
6.366947174072266,
2.82363224029541,
5.46751594543457,
-0.5484809875488281,
-4.701740264892578,
-6.101917743682861,
-0.43843701481819153,
-4.827213287353516,
2.6545488834381104,
-3.8749239444732666,
-6.723937034606934,
8.729487419128418,
-4.300817966461182,
8.102435111999512,
8.995659828186035,
7.642132759094238,
4.232538223266602,
-6.324328899383545,
4.6605024337768555,
5.898747444152832,
9.191574096679688,
-7.777246952056885,
-6.490996837615967,
-0.8286624550819397,
-5.7103376388549805,
-0.6736008524894714,
-4.712156295776367,
5.29043436050415,
-6.983811855316162,
-7.077182292938232,
-8.111641883850098,
-10.674570083618164,
1.9678397178649902,
-7.470485210418701,
3.050773859024048,
-4.605472564697266,
-3.786173105239868,
-3.0375351905822754,
-6.737481594085693,
-6.961741924285889,
7.015317916870117,
2.0504150390625,
5.305222034454346,
3.2246174812316895,
7.647727966308594,
-0.44765302538871765,
-0.5213425159454346,
6.908613681793213,
-6.75282621383667,
1.8887499570846558,
-5.6051859855651855,
-5.502636909484863,
-6.773067951202393,
6.492178440093994,
-8.031011581420898,
4.0314130783081055,
8.663174629211426,
5.477118015289307,
-3.721867799758911,
-2.649275541305542,
-9.07983112335205,
0.7248536348342896,
-8.47216796875,
3.13254714012146,
8.907764434814453,
0.42377397418022156,
-0.6968197226524353,
-3.9114153385162354,
1.3923379182815552,
-2.7090137004852295,
-10.511133193969727,
4.236969470977783,
7.713978290557861,
4.577990531921387,
0.2914210855960846,
1.0150691270828247,
5.536810874938965,
-7.231377601623535,
6.509602069854736,
-3.7521088123321533,
-7.17222261428833,
-9.230120658874512,
-3.3415660858154297,
-3.161844253540039,
4.011031627655029,
3.5212419033050537,
-7.991546630859375,
7.823282718658447,
-4.1734819412231445,
-7.261801242828369,
2.9749915599823,
-2.581406831741333,
-8.095606803894043,
-5.952740669250488,
2.2232444286346436,
9.78933048248291,
4.008393287658691,
-7.03868293762207,
-2.441399335861206,
-1.2938013076782227,
2.8131046295166016,
-9.620388984680176,
-6.248360633850098,
-4.5672454833984375,
6.823616027832031,
-6.727826118469238,
-6.132840633392334,
-7.061954498291016,
-2.1853487491607666,
-7.563999176025391,
-3.470409393310547,
1.0036306381225586,
6.408046245574951,
2.611536741256714,
5.168931484222412,
9.263219833374023,
-5.706908702850342,
-1.0695350170135498,
-5.999571800231934,
8.849249839782715,
-6.350512981414795,
2.375438928604126,
-5.031206130981445,
-5.917262554168701,
-4.864416122436523,
-2.502256393432617,
-1.4792295694351196,
9.654224395751953,
-2.4669859409332275,
-7.9852752685546875,
-7.661418914794922,
-3.769700765609741,
-7.684676170349121,
1.0185306072235107,
-7.483314514160156,
-7.719696521759033,
-2.9238100051879883,
-5.642613410949707,
-3.7560312747955322,
-3.3223769664764404,
-8.86794662475586,
-6.039337158203125,
0.1309393346309662,
-4.679780006408691,
0.6522173881530762,
3.134843111038208,
5.007354736328125,
-6.591952800750732,
-4.908343315124512,
-4.664474964141846,
-10.266097068786621,
0.02000267058610916,
-9.539865493774414,
-5.061666965484619,
-1.9137992858886719,
-6.181204319000244,
-5.959780693054199,
-2.769016742706299,
-5.8948564529418945,
-5.217207908630371,
-3.228729009628296,
-6.201133728027344,
-9.526261329650879,
-3.3996098041534424,
-8.176974296569824,
-3.1571309566497803,
-1.7410144805908203,
-0.9593928456306458,
4.283318519592285,
-8.05951976776123,
-6.646767616271973,
-7.068904399871826,
-5.411887168884277,
-6.528621673583984,
-10.07722282409668,
-6.911861419677734,
-6.573763370513916,
-5.148759841918945,
-10.548007011413574,
-6.172544002532959,
-8.11868667602539,
2.7091727256774902,
0.9083201289176941,
-3.5063493251800537,
2.82252836227417,
-2.906238317489624,
-0.5929967761039734,
-3.0548155307769775,
-6.737260818481445,
-3.1840784549713135,
-2.577017307281494,
-1.7402750253677368,
0.2183486819267273,
-0.7998355627059937,
-3.617432117462158,
-6.774842262268066,
-7.056030750274658,
-4.628971576690674,
1.8458110094070435,
0.6593014001846313,
-6.622152328491211,
5.115309238433838,
-6.784185409545898,
-8.266770362854004,
-5.7701945304870605,
-8.91730785369873,
-4.568354606628418,
-5.280487537384033,
-9.738155364990234,
-4.054481506347656,
-1.725364089012146,
6.990080833435059,
3.7436864376068115,
-4.47365665435791,
-8.29505729675293,
-9.49651050567627,
-2.135240316390991,
3.8841729164123535,
-2.507948398590088,
-4.749856472015381,
0.10213366150856018,
-6.358006000518799,
-5.041184425354004,
-7.989243984222412,
2.4240832328796387,
-3.6525518894195557,
1.2748888731002808,
-2.372915029525757,
-8.01764965057373,
-5.470917701721191,
-9.250215530395508,
-9.67615032196045,
-0.8315244913101196,
6.401496410369873,
3.3170969486236572,
-1.8347983360290527,
-6.230031967163086,
-8.75853443145752,
-9.104214668273926,
-4.345154285430908,
-4.895002365112305,
-6.704827308654785,
2.469860076904297,
-7.808406829833984,
-9.292627334594727,
-6.4861226081848145,
-6.665773391723633,
-7.185871124267578,
-2.7672243118286133,
-3.444016456604004,
-6.073042392730713,
1.6495361328125,
0.5377610325813293,
0.15008233487606049,
0.9841465353965759,
-4.4073896408081055,
-5.694206714630127,
-3.9251863956451416,
-6.696435928344727,
-10.044696807861328,
-1.9543492794036865,
6.180916786193848,
-2.5128729343414307,
-5.982427597045898,
8.593852996826172,
-6.385461330413818,
-0.21786126494407654,
-8.821832656860352,
-7.586583614349365,
8.067541122436523,
-7.211086750030518,
9.535412788391113,
-5.974578380584717,
-3.22959041595459,
-4.810984134674072,
-7.377154350280762,
9.095677375793457,
-9.534735679626465,
1.1367243528366089,
-1.3650356531143188,
2.539186716079712,
1.0013374090194702,
-3.5943877696990967,
-7.787670612335205,
-7.770537853240967,
6.278273582458496,
5.353282928466797,
7.461632251739502,
-6.796993732452393,
-5.998435974121094,
-0.5484638214111328,
-4.441572666168213,
2.7561604976654053,
6.518052577972412,
-8.96141529083252,
-8.315217971801758,
-4.33305025100708,
5.645882606506348,
-2.1600332260131836,
1.9150437116622925,
-5.816810607910156,
2.290008068084717,
-3.986370801925659,
6.286608695983887,
1.002347469329834,
-2.7077291011810303,
-2.624122142791748,
-6.565981388092041,
-3.720553398132324,
-7.277464866638184,
0.43822234869003296,
-10.123006820678711,
9.099920272827148,
3.002535104751587,
-3.953676462173462,
-0.6892844438552856,
2.568955183029175,
-5.187468528747559,
0.2361171692609787,
-10.233757972717285,
-5.242856025695801,
-6.328430652618408,
-7.3858256340026855,
-4.96852445602417,
-3.18284010887146,
1.7950927019119263,
-8.866497993469238,
-7.283470630645752,
-5.844159126281738,
-5.023008823394775,
-2.447741985321045,
7.842324256896973,
-2.461986780166626,
-1.3695127964019775,
-5.0278544425964355,
8.39200210571289,
-4.014880657196045,
-4.65613317489624,
-6.455247402191162,
-8.241315841674805,
-8.124181747436523,
-2.432178258895874,
-7.267576217651367,
-6.3386335372924805,
-7.958671569824219,
8.545821189880371,
-6.758883476257324,
-5.789517402648926,
-8.363499641418457,
4.5852437019348145,
-7.725729942321777,
-10.632292747497559,
-4.028743267059326,
-1.5872336626052856,
-6.381335735321045,
-6.275903701782227,
-4.818432807922363,
4.783705711364746,
5.783734321594238,
4.189642429351807,
4.6919684410095215,
1.112504005432129,
-9.105340957641602,
-0.3655362129211426,
-9.828566551208496,
-7.425927639007568,
-3.9764606952667236,
-0.1146455705165863,
-0.5113843679428101,
6.6265950202941895,
-4.730525970458984,
-10.008284568786621,
-0.5529319643974304,
-4.725808143615723,
-8.51534366607666,
-8.850398063659668,
8.258182525634766,
-2.909363031387329,
-6.131048679351807,
-9.482095718383789,
-0.6996958255767822,
-2.662184000015259,
-6.864834785461426,
-8.32788372039795,
3.0145504474639893,
5.757158279418945,
5.375888824462891,
1.644097089767456,
-3.6395838260650635,
-9.23827075958252,
-3.8674991130828857,
-5.788286209106445,
-3.694685935974121,
-6.558192253112793,
-7.346541881561279,
-0.7366765737533569,
-6.185197830200195,
-7.402612209320068,
-9.687475204467773,
0.8958366513252258,
-5.161564350128174,
-7.122306823730469,
1.546026587486267,
-5.014023780822754,
-2.960386037826538,
-9.291540145874023,
-5.459076881408691,
-4.04585075378418,
-4.473145008087158,
-5.881133079528809,
-2.8501439094543457,
-5.183411121368408,
-10.780163764953613,
-1.1728898286819458,
-8.418583869934082,
-6.331216812133789,
-5.5131940841674805,
-7.080805778503418,
-0.43957608938217163,
-8.062248229980469,
-7.2594828605651855,
-5.350963115692139,
-2.77351713180542,
5.8493781089782715,
-7.387172698974609,
-8.895252227783203,
0.3233559727668762,
0.915357232093811,
-4.702164649963379,
5.48867130279541,
4.139599323272705,
3.9665822982788086,
-4.935949802398682,
-6.116751670837402,
0.14559932053089142,
5.842653274536133,
8.638102531433105,
-3.9329259395599365,
-10.808286666870117,
-6.773273944854736,
2.869011640548706,
-0.9591118693351746,
-5.022247314453125,
-6.052866458892822,
-7.651827335357666,
-6.702455997467041,
-9.643437385559082,
8.281086921691895,
9.390931129455566,
8.572003364562988,
-3.2399630546569824,
-7.639590263366699,
-0.9634031653404236,
8.431658744812012,
8.785516738891602,
9.32207202911377,
-2.743800163269043,
2.25937819480896,
-0.03169160336256027,
8.129704475402832,
-2.3494865894317627,
-3.9492809772491455,
-2.8929052352905273,
-6.835318565368652,
6.405685901641846,
4.651505470275879,
6.588092803955078,
-4.810692310333252,
3.060724973678589,
-5.900709629058838,
6.433692932128906,
6.957254886627197,
6.763454914093018,
1.0310323238372803,
2.3383407592773438,
-4.507254123687744,
-3.826617479324341,
-3.214340925216675,
3.3661794662475586,
-6.773115634918213,
-10.866131782531738,
-4.8276238441467285,
-6.220249176025391,
2.6603612899780273,
-5.181987285614014,
-9.027566909790039,
-7.374053001403809,
-4.7877373695373535,
-8.092363357543945,
9.703338623046875,
3.8026607036590576,
7.576075553894043,
-9.408358573913574,
7.430616855621338,
-1.0129411220550537,
4.293185710906982,
6.697290420532227,
7.216203212738037,
1.5089882612228394,
-6.244869709014893,
-3.5236852169036865,
-6.923766136169434,
6.678246021270752,
-3.9237923622131348,
4.336486339569092,
-3.725668430328369,
-1.0219793319702148,
5.537771701812744,
1.2229100465774536,
-7.098750114440918,
-8.513372421264648,
-2.8913357257843018,
-6.633769989013672,
1.8793182373046875,
-7.331597328186035,
-5.9572954177856445,
2.765085458755493,
-2.92331862449646,
-7.637486457824707,
-7.858203887939453,
-3.8300814628601074,
-2.322746992111206,
-2.340733528137207,
-3.4635932445526123,
-3.0856471061706543,
-5.907431125640869,
-7.838478088378906,
7.286427021026611,
-5.632230758666992,
-5.526170253753662,
6.206769943237305,
7.962441444396973,
3.387942314147949,
-8.855257987976074,
-7.643881320953369,
-5.0478291511535645,
-8.570905685424805,
-1.5181740522384644,
-6.141116619110107,
-9.208850860595703,
0.568413257598877,
6.1168212890625,
-0.9372339248657227,
1.4898885488510132,
3.6893045902252197,
-0.7313041687011719,
-4.3293375968933105,
-1.8753241300582886,
-10.100543022155762,
-0.6509182453155518,
3.7262840270996094,
-7.027398109436035,
6.41178035736084,
2.912588119506836,
-7.466477870941162,
6.864632606506348,
-1.7495269775390625,
-9.177392959594727,
-1.7969895601272583,
-6.078983306884766,
-9.12777042388916,
-2.971449613571167,
-6.475687026977539,
-0.8905150294303894,
1.3447376489639282,
-5.924374580383301,
4.117884635925293,
5.969344139099121,
-4.202249526977539,
-6.428131580352783,
-2.155888795852661,
2.1591923236846924,
-9.225420951843262,
9.463882446289062,
-2.821953296661377,
-8.790116310119629,
-0.08610931783914566,
-5.01273250579834,
-5.7767791748046875,
6.782146453857422,
8.954483032226562,
-6.417672157287598,
-0.5141060948371887,
2.375465154647827,
-5.940948486328125,
-3.7040319442749023,
-4.552087783813477,
-5.267597675323486,
-1.2100601196289062,
3.326106548309326,
3.4134552478790283,
-2.613369941711426,
-6.198163986206055,
-8.843421936035156,
0.25302618741989136,
3.149085521697998,
4.791799068450928,
-3.7031917572021484,
-4.146486759185791,
-6.216721057891846,
-3.6767899990081787,
-6.864487171173096,
-3.2571914196014404,
2.6564180850982666,
-4.0334625244140625,
-2.395244598388672,
-6.945918560028076,
2.2641818523406982,
-0.23569513857364655,
-6.638156414031982,
-6.515292644500732,
3.5300133228302,
-9.02435302734375,
-8.700299263000488,
-4.535965442657471,
-8.297337532043457,
-10.022907257080078,
-7.689633846282959,
-5.519608020782471,
-5.3628249168396,
-4.277011871337891,
-4.532611846923828,
-1.8720628023147583,
-8.404682159423828,
-4.856013774871826,
-6.577983379364014,
-9.250158309936523,
-6.4591898918151855,
5.911405086517334,
-4.429164886474609,
-8.756190299987793,
-9.002787590026855,
-4.246677875518799,
-8.047785758972168,
-5.0378875732421875,
-4.219583034515381,
-6.201460361480713,
0.8945229053497314,
-10.44404411315918,
2.851949453353882,
-6.489263534545898,
-4.611616134643555,
-0.6967368721961975,
-2.2873120307922363,
-7.827534198760986,
6.007499694824219,
-4.3143463134765625,
-2.8464150428771973,
-5.731441497802734,
-6.65234375,
-3.4591376781463623,
-7.073154449462891,
-6.428825378417969,
4.806846618652344,
2.231496810913086,
-7.292476654052734,
-7.504769325256348,
7.427741050720215,
1.6905838251113892,
-8.0172758102417,
-7.515354156494141,
-6.356741428375244,
5.777495861053467,
0.5581400990486145,
-8.648103713989258,
7.731164455413818,
-6.04634952545166,
6.841320514678955,
-2.4278712272644043,
-8.579939842224121,
-8.61754322052002,
-0.7212562561035156,
0.7273698449134827,
-0.7070395350456238,
-9.65063762664795,
-7.720959663391113,
-4.617431640625,
-7.959375381469727,
-6.56569766998291,
-10.319727897644043,
-6.429919242858887,
-4.732189178466797,
-7.026787757873535,
5.242034435272217,
-4.229544162750244,
-1.8710867166519165,
0.8428487181663513,
-10.536147117614746,
-2.1022300720214844,
-6.83671236038208,
-8.116695404052734,
-6.526915550231934,
-5.792619705200195,
-6.075329303741455,
7.78058385848999,
-7.4649505615234375,
-3.134824752807617,
-6.362986087799072,
-8.814780235290527,
-7.073448181152344,
1.740422248840332,
7.379269599914551,
0.2266792505979538,
-8.047919273376465,
-8.108081817626953,
-6.354535102844238,
-4.7812323570251465,
0.7723249197006226,
7.426258087158203,
-2.7734804153442383,
-6.730911731719971,
-6.786988258361816,
5.452258586883545,
-8.12872314453125,
-6.179487228393555,
-0.09358798712491989,
-5.440055847167969,
-5.627048969268799,
-8.079863548278809,
-3.4665026664733887,
-3.6321334838867188,
-9.48507308959961,
3.7419846057891846,
0.5617562532424927,
-2.3021013736724854,
-6.64692497253418,
-10.325554847717285,
1.077247142791748,
-7.196329593658447,
-2.9643499851226807,
-4.406215190887451,
-0.7240424752235413,
-2.3724138736724854,
-9.368009567260742,
4.177314758300781,
-9.4161958694458,
-3.07353138923645,
6.4414143562316895,
-10.583883285522461,
-7.518529891967773,
-4.735927581787109,
-7.272758483886719,
-5.142796993255615,
0.7350156307220459,
-6.6362152099609375,
-2.551957368850708,
-4.246255874633789,
0.599082350730896,
-6.325417995452881,
-5.9910783767700195,
0.8748926520347595,
4.670862197875977,
-10.026803016662598,
-8.834157943725586,
-5.151493549346924,
-3.397104501724243,
-5.157511234283447,
-3.287501335144043,
3.008861541748047,
-0.9033249616622925,
-7.18093729019165,
-5.273902893066406,
9.484980583190918,
-4.868968963623047,
-2.874769687652588,
-3.7450690269470215,
-7.30543327331543,
-6.0583906173706055,
-6.566854476928711,
1.6138023138046265,
-6.217682361602783,
-2.128305435180664,
-7.4638495445251465,
-7.01069974899292,
-7.584229946136475,
-2.277601480484009,
0.33025431632995605,
-4.943423748016357,
0.8787356019020081,
-8.119516372680664,
-9.086797714233398,
-8.151470184326172,
-10.536467552185059,
-6.989553451538086,
-4.421990871429443,
-9.26320743560791,
-4.415152072906494,
-0.2520122528076172,
1.874143123626709,
-1.057220220565796,
-1.8315461874008179,
-5.403277397155762,
-3.3153445720672607,
8.443913459777832,
-10.277375221252441,
-6.891973972320557,
-10.665785789489746,
-7.107495307922363,
-8.267988204956055,
3.5718677043914795,
-5.022398471832275,
0.10136467963457108,
-5.314029693603516,
-7.89640998840332,
-2.6091604232788086,
-7.2267656326293945,
-4.74594783782959,
-10.666415214538574,
-8.117128372192383,
-0.7646633386611938,
0.05459938198328018,
-4.9750776290893555,
-1.7565066814422607,
-4.259538173675537,
4.829140663146973,
-4.763086795806885,
-7.516880035400391,
-4.686662197113037,
-8.670104026794434,
-3.9434382915496826,
-7.906609535217285,
-6.796332359313965,
0.018897956237196922,
3.4590699672698975,
-7.9607930183410645,
-6.317329406738281,
-6.267762184143066,
-0.6129878759384155,
-1.8318432569503784,
-6.915979385375977,
-7.912474155426025,
-6.964418411254883,
-9.417609214782715,
-6.419804573059082,
-8.164254188537598,
-8.025203704833984,
-4.676736354827881,
1.9619017839431763,
-9.21703815460205,
-3.657926559448242,
-9.406002044677734,
-10.496667861938477,
-5.07835054397583,
-7.611296653747559,
1.693952202796936,
-6.100832462310791,
-3.339320182800293,
-1.8545265197753906,
-10.342050552368164,
-3.754201889038086,
-0.7315292358398438,
-7.215296268463135,
-6.683040142059326,
-9.525959014892578,
0.41161972284317017,
-5.825473308563232,
-3.4955859184265137,
-9.0138578414917,
-4.943632125854492,
-2.42535400390625,
-4.55711030960083,
-7.217335224151611,
-7.223466873168945,
-0.6420525908470154,
0.694955587387085,
-7.8910908699035645,
-7.479952812194824,
-7.634912014007568,
-9.886110305786133,
-2.3017799854278564,
-7.916293621063232,
-8.128220558166504,
-10.323774337768555,
9.705227851867676,
6.690621376037598,
-9.226217269897461,
-7.997115135192871,
-7.111355781555176,
-5.478867530822754,
-7.179403305053711,
-4.4310221672058105,
2.213244676589966,
5.651822090148926,
-7.0012969970703125,
-8.09403133392334,
-3.7882742881774902,
-5.3545145988464355,
-8.304940223693848,
4.516240119934082,
-3.0681426525115967,
-3.914994716644287,
-9.816758155822754,
4.9629807472229,
1.7784485816955566,
-2.532248020172119,
9.059621810913086,
-7.173839569091797,
-4.015490531921387,
-6.319234371185303,
1.0334837436676025,
-5.979351043701172,
8.763343811035156,
-5.020082473754883,
-1.3936101198196411,
-0.03750796243548393,
-1.0802156925201416,
3.438352108001709,
-7.155506134033203,
-3.8744454383850098,
-0.43063482642173767,
4.5167436599731445,
-0.6320076584815979,
4.441526412963867,
-3.1944355964660645,
1.110347867012024,
-5.0522894859313965,
-7.702300548553467,
5.84191370010376,
1.2645108699798584,
-6.916543006896973,
-4.728094100952148,
-8.68407154083252,
1.9928981065750122,
-5.378305435180664,
1.3351986408233643,
-3.7924563884735107,
4.655170440673828,
-7.068161964416504,
-8.867918968200684,
-5.144821643829346,
-6.626038551330566,
-1.8360650539398193,
-1.4525854587554932,
-2.9838101863861084,
-3.026378870010376,
-6.333653450012207,
-0.29473987221717834,
-7.691901683807373,
0.8820987939834595,
-10.778678894042969,
-5.417232990264893,
7.8329267501831055,
-5.973371505737305,
2.3935792446136475,
-3.992511034011841,
-8.964942932128906,
7.338871955871582,
-7.860383033752441,
2.6822562217712402,
-6.60376501083374,
0.7101116180419922,
-5.385263919830322,
-1.5109096765518188,
6.750247001647949,
6.5318217277526855,
-6.769838333129883,
-9.489171981811523,
9.414024353027344,
0.4656027555465698,
-4.358452320098877,
-4.071258068084717,
-6.845149993896484,
-8.675036430358887,
-4.01828670501709,
-5.6992506980896,
-9.887452125549316,
-9.444714546203613,
-8.803295135498047,
9.680131912231445,
-8.843612670898438,
-3.6106653213500977,
5.343770980834961,
7.4172868728637695,
5.287609577178955,
-6.436264991760254,
-5.426295757293701,
-8.239712715148926,
-6.103627681732178,
-7.4890265464782715,
-1.174863338470459,
-9.04550552368164,
-5.802403926849365,
-9.376409530639648,
-6.353938579559326,
-0.6642749309539795,
-4.838870525360107,
-2.8374578952789307,
-6.556634426116943,
1.5317587852478027,
-7.842332363128662,
-4.744269847869873,
-10.428359985351562,
-7.3130998611450195,
-6.7528862953186035,
-5.795459747314453,
-7.7016215324401855,
-9.417206764221191,
-8.376283645629883,
1.926966667175293,
-6.399605751037598,
-0.622053325176239,
-2.488431930541992,
-5.048197269439697,
-1.0174609422683716,
-6.867244243621826,
-7.261033058166504,
-9.425104141235352,
6.711556911468506,
-10.326679229736328,
-5.038573265075684,
-6.62481164932251,
-5.606674671173096,
-3.573221445083618,
-3.4411427974700928,
-0.3032180964946747,
-7.6191182136535645,
-1.683186650276184,
-8.473301887512207,
-2.4395902156829834,
4.545912265777588,
-6.8681793212890625,
-0.3755190968513489,
-7.019492149353027,
-6.223012447357178,
1.6247191429138184,
-1.9204035997390747,
2.137866735458374,
-7.292447566986084,
-8.628395080566406,
-6.522228240966797,
-10.63592529296875,
-3.8864448070526123,
-3.368079662322998,
6.731455326080322,
-10.195297241210938,
-10.411880493164062,
3.118805408477783,
-3.0941920280456543,
-7.10319185256958,
-6.150422096252441,
0.13486477732658386,
5.292408466339111,
-8.493209838867188,
-2.009206771850586,
-8.632454872131348,
5.656205654144287,
6.287420749664307,
-4.062073707580566,
3.9860963821411133,
-4.6372528076171875,
-3.031270980834961,
2.367321014404297,
1.5780260562896729,
-8.255425453186035,
-5.715080738067627,
-3.419645071029663,
-6.174554347991943,
-6.870144367218018,
-1.0629252195358276,
0.9077913761138916,
-10.670830726623535,
-7.875669956207275,
-3.4322378635406494,
-3.5283327102661133,
-6.583242893218994,
-6.1262712478637695,
-8.335740089416504,
-8.076642990112305,
-5.42641019821167,
-7.365361213684082,
1.9797219038009644,
-10.004329681396484,
-1.9314167499542236,
-10.553458213806152,
4.989193439483643,
-7.281473636627197,
-2.783262014389038,
-5.5252485275268555,
2.419726610183716,
-3.040804386138916,
-10.438098907470703,
-5.165684700012207,
-6.200376510620117,
-8.116868019104004,
-5.567784786224365,
4.811553955078125,
-7.437342643737793,
-3.7463090419769287,
-9.055838584899902,
2.4943761825561523,
0.9104593396186829,
1.627127766609192,
-3.2406094074249268,
-0.46315237879753113,
-7.602874755859375,
-1.2501375675201416,
-5.086627006530762,
-9.516125679016113,
-1.8984766006469727,
-8.556727409362793,
1.1217892169952393,
-7.77155876159668,
-6.24709939956665,
2.5780417919158936,
1.2380441427230835,
-3.2151858806610107,
-7.341675281524658,
-7.926930904388428,
1.6109158992767334,
1.4508260488510132,
-2.7772812843322754,
-4.798346519470215,
-5.401670455932617,
-4.995804786682129,
-4.998939514160156,
-6.5307159423828125,
-7.7288818359375,
-3.714935302734375,
-1.149314522743225,
-8.414247512817383,
-5.1853156089782715,
-6.778523921966553,
-8.060460090637207,
5.319594860076904,
-8.767533302307129,
-6.5634846687316895,
-6.999555587768555,
-4.287148475646973,
-2.8268513679504395,
-6.286767959594727,
0.44177424907684326,
-2.742232322692871,
6.460324764251709,
-0.5318095088005066,
6.033980369567871,
-4.050472259521484,
-1.884685754776001,
-3.3914740085601807,
-6.064581871032715,
5.522818088531494,
-4.1508355140686035,
-8.412726402282715,
-8.413070678710938,
-6.248226642608643,
-5.838916778564453,
6.066878318786621,
2.4411070346832275
],
"z": [
-7.117020130157471,
-0.7339829802513123,
-4.849016189575195,
-5.920874118804932,
-11.552482604980469,
-10.99456787109375,
-9.680071830749512,
-11.71132755279541,
-12.404084205627441,
-12.489541053771973,
-17.20302963256836,
-11.015802383422852,
-14.335112571716309,
-13.781575202941895,
-9.327105522155762,
-5.690269470214844,
-9.498113632202148,
-7.413071155548096,
-16.923816680908203,
-16.38714599609375,
-10.182135581970215,
-16.561500549316406,
-2.082141876220703,
-15.889731407165527,
-11.587090492248535,
-17.9156436920166,
-7.394538879394531,
-20.08004379272461,
-19.279977798461914,
-12.615156173706055,
-14.906902313232422,
-14.546393394470215,
-10.404848098754883,
-5.628448963165283,
-1.1901096105575562,
0.5968826413154602,
-6.255626678466797,
-1.8256298303604126,
-13.601104736328125,
-9.155511856079102,
-19.388755798339844,
-17.64078140258789,
-7.021925449371338,
-5.45894193649292,
-8.754210472106934,
-8.322229385375977,
-8.753721237182617,
-1.873187780380249,
-14.882861137390137,
-8.93384075164795,
-8.156535148620605,
-14.301568031311035,
-12.976798057556152,
-13.25986385345459,
-7.414597988128662,
-18.75064468383789,
-7.0193071365356445,
-0.8668437600135803,
-5.148313045501709,
-6.734461307525635,
-2.369542121887207,
-8.964702606201172,
-3.7200472354888916,
0.6188411116600037,
-3.5109524726867676,
-17.514942169189453,
1.3309950828552246,
-9.193925857543945,
-11.774052619934082,
-6.102447986602783,
-9.532903671264648,
-11.024016380310059,
-9.079381942749023,
-17.1904296875,
-19.140338897705078,
-10.2540283203125,
-8.486515998840332,
-11.599913597106934,
-8.914472579956055,
-18.318635940551758,
-5.926346302032471,
-5.086441516876221,
-18.483030319213867,
-3.911733388900757,
-16.041471481323242,
-16.205228805541992,
-10.510354995727539,
-4.451778411865234,
-14.237113952636719,
-7.965331554412842,
-12.83049201965332,
-3.7877063751220703,
-2.9978246688842773,
-12.810796737670898,
-5.692311763763428,
-20.16530990600586,
-9.033781051635742,
-5.628510475158691,
-3.738368034362793,
-8.126644134521484,
-11.431190490722656,
-14.972535133361816,
-0.9685802459716797,
-4.57633113861084,
-6.805834770202637,
-5.661790370941162,
-3.3287620544433594,
-7.499480724334717,
-11.282861709594727,
-4.243485927581787,
-8.322319030761719,
-1.215019941329956,
-0.8090332746505737,
-10.732955932617188,
-2.368161678314209,
1.208966851234436,
-0.6966989040374756,
-7.53634786605835,
-4.922156810760498,
0.32743605971336365,
0.6123887896537781,
-1.101493000984192,
-8.752429008483887,
-1.3136881589889526,
-8.3004150390625,
-20.23074722290039,
-9.427583694458008,
-12.56945514678955,
-6.094105243682861,
-12.47819709777832,
-9.631032943725586,
-3.6633448600769043,
-6.24232816696167,
-9.497817993164062,
-12.195511817932129,
-0.951187789440155,
-6.365069389343262,
-11.242992401123047,
-19.80005645751953,
-12.876876831054688,
-7.8709187507629395,
-10.709320068359375,
-11.62374210357666,
-7.8454718589782715,
-11.920279502868652,
-13.228084564208984,
-10.623598098754883,
-2.6012513637542725,
-12.00141716003418,
-8.664589881896973,
-13.425761222839355,
-10.92719841003418,
-5.747226715087891,
-15.516645431518555,
-7.785670280456543,
-8.933679580688477,
0.2180030196905136,
-13.926578521728516,
-12.400609970092773,
-12.965341567993164,
0.9697461724281311,
-9.485815048217773,
-16.201759338378906,
-9.295476913452148,
-18.298973083496094,
-4.339228630065918,
-1.8830945491790771,
0.5812837481498718,
-16.535446166992188,
-12.241363525390625,
-9.233457565307617,
-12.04384708404541,
-11.511308670043945,
-7.705385684967041,
-10.082042694091797,
-15.280862808227539,
-12.603325843811035,
-10.182244300842285,
-3.0453834533691406,
-4.113215923309326,
-12.306857109069824,
-10.28935432434082,
-11.091678619384766,
-11.88833236694336,
-11.564008712768555,
-10.498668670654297,
-11.8662691116333,
-10.279603004455566,
-17.429115295410156,
-7.561590671539307,
-4.453288555145264,
-6.024518966674805,
-3.2023370265960693,
-3.177114248275757,
-4.981907844543457,
-15.36135482788086,
-20.565574645996094,
1.1525532007217407,
-9.604442596435547,
-6.06114387512207,
-11.931214332580566,
-1.269000768661499,
-13.216612815856934,
-5.471056938171387,
-6.732785701751709,
-12.138761520385742,
-16.001680374145508,
-0.2726239264011383,
-10.244194030761719,
-11.608539581298828,
-11.89022159576416,
-1.6058523654937744,
-5.179664134979248,
-11.842978477478027,
-2.256206512451172,
-11.451194763183594,
-7.528510093688965,
-4.388107776641846,
-17.085670471191406,
-11.317166328430176,
-15.428810119628906,
-11.001862525939941,
-15.900967597961426,
-5.776296615600586,
-5.409512519836426,
-13.753924369812012,
-7.813826084136963,
0.6863267421722412,
-14.09387493133545,
-12.459842681884766,
-6.2531585693359375,
-8.640976905822754,
-21.285982131958008,
-2.2536683082580566,
-17.541606903076172,
-8.79692268371582,
-18.02034568786621,
-9.614419937133789,
-7.225395202636719,
-19.3472957611084,
-5.300948143005371,
-12.148591041564941,
-11.16237735748291,
-12.853455543518066,
-8.487548828125,
-4.705427169799805,
-14.734167098999023,
-12.494388580322266,
-3.73218035697937,
-8.097929954528809,
-9.155587196350098,
-8.821840286254883,
-13.598420143127441,
-17.730602264404297,
-17.00848960876465,
-6.013017177581787,
-5.308325290679932,
-11.024563789367676,
-16.085359573364258,
-13.476612091064453,
-22.024232864379883,
-10.0823392868042,
-2.8692057132720947,
-16.126304626464844,
-11.933825492858887,
-11.555635452270508,
-15.856307029724121,
1.0577970743179321,
-8.421162605285645,
-6.891495227813721,
-16.046655654907227,
0.3829060196876526,
-20.345434188842773,
-6.769658088684082,
-3.6867780685424805,
-7.991466522216797,
-16.984420776367188,
-9.578470230102539,
-11.353402137756348,
-4.268209934234619,
-3.087453603744507,
-5.364898681640625,
-15.734386444091797,
-16.777626037597656,
-2.2257256507873535,
-11.669321060180664,
-9.588695526123047,
-12.52817153930664,
-5.095935821533203,
-14.671857833862305,
-8.98023796081543,
0.40874576568603516,
1.48127281665802,
-4.813244342803955,
-4.567646503448486,
0.36450329422950745,
-7.938814163208008,
-0.48773667216300964,
-13.848041534423828,
-9.488221168518066,
-9.148881912231445,
-7.2126665115356445,
-18.50298309326172,
-5.021123886108398,
-15.331498146057129,
-15.321003913879395,
-6.4366278648376465,
-7.155170440673828,
-18.30159568786621,
-3.4480583667755127,
-11.572980880737305,
-6.358639717102051,
-5.442966461181641,
-2.96567702293396,
-11.016731262207031,
-5.435672760009766,
-15.2930269241333,
-10.794840812683105,
-4.456338405609131,
-11.526248931884766,
-1.6430109739303589,
-9.354188919067383,
-9.227470397949219,
-4.398865222930908,
1.5599561929702759,
-3.9144036769866943,
-7.651384353637695,
-2.513672113418579,
-12.225617408752441,
-17.999374389648438,
-12.961394309997559,
-10.552760124206543,
-5.869579792022705,
-13.712892532348633,
-11.55476188659668,
-2.3236608505249023,
-21.169496536254883,
-0.4389040172100067,
-2.2067208290100098,
0.43981918692588806,
-2.36245059967041,
-11.896177291870117,
1.8355942964553833,
-6.745839595794678,
0.16153904795646667,
-17.674901962280273,
-11.725944519042969,
-3.1906533241271973,
-7.25990104675293,
-5.290524005889893,
-0.24368122220039368,
-2.2752773761749268,
-13.943846702575684,
-7.978459358215332,
-15.681953430175781,
-1.0511937141418457,
-2.1001391410827637,
-12.592672348022461,
-5.25166130065918,
0.7519064545631409,
-1.7837564945220947,
-2.416332721710205,
-2.87599515914917,
-3.051215887069702,
-10.077162742614746,
-13.67103385925293,
-1.9766299724578857,
-3.686727285385132,
-17.135757446289062,
-17.401538848876953,
-11.681183815002441,
-2.8454883098602295,
-13.96180534362793,
-6.1956787109375,
-16.354820251464844,
-10.933674812316895,
-10.152566909790039,
-11.330405235290527,
-15.650274276733398,
-10.0641450881958,
0.7082308530807495,
-9.194912910461426,
-13.144590377807617,
-10.534812927246094,
-6.812901496887207,
-8.565834045410156,
-20.992389678955078,
-2.2790958881378174,
-2.3945553302764893,
0.2888430058956146,
-11.084758758544922,
-15.658711433410645,
-16.42463493347168,
-1.5898141860961914,
0.025292083621025085,
-1.3220006227493286,
-2.1950924396514893,
-9.84850025177002,
-1.3657937049865723,
-16.262731552124023,
-5.743820667266846,
-3.4427289962768555,
-1.6177246570587158,
-14.316789627075195,
-12.348410606384277,
-7.958702564239502,
-8.25554084777832,
-1.2011009454727173,
0.12985359132289886,
-8.731931686401367,
-5.0836944580078125,
-14.979780197143555,
-3.070707082748413,
-13.515495300292969,
-3.689692258834839,
-2.0679099559783936,
-3.1016013622283936,
-11.440638542175293,
-12.858449935913086,
-14.508016586303711,
-19.545162200927734,
-3.780421733856201,
-2.360057830810547,
-5.475926399230957,
-13.252068519592285,
-11.045707702636719,
-5.579462051391602,
-14.819887161254883,
-4.580801010131836,
-4.367031574249268,
-9.569266319274902,
-2.400646448135376,
-3.6655194759368896,
-11.135270118713379,
-14.838347434997559,
1.8056789636611938,
-0.45237693190574646,
-21.206893920898438,
-9.800495147705078,
-13.174846649169922,
-4.16050386428833,
-9.875494003295898,
-3.0527384281158447,
-20.883058547973633,
-13.841619491577148,
-2.1965935230255127,
-17.85145378112793,
-9.66036605834961,
-4.786023139953613,
-16.487770080566406,
-18.133092880249023,
-9.392236709594727,
-18.09639549255371,
-1.3758000135421753,
0.6022629141807556,
-1.6941895484924316,
1.5466943979263306,
-7.900454044342041,
-6.55936861038208,
-10.969738006591797,
-7.475444793701172,
-2.6984341144561768,
-1.901289463043213,
-9.160582542419434,
-8.459811210632324,
-8.881037712097168,
-8.393912315368652,
-0.18378834426403046,
-7.094690799713135,
-13.838635444641113,
-11.82542610168457,
-16.919021606445312,
-12.55202579498291,
-13.451211929321289,
-10.633218765258789,
-17.934877395629883,
-4.640323638916016,
-13.1865873336792,
-2.608107805252075,
-15.385372161865234,
-2.636143445968628,
-4.071112632751465,
-0.08833898603916168,
-16.994735717773438,
-16.71872901916504,
-7.411739349365234,
-1.554885745048523,
-5.533990383148193,
-1.2429287433624268,
-1.3548250198364258,
-6.210054397583008,
-10.870701789855957,
-3.914252281188965,
-5.1325507164001465,
-6.47940731048584,
-1.0297479629516602,
-0.1236034706234932,
-0.10073380917310715,
-1.9349077939987183,
-10.942302703857422,
-0.4222134053707123,
-15.492258071899414,
-21.32489585876465,
-13.499467849731445,
-1.4583525657653809,
-1.7621318101882935,
-6.202678680419922,
-0.06548281013965607,
-4.911317825317383,
-8.684305191040039,
-16.331138610839844,
-9.309791564941406,
-13.714064598083496,
-6.0153069496154785,
-12.531530380249023,
-12.291024208068848,
-6.351251125335693,
-18.245473861694336,
-1.7367584705352783,
-11.850099563598633,
-12.223098754882812,
-20.868406295776367,
-12.17259693145752,
-12.569747924804688,
-0.9450966119766235,
-4.389101982116699,
-10.090904235839844,
-4.991846084594727,
-10.339764595031738,
-5.14593505859375,
-10.687664031982422,
-9.397064208984375,
-19.20989418029785,
-7.960206508636475,
-6.037094593048096,
-14.32954216003418,
-12.821555137634277,
-9.281560897827148,
-14.583752632141113,
-17.221696853637695,
-18.41436195373535,
-5.049384593963623,
-8.831892013549805,
-6.833523750305176,
-11.682815551757812,
-18.244815826416016,
-12.794710159301758,
-8.042295455932617,
-8.244821548461914,
-12.742728233337402,
-14.685664176940918,
-9.6771879196167,
-8.35123348236084,
-17.74079132080078,
-8.24631118774414,
-12.02072811126709,
-0.18501104414463043,
-2.7632312774658203,
-4.189660549163818,
0.6673346161842346,
-11.845441818237305,
-10.733194351196289,
-8.623292922973633,
-4.331904888153076,
-11.312694549560547,
-8.471719741821289,
-14.647394180297852,
-4.489750385284424,
-11.248808860778809,
-9.158960342407227,
-0.53835529088974,
-20.99917221069336,
-12.75625991821289,
-11.751482009887695,
-7.513747692108154,
-5.1620354652404785,
-1.2742135524749756,
-5.319236755371094,
-10.90042495727539,
0.36375460028648376,
-14.229287147521973,
-10.484350204467773,
-1.3543294668197632,
-2.0942728519439697,
-8.977250099182129,
-8.858237266540527,
-5.1110639572143555,
-8.4119291305542,
-3.638803005218506,
-11.979708671569824,
-12.813965797424316,
0.6081969141960144,
-0.9102133512496948,
-8.833107948303223,
-1.5671359300613403,
-9.700214385986328,
-21.635499954223633,
-11.707755088806152,
-8.32281494140625,
-3.4675490856170654,
-9.179533004760742,
-8.527326583862305,
-6.026869297027588,
-9.733695030212402,
-21.184324264526367,
-12.504910469055176,
-8.708609580993652,
1.0841166973114014,
-10.289262771606445,
-1.7338817119598389,
-17.751571655273438,
-0.2877620756626129,
-9.298250198364258,
-11.574946403503418,
-5.456069469451904,
-0.989359438419342,
0.6539856195449829,
-11.603021621704102,
-5.512334823608398,
0.9227853417396545,
-3.5416057109832764,
-0.09124511480331421,
-1.6639447212219238,
-3.1060473918914795,
-13.357205390930176,
-6.775419235229492,
-3.353714942932129,
-9.481752395629883,
-15.6387357711792,
-1.4980337619781494,
-14.18807601928711,
-8.638592720031738,
-10.895782470703125,
-13.074004173278809,
0.4332832396030426,
-6.099963665008545,
-3.7819669246673584,
-2.2211201190948486,
-16.4708194732666,
-3.508730888366699,
-5.143979549407959,
-15.872989654541016,
-0.8312071561813354,
-10.609697341918945,
-0.09518734365701675,
-8.98244571685791,
-2.6037869453430176,
-5.778402328491211,
-7.376161575317383,
-20.996593475341797,
-17.63020896911621,
-5.857646465301514,
-12.1060209274292,
-14.237071990966797,
-13.298282623291016,
-12.670136451721191,
-7.423559188842773,
-13.217123985290527,
-12.076644897460938,
-1.6721223592758179,
-7.48153018951416,
-2.4253122806549072,
-4.207998752593994,
-8.833649635314941,
-18.459163665771484,
-6.1435723304748535,
-5.746227264404297,
-17.719924926757812,
-3.1421473026275635,
-9.26392936706543,
-1.7000219821929932,
-8.854355812072754,
-4.844226837158203,
-4.534115314483643,
-1.2496531009674072,
-14.75438404083252,
-5.807768821716309,
-2.5327985286712646,
-5.51688814163208,
0.7572868466377258,
-18.258947372436523,
-2.291163921356201,
-11.389410972595215,
-11.716653823852539,
-0.7702273726463318,
0.12798145413398743,
-4.771431922912598,
-12.271924018859863,
-8.409886360168457,
-2.998441696166992,
-11.797160148620605,
-7.486666202545166,
-10.840642929077148,
-4.2360429763793945,
-12.376387596130371,
0.4215090870857239,
-3.4074976444244385,
-10.914230346679688,
-8.498503684997559,
-9.057035446166992,
-9.47392749786377,
-11.181869506835938,
-2.801027774810791,
-16.684438705444336,
-11.81944751739502,
-4.173192977905273,
-2.2328286170959473,
-20.05791664123535,
-10.785848617553711,
-5.024092674255371,
-9.067984580993652,
-11.022101402282715,
-2.6494476795196533,
-8.357860565185547,
-8.851633071899414,
1.6435987949371338,
-12.266668319702148,
-10.748068809509277,
0.6571623086929321,
-2.2760705947875977,
-14.402009963989258,
-15.955648422241211,
-12.164886474609375,
-9.366894721984863,
-11.483443260192871,
-2.116422176361084,
-15.077860832214355,
-14.06778621673584,
-7.601405620574951,
-21.468002319335938,
-4.223491191864014,
1.4817709922790527,
-2.3773269653320312,
0.1416020542383194,
-10.537714958190918,
-10.419054985046387,
-11.792987823486328,
-13.661715507507324,
-10.13956069946289,
-14.184433937072754,
-8.980894088745117,
-3.732548713684082,
-11.650321960449219,
-15.15565013885498,
-5.92186975479126,
-4.716207981109619,
-13.994641304016113,
-14.574790954589844,
-18.098167419433594,
-2.4861857891082764,
-5.0628252029418945,
-8.735174179077148,
-11.312270164489746,
-11.598502159118652,
-18.051143646240234,
-6.939436435699463,
-10.108545303344727,
-11.6583890914917,
-6.735555648803711,
-6.1416916847229,
-7.359219551086426,
-19.349910736083984,
-7.471742630004883,
-14.573712348937988,
-17.06850814819336,
-17.054210662841797,
-6.161556243896484,
-3.1503586769104004,
-2.834293842315674,
-11.309096336364746,
-18.79796600341797,
-15.563339233398438,
-12.288881301879883,
-12.625842094421387,
-3.701662540435791,
-9.237019538879395,
-7.896928787231445,
-7.79023551940918,
-4.444260597229004,
-14.175552368164062,
-13.84945297241211,
-9.111371994018555,
-7.622440814971924,
-5.517419815063477,
-5.110164165496826,
-10.496577262878418,
-7.925358295440674,
0.7010833621025085,
-8.139188766479492,
-13.720185279846191,
-8.31529712677002,
-5.40947961807251,
-0.6427134275436401,
-11.610584259033203,
-7.43023157119751,
-10.014508247375488,
-7.750854969024658,
-12.00697135925293,
-5.731142520904541,
-2.011958360671997,
-15.446874618530273,
-5.517841815948486,
-5.033380508422852,
-7.130197048187256,
-8.59677791595459,
-14.114222526550293,
-5.334232807159424,
-16.57377815246582,
-1.8223408460617065,
-16.190317153930664,
-19.617950439453125,
-12.360033988952637,
-3.55045223236084,
-1.9003392457962036,
-11.287168502807617,
-9.361005783081055,
-1.2782351970672607,
-9.34001350402832,
-15.333887100219727,
-10.23651123046875,
-9.317488670349121,
-3.274489641189575,
-8.227494239807129,
-1.0384352207183838,
-11.368488311767578,
-15.332752227783203,
-4.726205348968506,
-7.384149551391602,
-11.679003715515137,
-1.9245264530181885,
-7.4986796379089355,
-13.830955505371094,
-5.485166072845459,
-6.049310684204102,
-14.16124153137207,
-10.753725051879883,
-11.150413513183594,
-3.354583978652954,
-17.534500122070312,
-15.043009757995605,
-17.69856834411621,
0.022627387195825577,
-12.463226318359375,
-8.111979484558105,
-8.995675086975098,
-15.64141845703125,
-13.80989933013916,
-11.039632797241211,
-19.02280044555664,
-9.60193157196045,
-5.788829803466797,
-8.486685752868652,
-5.394473552703857,
-17.2910213470459,
-9.891802787780762,
-2.2118899822235107,
-2.8494372367858887,
-7.8025665283203125,
-11.222445487976074,
-11.642780303955078,
-8.716720581054688,
-8.635895729064941,
-11.237624168395996,
-13.071438789367676,
-6.639550685882568,
-15.565325736999512,
-10.859588623046875,
-1.5153248310089111,
-13.493130683898926,
-18.724781036376953,
-14.435110092163086,
-11.150623321533203,
-12.993058204650879,
-18.572694778442383,
-19.542739868164062,
-19.713844299316406,
-11.46994686126709,
-12.584830284118652,
-12.6115083694458,
-9.511122703552246,
-9.74572467803955,
1.1348556280136108,
0.432411789894104,
-13.708231925964355,
-14.51026725769043,
-17.638896942138672,
-20.325092315673828,
-11.320047378540039,
-6.239382743835449,
-13.7520112991333,
-17.854154586791992,
-5.661871433258057,
0.5343756675720215,
-15.348308563232422,
0.08784949034452438,
-9.837149620056152,
-7.6960859298706055,
-13.797592163085938,
-10.534196853637695,
-12.162318229675293,
-10.04747200012207,
-16.26582145690918,
-12.586587905883789,
-12.31567668914795,
-10.201336860656738,
-11.513825416564941,
-19.588394165039062,
-8.326006889343262,
-12.774569511413574,
-11.566136360168457,
-14.063554763793945,
-5.42040491104126,
-18.386749267578125,
-18.367504119873047,
-10.914507865905762,
-16.046140670776367,
-8.1804838180542,
-9.195204734802246,
-7.101672649383545,
0.3316453695297241,
1.2278252840042114,
-17.692176818847656,
-3.6889078617095947,
-5.014527797698975,
-15.986013412475586,
-4.040012359619141,
-16.52744483947754,
-10.617940902709961,
-2.4831268787384033,
-7.969085216522217,
-4.592123508453369,
-13.400996208190918,
-10.05672836303711,
-9.154328346252441,
-14.293105125427246,
-7.351316928863525,
-5.660028457641602,
-12.499268531799316,
-7.422712802886963,
-10.378658294677734,
-5.078283786773682,
-14.08100414276123,
-16.628379821777344,
-0.8278411030769348,
-7.493829250335693,
-16.017993927001953,
-7.560853004455566,
-5.001809120178223,
-20.851463317871094,
-9.668085098266602,
-5.011157035827637,
-14.52493667602539,
-8.033032417297363,
-11.816723823547363,
-16.76263427734375,
-8.815414428710938,
-4.948608875274658,
-12.493690490722656,
-15.272736549377441,
-11.263497352600098,
-4.5997185707092285,
-0.5745913982391357,
-16.861099243164062,
-12.421891212463379,
-13.21768856048584,
0.6190297603607178,
-5.887309551239014,
-5.566715717315674,
-1.472836971282959,
-7.550711631774902,
-4.1610260009765625,
-18.686845779418945,
-16.299678802490234,
-2.4891557693481445,
-16.94629669189453,
-8.647069931030273,
0.029490360990166664,
-5.040299415588379,
-17.002273559570312,
-14.541720390319824,
-4.706818103790283,
-7.074392318725586,
-6.068231105804443,
-10.01041030883789,
-4.786868095397949,
-19.65407943725586,
0.5110153555870056,
-6.3476691246032715,
-12.005596160888672,
-2.7737226486206055,
-16.459575653076172,
-8.904458999633789,
-15.540691375732422,
-13.170372009277344,
-12.177559852600098,
-9.572342872619629,
-16.345632553100586,
-4.703659534454346,
-19.508195877075195,
-7.715839385986328,
-8.995319366455078,
-7.353767395019531,
-6.314780235290527,
-8.392605781555176,
-6.826836109161377,
-13.968019485473633,
-17.359085083007812,
-19.85976791381836,
-11.948433876037598,
-20.49059295654297,
-2.101555585861206,
-0.026132730767130852,
-11.594006538391113,
-14.041960716247559,
-22.00751495361328,
-15.746177673339844,
-3.914634943008423,
-0.9952878355979919,
-11.191861152648926,
-8.717462539672852,
-4.938797473907471,
-1.3131470680236816,
-8.433663368225098,
-11.499265670776367,
-4.106320858001709,
-5.408036231994629,
-20.692129135131836,
-9.318476676940918,
-2.846191167831421,
-13.224523544311523,
-1.5235589742660522,
-5.423951625823975,
-5.89274787902832,
-0.3191171884536743,
-14.126887321472168,
0.15861399471759796,
-11.666926383972168,
-10.45920181274414,
-5.923672676086426,
-12.037028312683105,
-1.1271538734436035,
-7.910300254821777,
-8.739697456359863,
-6.7756195068359375,
-17.67221450805664,
-7.156886577606201,
-11.359006881713867,
1.5654906034469604,
-9.978816986083984,
-5.234703063964844,
-7.766097545623779,
0.5218609571456909,
-20.39204216003418,
-1.203494906425476,
-20.717018127441406,
-1.1914056539535522,
-4.966734886169434,
-0.015102327801287174,
-17.43657684326172,
-11.569554328918457,
-14.295467376708984,
-10.289246559143066,
-5.220858573913574,
-11.195267677307129,
-8.845843315124512,
-1.7076455354690552,
-13.778532028198242,
-3.8000681400299072,
-2.444965362548828,
-20.339506149291992,
-3.198186159133911,
-18.849685668945312,
-2.9593849182128906,
-13.053325653076172,
-12.268967628479004,
-0.8173448443412781,
-11.810935974121094,
-1.4793542623519897,
-14.474038124084473,
-7.6529927253723145,
-2.8352274894714355,
-11.111043930053711,
-0.6556937098503113,
-8.003704071044922,
-17.453100204467773,
-6.540570259094238,
-1.9119582176208496,
-9.340171813964844,
-1.8643878698349,
-22.008214950561523,
-18.147878646850586,
-2.441357374191284,
-20.412954330444336,
-15.051664352416992,
1.2564340829849243,
-7.0275068283081055,
-11.673561096191406,
-3.6212944984436035,
-2.472669839859009,
-14.367180824279785,
-8.02450942993164,
-8.638620376586914,
-0.804782509803772,
-10.93242073059082,
-7.952524185180664,
-13.444377899169922,
-19.211578369140625,
-6.418511867523193,
-6.265686988830566,
-5.598604202270508,
-16.013134002685547,
-8.180692672729492,
-13.235718727111816,
-6.081228733062744,
-14.635503768920898,
-8.356175422668457,
-9.436589241027832,
-3.7981598377227783,
-13.742008209228516,
-18.523677825927734,
-2.6924829483032227,
-10.091957092285156,
-10.18224048614502,
-7.856687068939209,
-12.915868759155273,
0.4227980971336365,
-8.789348602294922,
0.5061923861503601,
0.12571144104003906,
-1.3531159162521362,
-7.201991558074951,
-20.898792266845703,
-1.0007556676864624,
-11.583245277404785,
-16.927608489990234,
-5.6317033767700195,
-7.639567852020264,
-6.847126483917236,
-17.101606369018555,
-10.866458892822266,
-18.232927322387695,
-1.4538570642471313,
0.3648327589035034,
-15.150859832763672,
-14.04035472869873,
-6.003141403198242,
-3.5228137969970703,
-1.7524163722991943,
-0.7946897745132446,
-15.351258277893066,
-4.998042106628418,
-10.899489402770996,
-11.00167465209961,
-2.705848217010498,
-2.524897575378418,
0.6787040829658508,
-5.132328987121582,
-5.636690616607666,
-9.61326789855957,
-5.258148193359375,
-13.041241645812988,
-13.579194068908691,
-8.531294822692871,
-5.036909103393555,
-6.814095497131348,
-3.4260706901550293,
-2.5277099609375,
-12.705479621887207,
-16.465484619140625,
-1.4939444065093994,
-7.790788650512695,
-4.637679576873779,
-14.68039608001709,
-14.123859405517578,
-4.702032566070557,
-11.270342826843262,
-22.244075775146484,
-12.039721488952637,
-18.833263397216797,
-11.131210327148438,
-8.806650161743164,
-2.9614861011505127,
-7.540101051330566,
-4.530371189117432,
-20.483856201171875,
-7.932738780975342,
-16.242067337036133,
-1.0793296098709106,
-10.752695083618164,
-4.80354118347168,
-11.68052864074707,
-5.355243682861328,
-1.4707175493240356,
-4.282386779785156,
-17.773466110229492,
-6.316731929779053,
-13.219026565551758,
-13.777454376220703,
-10.097023010253906,
-4.261467933654785,
-3.6580965518951416,
-6.800580024719238,
-3.511739492416382,
-8.394598007202148,
-11.880697250366211,
-15.011409759521484,
-14.989925384521484,
0.4307398200035095,
-14.594536781311035,
-7.699538230895996,
-21.474565505981445,
-17.433979034423828,
-9.49785041809082,
-10.043087005615234,
-8.185572624206543,
-9.52710247039795,
-19.2027530670166,
-10.955194473266602,
-11.03345775604248,
-2.9596219062805176,
1.1278725862503052,
-5.279165267944336,
-1.741821527481079,
-16.351320266723633,
-12.806357383728027,
-18.75531578063965,
-6.447342872619629,
0.1154838427901268,
-5.723726272583008,
-6.610952854156494,
-13.02871322631836,
-8.283975601196289,
-8.955159187316895,
-6.555366039276123,
-8.678664207458496,
-7.094806671142578,
-14.238992691040039,
-9.471513748168945,
-0.395652174949646,
-8.80257511138916,
-18.86572265625,
-14.979168891906738,
-20.711565017700195,
-18.665447235107422,
0.10813654959201813,
-5.637642860412598,
-10.123988151550293,
-4.171396255493164,
-13.452423095703125,
-3.01259708404541,
-8.734293937683105,
-4.703765392303467,
-11.689412117004395,
-12.334688186645508,
-9.446427345275879,
-16.211816787719727,
-13.921751976013184,
0.2069360911846161,
-4.357201099395752,
-12.083844184875488,
-8.078278541564941,
-2.2094345092773438,
-8.971389770507812,
-3.7025723457336426,
-21.55581283569336,
-17.655258178710938,
-12.595718383789062,
-12.386185646057129,
-7.632286071777344,
-20.668052673339844,
-11.756056785583496,
-6.798505783081055,
-14.194725036621094,
-3.5130302906036377,
-11.187178611755371,
-2.346303701400757
]
}
],
"layout": {
"height": 800,
"legend": {
"title": {
"text": "Dominant_Topic"
},
"tracegroupgap": 0
},
"scene": {
"domain": {
"x": [
0,
1
],
"y": [
0,
1
]
},
"xaxis": {
"title": {
"text": "0"
}
},
"yaxis": {
"title": {
"text": "1"
}
},
"zaxis": {
"title": {
"text": "2"
}
}
},
"template": {
"data": {
"bar": [
{
"error_x": {
"color": "#2a3f5f"
},
"error_y": {
"color": "#2a3f5f"
},
"marker": {
"line": {
"color": "#E5ECF6",
"width": 0.5
}
},
"type": "bar"
}
],
"barpolar": [
{
"marker": {
"line": {
"color": "#E5ECF6",
"width": 0.5
}
},
"type": "barpolar"
}
],
"carpet": [
{
"aaxis": {
"endlinecolor": "#2a3f5f",
"gridcolor": "white",
"linecolor": "white",
"minorgridcolor": "white",
"startlinecolor": "#2a3f5f"
},
"baxis": {
"endlinecolor": "#2a3f5f",
"gridcolor": "white",
"linecolor": "white",
"minorgridcolor": "white",
"startlinecolor": "#2a3f5f"
},
"type": "carpet"
}
],
"choropleth": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"type": "choropleth"
}
],
"contour": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"colorscale": [
[
0,
"#0d0887"
],
[
0.1111111111111111,
"#46039f"
],
[
0.2222222222222222,
"#7201a8"
],
[
0.3333333333333333,
"#9c179e"
],
[
0.4444444444444444,
"#bd3786"
],
[
0.5555555555555556,
"#d8576b"
],
[
0.6666666666666666,
"#ed7953"
],
[
0.7777777777777778,
"#fb9f3a"
],
[
0.8888888888888888,
"#fdca26"
],
[
1,
"#f0f921"
]
],
"type": "contour"
}
],
"contourcarpet": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"type": "contourcarpet"
}
],
"heatmap": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"colorscale": [
[
0,
"#0d0887"
],
[
0.1111111111111111,
"#46039f"
],
[
0.2222222222222222,
"#7201a8"
],
[
0.3333333333333333,
"#9c179e"
],
[
0.4444444444444444,
"#bd3786"
],
[
0.5555555555555556,
"#d8576b"
],
[
0.6666666666666666,
"#ed7953"
],
[
0.7777777777777778,
"#fb9f3a"
],
[
0.8888888888888888,
"#fdca26"
],
[
1,
"#f0f921"
]
],
"type": "heatmap"
}
],
"heatmapgl": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"colorscale": [
[
0,
"#0d0887"
],
[
0.1111111111111111,
"#46039f"
],
[
0.2222222222222222,
"#7201a8"
],
[
0.3333333333333333,
"#9c179e"
],
[
0.4444444444444444,
"#bd3786"
],
[
0.5555555555555556,
"#d8576b"
],
[
0.6666666666666666,
"#ed7953"
],
[
0.7777777777777778,
"#fb9f3a"
],
[
0.8888888888888888,
"#fdca26"
],
[
1,
"#f0f921"
]
],
"type": "heatmapgl"
}
],
"histogram": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "histogram"
}
],
"histogram2d": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"colorscale": [
[
0,
"#0d0887"
],
[
0.1111111111111111,
"#46039f"
],
[
0.2222222222222222,
"#7201a8"
],
[
0.3333333333333333,
"#9c179e"
],
[
0.4444444444444444,
"#bd3786"
],
[
0.5555555555555556,
"#d8576b"
],
[
0.6666666666666666,
"#ed7953"
],
[
0.7777777777777778,
"#fb9f3a"
],
[
0.8888888888888888,
"#fdca26"
],
[
1,
"#f0f921"
]
],
"type": "histogram2d"
}
],
"histogram2dcontour": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"colorscale": [
[
0,
"#0d0887"
],
[
0.1111111111111111,
"#46039f"
],
[
0.2222222222222222,
"#7201a8"
],
[
0.3333333333333333,
"#9c179e"
],
[
0.4444444444444444,
"#bd3786"
],
[
0.5555555555555556,
"#d8576b"
],
[
0.6666666666666666,
"#ed7953"
],
[
0.7777777777777778,
"#fb9f3a"
],
[
0.8888888888888888,
"#fdca26"
],
[
1,
"#f0f921"
]
],
"type": "histogram2dcontour"
}
],
"mesh3d": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"type": "mesh3d"
}
],
"parcoords": [
{
"line": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "parcoords"
}
],
"pie": [
{
"automargin": true,
"type": "pie"
}
],
"scatter": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scatter"
}
],
"scatter3d": [
{
"line": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scatter3d"
}
],
"scattercarpet": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scattercarpet"
}
],
"scattergeo": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scattergeo"
}
],
"scattergl": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scattergl"
}
],
"scattermapbox": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scattermapbox"
}
],
"scatterpolar": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scatterpolar"
}
],
"scatterpolargl": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scatterpolargl"
}
],
"scatterternary": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scatterternary"
}
],
"surface": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"colorscale": [
[
0,
"#0d0887"
],
[
0.1111111111111111,
"#46039f"
],
[
0.2222222222222222,
"#7201a8"
],
[
0.3333333333333333,
"#9c179e"
],
[
0.4444444444444444,
"#bd3786"
],
[
0.5555555555555556,
"#d8576b"
],
[
0.6666666666666666,
"#ed7953"
],
[
0.7777777777777778,
"#fb9f3a"
],
[
0.8888888888888888,
"#fdca26"
],
[
1,
"#f0f921"
]
],
"type": "surface"
}
],
"table": [
{
"cells": {
"fill": {
"color": "#EBF0F8"
},
"line": {
"color": "white"
}
},
"header": {
"fill": {
"color": "#C8D4E3"
},
"line": {
"color": "white"
}
},
"type": "table"
}
]
},
"layout": {
"annotationdefaults": {
"arrowcolor": "#2a3f5f",
"arrowhead": 0,
"arrowwidth": 1
},
"coloraxis": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"colorscale": {
"diverging": [
[
0,
"#8e0152"
],
[
0.1,
"#c51b7d"
],
[
0.2,
"#de77ae"
],
[
0.3,
"#f1b6da"
],
[
0.4,
"#fde0ef"
],
[
0.5,
"#f7f7f7"
],
[
0.6,
"#e6f5d0"
],
[
0.7,
"#b8e186"
],
[
0.8,
"#7fbc41"
],
[
0.9,
"#4d9221"
],
[
1,
"#276419"
]
],
"sequential": [
[
0,
"#0d0887"
],
[
0.1111111111111111,
"#46039f"
],
[
0.2222222222222222,
"#7201a8"
],
[
0.3333333333333333,
"#9c179e"
],
[
0.4444444444444444,
"#bd3786"
],
[
0.5555555555555556,
"#d8576b"
],
[
0.6666666666666666,
"#ed7953"
],
[
0.7777777777777778,
"#fb9f3a"
],
[
0.8888888888888888,
"#fdca26"
],
[
1,
"#f0f921"
]
],
"sequentialminus": [
[
0,
"#0d0887"
],
[
0.1111111111111111,
"#46039f"
],
[
0.2222222222222222,
"#7201a8"
],
[
0.3333333333333333,
"#9c179e"
],
[
0.4444444444444444,
"#bd3786"
],
[
0.5555555555555556,
"#d8576b"
],
[
0.6666666666666666,
"#ed7953"
],
[
0.7777777777777778,
"#fb9f3a"
],
[
0.8888888888888888,
"#fdca26"
],
[
1,
"#f0f921"
]
]
},
"colorway": [
"#636efa",
"#EF553B",
"#00cc96",
"#ab63fa",
"#FFA15A",
"#19d3f3",
"#FF6692",
"#B6E880",
"#FF97FF",
"#FECB52"
],
"font": {
"color": "#2a3f5f"
},
"geo": {
"bgcolor": "white",
"lakecolor": "white",
"landcolor": "#E5ECF6",
"showlakes": true,
"showland": true,
"subunitcolor": "white"
},
"hoverlabel": {
"align": "left"
},
"hovermode": "closest",
"mapbox": {
"style": "light"
},
"paper_bgcolor": "white",
"plot_bgcolor": "#E5ECF6",
"polar": {
"angularaxis": {
"gridcolor": "white",
"linecolor": "white",
"ticks": ""
},
"bgcolor": "#E5ECF6",
"radialaxis": {
"gridcolor": "white",
"linecolor": "white",
"ticks": ""
}
},
"scene": {
"xaxis": {
"backgroundcolor": "#E5ECF6",
"gridcolor": "white",
"gridwidth": 2,
"linecolor": "white",
"showbackground": true,
"ticks": "",
"zerolinecolor": "white"
},
"yaxis": {
"backgroundcolor": "#E5ECF6",
"gridcolor": "white",
"gridwidth": 2,
"linecolor": "white",
"showbackground": true,
"ticks": "",
"zerolinecolor": "white"
},
"zaxis": {
"backgroundcolor": "#E5ECF6",
"gridcolor": "white",
"gridwidth": 2,
"linecolor": "white",
"showbackground": true,
"ticks": "",
"zerolinecolor": "white"
}
},
"shapedefaults": {
"line": {
"color": "#2a3f5f"
}
},
"ternary": {
"aaxis": {
"gridcolor": "white",
"linecolor": "white",
"ticks": ""
},
"baxis": {
"gridcolor": "white",
"linecolor": "white",
"ticks": ""
},
"bgcolor": "#E5ECF6",
"caxis": {
"gridcolor": "white",
"linecolor": "white",
"ticks": ""
}
},
"title": {
"x": 0.05
},
"xaxis": {
"automargin": true,
"gridcolor": "white",
"linecolor": "white",
"ticks": "",
"title": {
"standoff": 15
},
"zerolinecolor": "white",
"zerolinewidth": 2
},
"yaxis": {
"automargin": true,
"gridcolor": "white",
"linecolor": "white",
"ticks": "",
"title": {
"standoff": 15
},
"zerolinecolor": "white",
"zerolinewidth": 2
}
}
},
"title": {
"text": "3d TSNE Plot for Topic Model"
},
"width": 900
}
},
"text/html": [
"\n",
" \n",
" \n",
"
\n",
" \n",
"
"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"plot_model(lda, plot = 'tsne')"
]
},
{
"cell_type": "code",
"execution_count": 11,
"metadata": {},
"outputs": [
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "28e642989b154a32921dd1f61cc7d670",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"interactive(children=(ToggleButtons(description='Plot Type:', icons=('',), options=(('Frequency Plot', 'freque…"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"evaluate_model(lda)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# 6. MLFlow UI"
]
},
{
"cell_type": "code",
"execution_count": 12,
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"\n",
"\n",
"
\n",
" \n",
" \n",
" | \n",
" run_id | \n",
" experiment_id | \n",
" status | \n",
" artifact_uri | \n",
" start_time | \n",
" end_time | \n",
" metrics.TT | \n",
" params.solver | \n",
" params.init | \n",
" params.l1_ratio | \n",
" ... | \n",
" tags.mlflow.runName | \n",
" tags.USI | \n",
" tags.mlflow.user | \n",
" tags.URI | \n",
" tags.mlflow.source.type | \n",
" tags.mlflow.source.name | \n",
" tags.Run ID | \n",
" tags.Size KB | \n",
" tags.Source | \n",
" tags.Run Time | \n",
"
\n",
" \n",
" \n",
" \n",
" 0 | \n",
" 66f0e52994d245beb6d8a18c7cf5022e | \n",
" 4 | \n",
" FINISHED | \n",
" file:///C:/Users/moezs/pycaret-demo-td/mlruns/... | \n",
" 2020-07-29 13:57:04.059000+00:00 | \n",
" 2020-07-29 13:57:04.336000+00:00 | \n",
" 2.18 | \n",
" cd | \n",
" nndsvd | \n",
" 0.0 | \n",
" ... | \n",
" Non-Negative Matrix Factorization | \n",
" 2c3d | \n",
" moezs | \n",
" c7c29a21 | \n",
" LOCAL | \n",
" C:\\Users\\moezs\\Anaconda3\\envs\\pycaret-nightly-... | \n",
" 66f0e52994d245beb6d8a18c7cf5022e | \n",
" 240.69 | \n",
" create_model | \n",
" 2.22 | \n",
"
\n",
" \n",
" 1 | \n",
" 9deb5a3e41424e5da94f16e28c67fb8a | \n",
" 4 | \n",
" FINISHED | \n",
" file:///C:/Users/moezs/pycaret-demo-td/mlruns/... | \n",
" 2020-07-29 13:57:01.450000+00:00 | \n",
" 2020-07-29 13:57:01.801000+00:00 | \n",
" 55.55 | \n",
" None | \n",
" None | \n",
" None | \n",
" ... | \n",
" Latent Dirichlet Allocation | \n",
" 2c3d | \n",
" moezs | \n",
" 18a25e3b | \n",
" LOCAL | \n",
" C:\\Users\\moezs\\Anaconda3\\envs\\pycaret-nightly-... | \n",
" 9deb5a3e41424e5da94f16e28c67fb8a | \n",
" 764.39 | \n",
" create_model | \n",
" 55.62 | \n",
"
\n",
" \n",
" 2 | \n",
" 086a171759314b55b8a8fc38b3d50512 | \n",
" 4 | \n",
" FINISHED | \n",
" file:///C:/Users/moezs/pycaret-demo-td/mlruns/... | \n",
" 2020-07-29 13:55:31.945000+00:00 | \n",
" 2020-07-29 13:56:05.706000+00:00 | \n",
" NaN | \n",
" None | \n",
" None | \n",
" None | \n",
" ... | \n",
" Session Initialized 2c3d | \n",
" 2c3d | \n",
" moezs | \n",
" d9929f46 | \n",
" LOCAL | \n",
" C:\\Users\\moezs\\Anaconda3\\envs\\pycaret-nightly-... | \n",
" 086a171759314b55b8a8fc38b3d50512 | \n",
" None | \n",
" setup | \n",
" 266.11 | \n",
"
\n",
" \n",
"
\n",
"
3 rows × 56 columns
\n",
"
"
],
"text/plain": [
" run_id experiment_id status \\\n",
"0 66f0e52994d245beb6d8a18c7cf5022e 4 FINISHED \n",
"1 9deb5a3e41424e5da94f16e28c67fb8a 4 FINISHED \n",
"2 086a171759314b55b8a8fc38b3d50512 4 FINISHED \n",
"\n",
" artifact_uri \\\n",
"0 file:///C:/Users/moezs/pycaret-demo-td/mlruns/... \n",
"1 file:///C:/Users/moezs/pycaret-demo-td/mlruns/... \n",
"2 file:///C:/Users/moezs/pycaret-demo-td/mlruns/... \n",
"\n",
" start_time end_time \\\n",
"0 2020-07-29 13:57:04.059000+00:00 2020-07-29 13:57:04.336000+00:00 \n",
"1 2020-07-29 13:57:01.450000+00:00 2020-07-29 13:57:01.801000+00:00 \n",
"2 2020-07-29 13:55:31.945000+00:00 2020-07-29 13:56:05.706000+00:00 \n",
"\n",
" metrics.TT params.solver params.init params.l1_ratio ... \\\n",
"0 2.18 cd nndsvd 0.0 ... \n",
"1 55.55 None None None ... \n",
"2 NaN None None None ... \n",
"\n",
" tags.mlflow.runName tags.USI tags.mlflow.user tags.URI \\\n",
"0 Non-Negative Matrix Factorization 2c3d moezs c7c29a21 \n",
"1 Latent Dirichlet Allocation 2c3d moezs 18a25e3b \n",
"2 Session Initialized 2c3d 2c3d moezs d9929f46 \n",
"\n",
" tags.mlflow.source.type tags.mlflow.source.name \\\n",
"0 LOCAL C:\\Users\\moezs\\Anaconda3\\envs\\pycaret-nightly-... \n",
"1 LOCAL C:\\Users\\moezs\\Anaconda3\\envs\\pycaret-nightly-... \n",
"2 LOCAL C:\\Users\\moezs\\Anaconda3\\envs\\pycaret-nightly-... \n",
"\n",
" tags.Run ID tags.Size KB tags.Source tags.Run Time \n",
"0 66f0e52994d245beb6d8a18c7cf5022e 240.69 create_model 2.22 \n",
"1 9deb5a3e41424e5da94f16e28c67fb8a 764.39 create_model 55.62 \n",
"2 086a171759314b55b8a8fc38b3d50512 None setup 266.11 \n",
"\n",
"[3 rows x 56 columns]"
]
},
"execution_count": 12,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"get_logs()"
]
},
{
"cell_type": "code",
"execution_count": 13,
"metadata": {},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"Running the mlflow server failed. Please see the logs above for details.\n"
]
}
],
"source": [
"!mlflow ui"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# End\n",
"Thank you. For more information / tutorials on PyCaret, please visit https://www.pycaret.org"
]
}
],
"metadata": {
"kernelspec": {
"display_name": "pycaret-nightly-env",
"language": "python",
"name": "pycaret-nightly-env"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.6.10"
}
},
"nbformat": 4,
"nbformat_minor": 2
}